/* public/css/style.css */

/* 1. Google Fonts: Prompt and Noto Sans Thai */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@300;400;500;600;700;800&family=Prompt:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --primary: #0D3B7A;            /* Primary Navy */
    --primary-dark: #07254f;       /* Darker Navy for hover */
    --primary-light: #e8eef6;      /* Light Navy */
    --accent: #D6B37F;             /* Gold Accent */
    --accent-dark: #c19b64;        /* Gold Hover */
    --accent-light: #fdfaf5;       /* Light Gold Accent Areas */
    
    /* Secondary Blue */
    --secondary: #4A90E2;          /* Secondary Ocean Blue */
    --secondary-dark: #2774cf;
    --secondary-light: #f0f7fe;
    
    /* Neutral & Backgrounds */
    --background: #F8FAFC;         /* Soft Background */
    --surface: #FFFFFF;            /* White for Cards, Forms, etc. */
    --border: #E2E8F0;             /* Clean slate-grey border */
    
    /* Typography colors */
    --text-main: #1E293B;          /* Dark Slate body text */
    --text-heading: #0D3B7A;       /* Ocean Blue Headings */
    --text-muted: #64748B;         /* Muted Slate text */
    
    /* Shadow tokens */
    --shadow-sm: 0 4px 12px rgba(13, 59, 122, 0.03);
    --shadow-md: 0 10px 30px rgba(13, 59, 122, 0.06);
    --shadow-lg: 0 20px 50px rgba(13, 59, 122, 0.1); /* Luxury floating card */
    
    /* Border Radius tokens */
    --radius-sm: 10px;
    --radius-md: 16px;             /* Buttons & standard containers (16px) */
    --radius-lg: 20px;             /* Property Cards */
    --radius-xl: 24px;             /* Hero search card */
    
    /* Status / Feedback Colors */
    --danger: #EF4444;
    --danger-light: #FEE2E2;
    --warning: #F59E0B;
    --warning-light: #FEF3C7;
    --success: #22C55E;
    --success-light: #DCFCE7;

    /* Transition */
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: 'Prompt', 'Noto Sans Thai', system-ui, -apple-system, sans-serif;
    background-color: var(--background);
    color: var(--text-main);
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Prompt', 'Noto Sans Thai', sans-serif;
    color: var(--text-heading);
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

/* Base Layout Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

/* --- HEADER & NAVIGATION --- */
header {
    background-color: var(--surface); /* #FFFFFF */
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px; /* Height: 80px */
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-title {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.logo-subtitle {
    font-size: 0.68rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-top: 1px;
}

.logo svg, .logo-img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    border-radius: 4px;
}

.nav-center {
    display: none; /* Hidden on mobile */
}

@media(min-width: 768px) {
    .nav-center {
        display: flex;
        align-items: center;
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nav-item {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
}

.nav-item:hover {
    color: var(--accent); /* Sky Blue Hover */
}

.nav-fav {
    display: inline-flex;
    align-items: center;
    color: var(--text-main);
}

.nav-fav:hover {
    color: var(--accent);
}

/* Button Design */
.nav-btn, .btn-primary {
    background-color: var(--accent); /* #4CA9FF Primary Sky Blue */
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md); /* 14px */
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px 0 rgba(76, 169, 255, 0.3); /* Soft Blue Shadow */
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.nav-btn:hover, .btn-primary:hover {
    background-color: var(--accent-dark); /* #3898F5 */
    box-shadow: 0 6px 20px 0 rgba(76, 169, 255, 0.45);
    transform: translateY(-1px);
}

.nav-btn-outline, .btn-secondary {
    background-color: var(--surface); /* #FFFFFF */
    color: var(--primary); /* #173B6B */
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--border); /* 1px solid #DDE5EE */
    border-radius: var(--radius-md); /* 14px */
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.nav-btn-outline:hover, .btn-secondary:hover {
    background-color: #F8FAFC; /* #F8FAFC */
    border-color: #cbd5e1;
}

/* User dropdown trigger details */
.user-profile-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    background: var(--background);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    border: 1px solid var(--border);
    font-size: 0.85rem;
}

.user-profile-menu:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
}

/* --- STICKY SEARCH BAR --- */
.search-hero {
    background: linear-gradient(rgba(13, 59, 122, 0.45), rgba(13, 59, 122, 0.45)), url('../images/Cover.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 8rem 0 10rem 0;
    text-align: center;
    position: relative;
}

.search-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.search-hero p {
    color: #f1f5f9;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    font-weight: 500;
}

.search-sticky-container {
    background: rgba(255, 255, 255, 0.85); /* Glassmorphism */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-xl); /* 24px */
    box-shadow: var(--shadow-lg); /* Luxury Floating Card */
    padding: 2rem;
    margin: -5.5rem auto 4rem auto;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.search-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media(min-width: 768px) {
    .search-grid {
        grid-template-columns: repeat(4, 1fr) auto;
    }
}

.search-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    text-align: left;
}

.search-field label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.search-field select,
.search-field input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    outline: none;
    transition: var(--transition);
}

