/* ==========================================================================
   LET LET 1 - LUXURY ARCHITECTURAL B2B LANDING PAGE
   ========================================================================== */

/* --- 1. DESIGN VARIABLES & TOKENS --- */
:root {
    /* Bright Luxury Palette */
    --bg-white: #ffffff;
    --bg-offwhite: #fbfaf9;
    --bg-warm: #f4f1ec;
    
    /* Elegant Dark Accents */
    --text-dark: #111111;
    --text-body: #4a4a4a;
    --text-light: #7a7a7a;
    
    /* Brand Accents */
    --accent-navy: #0f172a;
    --accent-gold: #c5a059;
    
    /* Luxury Soft Gradients */
    --gradient-bg-light: linear-gradient(180deg, #ffffff 0%, #faf8f5 100%);
    --gradient-gold: linear-gradient(135deg, #d8b77a 0%, #b5924d 100%);
    --gradient-gold-hover: linear-gradient(135deg, #e4c489 0%, #c4a159 100%);
    --gradient-navy: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    --gradient-navy-hover: linear-gradient(135deg, #161e2d 0%, #0c1222 100%);
    
    /* Borders & Shadows */
    --border-light: #e5e5e5;
    --shadow-lux: 0 20px 40px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 30px 60px rgba(0, 0, 0, 0.08);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.25, 1);
}

/* --- 2. CSS RESET & GLOBAL SETUP --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-white);
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--bg-white);
    overflow-x: hidden;
    line-height: 1.7;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

input, select, textarea, button {
    font-family: inherit;
    outline: none;
    border: none;
}

/* --- 3. MINIMALIST NAVIGATION HEADER --- */
.main-header {
    position: relative;
    width: 100%;
    padding: 30px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    z-index: 100;
}

.header-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
}

.logo img, .logo-img {
    height: 42px !important;
    max-height: 42px !important;
    width: auto !important;
    display: inline-block;
    object-fit: contain;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 1px;
    line-height: 1.1;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--accent-gold);
    margin-top: 2px;
}

.nav-menu ul {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

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

.nav-link:hover::after {
    width: 100%;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 16px 32px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: 0; /* Sharp architectural edges */
}

.btn-primary {
    background: var(--gradient-navy);
    color: var(--bg-white);
    border: 1px solid var(--accent-navy);
}

.btn-primary:hover {
    background: var(--gradient-navy-hover);
    border-color: var(--text-dark);
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--bg-white);
    border: 1px solid var(--accent-gold);
}

.btn-gold:hover {
    background: var(--gradient-gold-hover);
    border-color: #d8b77a;
    color: var(--bg-white);
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 24px;
    background: var(--gradient-gold);
    color: var(--bg-white) !important;
    border: 1px solid var(--accent-gold);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.nav-btn:hover {
    background: var(--gradient-gold-hover);
    border-color: #d8b77a;
    color: var(--bg-white) !important;
    transform: translateY(-1px);
}

.nav-btn-secondary {
    background: transparent !important;
    color: var(--accent-navy) !important;
    border: 1px solid var(--accent-navy) !important;
}

.nav-btn-secondary:hover {
    background: var(--accent-navy) !important;
    color: var(--bg-white) !important;
    border-color: var(--accent-navy) !important;
}

.btn-secondary {
    background: transparent;
    color: var(--accent-navy);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    border-color: var(--accent-navy);
    background: var(--bg-offwhite);
}

/* --- 4. LUXURY HERO SECTION --- */
.hero-section {
    padding: 80px 0;
    background: var(--gradient-bg-light);
}

.hero-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 600;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-body);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.hero-visual {
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lux);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s ease;
}

.hero-visual:hover .hero-image {
    transform: scale(1.05);
}

/* --- 5. METRICS SECTION --- */
.metrics-bar {
    background: var(--bg-offwhite);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 60px 0;
}

.metrics-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.metric-item {
    text-align: center;
}

.metric-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent-navy);
}

.metric-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-top: 8px;
}

/* --- 6. FLAGSHIP FOCUS SECTION --- */
.flagship-section {
    padding: 120px 0;
    background: var(--bg-white);
}

.flagship-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.flagship-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    box-shadow: var(--shadow-lux);
}

.flagship-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.luxury-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--bg-white);
    color: var(--accent-navy);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 20px 30px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lux);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.section-subtitle-lux {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.section-desc {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-body);
    margin-bottom: 20px;
}

.luxury-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.luxury-list li {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-body);
    padding-left: 20px;
    position: relative;
}

.luxury-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--accent-gold);
    border-radius: 50%;
}

.luxury-list strong {
    font-weight: 600;
    color: var(--text-dark);
}

