/* Design System Variables */
:root {
    /* Colors */
    --primary-green: #2F734C;
    --dark-green: #055902;
    --secondary-blush: #BF9D95;
    --light-blush: #D4B8B0;
    --accent-light-blush: #E8D5D0;
    
    --white: #FFFFFF;
    --off-white: #FEFEFE;
    --light-gray: #F8F9FA;
    --medium-gray: #8E8E93;
    --dark-gray: #3A3A3C;
    --black: #000000;
    
    --success: #2F734C;
    --warning: #BF9D95;
    --error: #D32F2F;
    
    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --title1-size: 28px;
    --title1-weight: 700;
    --title1-height: 34px;
    --title2-size: 22px;
    --title2-weight: 600;
    --title2-height: 28px;
    --title3-size: 20px;
    --title3-weight: 600;
    --title3-height: 25px;
    --headline-size: 17px;
    --headline-weight: 600;
    --headline-height: 22px;
    --body-size: 17px;
    --body-weight: 400;
    --body-height: 22px;
    --callout-size: 16px;
    --callout-weight: 400;
    --callout-height: 21px;
    --subhead-size: 15px;
    --subhead-weight: 400;
    --subhead-height: 20px;
    --footnote-size: 13px;
    --footnote-weight: 400;
    --footnote-height: 18px;
    --caption-size: 12px;
    --caption-weight: 400;
    --caption-height: 16px;
    
    /* Spacing */
    --xs: 4px;
    --sm: 8px;
    --md: 16px;
    --lg: 24px;
    --xl: 32px;
    --xxl: 48px;
    
    /* Border Radius */
    --radius-small: 8px;
    --radius-medium: 12px;
    --radius-large: 16px;
    --radius-xlarge: 20px;
    
    /* Shadows */
    --shadow-small: 0 1px 3px rgba(47, 115, 76, 0.1);
    --shadow-medium: 0 4px 12px rgba(47, 115, 76, 0.1);
    --shadow-large: 0 8px 25px rgba(47, 115, 76, 0.15);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--white);
    color: var(--black);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Screen Management */
.screen {
    display: none;
    min-height: 100vh;
    background-color: var(--white);
}

.screen.active {
    display: block;
}

/* Navigation Bar */
.navigation-bar {
    height: 44px;
    background-color: var(--white);
    backdrop-filter: blur(20px);
    border-bottom: 0.5px solid rgba(47, 115, 76, 0.1);
    padding: 0 var(--md);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 100;
}

.back-button {
    position: absolute;
    left: var(--md);
    background: none;
    border: none;
    font-size: 18px;
    color: var(--primary-green);
    cursor: pointer;
    padding: var(--sm);
}

.nav-title {
    font-size: var(--headline-size);
    font-weight: var(--headline-weight);
    line-height: var(--headline-height);
    color: var(--black);
    text-align: center;
}

/* Content Container */
.content-container {
    padding: 0 var(--md);
    max-width: 100%;
    padding-bottom: 100px; /* Space for footer buttons */
}

/* Landing Page Specific */
.landing-content {
    min-height: calc(100vh - 44px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--lg);
    text-align: center;
}

.landing-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 320px;
}

.hero-logo {
    margin-bottom: var(--lg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-image {
    height: 60px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
}

.landing-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: var(--xs);
    letter-spacing: -0.5px;
}

.landing-subtitle {
    font-size: 20px;
    font-weight: var(--title2-weight);
    color: var(--primary-green);
    margin-bottom: var(--md);
    line-height: 1.3;
}

.landing-description {
    font-size: var(--callout-size);
    font-weight: var(--body-weight);
    line-height: 1.4;
    color: var(--medium-gray);
    margin-bottom: var(--lg);
    max-width: 260px;
}

.landing-cta {
    width: 100%;
    max-width: 320px;
    margin-top: var(--sm);
}

.landing-button {
    width: 100%;
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: var(--radius-medium);
    padding: 16px 24px;
    font-size: var(--headline-size);
    font-weight: var(--headline-weight);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.landing-button:hover {
    background-color: var(--dark-green);
    transform: translateY(-1px);
    box-shadow: var(--shadow-large);
}

/* Buttons */
.primary-button {
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: var(--radius-medium);
    padding: 12px 24px;
    font-size: var(--headline-size);
    font-weight: var(--headline-weight);
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.primary-button:hover {
    background-color: var(--dark-green);
}

.secondary-button {
    background-color: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    border-radius: var(--radius-medium);
    padding: 12px 24px;
    font-size: var(--headline-size);
    font-weight: var(--headline-weight);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.secondary-button:hover {
    background-color: rgba(47, 115, 76, 0.05);
}


/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--lg) 0;
}

.section-title {
    font-size: var(--title3-size);
    font-weight: var(--title3-weight);
    line-height: var(--title3-height);
    color: var(--black);
}

/* Subdivision Card */
.subdivision-card {
    background-color: var(--white);
    border: 1px solid rgba(47, 115, 76, 0.1);
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    margin-bottom: var(--lg);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.subdivision-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
}

.subdivision-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.subdivision-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.subdivision-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(47,115,76,0.8), transparent);
    padding: var(--lg);
    color: var(--white);
}