.search-field select:focus,
.search-field input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px var(--accent-light);
}

.search-field-range {
    display: flex;
    gap: 0.35rem;
    align-items: center;
    width: 100%;
}

.search-field-range input {
    flex: 1;
    min-width: 0;
}

.search-btn {
    background-color: var(--secondary);
    color: white;
    border: none;
    border-radius: var(--radius-md); /* 16px */
    padding: 0.85rem 2.25rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    align-self: flex-end;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 14px 0 rgba(74, 144, 226, 0.3); /* Soft Blue Shadow */
}

.search-btn:hover {
    background-color: var(--secondary-dark);
    box-shadow: 0 6px 20px 0 rgba(74, 144, 226, 0.45);
    transform: translateY(-1px);
}

/* --- PROPERTY LISTINGS GRID --- */
.section-title {
    font-size: 1.65rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    position: relative;
    color: var(--text-heading); /* Navy Title */
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
    gap: 1.75rem;
    margin-bottom: 4rem;
}

/* --- PROPERTY CARD --- */
.property-card {
    background: var(--surface); /* White */
    border-radius: var(--radius-lg); /* 20px */
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.property-card:hover {
    transform: translateY(-8px); /* Lift 8px */
    box-shadow: var(--shadow-lg); /* Smooth transition */
}

.property-image-container {
    width: 100%;
    aspect-ratio: 16/9; /* 16:9 Image Ratio */
    position: relative;
    background-color: #cbd5e1;
    overflow: hidden;
}

.property-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.property-card:hover .property-image-container img {
    transform: scale(1.06);
}

/* Status Badge */
.status-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

/* Status Colors */
.status-available { background-color: #DCFCE7; color: #22C55E; }
.status-reserved { background-color: #FEF3C7; color: #F59E0B; }
.status-rented { background-color: #FEE2E2; color: #EF4444; }
.status-closed { background-color: #F1F5F9; color: #94A3B8; }

/* Favorite button overlay */
.fav-btn-overlay {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.fav-btn-overlay:hover {
    background: white;
    transform: scale(1.1);
}

.fav-btn-overlay svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--text-main);
    stroke-width: 2.2;
    transition: var(--transition);
}

.fav-btn-overlay.is-fav svg {
    fill: #EF4444;
    stroke: #EF4444;
}

.property-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.property-card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.property-card-meta .bullet {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--text-muted);
}

.property-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    color: var(--text-heading); /* Navy Headings */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.property-card-specs {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    margin-top: auto;
}

.property-card-spec-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.property-card-price-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

.property-card-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary); /* Navy Price */
}

.property-card-price span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* Mock gradient background for no-image states */
.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light) 0%, #cbd5e1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder svg {
    width: 48px;
    height: 48px;
    color: var(--primary);
    opacity: 0.4;
}

/* --- FRONTEND FORM STYLES --- */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="date"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    outline: none;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

/* --- ALERTS & FLASH MESSAGES --- */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-left: 4px solid transparent;
}

.alert-success {
    background-color: #DCFCE7;
    color: #22C55E;
    border-left-color: #22C55E;
}

.alert-error {
    background-color: #FEE2E2;
    color: #EF4444;
    border-left-color: #EF4444;
}

