/* ===== Kairaavi — Essence of Faith ===== */

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

:root {
    --brown-dark: #2B1B17;
    --brown-maroon: #4A1E1B;
    --gold: #D4AF37;
    --gold-light: #E8C872;
    --cream: #FAF6F0;
    --cream-dark: #F0E8DC;
    --white: #FFFFFF;
    --text-muted: #8A7A72;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', sans-serif;
    --nav-height: 80px;
    --topbar-height: 38px;
    --header-offset: calc(var(--topbar-height) + var(--nav-height));
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===== Top Utility Bar ===== */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--topbar-height);
    background: #111111;
    color: rgba(255, 255, 255, 0.9);
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(16px, 3vw, 40px);
    font-size: 0.72rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
}

.top-bar-item:hover {
    color: var(--gold);
}

.top-bar-item svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.top-bar-follow {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-social a {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
}

.top-bar-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--brown-dark);
}

.top-bar-social svg {
    width: 12px;
    height: 12px;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: var(--topbar-height);
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: var(--cream);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 24px rgba(43, 27, 23, 0.12);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-img {
    height: 46px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

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

.logo-tagline {
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    max-width: 220px;
    line-height: 1.3;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav-link {
    font-size: 0.72rem;
    font-weight: 600;
    color: #444;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--gold);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-enquire {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    background: #9A7B2F;
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-enquire:hover {
    background: var(--gold);
    color: var(--brown-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.bar {
    width: 24px;
    height: 2px;
    background: var(--brown-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    margin-top: var(--header-offset);
    min-height: clamp(520px, 58vw, 620px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--brown-dark);
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(43, 27, 23, 0.88) 0%,
        rgba(43, 27, 23, 0.65) 38%,
        rgba(43, 27, 23, 0.25) 62%,
        rgba(43, 27, 23, 0.45) 100%
    );
}

.hero-layout {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 3rem;
    padding: clamp(3rem, 7vw, 5rem) 24px clamp(4rem, 8vw, 5.5rem);
}

.hero-left {
    max-width: 520px;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1.25rem;
}

.hero-title-gold {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1.1;
}

.hero-title-white {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.15;
}

.hero-tagline {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: 0.04em;
    margin-bottom: 2rem;
}

.hero-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2rem;
    text-align: right;
}

.hero-brand-panel {
    padding-right: 0.5rem;
}

.hero-product-name {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.hero-product-tagline {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    align-items: flex-end;
}

.hero-feature {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 0.85rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
}

.hero-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid rgba(212, 175, 55, 0.55);
    color: var(--gold);
}

.hero-feature-icon svg {
    width: 20px;
    height: 20px;
}

.hero-dots {
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 0.5rem;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: var(--gold);
    border-color: var(--gold);
}

.btn-arrow {
    gap: 0.65rem;
}

.btn-arrow svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-arrow:hover svg {
    transform: translateX(4px);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gold);
    color: var(--brown-dark);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-add-cart {
    width: 100%;
    background: var(--brown-dark);
    color: var(--gold);
    padding: 12px;
    margin-top: 0.75rem;
    border: 1.5px solid var(--brown-dark);
}

.btn-add-cart:hover {
    background: transparent;
    color: var(--brown-dark);
}

/* ===== Sections ===== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 0.75rem;
}

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

/* ===== Bestsellers ===== */
.bestsellers {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--cream);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(43, 27, 23, 0.12);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--brown-maroon);
    color: var(--gold);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    z-index: 2;
}

.product-image-wrap {
    background: var(--white);
    padding: 1.5rem;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-wrap img {
    max-height: 220px;
    width: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image-wrap img {
    transform: scale(1.04);
}

.product-info {
    padding: 1.25rem 1.5rem 1.5rem;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--brown-dark);
    margin-bottom: 0.4rem;
}

.product-desc {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.stars {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

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

.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
}

.price-sale {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brown-maroon);
}

.price-original {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* ===== Collection ===== */
.collection {
    background: var(--brown-dark);
}

.collection .section-title,
.collection .section-subtitle {
    color: var(--cream);
}

.collection .section-subtitle {
    color: rgba(250, 246, 240, 0.65);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.25rem;
}

.collection-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    padding: 2rem 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.collection-card:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: var(--gold);
    transform: translateY(-4px);
}

.collection-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.collection-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 0.35rem;
}

.collection-card p {
    font-size: 0.75rem;
    color: rgba(250, 246, 240, 0.6);
}

.collection-card-featured {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
}

/* ===== Brand Story ===== */
.brand-story {
    background: var(--cream);
    padding-bottom: 0;
}

.brand-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.brand-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.75rem;
}

.brand-text {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.brand-values {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.brand-values span {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--brown-maroon);
    letter-spacing: 0.05em;
}

.brand-values span:not(:last-child)::after {
    content: '|';
    margin-left: 1.5rem;
    color: var(--gold);
    font-weight: 400;
}

.brand-image-stack {
    position: relative;
    height: 420px;
}

.brand-img {
    position: absolute;
    width: 55%;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(43, 27, 23, 0.2);
}

.brand-img-1 {
    top: 0;
    left: 0;
    z-index: 2;
}

.brand-img-2 {
    bottom: 0;
    right: 0;
    z-index: 1;
}

.sanskrit-ticker {
    margin-top: 80px;
    background: var(--brown-maroon);
    overflow: hidden;
    padding: 14px 0;
}

.sanskrit-track {
    display: flex;
    gap: 3rem;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}

.sanskrit-track span {
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

/* ===== Why Choose ===== */
.why-us {
    background: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.trust-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.trust-card:hover {
    border-color: var(--gold);
    box-shadow: 0 12px 32px rgba(43, 27, 23, 0.08);
    transform: translateY(-4px);
}

.trust-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.trust-icon svg {
    width: 28px;
    height: 28px;
}

.trust-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--brown-dark);
    margin-bottom: 0.75rem;
}

.trust-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== Testimonials ===== */
.testimonials {
    background: var(--cream-dark);
}

.testimonials-carousel {
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1rem);
    background: var(--white);
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    min-width: 280px;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.875rem;
    color: var(--brown-dark);
    margin-bottom: 0.2rem;
}

.testimonial-author span {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.carousel-btn:hover {
    background: var(--gold);
    color: var(--brown-dark);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.carousel-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* ===== FAQ ===== */
.faq {
    background: var(--white);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--brown-dark);
    text-align: left;
    gap: 1rem;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ===== Footer ===== */
.footer {
    background: var(--brown-dark);
    color: rgba(250, 246, 240, 0.75);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 1.25rem;
}

.footer-logo-img {
    height: 56px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
}

.footer .logo-text {
    color: var(--cream);
}

.footer-desc {
    font-size: 0.875rem;
    line-height: 1.75;
    max-width: 280px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 1.25rem;
    letter-spacing: 0.05em;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-social > span {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--brown-dark);
    border-color: var(--gold);
}

.social-links svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    padding: 1.75rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(250, 246, 240, 0.45);
}

.footer-address {
    margin-top: 0.35rem;
    font-size: 0.75rem !important;
    letter-spacing: 0.05em;
}

/* ===== Toast ===== */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--brown-dark);
    color: var(--gold);
    padding: 14px 24px;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid var(--gold);
    transform: translateY(120%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 9999;
    pointer-events: none;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* ===== Scroll Reveal ===== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.25rem;
    }

    .testimonial-card {
        flex: 0 0 calc(50% - 0.75rem);
    }

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

@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-offset);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-offset));
        background: var(--cream);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.75rem;
        transition: left 0.3s ease;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        z-index: 999;
    }

    .nav-menu.open {
        left: 0;
    }

    .btn-enquire {
        display: none;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-bottom: 4.5rem;
    }

    .hero-right {
        align-items: flex-start;
        text-align: left;
    }

    .hero-brand-panel {
        padding-right: 0;
    }

    .hero-features {
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem 1.5rem;
    }

    .hero-feature {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .nav-link {
        font-size: 1.1rem;
    }

    .top-bar-left {
        gap: 0.75rem;
    }

    .top-bar-item:first-child {
        display: none;
    }

    .top-bar-follow {
        display: none;
    }

    .logo-text-group {
        display: none;
    }

    .logo-img {
        height: 42px;
    }

    .btn-arrow {
        width: 100%;
    }

    .brand-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .brand-image-stack {
        height: 300px;
    }

    .testimonial-card {
        flex: 0 0 85%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-social {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }

    .section {
        padding: 70px 0;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

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

    .btn {
        width: 100%;
    }
}