.subdivision-name {
    font-size: var(--headline-size);
    font-weight: var(--headline-weight);
    margin-bottom: var(--xs);
}

.subdivision-location {
    font-size: var(--subhead-size);
    opacity: 0.9;
}

.subdivision-info {
    padding: var(--md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.subdivision-title {
    font-size: var(--headline-size);
    font-weight: var(--headline-weight);
    color: var(--black);
    margin-bottom: var(--xs);
}

.subdivision-description {
    font-size: var(--subhead-size);
    color: var(--medium-gray);
    margin-bottom: var(--sm);
}

.subdivision-stats {
    display: flex;
    flex-direction: column;
    gap: var(--xs);
}

.stat-item {
    font-size: var(--footnote-size);
    color: var(--primary-green);
}

.chevron {
    font-size: 16px;
    color: var(--primary-green);
}

/* Map Section */
.map-section {
    margin-bottom: var(--xl);
}

.map-container {
    position: relative;
    border-radius: var(--radius-large);
    overflow: hidden;
    border: 1px solid rgba(47, 115, 76, 0.1);
    box-shadow: var(--shadow-medium);
}

.map-image {
    width: 100%;
    height: auto;
    display: block;
}

.map-legend {
    position: absolute;
    top: var(--md);
    right: var(--md);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-small);
    padding: var(--sm) var(--md);
    display: flex;
    gap: var(--md);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: var(--xs);
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.legend-dot.available {
    background-color: var(--primary-green);
}

.legend-dot.sold {
    background-color: var(--medium-gray);
}

.legend-text {
    font-size: var(--caption-size);
    color: var(--black);
}

/* Filter Chips */
.filter-chips {
    display: flex;
    gap: var(--sm);
    overflow-x: auto;
    padding-bottom: var(--sm);
}

.filter-chip {
    height: 32px;
    padding: 6px 16px;
    border-radius: var(--radius-large);
    border: 1px solid rgba(47, 115, 76, 0.2);
    background-color: var(--white);
    color: var(--black);
    font-size: var(--callout-size);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.filter-chip.active {
    background-color: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

/* Lots Grid */
.lots-grid {
    display: grid;
    gap: var(--md);
    margin-bottom: var(--xl);
}

.lot-card {
    background-color: var(--white);
    border: 1px solid rgba(47, 115, 76, 0.1);
    border-radius: var(--radius-medium);
    padding: var(--md);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lot-card:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-green);
}

.lot-card.sold {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: var(--light-gray);
}

.lot-info {
    flex: 1;
}

.lot-number {
    font-size: var(--headline-size);
    font-weight: var(--headline-weight);
    color: var(--black);
    margin-bottom: var(--xs);
}

.lot-details {
    font-size: var(--footnote-size);
    color: var(--medium-gray);
}

.lot-price {
    font-size: var(--headline-size);
    font-weight: var(--headline-weight);
    color: var(--white);
    background-color: var(--primary-green);
    padding: 4px 12px;
    border-radius: var(--radius-medium);
    white-space: nowrap;
}

.lot-card.sold .lot-price {
    background-color: var(--medium-gray);
    color: var(--white);
}

/* Progress Container */
.progress-container {
    padding: var(--md);
    background-color: var(--light-gray);
    border-bottom: 1px solid rgba(47, 115, 76, 0.1);
}

.progress-bar {
    width: 100%;
    height: 4px;
    background-color: rgba(47, 115, 76, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: var(--sm);
}

.progress-fill {
    height: 100%;
    background-color: var(--primary-green);
    border-radius: 2px;
    transition: width 0.3s ease;
    width: 12.5%;
}

.progress-text {
    font-size: var(--footnote-size);
    color: var(--medium-gray);
    text-align: center;
}

/* Sidebar */
.sidebar {
    background-color: var(--white);
    border: 1px solid rgba(47, 115, 76, 0.1);
    border-radius: var(--radius-medium);
    margin-bottom: var(--lg);
    box-shadow: var(--shadow-small);
    position: relative;
}

.sidebar-header {
    padding: var(--md);
    border-bottom: 1px solid rgba(47, 115, 76, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-title {
    font-size: var(--headline-size);
    font-weight: var(--headline-weight);
    color: var(--black);
}

.sidebar-toggle {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

.sidebar-content {
    padding: var(--md);
}

.lot-summary {
    margin-bottom: var(--lg);
}

.lot-title {
    font-size: var(--headline-size);
    font-weight: var(--headline-weight);
    color: var(--black);
    margin-bottom: var(--xs);
}

.sidebar .lot-price {
    font-size: var(--title2-size);
    font-weight: var(--title2-weight);
    color: var(--primary-green);
    background: none;
    padding: 0;
}

.selections-summary {
    margin-bottom: var(--lg);
}

.selection-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--sm) 0;
    border-bottom: 1px solid rgba(47, 115, 76, 0.05);
}

.selection-label {
    font-size: var(--subhead-size);
    color: var(--medium-gray);
}

.selection-value {
    font-size: var(--subhead-size);
    color: var(--black);
    font-weight: 500;
}

.selection-price {
    font-size: var(--footnote-size);
    color: var(--primary-green);
}

.total-section {
    border-top: 2px solid var(--primary-green);
    padding-top: var(--md);
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-label {
    font-size: var(--headline-size);
    font-weight: var(--headline-weight);
    color: var(--black);
}

.total-amount {
    font-size: var(--title2-size);
    font-weight: var(--title2-weight);
    color: var(--primary-green);
}

/* Step Content */
.step-content {
    margin-bottom: var(--xl);
}

.step-header {
    text-align: center;
    margin-bottom: var(--xl);
}

.step-title {
    font-size: var(--title2-size);
    font-weight: var(--title2-weight);
    color: var(--black);
    margin-bottom: var(--sm);
}

.step-subtitle {
    font-size: var(--body-size);
    color: var(--medium-gray);
}

.options-grid {
    display: grid;
    gap: var(--md);
}

.option-card {
    background-color: var(--white);
    border: 2px solid rgba(47, 115, 76, 0.1);
    border-radius: var(--radius-medium);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-card:hover {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-medium);
}

.option-card.selected {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-medium);
}

.option-image {
    width: 100%;
    /* height: 150px; */
    background: linear-gradient(135deg, var(--light-gray), var(--accent-light-blush));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--primary-green);
    opacity: 0.7;
}

.option-info {
    padding: var(--md);
}

.option-name {
    font-size: var(--headline-size);
    font-weight: var(--headline-weight);
    color: var(--black);
    margin-bottom: var(--xs);
}

.option-description {
    font-size: var(--subhead-size);
    color: var(--medium-gray);
    margin-bottom: var(--sm);
}

.option-price {
    font-size: var(--headline-size);
    font-weight: var(--headline-weight);
    color: var(--primary-green);
}

/* Footer Actions */
.footer-actions {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-top: 1px solid rgba(47, 115, 76, 0.1);
    padding: var(--md);
    display: flex;
    gap: var(--md);
    z-index: 50;
}

.footer-actions .secondary-button,
.footer-actions .primary-button {
    flex: 1;
}

/* Summary Page Specific */
.summary-section {
    margin-bottom: var(--lg);
}

.summary-title {
    font-size: var(--title3-size);
    font-weight: var(--title3-weight);
    color: var(--black);
    margin-bottom: var(--md);
}

.summary-grid {
    display: grid;
    gap: var(--md);
}

.summary-card {
    background-color: var(--white);
    border: 1px solid rgba(47, 115, 76, 0.1);
    border-radius: var(--radius-medium);
    padding: var(--md);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--sm) 0;
}

.summary-item:not(:last-child) {
    border-bottom: 1px solid rgba(47, 115, 76, 0.05);
}

.email-section {
    background-color: var(--light-gray);
    border-radius: var(--radius-medium);
    padding: var(--lg);
    margin-bottom: var(--xl);
}

.email-input {
    width: 100%;
    padding: 16px var(--md);
    border: 2px solid rgba(47, 115, 76, 0.2);
    border-radius: var(--radius-medium);
    font-size: var(--body-size);
    margin-bottom: var(--md);
    background-color: var(--white);
    transition: border-color 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: var(--primary-green);
}

.email-input::placeholder {
    color: var(--medium-gray);
}

/* Desktop Responsive */
@media (min-width: 768px) {
    .content-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 var(--xl);
        padding-bottom: 100px;
    }
    
    /* Landing page desktop layout */
    .landing-content {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .logo-image {
        height: 100px;
    }
    
    .landing-title {
        font-size: 40px;
    }
    
    .landing-subtitle {
        font-size: 26px;
    }
    
    .landing-description {
        font-size: 18px;
        max-width: 400px;
    }
    
    /* Subdivision and lot pages */
    .subdivision-card {
        max-width: 600px;
        margin: 0 auto var(--lg);
    }
    
    .lots-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--lg);
        max-width: 800px;
        margin: 0 auto;
    }
    
    /* Map section */
    .map-container {
        max-width: 800px;
        margin: 0 auto;
    }
    
    /* Customization layout - two column */
    .customize-desktop-layout {
        display: grid;
        grid-template-columns: 1fr 350px;
        gap: var(--xl);
        align-items: start;
    }
    
    .sidebar {
        position: sticky;
        top: var(--lg);
        margin-bottom: 0;
    }
    
    .step-content {
        margin-bottom: 0;
    }
    
    /* Options grid - 2 columns on desktop */
    .options-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--lg);
    }
    
    /* Footer actions desktop */
    .footer-actions {
        max-width: 1200px;
        margin: 0 auto;
        padding: var(--md) var(--xl);
    }
    
    .footer-actions .secondary-button,
    .footer-actions .primary-button {
        max-width: 200px;
    }
    
    /* Summary page desktop */
    .summary-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--lg);
    }
    
    .email-section {
        max-width: 400px;
        margin: var(--xl) auto;
    }
}

