/* ==========================================================================
   premium style sheet - telekung premium sales page
   color palette: cream, beige, soft gold, charcoal, white
   ========================================================================== */

/* 1. CSS VARIABLES & RESET */
:root {
    --primary-bg: #FCF9F4;      /* Soft Cream */
    --secondary-bg: #FFFFFF;    /* Pure White */
    --accent-gold: #C5A880;     /* Muted Premium Gold */
    --accent-gold-dark: #A68A62;/* Darker Gold for Hover */
    --accent-gold-light: #F4EFE6;/* Very Light Gold for highlight backgrounds */
    --text-dark: #2C2C2C;       /* Soft Charcoal for legibility */
    --text-muted: #666666;      /* Muted grey for subtexts */
    --border-color: #E6DFD5;    /* Soft beige borders */
    --shadow-sm: 0 2px 4px rgba(197, 168, 128, 0.08);
    --shadow-md: 0 8px 24px rgba(197, 168, 128, 0.12);
    --shadow-lg: 0 16px 36px rgba(197, 168, 128, 0.16);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

a {
    color: inherit;
    text-decoration: none;
}

/* 2. REUSABLE UTILITIES & BASE COMPONENTS */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.text-gold { color: var(--accent-gold); }

.section-header {
    margin-bottom: 40px;
}

.section-tag {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    display: inline-block;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
    text-align: center;
    gap: 8px;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(197, 168, 128, 0.4);
}

.btn-primary:hover {
    background-color: var(--accent-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 168, 128, 0.5);
}

.btn-secondary {
    background-color: var(--text-dark);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover {
    background-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background-color: var(--accent-gold-light);
    border-color: var(--accent-gold);
}

.btn-block {
    display: flex;
    width: 100%;
}

.required {
    color: #D32F2F;
    margin-left: 2px;
}

/* 3. HEADER NAVBAR */
.header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

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

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

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    color: var(--text-dark);
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--accent-gold);
    margin-top: 2px;
}

.nav-menu {
    display: none; /* Hide on mobile by default */
}

.btn-nav {
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    background-color: var(--accent-gold-light);
    color: var(--accent-gold-dark);
}

.btn-nav:hover {
    background-color: var(--accent-gold);
    color: #FFFFFF;
}

/* 4. HERO SECTION */
.hero-section {
    position: relative;
    padding: 40px 0;
    background-color: var(--secondary-bg);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background-color: var(--accent-gold-light);
    color: var(--accent-gold-dark);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-trust-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-trust-badges svg {
    color: var(--accent-gold);
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: var(--primary-bg);
}

.hero-img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    transition: transform 0.5s ease;
}

.hero-img:hover {
    transform: scale(1.03);
}

/* 5. TRUST SECTION */
.trust-section {
    padding: 60px 0;
    background-color: var(--primary-bg);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.trust-card {
    background-color: var(--secondary-bg);
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(197, 168, 128, 0.05);
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(197, 168, 128, 0.2);
}

.trust-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--accent-gold-light);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.trust-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.trust-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* 6. PILIH DESIGN & WARNA SECTION */
.selection-section {
    padding: 60px 0;
    background-color: var(--secondary-bg);
}

.product-configurator {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

/* Gallery styles */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-image-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background-color: var(--primary-bg);
    border: 1px solid var(--border-color);
}

.main-product-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.main-image-container:hover .main-product-img {
    transform: scale(1.05);
}

.zoom-hint {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #FFFFFF;
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 5px;
    pointer-events: none;
}

.gallery-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 0 5px;
}

.gallery-badge-design {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.gallery-badge-color {
    font-size: 0.85rem;
    background-color: var(--accent-gold-light);
    color: var(--accent-gold-dark);
    padding: 4px 10px;
    border-radius: 5px;
    font-weight: 500;
}

/* Options configurator styles */
.product-options {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.option-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.02em;
}

/* Design Grid Selector */
.design-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.design-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background-color: var(--primary-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: left;
}

.design-card.active {
    background-color: var(--accent-gold-light);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-sm);
}

.design-thumb-wrap {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background-color: var(--secondary-bg);
    border: 1px solid var(--border-color);
}

.design-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.design-info {
    display: flex;
    flex-direction: column;
}

.design-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.design-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Color Swatches Styles */
.color-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.selected-color-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-gold-dark);
}

.swatches-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.swatch-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 5px 0;
}

.swatch-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
}

/* Add white border inside for dark backgrounds or dark borders for white backgrounds */
.swatch-circle::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.swatch-btn.active .swatch-circle::after {
    border-color: var(--accent-gold);
}

