/* ============================================================
   VIVAN FURNITURE — PREMIUM CSS
   Theme: Warm Luxury — Cream, Gold, Deep Teak
   Font: Cormorant Garamond (display) + DM Sans (body)
============================================================ */

/* ============================================================
   BASE.CSS OVERRIDE FIXES
   base.css-ல இருக்கற conflicting rules-ஐ இங்க neutralize பண்றோம்
============================================================ */

/* base.css mobile media query-ல header column ஆகுது — fix */
.header {
    flex-direction: row !important;
    align-items: center !important;
}

/* base.css-ல nav always flex — mobile-ல hide ஆகணும் — fix */
@media (max-width: 768px) {
    nav.nav-menu {
        display: none !important;
        width: auto !important;
    }
    nav.nav-menu.active {
        display: flex !important;
    }
}

/* base.css .btn override — style.css btn use பண்ணணும் */
.btn {
    display: block !important;
    border-radius: 30px !important;
}
/* ── END BASE OVERRIDE ── */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
    --cream:       #f5f0e8;
    --cream-dark:  #ede4d6;
    --warm-white:  #fdfaf5;
    --gold:        #c9a84c;
    --gold-light:  #e8c97a;
    --gold-dark:   #9a7530;
    --teak:        #6b4226;
    --teak-dark:   #3e2210;
    --teak-light:  #a0613a;
    --text-dark:   #2a1a0e;
    --text-mid:    #5c3d24;
    --text-light:  #9a7a60;
    --shadow-sm:   0 4px 20px rgba(42,26,14,0.08);
    --shadow-md:   0 12px 40px rgba(42,26,14,0.14);
    --shadow-lg:   0 25px 70px rgba(42,26,14,0.22);
    --radius:      18px;
    --transition:  0.45s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

/* ============================================================
   HEADER / NAVIGATION
============================================================ */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6%;
    height: 72px;
    background: rgba(253, 250, 245, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s;
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(42,26,14,0.12);
}

/* Logo */
.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--teak);
    letter-spacing: 1px;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

/* Nav Links */
.nav-menu {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-mid);
    padding: 8px 16px;
    border-radius: 30px;
    position: relative;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.nav-menu a:hover {
    color: var(--teak);
    background: rgba(201, 168, 76, 0.12);
}

.nav-menu a.active {
    color: var(--gold-dark);
    background: rgba(201, 168, 76, 0.15);
}

/* Hamburger */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--teak);
    background: none;
    border: none;
    padding: 4px 8px;
    border-radius: 8px;
    transition: 0.2s;
}

.menu-toggle:hover {
    background: rgba(201,168,76,0.1);
}

/* ============================================================
   BREADCRUMB NAVIGATION
============================================================ */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 16px 6%;
    font-size: 13px;
    color: var(--text-light);
    background: var(--warm-white);
    border-bottom: 1px solid rgba(201,168,76,0.1);
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--teak-light);
    transition: 0.2s;
    font-weight: 500;
}

.breadcrumb a:hover {
    color: var(--gold-dark);
}

.breadcrumb .sep {
    color: var(--gold);
    font-size: 16px;
}

.breadcrumb .current {
    color: var(--text-dark);
    font-weight: 600;
}

/* ============================================================
   CATEGORY BAR (HOME PAGE)
============================================================ */
.category-bar {
    display: flex;
    justify-content: center;
    gap: 0;
    background: var(--warm-white);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 22px 40px;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.cat-item::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.3s ease;
    border-radius: 3px 3px 0 0;
}

.cat-item:hover::after { width: 60%; }

.cat-item img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    opacity: 0.65;
    transition: var(--transition);
    filter: sepia(0.3);
}

.cat-item:hover img {
    opacity: 1;
    transform: translateY(-3px) scale(1.1);
    filter: sepia(0) drop-shadow(0 4px 8px rgba(201,168,76,0.4));
}

.cat-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-mid);
    transition: 0.3s;
}

.cat-item p {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 300;
}

.cat-item:hover h4 { color: var(--gold-dark); }

/* ============================================================
   PAGE TITLE
============================================================ */
.title {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--teak);
    padding: 60px 20px 20px;
    position: relative;
    letter-spacing: 0.5px;
}

.title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 16px auto 0;
    border-radius: 3px;
}

/* ============================================================
   CATEGORY GRID (Subcategory circles)
============================================================ */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 40px;
    padding: 50px 8% 80px;
    justify-items: center;
}

.category-item {
    text-align: center;
    perspective: 1200px;
}

.category-item a {
    text-decoration: none;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Circle */
.circle-wrap {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f9f5ef, #efe5d8);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.9s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.5s ease;
    transform-style: preserve-3d;
    box-shadow:
        0 8px 30px rgba(42,26,14,0.08),
        inset 0 1px 0 rgba(255,255,255,0.8);
    position: relative;
    overflow: hidden;
}

.circle-wrap::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -40%;
    width: 180%;
    height: 180%;
    background: radial-gradient(circle at 35% 35%,
        rgba(255,255,255,0.35) 0%,
        transparent 60%);
    pointer-events: none;
}

