:root {
    --primary-color: #c9a86c;
    --primary-dark: #5A3323;
    --text-color: #c8cdd8;
    --heading-color: #f0f2f6;
    --light-bg: #161b27;
    --white: #1a1f30;
    --border-color: #232a3a;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: #0f1117;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 70px 0;
}

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

.bg-light {
    background-color: var(--light-bg);
    border: 1px solid #232a3a;
}

/* Whatsapp Button  */
.whatsapp-float {
    position: fixed;
    width: 58px;
    height: 58px;
    bottom: 30px;
    right: 25px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    transition: all 0.3s ease;

    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: white;
    padding: 14px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Typography */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subtitle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: #c9a86c;
    margin-bottom: 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, #c9a86c 0%, #e0c080 100%);
    color: #1a1208;
    border: none;
    border-radius: 4px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e0c080 0%, #c9a86c 100%);
    box-shadow: 0 6px 24px rgba(201, 168, 108, 0.35);
    transform: translateY(-2px);
    color: #1a1208;
}

.btn-secondary {
    background-color: transparent;
    color: #c9a86c;
    border: 1.5px solid rgba(201, 168, 108, 0.45);
    border-radius: 4px;
}

.btn-secondary:hover {
    background-color: rgba(201, 168, 108, 0.1);
    border-color: #c9a86c;
    color: #c9a86c;
}