/* Large Desktop */
@media (min-width: 1024px) {
    .content-container {
        padding: 0 var(--xxl);
    }
    
    /* Three column layout for options on large screens */
    .options-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .lots-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1000px;
    }
    
    /* Larger sidebar on big screens */
    .customize-desktop-layout {
        grid-template-columns: 1fr 400px;
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .content-container {
        padding: 0 var(--md);
        padding-bottom: 120px; /* Extra space on mobile for stacked buttons */
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .filter-chips {
        margin-bottom: var(--md);
    }
    
    .footer-actions {
        flex-direction: column;
        gap: var(--sm);
    }
    
    .footer-actions .secondary-button,
    .footer-actions .primary-button {
        width: 100%;
    }
    
    /* Mobile specific overrides */
    .customize-desktop-layout {
        display: block;
    }
    
    .options-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--md);
    }
}

/* SVG Icons */
.icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-farmhouse {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%232F734C' viewBox='0 0 24 24'%3E%3Cpath d='M12 3L2 12h3v8h6v-6h2v6h6v-8h3L12 3zm0 2.414L18 11.414V18h-2v-6H8v6H6v-6.586L12 5.414z'/%3E%3C/svg%3E");
}

.icon-colonial {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%232F734C' viewBox='0 0 24 24'%3E%3Cpath d='M12 2L2 7v10c0 5.55 3.84 10 9 10s9-4.45 9-10V7L12 2zm0 2l6 3.86V17c0 3.53-2.61 6.43-6 6.92V11h-2v12.92c-3.39-.49-6-3.39-6-6.92V7.86L12 4z'/%3E%3C/svg%3E");
}

