:root {
    --wood:#C78843;
    --dark:#0f0f0f;
    --light:#fff;
}

/* ============================================================
   PREMIUM V2 HEADER (TRANSPARENT + FLOATING)
============================================================ */
.main-header {
    position: fixed;
    top:0; left:0;
    width:100%;
    padding:16px 0;
    background: white;
    backdrop-filter: blur(10px) saturate(180%);
    border-bottom:1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 25px rgba(0,0,0,0.20);
    z-index:9999;
    transition:0.35s ease;
}

.main-header.scrolled {
    background: rgba(15,15,15,0.30);
    padding: 10px 0;
    box-shadow: 0 4px 18px rgba(0,0,0,0.45);
}

/* LOGO */
.navbar-brand {
    color:var(--wood) !important;
    font-size:1.75rem;
    font-weight:800;
    letter-spacing:1.5px;
    transition:0.3s ease-in-out;
}

/* NAV WRAPPER */
.nav-wrapper {
    max-width: 1400px;
    margin:auto;
    padding:0 30px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* DESKTOP NAV */
.desktop-nav {
    display:flex;
    gap:40px;
}

.desktop-nav li a {
    color:#5c5c5c;
    position:relative;
    text-decoration:none;
    font-size:1.1rem;
    padding:6px 0;
    transition:0.3s;
}

.desktop-nav li a:hover {
    color:var(--wood);
}

/* Underline effect */
.desktop-nav li a::after {
    content:"";
    height:2px;
    width:0;
    background:var(--wood);
    position:absolute;
    left:0;
    bottom:-4px;
    transition:0.35s ease;
}
.desktop-nav li a:hover::after {
    width:100%;
}

/* ============================================================
   FULL WIDTH MEGA MENU
============================================================ */
.mega-parent { position:relative; }

.mega-menu {
    position:fixed;
    left:50%;
    transform:translateX(-50%) translateY(-10px);
    top:95px;
    width:100vw;
    max-width:1380px;

    background:rgba(255,255,255,0.97);
    backdrop-filter: blur(12px) saturate(180%);
    border-bottom:6px solid var(--wood);

    display:none;
    opacity:0;

    padding:55px 70px;
    box-shadow:0 30px 60px rgba(0,0,0,0.28);

    transition:0.35s ease;
    z-index:9998;
}

.mega-menu.active {
    display:block;
}

/* GRID */
.mega-grid {
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(250px,1fr));
    gap:45px;
}

/* CATEGORY TITLE */
.mega-col h4 {
    color:var(--wood);
    font-size:1rem;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:10px;
    border-left:4px solid var(--wood);
    padding-left:10px;
}

.mega-col a {
    display:block;
    padding:6px 0;
    color:#333;
    text-decoration:none;
    transition:0.25s;
}
.mega-col a:hover { color:var(--wood); }

/* ============================================================
   MOBILE HAMBURGER (Animated)
============================================================ */
.mobile-toggle-btn {
    display:none;
    background:none;
    border:0;
    cursor:pointer;
}

.mobile-toggle-btn span {
    width:28px;
    height:3px;
    background:var(--wood);
    border-radius:2px;
    transition:0.4s;
}

/* Hamburger animation when drawer open */
.mobile-toggle-btn.open span:nth-child(1){
    transform:rotate(45deg) translateY(8px);
}
.mobile-toggle-btn.open span:nth-child(2){
    opacity:0;
}
.mobile-toggle-btn.open span:nth-child(3){
    transform:rotate(-45deg) translateY(-8px);
}

/* ============================================================
   PREMIUM MOBILE DRAWER
============================================================ */
.side-drawer {
    position:fixed;
    top:0; right:-330px;
    width:300px;
    height:100vh;

    background:rgba(20,20,20,0.92);
    backdrop-filter:blur(15px) saturate(180%);
    box-shadow:-2px 0 25px rgba(0,0,0,0.45);

    padding:25px;
    overflow-y:auto;
    transition:0.45s cubic-bezier(0.17,0.67,0.48,1.3);

    z-index:99999;
}

.side-drawer.open {
    right:0;
}

/* Drawer links */
.drawer-link {
    display:block;
    padding:12px 0;
    font-size:1.1rem;
    color:#f5f5f5;
    border-bottom:1px solid #333;
}

.drawer-link:hover { color:var(--wood); }

/* Drawer category title */
.drawer-cat-title {
    color:var(--wood);
    font-size:1rem;
    margin-top:12px;
    font-weight:700;
}

/* Accordion */
.drawer-dropdown-btn {
    width:100%;
    padding:14px 0;
    color:#fff;
    background:none;
    border:none;
    display:flex;
    justify-content:space-between;
    font-size:1.1rem;
    cursor:pointer;
}

.drawer-dropdown-btn .arrow {
    transition:0.3s;
}
.drawer-dropdown-btn.active .arrow {
    transform:rotate(180deg);
}

/* Submenu */
.drawer-submenu {
    display:none;
}

/* Overlay */
.drawer-backdrop {
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.55);
    display:none;
    z-index:9990;
}
.drawer-backdrop.show { display:block; }

/* ============================================================
   PREMIUM MOBILE BOTTOM BAR (CALL, WHATSAPP, ENQUIRE)
============================================================ */
.bottom-bar {
    position:fixed;
    bottom:0;
    width:100%;
    background:#111;
    padding:12px 20px;
    display:flex;
    justify-content:space-around;
    align-items:center;
    z-index:9990;
    box-shadow:0 -3px 10px rgba(0,0,0,0.45);
}

.bottom-bar a {
    color:var(--wood);
    font-size:1.1rem;
    text-decoration:none;
    font-weight:600;
}

/* SHOW ONLY ON MOBILE */
@media(max-width:991px){
    .desktop-nav{ display:none; }
    .mobile-toggle-btn{ display:flex; }
    .mega-menu{ display:none !important; }
}

/* ===============================
   HERO PARALLAX WRAPPER
=============================== */
.hero-parallax {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.hero-layer {
    position: absolute;
    width: 110%;
    height: 110%;
    object-fit: cover;
    top: 0;
    left: 0;
    opacity: 0;
    transform: scale(1.1);
}

/* Cursor gold glow */
.cursor-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(199,136,67,0.35), transparent 70%);
    pointer-events: none;
    mix-blend-mode: soft-light;
    opacity: 0;
    transition: 0.3s ease;
    border-radius: 50%;
}

/* ===============================
   SCROLL PROGRESS BAR
=============================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: var(--wood);
    z-index: 999999;
    transition: width 0.1s linear;
}

/* ===============================
   CATEGORY ANIMATION
=============================== */
.category-item {
    opacity: 0;
    transform: translateY(40px);
}

/* ===============================
   PRODUCT CARD ANIMATION
=============================== */
.product-card {
    opacity: 0;
    transform: translateY(40px);
    transition: transform 0.5s, opacity 0.5s;
}

/* ===============================
   FLOATING WHATSAPP BUBBLE
=============================== */
.whatsapp-bubble {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 58px;
    height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content:center;
    align-items:center;
    color:white;
    font-size:28px;
    box-shadow:0 8px 20px rgba(0,0,0,0.35);
    z-index:9999;
    transition:0.3s ease;
}

.whatsapp-bubble:hover {
    transform:scale(1.1);
}

/* ===============================
   HEADER AUTO HIDE
=============================== */
.main-header.hide-header {
    transform: translateY(-100%);
    transition: 0.35s ease;
}