.swatch-btn.active .swatch-circle {
    transform: scale(1.1);
}

.swatch-name-tooltip {
    display: none; /* Tooltip style option, we will show active color in text header */
}

.swatch-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
    max-width: 60px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

.swatch-btn.active .swatch-label {
    color: var(--text-dark);
    font-weight: 700;
}

/* Quantity Selector */
.quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border-color);
    background-color: var(--primary-bg);
    border-radius: var(--border-radius-md);
    width: 140px;
    overflow: hidden;
}

.qty-btn {
    background: none;
    border: none;
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.qty-btn:hover {
    background-color: var(--accent-gold-light);
}

.quantity-selector input {
    width: 50px;
    border: none;
    background: none;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    outline: none;
}

/* 7. HARGA DAN PROMOSI SECTION */
.promo-section {
    padding: 60px 0;
    background-color: var(--primary-bg);
}

.promo-box {
    background: linear-gradient(135deg, #2C2C2C 0%, #151515 100%);
    color: #FFFFFF;
    padding: 30px 15px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    position: relative;
    overflow: hidden;
}

.promo-box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-color: var(--accent-gold);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(40px);
}

.promo-badge-tag {
    display: inline-block;
    background-color: var(--accent-gold);
    color: #2C2C2C;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
}

.promo-info h2 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    line-height: 1.25;
    margin-bottom: 15px;
}

.promo-info p {
    color: #CCCCCC;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.price-old {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #999999;
}

