/* ========================================================================
   Platinum Paint - Global Stylesheet
   ======================================================================== */

/* ========== FONTS ========== */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ========== CSS VARIABLES ========== */
:root {
    --navy: #0a1f44;
    --navy-deep: #061230;
    --navy-light: #132d5e;
    --platinum: #c5a46d;
    --platinum-light: #dfc491;
    --platinum-glow: rgba(197, 164, 109, 0.15);
    --cream: #f8f5f0;
    --white: #ffffff;
    --smoke: #eee9e2;
    --charcoal: #2a2a2a;
    --text: #4a4a4a;
    --text-light: #8a8a8a;
    --success: #25D366;
    --font-heading: 'Instrument Serif', Georgia, serif;
    --font-body: 'Outfit', sans-serif;
    --shadow-soft: 0 4px 30px rgba(10, 31, 68, 0.08);
    --shadow-card: 0 8px 40px rgba(10, 31, 68, 0.10);
    --shadow-hover: 0 16px 60px rgba(10, 31, 68, 0.16);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--cream);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
button { border: none; outline: none; cursor: pointer; font-family: var(--font-body); }
ul { list-style: none; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 40px); width: 100%; }

/* Grain overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ========== PRELOADER ========== */
.preloader {
    position: fixed; inset: 0; background: var(--navy-deep);
    z-index: 99999; display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-logo { width: 160px; animation: preloaderPulse 1.2s ease-in-out infinite; }
.preloader-bar { width: 120px; height: 3px; background: rgba(255,255,255,0.1); border-radius: 3px; margin: 24px auto 0; overflow: hidden; }
.preloader-bar::after { content: ''; display: block; width: 40%; height: 100%; background: var(--platinum); border-radius: 3px; animation: preloaderSlide 1s ease-in-out infinite; }
@keyframes preloaderPulse { 0%, 100% { opacity: 0.6; transform: scale(0.96); } 50% { opacity: 1; transform: scale(1); } }
@keyframes preloaderSlide { 0% { transform: translateX(-100%); } 100% { transform: translateX(350%); } }

/* ========== HEADER ========== */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0; transition: var(--transition);
    background-color: transparent;
}
.header.header-light {
    background-color: #ffffff;
}
.header.scrolled {
    background: rgba(6, 18, 48, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.header-logo img { height: 48px; filter: brightness(0) invert(1); transition: var(--transition); }
.header-nav { display: flex; align-items: center; gap: 36px; }
.header-nav a {
    color: rgba(255,255,255,0.8); font-size: 15px; font-weight: 500;
    letter-spacing: 0.3px; position: relative;
}
.header-nav a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--platinum); transition: var(--transition);
}
.header-nav a:hover { color: #fff; }
.header-nav a:hover::after { width: 100%; }
.header-nav a.active { color: #fff; }
.header-nav a.active::after { width: 100%; }

/* Nav Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; }
.nav-dropdown-menu {
    position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%);
    background: var(--white); border-radius: 12px; box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    padding: 8px 0; min-width: 220px; opacity: 0; visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    transform: translateX(-50%) translateY(8px); z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown-menu a {
    display: block !important; padding: 10px 20px !important; font-size: 14px !important;
    color: var(--charcoal) !important; font-weight: 500 !important; white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}
.nav-dropdown-menu a::after { display: none !important; }
.nav-dropdown-menu a:hover { background: var(--platinum-glow) !important; color: var(--navy) !important; }
.nav-dropdown-menu a:first-child { border-bottom: 1px solid rgba(0,0,0,0.06); margin-bottom: 4px; font-weight: 600 !important; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-social { display: none; align-items: center; gap: 8px; }
.header-social a {
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(255,255,255,0.1); display: flex;
    align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); font-size: 13px; transition: var(--transition);
}
.header-social a:hover { background: var(--platinum); color: var(--navy); }
.header-light .header-social a { background: rgba(10,31,68,0.06); color: rgba(10,31,68,0.4); }
.header-light .header-social a:hover { background: var(--platinum); color: var(--navy); }
.header-light.scrolled .header-social a { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); }
.header-light.scrolled .header-social a:hover { background: var(--platinum); color: var(--navy); }
.header-phone { color: var(--platinum); font-weight: 600; font-size: 15px; display: none; align-items: center; gap: 8px; }
.cart-btn {
    position: relative; background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15); color: #fff;
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; transition: var(--transition);
}
.cart-btn:hover { background: var(--platinum); border-color: var(--platinum); color: var(--navy); }
.cart-count {
    position: absolute; top: -4px; right: -4px;
    background: var(--platinum); color: var(--navy);
    font-size: 11px; font-weight: 700; width: 20px; height: 20px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    opacity: 0; transform: scale(0); transition: var(--transition);
}
.cart-count.visible { opacity: 1; transform: scale(1); }
.mobile-toggle { display: none; background: none; color: #fff; font-size: 24px; padding: 8px; }

/* Header on light pages */
.header-light .header-nav a { color: rgba(10, 31, 68, 0.6); }
.header-light .header-nav a:hover { color: var(--navy); }
.header-light .header-nav a.active { color: var(--navy); }
.header-light .header-logo img { filter: none; }
.header-light .cart-btn { background: rgba(10,31,68,0.06); border-color: rgba(10,31,68,0.1); color: var(--navy); }
.header-light .cart-btn:hover { background: var(--platinum); border-color: var(--platinum); color: var(--navy); }
.header-light .header-phone { color: var(--navy); }
.header-light .mobile-toggle { color: var(--navy); }
.header-light.scrolled .header-nav a { color: rgba(255,255,255,0.8); }
.header-light.scrolled .header-nav a:hover { color: #fff; }
.header-light.scrolled .header-nav a.active { color: #fff; }
.header-light.scrolled .header-logo img { filter: brightness(0) invert(1); }
.header-light.scrolled .cart-btn { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.15); color: #fff; }
.header-light.scrolled .header-phone { color: var(--platinum); }
.header-light.scrolled .mobile-toggle { color: #fff; }

/* ========== HERO ========== */
.hero {
    position: relative; min-height: 100vh;
    background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy) 40%, var(--navy-light) 100%);
    display: flex; align-items: center; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 80vw; height: 80vw;
    background: radial-gradient(circle, rgba(197, 164, 109, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 200px; background: linear-gradient(to top, var(--cream), transparent);
    pointer-events: none; z-index: 2;
}
.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 4vw, 60px);
    align-items: center; padding: clamp(100px, 12vw, 140px) 0 clamp(80px, 10vw, 120px); position: relative; z-index: 3;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(197, 164, 109, 0.12); border: 1px solid rgba(197, 164, 109, 0.25);
    padding: 8px 20px; border-radius: 100px; color: var(--platinum-light);
    font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
    margin-bottom: 28px;
    opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s 0.3s forwards;
}
.hero-badge i { font-size: 10px; }
.hero-title {
    font-family: var(--font-heading); font-size: clamp(2.2rem, 5vw, 5.2rem);
    color: #fff; line-height: 1.05; margin-bottom: clamp(16px, 2vw, 24px);
    opacity: 0; transform: translateY(30px); animation: fadeUp 0.8s 0.5s forwards;
}
.hero-title em { color: var(--platinum); font-style: italic; }
.hero-desc {
    color: rgba(255,255,255,0.6); font-size: clamp(15px, 1.8vw, 18px); line-height: 1.7;
    max-width: 480px; margin-bottom: clamp(24px, 3vw, 40px);
    opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s 0.7s forwards;
}
.hero-btns {
    display: flex; gap: 16px; flex-wrap: wrap;
    opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s 0.9s forwards;
}
.hero-visual {
    position: relative; display: flex; justify-content: center;
    opacity: 0; animation: fadeIn 1s 0.6s forwards;
}
.hero-product-showcase { position: relative; width: 100%; max-width: 500px; }
.hero-product-img {
    width: 100%; border-radius: var(--radius);
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
    animation: heroFloat 4s ease-in-out infinite;
}
.hero-float-badge {
    position: absolute; background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px); border-radius: var(--radius-sm);
    padding: 16px 20px; box-shadow: var(--shadow-card);
    animation: floatBadge 3s ease-in-out infinite;
}
.hero-float-badge.badge-1 { bottom: 20%; left: -40px; animation-delay: 0.5s; }
.hero-float-badge.badge-2 { top: 15%; right: -30px; animation-delay: 1s; }
.hero-float-badge .badge-number { font-family: var(--font-heading); font-size: 28px; color: var(--navy); }
.hero-float-badge .badge-label { font-size: 12px; color: var(--text-light); font-weight: 500; }
.hero-stats {
    display: flex; gap: clamp(20px, 4vw, 48px); margin-top: clamp(24px, 4vw, 48px); padding-top: clamp(20px, 3vw, 32px);
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0; animation: fadeUp 0.8s 1.1s forwards; flex-wrap: wrap;
}
.hero-stat-number { font-family: var(--font-heading); font-size: clamp(24px, 3vw, 36px); color: var(--platinum); }
.hero-stat-label { font-size: clamp(11px, 1.2vw, 13px); color: rgba(255,255,255,0.5); margin-top: 4px; }

/* ========== BUTTONS ========== */
.btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--platinum); color: var(--navy-deep);
    font-weight: 600; font-size: clamp(13px, 1.4vw, 15px); padding: clamp(12px, 1.5vw, 16px) clamp(20px, 2.5vw, 32px);
    border-radius: 100px; transition: var(--transition);
}
.btn-primary:hover { background: var(--platinum-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(197, 164, 109, 0.3); }
.btn-secondary {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent; color: #fff; font-weight: 500; font-size: clamp(13px, 1.4vw, 15px);
    padding: clamp(12px, 1.5vw, 16px) clamp(20px, 2.5vw, 32px); border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.2); transition: var(--transition);
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }
.btn-dark {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--navy); color: #fff;
    font-weight: 600; font-size: 15px; padding: 16px 32px;
    border-radius: 100px; transition: var(--transition);
}
.btn-dark:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-outline {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent; color: var(--navy); font-weight: 600; font-size: 15px;
    padding: 16px 32px; border-radius: 100px;
    border: 2px solid var(--navy); transition: var(--transition);
}
.btn-outline:hover { background: var(--navy); color: #fff; }

/* ========== ANIMATIONS ========== */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes heroFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes floatBadge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.55); }
}