.icon-craftsman {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%232F734C' viewBox='0 0 24 24'%3E%3Cpath d='M17.5 1.5l-2.6 2.6c-.4.4-.4 1 0 1.4l.7.7-5.3 5.3c-.4-.2-.8-.3-1.3-.3-1.7 0-3 1.3-3 3s1.3 3 3 3 3-1.3 3-3c0-.5-.1-.9-.3-1.3l5.3-5.3.7.7c.4.4 1 .4 1.4 0l2.6-2.6L17.5 1.5zm-4.5 19H3v-8l8-2 2 2v8z'/%3E%3C/svg%3E");
}

.icon-contemporary {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%232F734C' viewBox='0 0 24 24'%3E%3Cpath d='M3 21h18v-2H3v2zm0-4h18v-2H3v2zm0-4h18v-2H3v2zm0-4h18V7H3v2zm0-6v2h18V3H3z'/%3E%3C/svg%3E");
}

.icon-blue {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%234A90E2' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3C/svg%3E");
}

.icon-green {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%232F734C' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3C/svg%3E");
}

.icon-gray {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%238E8E93' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3C/svg%3E");
}

.icon-white {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FFFFFF' stroke='%232F734C' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3C/svg%3E");
}

.icon-floorplan-compact {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%232F734C' viewBox='0 0 24 24'%3E%3Cpath d='M3 3h8v8H3V3zm10 0h8v8h-8V3zM3 13h8v8H3v-8zm10 0h8v8h-8v-8z'/%3E%3C/svg%3E");
}