.circle-wrap img {
    width: 72%;
    transition: 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    filter: drop-shadow(0 4px 12px rgba(42,26,14,0.15));
}

/* 360 rotate on hover */
.category-item:hover .circle-wrap {
    transform: rotateY(360deg);
    box-shadow:
        0 20px 60px rgba(42,26,14,0.18),
        0 0 0 3px rgba(201,168,76,0.25);
}

.category-item:hover .circle-wrap img {
    transform: scale(1.08);
}

.category-item h3 {
    margin-top: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: color 0.3s;
}

.category-item:hover h3 { color: var(--gold-dark); }

/* ============================================================
   PRODUCT GRID
============================================================ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 32px;
    padding: 48px 5%;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* ============================================================
   PRODUCT CARD
============================================================ */
.product-card {
    position: relative;
    background: var(--warm-white);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: transform 0.15s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(201,168,76,0.1);
    will-change: transform;
}

/* Shine overlay */
.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.15) 0%,
        transparent 50%,
        rgba(201,168,76,0.05) 100%
    );
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.product-card:hover::before { opacity: 1; }

/* Image area */
.product-card > img,
.product-card img:first-of-type {
    width: 100%;
    height: 240px;
    object-fit: contain;
    background: linear-gradient(135deg, #f9f5ef 0%, #f0e8dd 100%);
    padding: 20px;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: block;
}

.product-card:hover > img,
.product-card:hover img:first-of-type {
    transform: scale(1.06);
}

/* Discount Badge */
.discount-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, var(--teak), var(--teak-light));
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.8px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(107,66,38,0.35);
    text-transform: uppercase;
}

/* Product Name */
.product-name {
    padding: 16px 18px 8px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    min-height: 56px;
}

/* Price */
.price {
    padding: 4px 18px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.new-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--teak);
    font-family: 'Cormorant Garamond', serif;
}

.old-price {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
}

/* Enquire Button */
.btn {
    display: block;
    margin: 0 18px 20px;
    text-align: center;
    padding: 11px 20px;
    background: linear-gradient(135deg, var(--teak) 0%, var(--teak-light) 100%);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(107,66,38,0.4);
    background: linear-gradient(135deg, var(--teak-dark) 0%, var(--teak) 100%);
}

/* Click ripple on card */
.product-card.clicked {
    animation: cardPulse 0.35s ease;
}

@keyframes cardPulse {
    0%   { box-shadow: 0 0 0 0 rgba(201,168,76,0.5); }
    70%  { box-shadow: 0 0 0 18px rgba(201,168,76,0); }
    100% { box-shadow: var(--shadow-sm); }
}

/* ============================================================
   PREMIUM SHOWCASE SECTION
============================================================ */
.premium-showcase {
    margin: 0 5% 60px;
    border-radius: 24px;
    padding: 70px 60px;
    background:
        linear-gradient(135deg, rgba(107,66,38,0.92), rgba(62,34,16,0.97)),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    text-align: center;
    position: relative;
    overflow: hidden;
}

.premium-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(201,168,76,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.showcase-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    color: #fff;
    margin-bottom: 14px;
    font-style: italic;
    font-weight: 400;
}

.showcase-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    font-weight: 300;
}

.explore-btn {
    display: inline-block;
    padding: 14px 40px;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    border-radius: 40px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.explore-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
}

.explore-btn:hover {
    color: var(--teak-dark);
}

.explore-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* ============================================================
   SERVICE SECTION
============================================================ */
.service-section {
    background: var(--warm-white);
    padding: 70px 5%;
    border-top: 1px solid rgba(201,168,76,0.15);
}

.service-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-box {
    text-align: center;
    padding: 38px 24px;
    border-radius: var(--radius);
    background: var(--cream);
    border: 1px solid rgba(201,168,76,0.15);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-box::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-box:hover::before { transform: scaleX(1); }

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    background: var(--warm-white);
}

.service-icon {
    font-size: 38px;
    margin-bottom: 16px;
    display: block;
    transition: transform 0.4s ease;
}

.service-box:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
}

.service-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--teak);
    margin-bottom: 8px;
}

.service-box p {
    font-size: 13px;
    color: var(--text-light);
}

/* ============================================================
   FOOTER
============================================================ */
.premium-footer {
    background: linear-gradient(175deg, #1e130a 0%, #0d0704 100%);
    color: #ccc;
    padding: 70px 6% 30px;
    position: relative;
    overflow: hidden;
}

.premium-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
    font-style: italic;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    color: #888;
}

.footer-col h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: #eee;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: #777;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a::before {
    content: '›';
    color: var(--gold);
    font-size: 18px;
    line-height: 1;
    opacity: 0;
    transform: translateX(-6px);
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--gold-light);
    padding-left: 6px;
}