/* ========== SECTION COMMON ========== */
.section { padding: clamp(60px, 8vw, 100px) 0; }
.section-dark { background: var(--navy-deep); }
.section-smoke { background: var(--smoke); }
.section-white { background: var(--white); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header.text-left { text-align: left; }
.section-label {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--platinum); font-size: 13px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px;
}
.section-label::before, .section-label::after { content: ''; width: 30px; height: 1px; background: var(--platinum); }
.section-header.text-left .section-label::before { display: none; }
.section-title { font-family: var(--font-heading); font-size: clamp(1.6rem, 4vw, 3.2rem); color: var(--navy); line-height: 1.15; }
.section-dark .section-title { color: #fff; }
.section-subtitle { color: var(--text-light); font-size: 17px; max-width: 560px; margin: 16px auto 0; line-height: 1.7; }
.section-header.text-left .section-subtitle { margin-left: 0; }
.section-dark .section-subtitle { color: rgba(255,255,255,0.5); }

/* ========== PAGE BANNER ========== */
.page-banner {
    position: relative; padding: clamp(120px, 14vw, 160px) 0 clamp(48px, 6vw, 80px);
    background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-light) 100%);
    overflow: hidden;
}
.page-banner::before {
    content: ''; position: absolute; top: -30%; right: -10%;
    width: 50vw; height: 50vw;
    background: radial-gradient(circle, rgba(197, 164, 109, 0.06) 0%, transparent 70%);
}
.page-banner-content { position: relative; z-index: 2; }
.page-banner-title {
    font-family: var(--font-heading); font-size: clamp(1.8rem, 5vw, 4rem);
    color: #fff; margin-bottom: clamp(10px, 1.5vw, 16px);
}
.page-banner-desc { color: rgba(255,255,255,0.5); font-size: clamp(14px, 1.6vw, 18px); max-width: 540px; line-height: 1.7; }
.breadcrumb {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 24px; font-size: 14px;
}
.breadcrumb a { color: var(--platinum); }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.breadcrumb .sep { color: rgba(255,255,255,0.2); }