.price-new {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.price-save {
    font-size: 0.8rem;
    background-color: #D32F2F;
    color: #FFFFFF;
    padding: 3px 10px;
    border-radius: 50px;
    font-weight: 700;
}

.promo-countdown {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 168, 128, 0.2);
    padding: 20px 10px;
    border-radius: var(--border-radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.promo-countdown h3 {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--accent-gold-light);
}

.countdown-display {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    justify-content: center;
    width: 100%;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 65px;
    min-width: 48px;
}

.countdown-val {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    padding: 6px 0;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.countdown-label {
    font-size: 0.65rem;
    color: #AAAAAA;
    margin-top: 4px;
}

.promo-meta {
    font-size: 0.8rem;
    color: #999999;
}

/* 8. TESTIMONI PELANGGAN SECTION */
.testimonials-section {
    padding: 60px 0;
    background-color: var(--secondary-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.testimonial-card {
    background-color: var(--primary-bg);
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--accent-gold);
    color: #FFFFFF;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.user-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
}

.user-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* 9. FAQ SECTION */
.faq-section {
    padding: 60px 0;
    background-color: var(--primary-bg);
}

.faq-container {
    max-width: 800px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 10px 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.faq-item[open] {
    box-shadow: var(--shadow-md);
    border-color: var(--accent-gold);
}

.faq-question {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    padding: 10px 0;
    list-style: none; /* Hide default arrow */
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}

/* Custom indicator arrow */
.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--accent-gold);
    transition: var(--transition-smooth);
    font-weight: 400;
}

.faq-item[open] .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-question::-webkit-details-marker {
    display: none; /* Webkit browser support */
}

.faq-answer {
    padding: 10px 0 15px 0;
    border-top: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* 10. CHECKOUT SECTION */
.checkout-section {
    padding: 60px 0;
    background-color: var(--secondary-bg);
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.checkout-form {
    background-color: var(--primary-bg);
    border: 1px solid var(--border-color);
    padding: 30px 20px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.form-section-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--accent-gold-light);
    padding-bottom: 8px;
}

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

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

.form-group input,
.form-group select {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    background-color: #FFFFFF;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition-smooth);
    width: 100%;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

/* Courier custom selection cards */
.courier-selection {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.courier-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    padding: 15px;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.courier-card.active {
    border-color: var(--accent-gold);
    background-color: var(--accent-gold-light);
}

.courier-card input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-gold);
    cursor: pointer;
}

.courier-info {
    display: flex;
    flex-direction: column;
}

.courier-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.courier-price {
    font-size: 0.85rem;
    color: var(--accent-gold-dark);
    font-weight: 700;
}

/* Order Summary Card */
.order-summary-box {
    background-color: var(--primary-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    align-self: start;
    position: sticky;
    top: 100px;
}

.summary-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.summary-item-preview {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.summary-item-preview img {
    width: 70px;
    height: 70px;
    border-radius: var(--border-radius-sm);
    object-fit: cover;
    border: 1px solid var(--border-color);
    background-color: #FFFFFF;
}

.summary-item-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.summary-item-details h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.summary-item-details p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.summary-divider {
    border: 0;
    height: 1px;
    background-color: var(--border-color);
    margin: 20px 0;
}

.summary-price-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.grand-total-row {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 0;
}

.grand-total-row span:last-child {
    color: var(--accent-gold-dark);
}

.payment-method-box {
    margin-top: 30px;
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: var(--border-radius-md);
}

.payment-secure-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: #2E7D32;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
    background-color: #E8F5E9;
    padding: 6px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-pay {
    font-size: 1.1rem;
    padding: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 12px;
}

.payment-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
}

/* 11. FOOTER */
.footer {
    background-color: #1A1A1A;
    color: #FFFFFF;
    padding: 60px 0 20px 0;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-brand .logo-text {
    color: #FFFFFF;
}

.footer-brand p {
    color: #BBBBBB;
    line-height: 1.6;
}

.footer-links h4,
.footer-legal h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: var(--accent-gold);
    position: relative;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-legal a {
    color: #CCCCCC;
    transition: var(--transition-smooth);
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-contact p {
    color: #CCCCCC;
    margin-bottom: 12px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #25D366;
    color: #FFFFFF;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--border-radius-md);
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: var(--transition-smooth);
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #2C2C2C;
    padding-top: 20px;
    font-size: 0.8rem;
    color: #888888;
}

/* 12. MOBILE STICKY CTA */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    border-top: 1px solid var(--border-color);
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
    z-index: 99;
    transition: transform 0.3s ease;
}

.mobile-sticky-cta.hidden {
    transform: translateY(100%);
}

.sticky-price-info {
    display: flex;
    flex-direction: column;
}

.sticky-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.sticky-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold-dark);
}

.sticky-price del {
    font-size: 0.85rem;
    color: #999999;
    font-weight: 400;
    margin-left: 5px;
}

.sticky-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
    border-radius: var(--border-radius-sm);
}

/* 13. MODAL DIALOG STYLES */
.modal-dialog {
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 500px;
    width: 90%;
    margin: auto;
    background-color: var(--secondary-bg);
    overflow: hidden;
    outline: none;
}

.modal-dialog::backdrop {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    display: flex;
    flex-direction: column;
}

.modal-header {
    background-color: var(--primary-bg);
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-dark);
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: var(--text-muted);
    cursor: pointer;
    outline: none;
}

.modal-close:hover {
    color: #000000;
}

.modal-body {
    padding: 25px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.modal-body p {
    margin-bottom: 15px;
}

.modal-body ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.modal-body li {
    margin-bottom: 8px;
}

/* ==========================================================================
   MEDIA QUERIES (DESKTOP & TABLET ADAPTABILITY)
   ========================================================================== */

/* Tablet & Up (>= 768px) */
@media (min-width: 768px) {
    html {
        font-size: 17px;
    }

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

    .hero-section {
        padding: 80px 0;
    }

    .hero-container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 50px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .product-configurator {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: start;
    }

    .design-grid {
        grid-template-columns: 1fr;
    }

    .swatches-grid {
        grid-template-columns: repeat(8, 1fr);
    }

    .promo-box {
        grid-template-columns: 1.2fr 0.8fr;
        padding: 50px;
        align-items: center;
    }

    .promo-info h2 {
        font-size: 2.2rem;
    }

    .price-new {
        font-size: 2.2rem;
    }

    .promo-countdown {
        padding: 25px;
    }

    .countdown-display {
        gap: 15px;
    }

    .countdown-item {
        min-width: 60px;
        max-width: none;
    }

    .countdown-val {
        font-size: 2rem;
        padding: 5px 0;
    }

    .countdown-label {
        font-size: 0.75rem;
        margin-top: 5px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .checkout-layout {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 40px;
    }

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

    .courier-selection {
        flex-direction: row;
    }

    .courier-card {
        flex: 1;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    }

    /* Hide sticky CTA on desktop */
    .mobile-sticky-cta {
        display: none !important;
    }
}

/* Desktop Large (>= 1024px) */
@media (min-width: 1024px) {
    .header {
        padding: 20px 0;
    }

    .nav-menu {
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .nav-menu a {
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--text-dark);
        transition: var(--transition-smooth);
        position: relative;
    }

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

    .nav-menu a:hover {
        color: var(--accent-gold-dark);
    }

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

    .hero-title {
        font-size: 3.4rem;
    }

    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