.footer-col ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 13px;
    color: #555;
    letter-spacing: 0.3px;
}

/* ============================================================
   PRODUCT DETAIL PAGE
============================================================ */
.product-detail {
    max-width: 1100px;
    margin: 36px auto 60px;
    padding: 0 5%;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.pd-image-wrap {
    flex: 1;
    background: linear-gradient(135deg, #f9f5ef, #f0e8dd);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    position: relative;
    box-shadow: var(--shadow-md);
}

.pd-image-wrap img {
    width: 100%;
    max-height: 450px;
    object-fit: contain;
    padding: 30px;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.pd-image-wrap:hover img {
    transform: scale(1.05);
}

.pd-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: linear-gradient(135deg, var(--teak), var(--teak-light));
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 30px;
    box-shadow: 0 4px 16px rgba(107,66,38,0.4);
    letter-spacing: 0.5px;
}

.pd-info {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pd-info h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--teak-dark);
    line-height: 1.25;
}

.pd-prices {
    display: flex;
    align-items: baseline;
    gap: 14px;
    flex-wrap: wrap;
}

.pd-new-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--teak);
}

.pd-old-price {
    font-size: 20px;
    color: var(--text-light);
    text-decoration: line-through;
}

.pd-savings {
    display: inline-block;
    background: rgba(106, 154, 91, 0.12);
    color: #4a8a3a;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid rgba(106,154,91,0.25);
}

.pd-divider {
    border: none;
    border-top: 1px solid rgba(201,168,76,0.2);
}

.pd-meta {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 2;
}

.pd-meta strong { color: var(--text-dark); }

.pd-enquire {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--teak) 0%, var(--teak-light) 100%);
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(107,66,38,0.35);
    letter-spacing: 0.3px;
}

.pd-enquire:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(107,66,38,0.45);
    background: linear-gradient(135deg, var(--teak-dark), var(--teak));
}

/* Related Section */
.related-section {
    max-width: 1100px;
    margin: 0 auto 70px;
    padding: 0 5%;
}

.related-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    color: var(--teak);
    margin-bottom: 28px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(201,168,76,0.2);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 22px;
}

.related-card {
    background: var(--warm-white);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    border: 1px solid rgba(201,168,76,0.1);
    box-shadow: var(--shadow-sm);
}

.related-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201,168,76,0.3);
}

.related-card img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    background: linear-gradient(135deg, #f9f5ef, #f0e8dd);
    padding: 14px;
    transition: transform 0.4s;
}

.related-card:hover img { transform: scale(1.05); }

.related-card-info { padding: 14px 16px; }

.related-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.3;
}

.related-card-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--teak);
}

.related-card-old {
    font-size: 12px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 6px;
}

/* ============================================================
   PAGE ENTRANCE ANIMATION
============================================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.title         { animation: fadeUp 0.7s ease both; }
.category-grid { animation: fadeUp 0.8s 0.1s ease both; }
.product-grid  { animation: fadeIn 0.6s ease both; }

.product-card  {
    animation: fadeUp 0.5s ease both;
}

.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.10s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.20s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }
.product-card:nth-child(6) { animation-delay: 0.30s; }
.product-card:nth-child(7) { animation-delay: 0.35s; }
.product-card:nth-child(8) { animation-delay: 0.40s; }

.category-item:nth-child(1) { animation: fadeUp 0.5s 0.05s ease both; }
.category-item:nth-child(2) { animation: fadeUp 0.5s 0.10s ease both; }
.category-item:nth-child(3) { animation: fadeUp 0.5s 0.15s ease both; }
.category-item:nth-child(4) { animation: fadeUp 0.5s 0.20s ease both; }
.category-item:nth-child(5) { animation: fadeUp 0.5s 0.25s ease both; }
.category-item:nth-child(6) { animation: fadeUp 0.5s 0.30s ease both; }
.category-item:nth-child(7) { animation: fadeUp 0.5s 0.35s ease both; }

/* ============================================================
   CONTAINER (generic)
============================================================ */
.container {
    width: 92%;
    margin: 0 auto;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 40px 5% 70px;
    }
}

@media (max-width: 768px) {

    /* Header */
    .header { padding: 0 5%; }

    .menu-toggle { display: block; }

    .nav-menu {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(253,250,245,0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        border-bottom: 1px solid rgba(201,168,76,0.15);
        z-index: 999;
    }

    .nav-menu.active { max-height: 450px; }

    .nav-menu a {
        padding: 16px 24px;
        border-radius: 0;
        border-bottom: 1px solid rgba(201,168,76,0.08);
        font-size: 15px;
    }

    /* Category bar */
    .cat-item { padding: 18px 22px; }

    /* Grid */
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
        padding: 30px 5% 60px;
    }

    .circle-wrap { width: 150px; height: 150px; }

    /* Product grid */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 24px 4%;
    }

    .product-card > img,
    .product-card img:first-of-type {
        height: 170px;
    }

    /* Title */
    .title { font-size: 32px; padding: 40px 16px 16px; }

    /* Product detail */
    .product-detail {
        flex-direction: column;
        gap: 28px;
        padding: 0 4%;
        margin-top: 24px;
    }

    .pd-info h1 { font-size: 26px; }
    .pd-new-price { font-size: 30px; }

    /* Showcase */
    .premium-showcase {
        margin: 0 4% 50px;
        padding: 50px 28px;
    }

    .showcase-content h2 { font-size: 28px; }

    /* Footer */
    .premium-footer { padding: 50px 5% 24px; }
}