/* ========== FEATURES STRIP ========== */
.features-strip { padding: clamp(40px, 5vw, 60px) 0; background: var(--white); border-bottom: 1px solid rgba(0,0,0,0.05); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 32px); }
.feature-item { text-align: center; padding: 24px; }
.feature-icon {
    width: 60px; height: 60px; background: var(--platinum-glow);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; font-size: 22px; color: var(--platinum);
}
.feature-title { font-weight: 600; font-size: 15px; color: var(--navy); margin-bottom: 6px; }
.feature-text { font-size: 13px; color: var(--text-light); }

/* ========== PRODUCT CARDS ========== */
.products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2vw, 32px); }
.products-grid-home { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.product-card {
    background: var(--white); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow-soft);
    transition: var(--transition); position: relative;
}
.product-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.product-card-image { position: relative; overflow: hidden; background: linear-gradient(135deg, #f0ebe4 0%, #e8e0d4 100%); }
.product-card-image img { width: 100%; height: auto; display: block; transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.product-card:hover .product-card-image img { transform: scale(1.05); }
.product-tag {
    position: absolute; top: 16px; left: 16px;
    background: var(--navy); color: var(--platinum);
    font-size: 11px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; padding: 6px 14px; border-radius: 100px;
}
.product-card-body { padding: clamp(16px, 2.5vw, 28px); }
.product-name { font-family: var(--font-heading); font-size: clamp(18px, 2vw, 24px); color: var(--navy); margin-bottom: 8px; }
.product-desc { color: var(--text-light); font-size: clamp(13px, 1.3vw, 14px); line-height: 1.6; margin-bottom: clamp(12px, 1.5vw, 20px); }
.product-prices { display: flex; gap: clamp(8px, 1.5vw, 16px); align-items: baseline; margin-bottom: clamp(12px, 1.5vw, 20px); flex-wrap: wrap; }
.product-price { font-size: clamp(20px, 2.5vw, 28px); font-weight: 700; color: var(--navy); }
.product-price small { font-size: 13px; font-weight: 500; color: var(--text-light); }
.product-price-alt { font-size: 18px; font-weight: 600; color: var(--platinum); }
.product-price-alt small { font-size: 12px; font-weight: 500; color: var(--text-light); }

/* Color Swatches */
.swatch-label { font-size: 12px; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.swatch-selected-name { font-weight: 600; color: var(--navy); text-transform: none; letter-spacing: 0; }
.color-swatches { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.color-swatch {
    width: 32px; height: 32px; border-radius: 50%; cursor: pointer;
    position: relative; transition: var(--transition);
    border: 2px solid transparent; overflow: hidden;
}
.color-swatch img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.color-swatch:hover { transform: scale(1.15); }
.color-swatch.active { border-color: var(--navy); box-shadow: 0 0 0 2px var(--cream), 0 0 0 4px var(--navy); }

/* Size selector */
.size-options { display: flex; gap: 10px; margin-bottom: 20px; }
.size-btn {
    padding: 10px 20px; border: 2px solid #e0dbd4; border-radius: var(--radius-sm);
    background: transparent; font-size: 14px; font-weight: 600;
    color: var(--charcoal); transition: var(--transition);
}
.size-btn:hover { border-color: var(--navy); }
.size-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* Quantity & Add to Cart */
.product-actions { display: flex; gap: 12px; align-items: center; }
.qty-control { display: flex; align-items: center; border: 2px solid #e0dbd4; border-radius: var(--radius-sm); overflow: hidden; }
.qty-btn {
    width: 40px; height: 44px; background: transparent;
    font-size: 18px; color: var(--charcoal);
    display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.qty-btn:hover { background: var(--smoke); }
.qty-input {
    width: 48px; height: 44px; text-align: center; border: none;
    border-left: 1px solid #e0dbd4; border-right: 1px solid #e0dbd4;
    font-size: 15px; font-weight: 600; font-family: var(--font-body);
    background: transparent; outline: none;
}
.add-to-cart-btn {
    flex: 1; background: var(--navy); color: #fff;
    font-size: 15px; font-weight: 600; padding: 14px 24px;
    border-radius: var(--radius-sm); display: flex;
    align-items: center; justify-content: center; gap: 8px; transition: var(--transition);
}
.add-to-cart-btn:hover { background: var(--navy-light); transform: translateY(-1px); }
.add-to-cart-btn.added { background: var(--success); }

/* Suitable For */
.suitable-for { margin-bottom: 20px; }
.suitable-for-title { font-size: 12px; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.suitable-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.suitable-tag { font-size: 11px; font-weight: 500; color: var(--navy); background: rgba(10, 31, 68, 0.06); padding: 5px 12px; border-radius: 100px; }

/* ========== PRODUCT DETAIL PAGE ========== */
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 4vw, 60px); align-items: start; }
.product-detail-gallery {
    position: sticky; top: 120px;
    background: var(--white); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow-soft);
}
.product-detail-gallery img { width: 100%; }
.product-detail-info {}
.product-detail-title { font-family: var(--font-heading); font-size: clamp(1.6rem, 3.5vw, 2.8rem); color: var(--navy); margin-bottom: 12px; }
.product-detail-subtitle { color: var(--text-light); font-size: clamp(14px, 1.5vw, 16px); margin-bottom: clamp(16px, 2vw, 24px); line-height: 1.7; }
.product-detail-price { font-size: clamp(28px, 3.5vw, 36px); font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.product-detail-price small { font-size: 16px; font-weight: 400; color: var(--text-light); }
.product-detail-divider { height: 1px; background: rgba(0,0,0,0.08); margin: 24px 0; }

.product-features-list { margin-bottom: 24px; }
.product-features-list li {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 10px 0; font-size: 15px; color: var(--text);
}
.product-features-list li i { color: var(--platinum); margin-top: 3px; }

/* ========== ABOUT / INFO SECTIONS ========== */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 4vw, 60px); align-items: center; }
.split-image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); }
.split-image img { width: 100%; height: 400px; object-fit: cover; }
.split-content {}
.split-content .section-label { margin-bottom: 12px; }
.split-content h2 { font-family: var(--font-heading); font-size: clamp(1.5rem, 3vw, 2.6rem); color: var(--navy); margin-bottom: clamp(12px, 1.5vw, 20px); line-height: 1.2; }
.split-content p { color: var(--text); font-size: clamp(14px, 1.5vw, 16px); line-height: 1.8; margin-bottom: clamp(10px, 1.2vw, 16px); }

/* ========== LOCATIONS ========== */
.locations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: clamp(12px, 1.5vw, 20px); }
.locations-grid-page { grid-template-columns: repeat(3, 1fr); }
.location-card {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius); padding: 28px 24px; text-align: center;
    transition: var(--transition);
}
.location-card:hover { background: rgba(255,255,255,0.08); border-color: var(--platinum); transform: translateY(-4px); }
.location-icon {
    width: 48px; height: 48px; background: rgba(197, 164, 109, 0.12);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; color: var(--platinum); font-size: 18px;
}
.location-city { font-family: var(--font-heading); font-size: 20px; color: #fff; margin-bottom: 8px; }
.location-address { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.5; }

/* Location cards on light bg */
.location-card-light {
    background: var(--white); border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius); padding: 32px 24px; text-align: center;
    transition: var(--transition); box-shadow: var(--shadow-soft);
}
.location-card-light:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); border-color: var(--platinum); }
.location-card-light .location-icon { background: var(--platinum-glow); }
.location-card-light .location-city { color: var(--navy); }
.location-card-light .location-address { color: var(--text-light); }
.location-card-light .location-phone { margin-top: 12px; }
.location-card-light .location-phone a { color: var(--platinum); font-weight: 600; font-size: 14px; }