/* --- FAST ORDER SECTION --- */
.order-section {
    padding: 80px 0;
    background: var(--bg-warm);
}

.order-container-main {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
}

.iglica-order-wrapper {
    --primary: var(--accent-gold);
    --primary-hover: #b38b41;
    --text-main: var(--text-dark);
    --text-muted: var(--text-light);
    --border-color: var(--border-light);
    
    font-family: var(--font-body);
    width: 100%;
}

.iglica-order-wrapper * {
    box-sizing: border-box;
}

.iglica-order-wrapper .order-container {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 40px;
    box-shadow: var(--shadow-lux);
    color: var(--text-main);
}

.iglica-order-wrapper .header {
    text-align: center;
    margin-bottom: 30px;
}

.iglica-order-wrapper .price-badge {
    background: var(--bg-offwhite);
    border: 1px solid var(--border-color);
    color: var(--accent-navy);
    padding: 12px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 1.5;
}

.iglica-order-wrapper .price-badge b {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    display: block;
    margin-bottom: 4px;
    color: var(--accent-gold);
}

.iglica-order-wrapper .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.iglica-order-wrapper .form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.iglica-order-wrapper .form-control {
    width: 100%;
    padding: 14px 16px;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
    outline: none;
}

.iglica-order-wrapper .form-control:focus {
    border-color: var(--accent-navy);
    background: var(--bg-offwhite);
}

.iglica-order-wrapper .quantity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.iglica-order-wrapper .quantity-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.iglica-order-wrapper textarea.form-control {
    height: 100px;
    resize: none;
}

.iglica-order-wrapper .submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--gradient-gold);
    color: #fff;
    border: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 10px;
}

.iglica-order-wrapper .submit-btn:hover {
    background: var(--gradient-gold-hover);
    transform: translateY(-1px);
}

#successModal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}

#successModal .modal-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 0;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: var(--shadow-lux);
}

#successModal .modal-icon { 
    width: 60px; 
    height: 60px; 
    background: var(--accent-gold); 
    color: #fff; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 28px; 
    margin: 0 auto 20px; 
}

#successModal h3 { 
    font-family: var(--font-heading);
    font-size: 1.8rem; 
    margin-bottom: 12px; 
    color: var(--text-dark); 
}

#successModal p { 
    color: var(--text-body); 
    font-size: 0.95rem; 
    margin-bottom: 30px; 
}

#successModal .modal-close-btn { 
    background: var(--accent-navy); 
    color: #fff; 
    border: none; 
    padding: 16px; 
    width: 100%; 
    font-family: var(--font-body);
    font-weight: 600; 
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer; 
    transition: var(--transition-smooth);
}

#successModal .modal-close-btn:hover {
    background: var(--text-dark);
}

/* --- 7. PRODUCTS COLLECTION --- */
.products-section {
    padding: 100px 0 120px 0;
    background: var(--bg-offwhite);
}

.section-header-center {
    text-align: center;
    margin-bottom: 80px;
}

.section-header-center .section-title {
    margin-bottom: 16px;
}

.section-header-center .section-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-light);
}

.products-grid {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.product-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.product-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.card-image-box {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-bottom: 1px solid var(--border-light);
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .card-image {
    transform: scale(1.03);
}

.card-content {
    padding: 40px 30px;
}

.card-meta {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.card-description {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-body);
}

/* --- 8. QUALITY SECTION --- */
.quality-section {
    padding: 120px 0;
    background: var(--bg-white);
}

.quality-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.specs-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.spec-item h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-navy);
    margin-bottom: 8px;
}

.spec-item p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-body);
}

.quality-visual {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: var(--bg-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.brand-statement {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--accent-navy);
    text-align: center;
}

/* --- 9. CONTACT FORM --- */
.contact-section {
    padding: 120px 0;
    background: var(--bg-offwhite);
    border-top: 1px solid var(--border-light);
}

.contact-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact-info .section-subtitle {
    margin-bottom: 40px;
    color: var(--text-body);
    font-weight: 300;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.channel-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.channel-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--accent-gold);
}

.channel-link, .channel-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-dark);
}

.channel-link:hover {
    color: var(--accent-navy);
}

.contact-form-wrapper {
    background: var(--bg-white);
    padding: 50px;
    box-shadow: var(--shadow-lux);
    border: 1px solid var(--border-light);
}

.luxury-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: transparent;
    border: 1px solid var(--border-light);
    padding: 14px 16px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-navy);
    background: var(--bg-offwhite);
}