@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 14px;
        padding: 24px 4% 50px;
    }

    .circle-wrap { width: 130px; height: 130px; }
    .category-item h3 { font-size: 15px; }

    .product-grid {
        grid-template-columns: 1fr;
    }
}

body {
    margin:0;
    font-family:'Segoe UI',sans-serif;
    background:#f4efe7;
}

.header {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 60px;
    background:#e6dccb;
}

.header nav a {
    margin-left:25px;
    text-decoration:none;
    color:#6b4e2e;
    font-weight:500;
    transition:.3s;
}

.header nav a:hover,
.header nav .active {
    color:#b38728;
}

.contact-section {
    padding:80px 10%;
}

.contact-container {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    background:#fff;
    padding:50px;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.contact-left h2 {
    font-size:32px;
    color:#6b4e2e;
}

.contact-left p {
    margin-bottom:30px;
    color:#555;
}

.info-box {
    margin-bottom:20px;
}

.whatsapp-btn {
    display:inline-block;
    margin-top:20px;
    padding:12px 25px;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.whatsapp-btn:hover {
    transform:scale(1.05);
}

.contact-right form {
    display:flex;
    flex-direction:column;
}

.contact-right input,
.contact-right textarea {
    padding:14px;
    margin-bottom:15px;
    border-radius:10px;
    border:1px solid #ddd;
    font-size:14px;
    transition:.3s;
}

.contact-right input:focus,
.contact-right textarea:focus {
    border-color:#b38728;
    outline:none;
}

.contact-right button {
    padding:14px;
    border:none;
    border-radius:30px;
    background:#6b4e2e;
    color:#fff;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.contact-right button:hover {
    background:#b38728;
    transform:translateY(-2px);
}

.success-msg {
    background:#d4edda;
    padding:10px;
    border-radius:8px;
    margin-bottom:15px;
}

.error-msg {
    background:#f8d7da;
    padding:10px;
    border-radius:8px;
    margin-bottom:15px;
}

@media(max-width:768px){
    .contact-container {
        grid-template-columns:1fr;
    }
}
/* ================= PREMIUM FOOTER ================= */

.premium-footer {
    background: linear-gradient(135deg, #1e2a33, #121b22);
    color: #ddd;
    padding: 70px 10% 20px;
    margin-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-col h3,
.footer-col h4 {
    color: #fff;
    margin-bottom: 15px;
}

.footer-logo {
    font-size: 26px;
    color: #c89b3c;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #bbb;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a,
.brand-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col ul li a:hover,
.brand-links a:hover {
    color: #c89b3c;
    padding-left: 5px;
}

.brand-links a {
    display: block;
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 40px;
    font-size: 13px;
    color: #aaa;
}

/* Responsive */
@media(max-width: 992px){
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 600px){
    .footer-container {
        grid-template-columns: 1fr;
    }
}

.policy-section {
    padding: 80px 10%;
}

.policy-container {
    max-width: 900px;
    margin: auto;
}

.policy-container h1 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #6b4e2e;
}

.policy-container h3 {
    margin-top: 25px;
    color: #333;
}

.policy-container p {
    line-height: 1.7;
    color: #555;
}

/* ================= TERMS HERO ================= */

.terms-hero {
    position: relative;
    height: 350px;
    background: url("../images/hero/wood-bg.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.terms-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(40,25,10,0.85), rgba(0,0,0,0.6));
}

.terms-hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    animation: fadeUp 1.2s ease forwards;
}

.terms-hero-content h1 {
    font-size: 42px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #d4af37;
}

.terms-hero-content p {
    font-size: 16px;
    opacity: 0.9;
}

/* ================= TERMS SECTION ================= */

.terms-section {
    padding: 80px 10%;
    background: #f4efe7;
}

.terms-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    gap: 30px;
}

.terms-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    animation: fadeUp 1s ease forwards;
}

.terms-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.terms-card h3 {
    color: #6b4e2e;
    margin-bottom: 15px;
    font-size: 20px;
}

.terms-card p {
    line-height: 1.7;
    color: #444;
    font-size: 14px;
}

/* ================= ANIMATION ================= */

@keyframes fadeUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .terms-hero-content h1 {
        font-size: 30px;
    }
    .terms-section {
        padding: 60px 6%;
    }
}

/* ================= POLICY HERO ================= */

.policy-hero {
    position: relative;
    height: 350px;
    background: url("../images/hero/wood-bg.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.policy-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(40,25,10,0.85), rgba(0,0,0,0.6));
}

.policy-hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    animation: fadeUp 1.2s ease forwards;
}

.policy-hero-content h1 {
    font-size: 42px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #d4af37;
}

.policy-hero-content p {
    font-size: 16px;
    opacity: 0.9;
}

/* ================= POLICY SECTION ================= */

.policy-section {
    padding: 80px 10%;
    background: #f4efe7;
}

.policy-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    gap: 30px;
}