/* --- FOOTER --- */
footer {
    background: var(--primary); /* Navy Footer */
    color: #cbd5e1;
    padding: 4.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
    margin-top: auto;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

@media(min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-logo {
    color: white;
    font-weight: 800;
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Section Alternate backgrounds helper */
.section-sand {
    background-color: var(--background);
}

.section-white {
    background-color: var(--surface);
}

/* --- SEARCH TAB NAV --- */
.search-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    justify-content: flex-start;
}
.search-tab {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-main);
    transition: var(--transition);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.search-tab:hover, .search-tab.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* --- INDICATORS BELOW SEARCH --- */
.indicators-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 3.5rem;
}
@media(min-width: 768px) {
    .indicators-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}
.indicator-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.indicator-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.indicator-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.indicator-icon svg {
    width: 20px;
    height: 20px;
}
.indicator-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 0.15rem;
}
.indicator-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --- POPULAR CATEGORIES --- */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}
@media(min-width: 992px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.category-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition);
}
.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.category-card:hover img {
    transform: scale(1.05);
}
.category-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(13, 59, 122, 0.95) 0%, rgba(13, 59, 122, 0.4) 60%, transparent 100%);
    padding: 1.25rem;
    color: white;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.category-card-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.15rem;
}
.category-card-info span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
}
.category-icon-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.category-icon-btn svg {
    width: 16px;
    height: 16px;
}

/* --- FLAG ICONS --- */
.flag-icon {
    width: 20px !important;
    height: 20px !important;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}
.flag-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* --- LANGUAGE SWITCHER --- */
.lang-switcher {
    position: relative;
}

.lang-switcher-btn {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.65rem;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 50px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    transition: var(--transition);
}

.lang-switcher-btn:hover {
    background: var(--primary-light);
    border-color: var(--primary);
}

.lang-switcher-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    min-width: 150px;
    z-index: 200;
    overflow: hidden;
}

.lang-switcher.open .lang-switcher-dropdown {
    display: block;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    transition: var(--transition);
}

.lang-option:hover {
    background: var(--primary-light);
}

.lang-option.active {
    background: var(--primary);
    color: white;
    font-weight: 700;
}

@media (max-width: 767px) {
    .lang-switcher-label {
        display: none;
    }

    .lang-switcher-btn {
        padding: 0.4rem 0.5rem;
    }
}

/* --- NAV LINKS (Dashboard header) --- */
.nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    list-style: none;
}

/* --- RESPONSIVE FRONTEND HEADER --- */
@media (max-width: 767px) {
    .header-container {
        height: 60px;
    }

    .logo-title {
        font-size: 1.05rem;
    }

    .logo-subtitle {
        display: none;
    }

    .logo-img {
        width: 24px;
        height: 24px;
    }

    .nav-right {
        gap: 0.5rem;
    }

    .nav-right .nav-fav span {
        display: none;
    }

    .nav-right .nav-btn,
    .nav-right .nav-btn-outline {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    .search-hero {
        padding: 4rem 0 6rem 0;
    }

    .search-hero h1 {
        font-size: 1.75rem;
    }

    .search-hero p {
        font-size: 1rem;
    }

    .search-sticky-container {
        padding: 1.25rem;
        margin-top: -3.5rem;
    }

    .section-title {
        font-size: 1.25rem;
    }
}

/* --- MOBILE BOTTOM NAVIGATION --- */
.mobile-bottom-nav {
    display: none;
}
@media(max-width: 767px) {
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        border-top: 1px solid var(--border);
        box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
        z-index: 999;
        justify-content: space-around;
        padding: 0.5rem 0;
    }
    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
        color: var(--text-muted);
        font-size: 0.7rem;
        font-weight: 600;
        text-align: center;
    }
    .mobile-nav-item.active {
        color: var(--primary);
    }
    .mobile-nav-item svg {
        width: 20px;
        height: 20px;
    }
    body {
        padding-bottom: 60px; /* Space for mobile nav */
    }
}

/* --- SPECIFICATIONS GRID --- */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    box-shadow: var(--shadow-sm);
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

@media(min-width: 576px) {
    .spec-item {
        border-bottom: none;
    }
}

.spec-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.spec-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
}