/* ========== CTA ========== */
.cta-section {
    padding: clamp(60px, 8vw, 100px) 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; top: -50%; left: -20%;
    width: 60vw; height: 60vw;
    background: radial-gradient(circle, rgba(197, 164, 109, 0.06) 0%, transparent 70%);
}
.cta-content { text-align: center; position: relative; z-index: 2; }
.cta-title { font-family: var(--font-heading); font-size: clamp(1.5rem, 4vw, 3rem); color: #fff; margin-bottom: clamp(10px, 1.5vw, 16px); }
.cta-text { color: rgba(255,255,255,0.5); font-size: clamp(14px, 1.6vw, 17px); max-width: 500px; margin: 0 auto clamp(20px, 3vw, 32px); }
.cta-phones { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.cta-phone {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
    color: #fff; padding: 16px 28px; border-radius: 100px;
    font-size: 18px; font-weight: 600; transition: var(--transition);
}
.cta-phone:hover { background: var(--platinum); border-color: var(--platinum); color: var(--navy); }
.cta-phone i { color: var(--platinum); }
.cta-phone:hover i { color: var(--navy); }

/* ========== FOOTER ========== */
.footer { background: var(--navy-deep); border-top: 1px solid rgba(255,255,255,0.05); padding: clamp(40px, 5vw, 60px) 0 clamp(20px, 3vw, 30px); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: clamp(20px, 3vw, 40px); margin-bottom: clamp(24px, 3vw, 40px); }
.footer-logo { height: 44px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-desc { color: rgba(255,255,255,0.4); font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-heading { font-family: var(--font-heading); font-size: 18px; color: #fff; margin-bottom: 20px; }
.footer-links a { display: block; color: rgba(255,255,255,0.4); font-size: 14px; padding: 6px 0; transition: var(--transition); }
.footer-links a:hover { color: var(--platinum); padding-left: 6px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.footer-contact-item i { color: var(--platinum); margin-top: 3px; font-size: 14px; width: 16px; }
.footer-contact-item span { color: rgba(255,255,255,0.4); font-size: 14px; line-height: 1.5; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { color: rgba(255,255,255,0.3); font-size: 13px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.06); display: flex;
    align-items: center; justify-content: center;
    color: rgba(255,255,255,0.4); font-size: 14px; transition: var(--transition);
}
.footer-social a:hover { background: var(--platinum); color: var(--navy); }

/* ========== CART DRAWER ========== */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 2000; opacity: 0; visibility: hidden; transition: var(--transition); }
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
    position: fixed; top: 0; right: -460px; width: 440px; max-width: 90vw;
    height: 100vh; background: var(--white); z-index: 2001;
    transition: right 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex; flex-direction: column;
}
.cart-drawer.open { right: 0; }
.cart-drawer-header { padding: 24px; border-bottom: 1px solid rgba(0,0,0,0.06); display: flex; align-items: center; justify-content: space-between; }
.cart-drawer-title { font-family: var(--font-heading); font-size: 22px; color: var(--navy); }
.cart-close-btn { background: none; font-size: 22px; color: var(--text-light); transition: var(--transition); }
.cart-close-btn:hover { color: var(--charcoal); }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 24px; }
.cart-empty { text-align: center; padding: 60px 20px; }
.cart-empty i { font-size: 48px; color: #ddd; margin-bottom: 16px; }
.cart-empty p { color: var(--text-light); font-size: 15px; }
.cart-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.cart-item-img { width: 72px; height: 72px; border-radius: var(--radius-sm); overflow: hidden; background: var(--smoke); flex-shrink: 0; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; font-size: 14px; color: var(--navy); margin-bottom: 4px; }
.cart-item-meta { font-size: 12px; color: var(--text-light); margin-bottom: 8px; }
.cart-item-bottom { display: flex; align-items: center; justify-content: space-between; }
.cart-item-price { font-weight: 700; color: var(--navy); font-size: 15px; }
.cart-item-remove { background: none; color: #ccc; font-size: 14px; transition: var(--transition); }
.cart-item-remove:hover { color: #e74c3c; }
.cart-drawer-footer { padding: 24px; border-top: 1px solid rgba(0,0,0,0.06); }
.cart-total-row { display: flex; justify-content: space-between; margin-bottom: 20px; }
.cart-total-label { font-size: 16px; color: var(--text); }
.cart-total-value { font-size: 22px; font-weight: 700; color: var(--navy); }
.checkout-btn {
    width: 100%; background: #25D366; color: #fff;
    font-size: 16px; font-weight: 600; padding: 16px;
    border-radius: var(--radius-sm); display: flex;
    align-items: center; justify-content: center; gap: 10px; transition: var(--transition);
}
.checkout-btn:hover { background: #1fb855; transform: translateY(-1px); }
.checkout-btn i { font-size: 20px; }

/* ========== MOBILE MENU ========== */
.mobile-menu {
    position: fixed; top: 0; left: -300px; width: 280px; height: 100vh;
    background: var(--navy-deep); z-index: 2001;
    transition: left 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    padding: 24px; display: flex; flex-direction: column;
}
.mobile-menu.open { left: 0; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.mobile-menu-header img { height: 36px; filter: brightness(0) invert(1); }
.mobile-menu-close { background: none; color: rgba(255,255,255,0.5); font-size: 22px; }
.mobile-menu nav a { display: block; color: rgba(255,255,255,0.7); font-size: 16px; font-weight: 500; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-menu nav a:hover { color: var(--platinum); }
.mobile-menu-contact { margin-top: auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); }
.mobile-menu-contact a { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.5); font-size: 14px; padding: 8px 0; }
.mobile-menu-contact a i { color: var(--platinum); width: 16px; }

/* ========== TOAST ========== */
.toast {
    position: fixed; bottom: 30px; left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--navy); color: #fff; padding: 14px 28px;
    border-radius: var(--radius-sm); font-size: 14px; font-weight: 500;
    z-index: 3000; box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    opacity: 0; transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none; display: flex; align-items: center; gap: 10px;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast i { color: var(--platinum); }

/* ========== FLOATING ELEMENTS ========== */
.back-to-top {
    position: fixed; bottom: 30px; right: 30px;
    width: 48px; height: 48px; background: var(--navy); color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 18px; z-index: 999; opacity: 0; visibility: hidden;
    transform: translateY(20px); transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--platinum); color: var(--navy); }

.whatsapp-float {
    position: fixed; bottom: 90px; right: 30px;
    width: 56px; height: 56px; background: #25D366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 28px; z-index: 998;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: var(--transition); animation: whatsappPulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5); }

/* ========== SCROLL REVEAL ========== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========== CONTACT FORM ========== */
.contact-form { max-width: 600px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 14px 18px; border: 2px solid #e0dbd4;
    border-radius: var(--radius-sm); font-family: var(--font-body);
    font-size: 15px; color: var(--charcoal); background: var(--white);
    transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--platinum); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ========== RESPONSIVE ========== */
@media (min-width: 1024px) {
    .header-phone { display: flex; }
    .header-social { display: flex; }
}
@media (max-width: 1024px) {
    .header-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-btns { justify-content: center; }
    .hero-visual { margin-top: 24px; }
    .hero-stats { justify-content: center; }
    .hero-float-badge { display: none; }
    .hero-product-showcase { max-width: 300px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .split-section { grid-template-columns: 1fr; gap: 32px; }
    .split-image img { height: 300px; }
    .product-detail-grid { grid-template-columns: 1fr; gap: 32px; }
    .product-detail-gallery { position: static; }
    .section-header { margin-bottom: 40px; }
}
@media (max-width: 768px) {
    .products-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
    .locations-grid, .locations-grid-page { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .cta-phones { flex-direction: column; align-items: center; }
    .cta-phone { width: 100%; justify-content: center; }
    .hero-btns { flex-direction: column; align-items: center; width: 100%; }
    .hero-btns .btn-primary, .hero-btns .btn-secondary { width: 100%; max-width: 300px; justify-content: center; }
    .hero-stats { gap: 20px; }
    .form-row, .form-row-3 { grid-template-columns: 1fr; }
    .product-actions { flex-direction: column; }
    .add-to-cart-btn { width: 100%; }
    .split-image img { height: 250px; }
}
@media (max-width: 480px) {
    .features-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .hero-product-showcase { max-width: 220px; }
    .header-logo img { height: 36px; }
    .location-card, .location-card-light { padding: 20px 16px; }
    .product-tag { font-size: 10px; padding: 4px 10px; }
    .section-label { font-size: 11px; }
    .section-label::before, .section-label::after { width: 16px; }
    .breadcrumb { font-size: 12px; }
    .split-image img { height: 200px; }
}