.policy-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    animation: fadeUp 1s ease forwards;
}

.policy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.policy-card h3 {
    color: #6b4e2e;
    margin-bottom: 15px;
    font-size: 20px;
}

.policy-card p {
    line-height: 1.7;
    color: #444;
    font-size: 14px;
}

/* ================= ANIMATION ================= */

@keyframes fadeUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .policy-hero-content h1 {
        font-size: 30px;
    }
    .policy-section {
        padding: 60px 6%;
    }
}

/* ================= PREMIUM FOOTER FIXED ================= */

.premium-footer {
    background: linear-gradient(135deg, #16222a, #1f2f38);
    color: #dcdcdc;
    padding: 70px 8% 30px;
}

/* Proper Grid Layout */
.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

/* Column Headings */
.footer-col h3 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 15px;
    position: relative;
}

/* Gold underline */
.footer-col h3::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #d4af37;
    margin-top: 6px;
}

/* Logo */
.footer-logo {
    font-size: 28px;
    color: #d4af37;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #bbbbbb;
}

/* Links */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #bbbbbb;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-col ul li a:hover {
    color: #d4af37;
    padding-left: 5px;
}

/* Bottom section */
.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    font-size: 13px;
    color: #999;
}

/* Store info icons alignment */
.footer-col p {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   CATEGORY BAR ICON ANIMATION
============================================================ */
.category-bar {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.category-bar::-webkit-scrollbar { display: none; }

.cat-item {
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Floating animation on load */
@keyframes floatIn {
    0%   { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.cat-item:nth-child(1) { animation: floatIn 0.5s 0.1s ease both; }
.cat-item:nth-child(2) { animation: floatIn 0.5s 0.2s ease both; }
.cat-item:nth-child(3) { animation: floatIn 0.5s 0.3s ease both; }
.cat-item:nth-child(4) { animation: floatIn 0.5s 0.4s ease both; }

/* Icon bounce on hover */
@keyframes iconBounce {
    0%   { transform: translateY(0) scale(1); }
    40%  { transform: translateY(-12px) scale(1.15); }
    60%  { transform: translateY(-8px) scale(1.1); }
    80%  { transform: translateY(-10px) scale(1.12); }
    100% { transform: translateY(-8px) scale(1.1); }
}

.cat-item:hover img {
    animation: iconBounce 0.5s ease forwards;
    opacity: 1;
    filter: sepia(0) drop-shadow(0 6px 12px rgba(201,168,76,0.5));
}

.cat-item:not(:hover) img {
    transition: all 0.4s ease;
    transform: translateY(0) scale(1);
}

/* Glow ring on hover */
.cat-item::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 3px;
    transition: width 0.4s ease;
}

.cat-item:hover::before { width: 80%; }

/* Title color shift */
.cat-item h4 {
    transition: all 0.3s ease;
    position: relative;
}

.cat-item:hover h4 {
    color: var(--gold-dark);
    transform: translateY(-2px);
}

.cat-item p {
    transition: all 0.3s ease;
}

.cat-item:hover p {
    color: var(--teak-light);
}

/* Active/click press effect */
.cat-item:active {
    transform: scale(0.95);
}

/* ============================================================
   SERVICE SECTION — PREMIUM ANIMATIONS
============================================================ */

.service-section {
    position: relative;
    overflow: hidden;
}

/* Subtle background shimmer */
.service-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center,
        rgba(201,168,76,0.06) 0%,
        transparent 60%);
    animation: sectionGlow 6s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes sectionGlow {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(10%, 5%); }
}

/* Card entrance animation */
@keyframes cardSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.service-box {
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition:
        transform 0.45s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.45s ease,
        background 0.3s ease;
}

.service-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-box:nth-child(1) { transition-delay: 0.05s; }
.service-box:nth-child(2) { transition-delay: 0.15s; }
.service-box:nth-child(3) { transition-delay: 0.25s; }
.service-box:nth-child(4) { transition-delay: 0.35s; }

/* Shine sweep on hover */
.service-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,0.35) 50%,
        transparent 100%
    );
    transition: left 0.6s ease;
    pointer-events: none;
}

.service-box:hover::after {
    left: 150%;
}