/* Header */
.header {
    background-color: #12161e;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

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

.logo a {
    display: flex;
    align-items: left;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-img {
    height: 90px;
    margin-right: 5px;
}

.nav-menu > ul {
    display: flex;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu a {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #d1d5db;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #c9a86c;
    border-bottom-color: #c9a86c;
}

.header-icons {
    display: flex;
    align-items: center;
}

.header-icons a {
    font-size: 1.2rem;
    margin-left: 20px;
    color: #d1d5db;
    position: relative;
}

.header-icons a:hover {
    color: #c9a86c;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #c9a86c;
    color: #1a1208;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */

.hero-brand {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.hero-brand img {
    height: 30px;
    filter: invert(1);
    margin-right: 15px;
}

.hero-brand span {
    margin: 0 15px;
}




/* Welcome Section */
.title-separator {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto 20px;
}

.tagline {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.3rem;
    color: #d1d5db;
    margin-bottom: 20px;
}

/* Shop Timing */

.shop-timing {
    margin: 32px auto 44px;
    padding: 13px 22px;
    width: fit-content;
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(22, 27, 39, 0.7);
    border: 1px solid rgba(201, 168, 108, 0.18);
    border-left: 3px solid #c9a86c;
    border-radius: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.timing-clock-icon {
    color: #c9a86c;
    font-size: 0.95rem;
    opacity: 0.9;
    flex-shrink: 0;
}

.timing-label {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #c9a86c;
    flex-shrink: 0;
}

.timing-divider {
    display: inline-block;
    width: 1px;
    height: 18px;
    background: rgba(201, 168, 108, 0.3);
    flex-shrink: 0;
}

.timing-slot {
    font-size: 0.85rem;
    color: #c8cdd8;
    letter-spacing: 0.2px;
}

.timing-day {
    font-weight: 600;
    color: #e8e9ec;
    margin-right: 3px;
}

.timing-sep {
    color: rgba(201, 168, 108, 0.5);
    font-size: 1rem;
    line-height: 1;
}


.section-desc {
    max-width: 1000px;
    margin: 0 auto 50px;
    color: #9ca3af;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: #1a1f30;
    padding: 30px;
    border: 1px solid #232a3a;
    transition: var(--transition);
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.35);
    border-radius: 10px;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(201, 168, 108, 0.15);
    border-color: rgba(201, 168, 108, 0.35);
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(201, 168, 108, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #c9a86c;
    font-size: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #5A3323, #3C1E12);
    color: #c9a86c;
    box-shadow: 0 4px 16px rgba(90, 51, 35, 0.4);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.service-card p {
    font-size: 0.9rem;
    color: #9ca3af;
}

/* Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
    width: 100%;
    padding: 0 20px;
}

.category-card {
    position: relative;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;

}

.section-title {
    color: #c9a86c;
    font-family: var(--font-heading);
}


.category-card:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
    transform: translateY(-5px);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 18px 20px;
    background: linear-gradient(to right, #3C1E12, #5A2E1C);
    color: #ffffff;
    text-align: center;
    backdrop-filter: blur(2px);
}

.category-overlay h3 {
    font-size: 1.1rem;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--font-body);
}

.categories-section {
    margin-bottom: 100px;

}

/* Brands Section */
.brand-grid {
    max-width: 1560px;
    margin: auto;
    padding: 30px 10px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.brand-row {
    display: grid;
    gap: 13px;
    /* margin-bottom: 1px; */
}

/* ───────── ROW 1 ───────── */
.brand-row-1 {
    grid-template-columns: 1.2fr 1.3fr 1fr;
    align-items: start;

}

/* ───────── ROW 2 ───────── */
.brand-row-2 {
    grid-template-columns: 509fr 244fr 543fr;
    align-items: end;
}

/* Brand Item */
.brand-item {
    position: relative;
    overflow: hidden;
    border-radius: 1px;
    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.08),
        0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.brand-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
}


.brand-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.brand-item:hover {
    transform: translateY(-4px);
    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.15),
        0 6px 12px rgba(0, 0, 0, 0.08);
}

.brand-item:hover img {
    transform: scale(1.08);
}

.brand-item:hover::after {
    background: rgba(0, 0, 0, 0.2);
}



/* Custom Heights */
.item-1 {
    height: 299px;
}

.item-2 {
    height: 259px;
}

.item-3 {
    height: 299px;
}

.item-4 {
    height: 230px;
}

.item-5 {
    height: 274px;
    margin-top: -62px;
}

.item-6 {
    height: 230px;
}

/* brand spotlight text */
.brand-spotlight .container {
    padding: 30px 20px 10px;
    text-align: center;
    margin: 0 auto;
}

/*  NEW ARRIVALS  */
.na-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 60px 0 50px;
}

.na-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(2px) brightness(0.55);
    transform: scale(1.04);
    z-index: 0;
}

.na-overlay {
    position: absolute;
    inset: 0;
      background: linear-gradient(
        160deg,
        rgba(15,17,23,0.8),
        rgba(60,30,18,0.65)
    );
    z-index: 1;
}

.na-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Title */
.na-title {
   position: relative;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 400;
    color: #c9a86c;
    letter-spacing: 0.6px;
    margin-bottom: 56px;
}

.na-title em {
    font-style: italic;
    font-weight: 400;
    color: #ffffff !important;
}
.na-title::after {
    content: "";
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg,#c9a86c,#e0c080);
    display: block;
    margin: 12px auto 0;
}



/* Carousel wrapper */
.na-carousel {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Nav arrows */
.na-nav {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: background 0.25s, transform 0.2s;
    z-index: 3;
}

.na-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.08);
}

/* Overflow clip */
.na-track-wrap {
    flex: 1;
    overflow: hidden;
    min-width: 0;
}

/* Scrolling row */
.na-track {
    display: flex;
    gap: 18px;
    transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    align-items: stretch;
}

/* ── Individual white card ── */
.na-card {
    flex: 0 0 calc((100% - 54px) / 4);
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;

    border: 1px solid rgba(0,0,0,0.05);

    box-shadow:
        0 10px 28px rgba(0,0,0,0.18),
        0 3px 8px rgba(0,0,0,0.08);

    transition: transform .35s ease,
                box-shadow .35s ease;
}

.na-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 22px 48px rgba(0,0,0,0.32);
}

/* Image area */
.na-card-media {
    position: relative;
      background: linear-gradient(
        180deg,
        #fafafa 0%,
        #f3f4f7 100%
    );

    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 210px;
}

.na-card-media img {
    max-height: 220px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.na-card:hover .na-card-media img {
    transform: scale(1.08);
}

/* +New badge */
.na-badge-new {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #22c55e;
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.3px;
}

.na-badge-new i {
    font-size: 0.6rem;
}

/* Heart wishlist */
.na-wishlist {
    position: absolute;
    top: 10px;
    right: 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #e11d48;
    font-size: 1rem;
    padding: 4px;
    transition: transform 0.2s;
}

.na-wishlist:hover {
    transform: scale(1.25);
}

/* Card body text */
.na-card-body {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.na-brand {
     font-size: 0.75rem;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #6b7280;
    font-weight: 700;
}

.na-name {
   font-size: 0.9rem;
    font-weight: 600;
    color: #111827;
    line-height: 1.4;
}

.na-size {
    font-size: 0.78rem;
    color: #374151;
    margin: 4px 0 0;
}

.na-size span {
    font-weight: 600;
}

/* Price */
.na-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.na-current {
     font-size: 1.05rem;
    font-weight: 800;
    color: #5A3323;
}

.na-old {
    font-size: 0.8rem;
    text-decoration: line-through;
    color: #7c8dac;
}

.na-tax {
    font-size: 0.7rem;
    color: #919bad;
    margin: 2px 0 0;
    font-style: italic;
}

/* Dots */
.na-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
}

.na-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    display: inline-block;
    transition: background 0.3s, transform 0.3s;
}

.na-dot.active {
    background: #ffffff;
    transform: scale(1.3);
}



.na-view-btn{
    margin-top:12px;
    padding:10px;
    text-align:center;
    border-radius:8px;

    font-size:0.75rem;
    font-weight:600;

    background:linear-gradient(135deg,#6b3c26,#3C1E12);
    color:#c9a86c;

    opacity:0;
    transform:translateY(6px);

    transition:.3s;
}

.na-card:hover .na-view-btn{
    opacity:1;
    transform:translateY(0);
}


/* View all btn */
.na-view-all {
    text-align: center;
    margin-top: 28px;
}

/* Empty state */
.na-empty {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.6);
    flex: 1;
}

.na-empty i {
    font-size: 3rem;
    display: block;
    margin-bottom: 14px;
}

/* ── Responsive card sizing ── */
@media (max-width: 1100px) {
    .na-card {
        flex: 0 0 calc((100% - 36px) / 3);
    }
}

@media (max-width: 768px) {
    .na-card {
        flex: 0 0 calc((100% - 18px) / 2);
    }

    .na-title {
        font-size: 1.7rem;
    }
}

@media (max-width: 479px) {
    .na-card {
        flex: 0 0 100%;
    }

    .na-nav {
        display: none;
    }

    .na-title {
        font-size: 1.4rem;
    }
}

/* New Arrivals */
.new-arrivals {
    background-color: #0f1117;
    width: 100%;
}

.new-arrivals .section-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
}

.new-arrivals .section-title {
    color: #c9a86c;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin: 0;
    text-transform: capitalize;
}

.new-arrivals .nav-btn {
    background: #1f2436;
    border: 1px solid #2a3044;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.new-arrivals .nav-btn:hover {
    background: linear-gradient(135deg, #5A3323, #3C1E12);
    color: #c9a86c;
    border-color: #5A3323;
}

.view-all-container {
    text-align: center;
    margin-bottom: 50px;
}

.btn-brown {
    background: linear-gradient(135deg, #5A3323, #3C1E12);
    color: #c9a86c;
    padding: 10px 35px;
    border-radius: 5px;
    font-weight: 500;
    border: 1px solid rgba(201, 168, 108, 0.25);
    display: inline-block;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.btn-brown:hover {
    background: linear-gradient(135deg, #3C1E12, #2a1209);
    color: #e0c080;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(90, 51, 35, 0.45);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 0;
}

@media (max-width: 1100px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* ===== PRODUCT CARD — MATCH REFERENCE IMAGE ===== */
.product-card {
    background: #16192a;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.55);
    border-color: rgba(201, 168, 108, 0.25);
}

/* Image Area — clean white bg like reference */
.product-media {
    position: relative;
    background: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 195px;
    padding: 22px 18px 18px;
    overflow: hidden;
}

.product-media img {
    max-height: 135px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.45s ease;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
}

.product-card:hover .product-media img {
    transform: scale(1.06);
}

/* Offer Badge — amber top-left pill */
.offer-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #c9a86c;
    color: #1a1208;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 4px;
    letter-spacing: 0.3px;
    z-index: 2;
    line-height: 1.5;
    text-transform: uppercase;
}

/* Wishlist heart — top-right circle */
.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: rgba(22, 25, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.28s ease;
    z-index: 2;
    backdrop-filter: blur(6px);
    font-size: 0.85rem;
}

.wishlist-btn:hover {
    background: #c9a86c;
    color: #1a1208;
    border-color: #c9a86c;
    transform: scale(1.1);
}

.wishlist-btn.active {
    color: #e11d48;
    border-color: #e11d48;
}

/* Card Body */
.product-body {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    background: #16192a;
}

/* Brand — small uppercase muted label */
.product-brand {
    font-size: 0.65rem;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #6b7280;
    font-weight: 700;
    margin: 0;
}

/* Product Title — bold white, uppercase */
.product-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #f0f0f0;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 4px;
    min-height: 38px;
}

/* Pricing row */
.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 2px;
}

.current-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: #e8e8e8;
    white-space: nowrap;
}

.old-price {
    font-size: 0.78rem;
    text-decoration: line-through;
    color: #4a5270;
    white-space: nowrap;
}

/* View Details Button — full-width dark-brown, gold text */
.product-btn {
    display: block;
    margin-top: 14px;
    text-align: center;
    padding: 11px 16px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #6b3c26 0%, #3C1E12 100%);
    color: #c9a86c;
    border: 1px solid rgba(201, 168, 108, 0.2);
    transition: all 0.28s ease;
    text-decoration: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.product-btn:hover {
    background: linear-gradient(135deg, #7a4530, #4a2518);
    color: #e8c880;
    box-shadow: 0 5px 18px rgba(90, 51, 35, 0.5);
    transform: translateY(-1px);
    border-color: rgba(201, 168, 108, 0.4);
}

/* Pricing group helper */
.price-group {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.original-price {
    font-size: 0.8rem;
    color: #6b7280;
    text-decoration: line-through;
}

/* Empty state when no products */
.no-products-msg {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #9ca3af;
}

.no-products-msg i {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
    color: #4b5563;
}

.no-products-msg p {
    font-size: 1rem;
    color: #6b7280;
}

/* Insights */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.section-title {
    color: #c9a86c;
}


.insight-card {
    background: #3C1E12;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #232a3a;
}

.insight-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.insight-content {
    padding: 25px;
    border: 1px solid #2a3044;
    border-top: none;
}

.tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #c9a86c;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.insight-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: #c9a86c;
    font-weight: 700;
    margin-top: 15px;
    transition: all 0.3s;
}

.read-more:hover {
    color: #e0c080;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* ===== TESTIMONIALS — 3-card carousel ===== */
.testimonials {
    background-color: var(--color-bg);
}

.testimonials .section-title em {
    font-style: italic;
    color: var(--color-accent);
}

.testimonials .subtitle {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-top: 6px;
}

/* Outer wrapper: arrows + overflow hidden track */
.testi-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

/* Nav arrows */
.testi-nav {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border-light);
    color: var(--color-text-muted);
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
}

.testi-nav:hover {
    background: linear-gradient(135deg, var(--color-brand), var(--color-brand-dark));
    color: var(--color-accent);
    border-color: var(--color-brand);
    box-shadow: var(--shadow-sm);
}

/* Clipping container */
.testi-track-container {
    flex: 1;
    overflow: hidden;
    min-width: 0;
}

/* Sliding row */
.testi-track {
    display: flex;
    gap: 24px;
    transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Individual card */
.testi-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
    background: var(--color-bg-card);
    border: 1px solid var(--color-accent-border);
    border-radius: 16px;
    padding: 28px 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.testi-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 8px 30px rgba(201, 168, 108, 0.12);
}

/* Avatar + Stars row */
.testi-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Circle avatar icon */
.testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--color-bg-elevated);
    border: 2px solid var(--color-accent-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Gold stars */
.testi-stars {
    color: var(--color-accent);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* Review body */
.testi-text {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    flex: 1;
    margin: 0;
}

/* Author block */
.testi-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 6px;
    padding-top: 14px;
    border-top: 1px solid var(--color-divider);
}

.testi-author strong {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-primary);
    font-style: italic;
}

.testi-author span {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    font-style: italic;
}

/* Dots */
.testi-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.testi-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-border-light);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    display: inline-block;
}

.testi-dot.active {
    background: var(--color-accent);
    transform: scale(1.25);
}

/* ── Testimonial header scroll animation ── */
@keyframes testiSlideUp {
    from {
        opacity: 0;
        transform: translateY(36px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testi-header-anim {
    opacity: 0;
    transform: translateY(36px);
    transition: none;
}

.testi-header-anim.is-visible {
    animation: testiSlideUp 0.65s cubic-bezier(0.22, 0.8, 0.36, 1) forwards;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg,
            #2A140C 0%,
            #3C1E12 50%,
            #5A2E1C 100%);
    border-top: 1px solid rgba(201, 168, 108, 0.2);
    border-bottom: 1px solid rgba(201, 168, 108, 0.2);
    padding: 18px 0;
    text-align: center;
    overflow: hidden;
}


.cta-link {
    text-decoration: none;
    display: block;
}

.cta-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    position: relative;
}

.cta-banner h2 {
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    font-size: 2rem;
    letter-spacing: 1px;
    font-weight: 300;
    margin: 0;
    text-transform: uppercase;
    transition: transform 0.4s ease;
}


.cta-arrow {
    font-size: 1.8rem;
    color: #C9A86C;
    transition: transform 0.4s ease;
}

/* hover animation */
.cta-banner:hover h2 {
    transform: translateX(-6px);
}

.cta-banner:hover .cta-arrow {
    transform: translateX(8px);
}

.cta-banner:hover {
    box-shadow: 0 0 25px rgba(201, 168, 108, 0.35);
    cursor: pointer;
}

.cta-banner::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    background: rgba(201, 168, 108, 0.15);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-banner:hover::after {
    width: 600px;
    height: 600px;
}


/* Responsive */
/* ── 1024px (large tablet landscape) ── */
@media (max-width: 1024px) {

    /* Brand grid: scale down heights on large tablet */
    .brand-row-1 .item-1 {
        height: 200px;
    }

    .brand-row-1 .item-2 {
        height: 178px;
    }

    .brand-row-1 .item-3 {
        height: 200px;
    }

    .brand-row-2 .item-4 {
        height: 160px;
    }

    .brand-row-2 .item-5 {
        height: 174px;
    }

    .brand-row-2 .item-6 {
        height: 160px;
    }

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

    .categories-grid {
        gap: 20px;
        padding: 0 30px;
    }
}

/* ── 768px (tablet portrait) ── */
@media (max-width: 768px) {
    .section-padding {
        padding: 45px 0;
    }

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

    .tagline {
        font-size: 1.1rem;
    }

    .section-desc {
        font-size: 0.95rem;
        margin-bottom: 35px;
    }

    /* Categories: 2 columns on tablet */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 0 10px;
    }

    .category-card {
        height: 230px;
    }

    /* Brand section */
    .brand-spotlight {
        padding: 40px 0;
    }

    .brand-grid {
        padding: 20px 10px;
        gap: 10px;
    }


    .brand-row-1,
    .brand-row-2 {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .brand-row-1 .item-1,
    .brand-row-1 .item-2,
    .brand-row-1 .item-3,
    .brand-row-2 .item-4,
    .brand-row-2 .item-5,
    .brand-row-2 .item-6 {
        height: 190px;
        margin-top: 0 !important;

    }

    /* Products */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* Insights */
    .insights-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Testimonials */
    .testi-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }

    /* CTA */
    .cta-banner h2 {
        font-size: 1.5rem;
    }

    /* WhatsApp button */
    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 24px;
        bottom: 18px;
        right: 18px;
    }
}

/* ── 576px (large phone / small tablet) ── */
@media (max-width: 576px) {
    .section-padding {
        padding: 35px 0;
    }

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

    .tagline {
        font-size: 1rem;
    }

    /* Categories: 1-column */
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 0;
    }

    .category-card {
        height: 210px;
    }

    .categories-section {
        margin-bottom: 50px;
    }

    /*  Products:  */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Brand items uniform height */
    .brand-row-1 .item-1,
    .brand-row-1 .item-2,
    .brand-row-1 .item-3,
    .brand-row-2 .item-4,
    .brand-row-2 .item-5,
    .brand-row-2 .item-6 {
        height: 170px;
    }

    /* Testimonials */
    .testi-card {
        flex: 0 0 100%;
    }

    .testi-nav {
        display: none;
    }

    /* CTA */
    .cta-banner h2 {
        font-size: 1.3rem;
        padding: 0 15px;
    }

    /* WhatsApp button */
    .whatsapp-float {
        width: 46px;
        height: 46px;
        font-size: 22px;
        bottom: 15px;
        right: 15px;
    }

    .shop-timing {
        gap: 10px;
        padding: 12px 16px;
    }

    .timing-divider {
        display: none;
    }

}