.icon-floorplan-standard {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%232F734C' viewBox='0 0 24 24'%3E%3Cpath d='M3 3h6v6H3V3zm8 0h6v6h-6V3zm8 0h2v6h-2V3zM3 11h6v6H3v-6zm8 0h6v6h-6v-6zm8 0h2v6h-2v-6zM3 19h6v2H3v-2zm8 0h6v2h-6v-2zm8 0h2v2h-2v-2z'/%3E%3C/svg%3E");
}

.icon-floorplan-premium {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%232F734C' viewBox='0 0 24 24'%3E%3Cpath d='M2 2h5v5H2V2zm7 0h5v5H9V2zm7 0h4v5h-4V2zM2 9h5v5H2V9zm7 0h5v5H9V9zm7 0h4v5h-4V9zM2 16h5v6H2v-6zm7 0h5v6H9v-6zm7 0h4v6h-4v-6z'/%3E%3C/svg%3E");
}

.icon-kitchen {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%232F734C' viewBox='0 0 24 24'%3E%3Cpath d='M18 2.01L6 2c-1.1 0-2 .89-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.11-.9-1.99-2-1.99zM18 20H6v-9.02h12V20zm0-11H6V4h12v5zM8 5h2v3H8zm3 0h2v3h-2zm3 0h2v3h-2z'/%3E%3C/svg%3E");
}

.icon-bathroom {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%232F734C' viewBox='0 0 24 24'%3E%3Cpath d='M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16zM6 15h12v3H6zm1-9h10c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2z'/%3E%3C/svg%3E");
}

.icon-flooring {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%232F734C' viewBox='0 0 24 24'%3E%3Cpath d='M3 3h4v4H3V3zm6 0h4v4H9V3zm6 0h4v4h-4V3zM3 9h4v4H3V9zm6 0h4v4H9V9zm6 0h4v4h-4V9zM3 15h4v4H3v-4zm6 0h4v4H9v-4zm6 0h4v4h-4v-4z'/%3E%3C/svg%3E");
}

.icon-chandelier-black {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000000' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.69 2 6 4.69 6 8c0 1.67.69 3.18 1.8 4.27L12 16.5l4.2-4.23C17.31 11.18 18 9.67 18 8c0-3.31-2.69-6-6-6zm0 8c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z'/%3E%3C/svg%3E");
}

.icon-chandelier-gold {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FFD700' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.69 2 6 4.69 6 8c0 1.67.69 3.18 1.8 4.27L12 16.5l4.2-4.23C17.31 11.18 18 9.67 18 8c0-3.31-2.69-6-6-6zm0 8c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z'/%3E%3C/svg%3E");
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.screen.active {
    animation: fadeIn 0.3s ease-out;
}