/* Icon pulse + float */
@keyframes iconFloat {
    0%   { transform: translateY(0) scale(1); }
    50%  { transform: translateY(-8px) scale(1.2); }
    100% { transform: translateY(0) scale(1); }
}

.service-box:hover .service-icon {
    animation: iconFloat 0.7s ease;
    display: inline-block;
}

/* Gold bottom bar grows on hover */
.service-box::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    transition: width 0.4s ease;
    border-radius: 3px;
}

.service-box:hover::before { width: 70%; }

/* Hover lift */
.service-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(42,26,14,0.15);
    background: var(--warm-white);
}

/* Title gold on hover */
.service-box:hover h3 {
    color: var(--gold-dark);
    transition: color 0.3s;
}

* ============================================================
   CATEGORY BAR — PREMIUM LOAD ANIMATIONS
============================================================ */

/* Individual icon bounce-in on load */
@keyframes iconDropIn {
    0%   { opacity: 0; transform: translateY(-30px) scale(0.5) rotate(-10deg); }
    60%  { opacity: 1; transform: translateY(6px) scale(1.15) rotate(3deg); }
    80%  { transform: translateY(-3px) scale(0.97) rotate(-1deg); }
    100% { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); }
}

@keyframes textFadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes lineGrow {
    from { width: 0; opacity: 0; }
    to   { width: 60%; opacity: 1; }
}

/* Icon drop-in staggered */
.cat-item:nth-child(1) img { animation: iconDropIn 0.7s cubic-bezier(0.23,1,0.32,1) 0.1s both; }
.cat-item:nth-child(2) img { animation: iconDropIn 0.7s cubic-bezier(0.23,1,0.32,1) 0.25s both; }
.cat-item:nth-child(3) img { animation: iconDropIn 0.7s cubic-bezier(0.23,1,0.32,1) 0.4s both; }
.cat-item:nth-child(4) img { animation: iconDropIn 0.7s cubic-bezier(0.23,1,0.32,1) 0.55s both; }

/* Title fade up after icon */
.cat-item:nth-child(1) h4 { animation: textFadeUp 0.5s ease 0.5s both; }
.cat-item:nth-child(2) h4 { animation: textFadeUp 0.5s ease 0.65s both; }
.cat-item:nth-child(3) h4 { animation: textFadeUp 0.5s ease 0.8s both; }
.cat-item:nth-child(4) h4 { animation: textFadeUp 0.5s ease 0.95s both; }

/* Subtitle fade up last */
.cat-item:nth-child(1) p { animation: textFadeUp 0.5s ease 0.65s both; }
.cat-item:nth-child(2) p { animation: textFadeUp 0.5s ease 0.8s both; }
.cat-item:nth-child(3) p { animation: textFadeUp 0.5s ease 0.95s both; }
.cat-item:nth-child(4) p { animation: textFadeUp 0.5s ease 1.1s both; }

/* Gold underline grows on active */
.cat-item.active-cat::after {
    width: 60%;
    animation: lineGrow 0.4s ease 1.2s both;
}

/* Hover — continuous float */
@keyframes continuousFloat {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

.cat-item:hover img {
    animation: continuousFloat 1.5s ease-in-out infinite !important;
    filter: sepia(0) drop-shadow(0 8px 16px rgba(201,168,76,0.5)) !important;
    opacity: 1 !important;
}

/* Whole item glide up on hover */
.cat-item {
    transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
}

.cat-item:hover {
    transform: translateY(-6px);
}

/* Golden glow background on hover */
.cat-item::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 16px;
    background: radial-gradient(ellipse at center,
        rgba(201,168,76,0.1) 0%,
        transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: -1;
}

.cat-item:hover::after {
    opacity: 1;
}

/* ============================================================
   PREMIUM FOOTER — COMPLETE REDESIGN
============================================================ */

.premium-footer {
    background: linear-gradient(160deg, #1a110a 0%, #0e0906 60%, #131a14 100%);
    color: #ccc;
    padding: 0 0 0;
    position: relative;
    overflow: hidden;
}

/* Decorative top golden line */
.footer-top-line {
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--gold) 30%,
        var(--gold-light) 50%,
        var(--gold) 70%,
        transparent 100%);
    animation: lineShimmer 3s ease-in-out infinite;
}

@keyframes lineShimmer {
    0%   { opacity: 0.6; }
    50%  { opacity: 1; }
    100% { opacity: 0.6; }
}

/* Ambient background glow */
.premium-footer::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle,
        rgba(201,168,76,0.06) 0%,
        transparent 70%);
    pointer-events: none;
    animation: ambientMove 8s ease-in-out infinite alternate;
}

.premium-footer::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle,
        rgba(160,97,58,0.05) 0%,
        transparent 70%);
    pointer-events: none;
}

@keyframes ambientMove {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(60px, 40px); }
}

/* Footer container */
.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding: 60px 6% 50px;
    position: relative;
    z-index: 1;
}