/* ── 480px (most phones portrait) ── */
@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }

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

    .category-card {
        height: 200px;
    }

    /* Products: single column on smallest phones */
    .products-grid {
        grid-template-columns: 1fr;
    }

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

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

    /* Brand grid: single column on small mobile */
    .brand-row-1,
    .brand-row-2 {
        grid-template-columns: 1fr;
    }

    .brand-row-1 .item-3 {
        grid-column: auto;
    }

    .brand-row-1 .item-1,
    .brand-row-1 .item-2,
    .brand-row-1 .item-3,
    .brand-row-2 .item-4,
    .brand-row-2 .item-5,
    .brand-row-2 .item-6 {
        height: 160px;
        margin-top: 0 !important;
    }

    .cta-banner h2 {
        font-size: 1.2rem;
        padding: 0 15px;
    }
}

/* ── 375px (small phones) ── */
@media (max-width: 375px) {
    .section-title {
        font-size: 1.35rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .brand-row-1 .item-1,
    .brand-row-1 .item-2,
    .brand-row-1 .item-3,
    .brand-row-2 .item-4,
    .brand-row-2 .item-5,
    .brand-row-2 .item-6 {
        height: 140px;
    }

    .whatsapp-float {
        width: 42px;
        height: 42px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Login Page Specific Styles */
.login-section {
    padding: 80px 0;
    background-color: #0f1117;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.login-container {
    background: #1a1f30;
    width: 100%;
    max-width: 450px;
    padding: 40px;
    border: 1px solid #232a3a;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);

}

.login-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #c9a86c;
    margin-bottom: 30px;
    font-family: 'Lato', sans-serif;

}

.login-form .form-group {
    margin-bottom: 20px;
}

.login-form label {
    display: block;
    font-size: 0.95rem;
    color: #9ca3af;
    margin-bottom: 8px;
    font-family: 'Lato', sans-serif;
}

.login-form .required {
    color: #e74c3c;
    margin-left: 2px;
}

.login-form input[type="text"],
.login-form input[type="password"],
.login-form input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #232a3a;
    border-radius: 6px;
    font-size: 1rem;
    color: #e2e6ef;
    background: #0f1117;
    transition: border-color 0.3s;
}

.login-form input:focus {
    outline: none;
    border-color: #c9a86c;
    box-shadow: 0 0 0 2px rgba(201, 168, 108, 0.12);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: #9ca3af;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 400;
    color: #9ca3af;
}

.checkbox-container input {
    margin-right: 8px;
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #c9a86c;
}

.forgot-password {
    color: #c9a86c;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.forgot-password:hover {
    color: #e0c080;
    text-decoration: underline;
}

.btn-login {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #5A3323 0%, #3C1E12 100%);
    color: #c9a86c;
    font-size: 0.9rem;
    font-weight: 700;
    border: 1px solid rgba(201, 168, 108, 0.2);
    border-radius: 6px;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s;
    font-family: 'Lato', sans-serif;
}

.btn-login:hover {
    background: linear-gradient(135deg, #3C1E12 0%, #2a1209 100%);
    color: #e0c080;
    box-shadow: 0 6px 20px rgba(90, 51, 35, 0.45);
    transform: translateY(-1px);
}

.register-link {
    text-align: center;
    margin-top: 25px;
    color: #9ca3af;
}

.register-link a {
    color: #c9a86c;
    font-size: 1rem;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}

.register-link a:hover {
    color: #e0c080;
    border-color: #c9a86c;

}

.input-icon-wrapper {
    position: relative;
    width: 100%;
}

.input-icon-wrapper input {
    width: 100%;
    padding-right: 40px !important;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6b7280;
    font-size: 0.9rem;
    transition: color 0.3s;
    z-index: 5;

}

.toggle-password:hover {
    color: #c9a86c;
}

/* 404 Page Styles */
.error-page-section {
    padding: 100px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background-color: #0f1117;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-code {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 700;
    color: #c9a86c;
    line-height: 1;
    margin-bottom: 20px;
}

.error-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.error-description {
    color: #9ca3af;
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.btn-error {
    background: linear-gradient(135deg, #5A3323 0%, #3C1E12 100%);
    color: #c9a86c;
    border: 1px solid rgba(201, 168, 108, 0.2);
    padding: 15px 40px;
    border-radius: 6px;
    transition: var(--transition);
}

.btn-error:hover {
    background: linear-gradient(135deg, #3C1E12 0%, #2a1209 100%);
    color: #e0c080;
    box-shadow: 0 6px 20px rgba(90, 51, 35, 0.4);
    transform: translateY(-2px);
}

.error-message {
    color: #e74c3c;
    font-size: 13px;
    display: none;
}


/* Response for smaller screens */
@media (max-width: 768px) {
    .error-code {
        font-size: 5rem;
    }

    .error-title {
        font-size: 1.8rem;
    }
}


.text-danger {
    color: #e74c3c;
}

.fw-semibold {
    font-weight: 600;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.me-1 {
    margin-right: 0.25rem;
}