.btn-submit {
    background: var(--accent-navy);
    color: var(--bg-white);
    padding: 18px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 10px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-submit:hover {
    background: var(--text-dark);
}

/* --- 10. FOOTER --- */
.main-footer {
    background: var(--accent-navy);
    color: var(--bg-white);
    padding: 80px 0 40px 0;
}

.footer-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-brand .logo {
    color: var(--bg-white);
    margin-bottom: 20px;
}

.footer-brand .logo .logo-title {
    color: var(--bg-white);
}

.footer-desc {
    max-width: 400px;
    font-weight: 300;
    color: #cbd5e1;
    margin-bottom: 60px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 300;
}

/* --- 11. RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero-container,
    .flagship-container,
    .quality-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .main-header {
        padding: 15px 0;
    }

    .logo-img {
        height: 32px !important;
        max-height: 32px !important;
    }

    .logo-title {
        font-size: 1.2rem !important;
        white-space: nowrap;
    }

    .logo-sub {
        font-size: 0.55rem !important;
        letter-spacing: 1.5px !important;
    }

    .header-cta .btn {
        padding: 8px 14px !important;
        font-size: 0.72rem !important;
        letter-spacing: 0.5px !important;
        white-space: nowrap;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .metrics-container {
        flex-direction: column;
        gap: 30px;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-container {
        gap: 40px;
    }

    .channel-link, .channel-text {
        font-size: 1.1rem !important;
        word-break: break-all;
    }

    .contact-form-wrapper {
        padding: 24px 20px;
    }

    .main-footer {
        padding: 60px 0 30px 0;
    }
}

/* --- 12. PRODUCT DETAIL PAGES --- */
.product-detail-hero {
    padding: 60px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
}

.breadcrumbs {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto 30px auto;
    font-size: 0.85rem;
    color: var(--text-light);
}

.breadcrumbs a {
    color: var(--text-dark);
    font-weight: 500;
}

.breadcrumbs a:hover {
    color: var(--accent-gold);
}

.breadcrumbs span {
    margin: 0 8px;
}

.product-detail-grid {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: start;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-main {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lux);
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-thumb {
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.gallery-thumb:hover {
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.product-info-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-badge {
    align-self: start;
    background: var(--bg-warm);
    color: var(--accent-gold);
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.product-detail-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.product-detail-desc {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.8;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.specs-table tr {
    border-bottom: 1px solid var(--border-light);
}

.specs-table td {
    padding: 14px 0;
    font-size: 0.95rem;
}

.specs-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
    width: 40%;
}

.specs-table td:last-child {
    color: var(--text-body);
}

.detail-cta-block {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.product-info-sections {
    padding: 80px 0;
    background: var(--bg-offwhite);
}

.info-section-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.info-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    align-items: center;
}

.info-block:nth-child(even) {
    direction: rtl;
}

.info-block:nth-child(even) .info-text {
    direction: ltr;
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-text-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.info-text-p {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.8;
}

.lux-bullet-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.lux-bullet-list li {
    position: relative;
    padding-left: 24px;
    font-size: 0.95rem;
    color: var(--text-body);
}

.lux-bullet-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

.info-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lux);
}

@media (max-width: 1024px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gallery-main {
        height: 400px;
    }
    
    .info-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .info-block:nth-child(even) {
        direction: ltr;
    }
}

.card-action-link {
    display: inline-block;
    margin-top: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent-gold);
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.card-action-link:hover {
    color: var(--accent-navy);
    transform: translateX(4px);
}

/* --- 10. LANGUAGE SWITCHER --- */
.lang-switcher-container {
    display: inline-flex;
    align-items: center;
    background: var(--bg-offwhite);
    border: 1px solid var(--border-light);
    border-radius: 30px;
    padding: 4px;
    margin-left: 20px;
}
.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-body);
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}
.lang-btn.active {
    background: var(--bg-white);
    color: var(--accent-gold);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.lang-btn:hover:not(.active) {
    color: var(--accent-navy);
}
.lang-sep {
    display: none;
}

/* Mobile Adjustments for Language Switcher */
@media (max-width: 768px) {
    .lang-switcher-container {
        margin-left: 10px;
        padding: 2px;
    }
    .lang-btn {
        padding: 4px 8px;
        font-size: 0.65rem;
    }
}

/* Hide Google Translate UI completely (Updated for new Google classes) */
iframe.goog-te-banner-frame,
.goog-te-banner-frame,
iframe.skiptranslate,
.VIpgJd-ZVi9od-ORHb-OEVmcd,
#goog-gt-tt {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}
body {
    top: 0px !important;
    position: static !important;
}
.goog-tooltip {
    display: none !important;
}
.goog-tooltip:hover {
    display: none !important;
}
.goog-text-highlight {
    background-color: transparent !important;
    border: none !important; 
    box-shadow: none !important;
}
#google_translate_element {
    position: absolute;
    top: -9999px;
    left: -9999px;
    width: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
    z-index: -999;
    pointer-events: none;
}