/* Brand column */
.footer-brand .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-style: italic;
    color: var(--gold);
    display: block;
    margin-bottom: 16px;
    letter-spacing: 1px;
    position: relative;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.9;
    color: #888;
    max-width: 280px;
}

/* Social icons */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: #888;
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.footer-social a svg {
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.footer-social a:hover::before { opacity: 1; }
.footer-social a:hover { color: #000; border-color: var(--gold); }
.footer-social a:hover svg { color: #000; }

/* Column headings */
.footer-col h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    color: #eee;
    margin-bottom: 20px;
    padding-bottom: 12px;
    font-weight: 600;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.footer-col:hover h3::after { width: 60px; }

/* Links */
.footer-col ul { padding: 0; }

.footer-col ul li {
    margin-bottom: 12px;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.footer-col ul li:hover { transform: translateX(6px); }

.footer-col ul li a {
    color: #777;
    font-size: 14px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a::before {
    content: '›';
    color: var(--gold);
    font-size: 18px;
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.3s ease;
}

.footer-col ul li a:hover { color: var(--gold-light); }
.footer-col ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Contact info rows */
.footer-info-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #777;
    font-size: 14px;
    line-height: 1.7;
}

.info-icon {
    font-size: 16px;
    margin-top: 1px;
    flex-shrink: 0;
}

.footer-contact a {
    color: #777;
    transition: color 0.3s;
}

.footer-contact a:hover { color: var(--gold-light); }

/* Bottom bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 13px;
    color: #555;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-bottom-links a {
    color: #555;
    transition: color 0.3s;
    font-size: 13px;
}

.footer-bottom-links a:hover { color: var(--gold); }
.footer-bottom-links span { color: #333; }

/* Footer entrance animation */
@keyframes footerColIn {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.footer-col:nth-child(1) { animation: footerColIn 0.6s ease 0.1s both; }
.footer-col:nth-child(2) { animation: footerColIn 0.6s ease 0.2s both; }
.footer-col:nth-child(3) { animation: footerColIn 0.6s ease 0.3s both; }
.footer-col:nth-child(4) { animation: footerColIn 0.6s ease 0.4s both; }

/* Responsive */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 5% 36px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-brand p { max-width: 100%; }
}

/* ============================================================
   CONTACT PAGE — PREMIUM
============================================================ */

/* Hero */
.contact-hero {
    background: linear-gradient(135deg,
        rgba(107,66,38,0.95) 0%,
        rgba(62,34,16,0.98) 100%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 90px 6%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse,
        rgba(201,168,76,0.12) 0%,
        transparent 70%);
    pointer-events: none;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    animation: fadeUp 0.8s ease both;
}

.contact-hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    color: #fff;
    font-style: italic;
    margin-bottom: 14px;
}

.contact-hero-content p {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    font-weight: 300;
}

/* Section */
.contact-section {
    padding: 70px 6%;
    background: var(--cream);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    background: var(--warm-white);
    border-radius: 24px;
    padding: 55px 60px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(201,168,76,0.1);
    animation: fadeUp 0.7s ease both;
}

/* Left */
.contact-left h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--teak);
    margin-bottom: 8px;
}

.contact-tagline {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 36px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: var(--cream);
    border-radius: 14px;
    margin-bottom: 14px;
    border: 1px solid rgba(201,168,76,0.1);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(201,168,76,0.3);
}

.info-icon-wrap {
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: var(--teak);
    margin-bottom: 4px;
}

.info-card p,
.info-card a {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

.info-card a:hover { color: var(--gold-dark); }

.contact-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #25D366, #1ebc57);
    color: #fff;
    border-radius: 40px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

.contact-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(37,211,102,0.4);
    background: linear-gradient(135deg, #1ebc57, #158f42);
}

/* Right form */
.contact-right h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: var(--teak);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-mid);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--cream);
    transition: var(--transition);
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    background: var(--warm-white);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.contact-form textarea { resize: vertical; }

.contact-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--teak), var(--teak-light));
    color: #fff;
    border: none;
    border-radius: 40px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(107,66,38,0.35);
    margin-top: 6px;
}

.contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(107,66,38,0.45);
    background: linear-gradient(135deg, var(--teak-dark), var(--teak));
}

.form-success {
    background: rgba(106,154,91,0.12);
    border: 1px solid rgba(106,154,91,0.3);
    color: #3a7a2a;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
}

.form-error {
    background: rgba(200,60,60,0.08);
    border: 1px solid rgba(200,60,60,0.25);
    color: #c03c3c;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        padding: 40px 30px;
    }
    .contact-hero-content h1 { font-size: 36px; }
}

@media (max-width: 480px) {
    .contact-section { padding: 40px 4%; }
    .contact-container { padding: 30px 20px; }
}

/* ============================================================
   MOBILE RESPONSIVE — COMPLETE FIX
   All pages: index, category, product, contact
============================================================ */

/* ── HEADER MOBILE ── */
@media (max-width: 768px) {

    .header {
        padding: 0 4%;
        height: 62px;
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .logo { font-size: 20px; }

    .menu-toggle {
        display: block !important;
        font-size: 24px;
        background: none;
        border: none;
        color: var(--teak);
        cursor: pointer;
        padding: 6px;
        border-radius: 8px;
    }

    .nav-menu {
        display: none !important;
        position: fixed;
        top: 62px;
        left: 0;
        right: 0;
        background: rgba(253,250,245,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column !important;
        padding: 12px 0 20px;
        border-bottom: 2px solid rgba(201,168,76,0.2);
        z-index: 999;
        box-shadow: 0 8px 30px rgba(42,26,14,0.12);
    }

    .nav-menu.active {
        display: flex !important;
    }

    .nav-menu a {
        padding: 14px 24px;
        border-radius: 0;
        border-bottom: 1px solid rgba(201,168,76,0.08);
        font-size: 15px;
        width: 100%;
    }

    /* ── CATEGORY BAR MOBILE ── */
    .category-bar {
        justify-content: flex-start;
        padding: 0;
        gap: 0;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .cat-item {
        padding: 16px 18px;
        min-width: 80px;
        flex-shrink: 0;
    }

    .cat-item img { width: 32px; }
    .cat-item h4 { font-size: 13px; }
    .cat-item p  { font-size: 11px; }

    /* ── TITLE MOBILE ── */
    .title {
        font-size: 28px;
        padding: 32px 16px 14px;
    }

    /* ── CATEGORY GRID MOBILE ── */
    .category-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px 16px;
        padding: 24px 4% 50px;
    }

    .circle-wrap {
        width: 130px !important;
        height: 130px !important;
    }

    .circle-wrap img { width: 65%; }

    .category-item h3 { font-size: 15px; margin-top: 12px; }

    /* ── PRODUCT GRID MOBILE ── */
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
        padding: 16px 3%;
    }

    .product-card > img,
    .product-card img:first-of-type {
        height: 150px;
        padding: 12px;
    }

    .product-name {
        font-size: 14px;
        padding: 10px 12px 4px;
        min-height: auto;
    }

    .price { padding: 4px 12px 10px; }
    .new-price { font-size: 16px; }
    .old-price { font-size: 12px; }

    .btn {
        margin: 0 12px 14px;
        padding: 9px 14px;
        font-size: 13px;
    }

    .discount-badge {
        font-size: 10px;
        padding: 4px 8px;
        top: 8px;
        left: 8px;
    }

    /* ── PRODUCT DETAIL MOBILE ── */
    .product-detail {
        flex-direction: column;
        gap: 20px;
        padding: 0 4%;
        margin-top: 20px;
    }

    .pd-image-wrap { min-height: 260px; }
    .pd-info h1 { font-size: 22px; }
    .pd-new-price { font-size: 26px; }
    .pd-old-price { font-size: 16px; }

    .pd-enquire {
        padding: 13px 28px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    /* ── RELATED GRID MOBILE ── */
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .related-card img { height: 120px; }

    /* ── BREADCRUMB MOBILE ── */
    .breadcrumb {
        padding: 10px 4%;
        font-size: 12px;
    }

    /* ── SERVICE SECTION MOBILE ── */
    .service-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .service-box {
        padding: 24px 16px;
    }

    .service-icon { font-size: 28px; }
    .service-box h3 { font-size: 15px; }
    .service-box p  { font-size: 12px; }

    /* ── PREMIUM SHOWCASE MOBILE ── */
    .premium-showcase {
        margin: 0 4% 40px;
        padding: 40px 20px;
    }

    .showcase-content h2 { font-size: 24px; }
    .showcase-content p  { font-size: 14px; }

    /* ── CONTACT PAGE MOBILE ── */
    .contact-hero { padding: 60px 5%; }
    .contact-hero-content h1 { font-size: 30px; }

    .contact-section { padding: 30px 4%; }

    .contact-container {
        grid-template-columns: 1fr !important;
        padding: 28px 20px;
        gap: 32px;
    }

    .contact-left h2,
    .contact-right h2 { font-size: 24px; }

    .contact-whatsapp {
        width: 100%;
        justify-content: center;
    }

    .contact-submit {
        width: 100%;
        justify-content: center;
    }
}

/* ── SMALL PHONES (≤480px) ── */
@media (max-width: 480px) {

    .category-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px 10px;
        padding: 20px 3% 40px;
    }

    .circle-wrap {
        width: 110px !important;
        height: 110px !important;
    }

    .product-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px;
        padding: 12px 3%;
    }

    .product-card > img,
    .product-card img:first-of-type {
        height: 130px;
    }

    .service-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr !important;
        padding: 32px 5% 28px;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

/* ── TOUCH DEVICE — Remove hover tilt on cards ── */
@media (hover: none) {
    .product-card {
        transform: none !important;
    }
    .product-card:hover {
        transform: none !important;
    }
}
























































