:root {
    --nanda-primary: #f775a9;
    --nanda-accent: #c6233a;
    --nanda-background: #f6edd1;
    --nanda-text: #1a1a1a;
    --nanda-header-bg: #ffffff;
    --nanda-footer-bg: #1a1a1a;
}

/* Skip Link (Accessibility) */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--nanda-accent, #c6233a);
    color: #fff;
    padding: 12px 24px;
    z-index: 100000;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
    outline: none;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    word-wrap: normal !important;
}

/* Global Focus Styles */
:focus-visible {
    outline: 2px solid var(--nanda-accent, #c6233a);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--nanda-accent, #c6233a);
    outline-offset: 2px;
}

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

html {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: "Poppins", sans-serif;
    min-height: 100vh;
    background-color: #f5f5f5;
    overflow-x: hidden;
    width: 100%;
}

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

/* ===========================
   ANNOUNCEMENT BAR
   =========================== */
.announcement-bar {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
    height: 52px;
    padding: 0 40px;
    background-image: linear-gradient(to right, var(--nanda-primary), var(--nanda-accent));
    border-radius: 16px;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
}

.announcement-bar__left {
    display: flex;
    align-items: center;
    height: 100%;
}

.social-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 4px;
    animation: slideIn 0.75s cubic-bezier(0, 0, 0.3, 1) 0.075s both;
}

.social-list__item {
    display: flex;
    align-items: center;
}

.social-list__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s;
}

.social-list__link:hover {
    opacity: 0.8;
}

.announcement-bar__center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    max-width: 100%;
}

.carousel {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 880px;
    height: 40px;
    padding: 9px 0;
}

.carousel__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.2s;
}

.carousel__btn:hover {
    opacity: 0.7;
}

.carousel__viewport {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 22px;
}

.carousel__track {
    display: flex;
    height: 22px;
    transition: transform 0.4s ease;
}

.carousel__slide {
    flex: 0 0 100%;
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    text-align: center;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 4px;
}

.carousel__slide p {
    overflow: hidden;
    text-overflow: ellipsis;
}

.carousel__slide strong {
    font-weight: 700;
}

.carousel__link {
    color: #fff;
    text-decoration: none;
}

.carousel__link:hover {
    text-decoration: underline;
}

.announcement-bar__right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

/* ===========================
   HEADER / NAVBAR
   =========================== */
.header {
    position: relative;
    z-index: 100;
}

.header__grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "hamburger logo icons-right";
    align-items: center;
    gap: 0 16px;
    width: 100%;
    min-height: 72px;
    padding: 10px 40px;
    background-color: var(--nanda-background);
    border-radius: 16px;
    font-size: 16px;
    line-height: 24px;
    color: var(--nanda-text);
    z-index: 4;
    position: relative;
    transition: border-radius 0.1s ease-in-out, background-color 0.1s ease-in-out;
}

/* Hamburger */
.header__hamburger {
    grid-area: hamburger;
    display: flex;
    align-items: center;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
    width: 40px;
    height: 34px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger__line {
    display: block;
    height: 2px;
    background-color: var(--nanda-text);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6), opacity 0.3s ease;
}

.hamburger__line:nth-child(1) { width: 20px; }
.hamburger__line:nth-child(2) { width: 24px; }
.hamburger__line:nth-child(3) { width: 14px; }

.hamburger:hover .hamburger__line {
    background-color: var(--nanda-text);
}

/* Logo */
.header__logo {
    grid-area: logo;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.header__logo-img {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.header__logo-img--mobile {
    display: none;
}

@media (max-width: 768px) {
    .header__logo-img--desktop {
        display: none;
    }
    .header__logo-img--mobile {
        display: block;
    }
}

.header__logo-text {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--nanda-accent);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Desktop Nav */
.header__nav {
    display: none;
    grid-area: logo;
    justify-content: center;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu__item {
    position: relative;
    list-style: none;
    display: inline-flex;
    align-items: center;
}

.nav-menu__item.has-mega-menu {
    position: static;
}

.nav-menu__link {
    display: flex;
    align-items: center;
    padding: 16px 16px 24px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    white-space: nowrap;
    color: var(--nanda-text, #000);
    text-decoration: none;
    cursor: pointer;
}

.nav-menu__label {
    position: relative;
    display: block;
    overflow: hidden;
}

.nav-menu__label::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--nanda-text, #000);
    transform: translateX(-110%);
    transition: transform 0.25s ease;
}

.nav-menu__link:hover .nav-menu__label::before {
    transform: translateX(0);
}

/* Right Icons */
.header__icons {
    grid-area: icons-right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
}

.header__icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 9px;
    background: none;
    border: none;
    color: var(--nanda-text);
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s;
    position: relative;
}

.header__icon-btn:hover {
    opacity: 0.6;
}

.header__cart-btn {
    position: relative;
}

.header__cart-count {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 18px;
    height: 18px;
    background-color: var(--nanda-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    line-height: 18px;
    text-align: center;
    border-radius: 50%;
    display: none;
}

.header__cart-count.visible {
    display: block;
}

/* ===========================
   MEGA MENU DROPDOWN
   =========================== */
.mega-menu__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100vh - 120px);
    overflow: hidden;
    background-color: var(--nanda-background, #fff);
    padding: 0 20px 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    z-index: 10;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    pointer-events: none;
}

.has-mega-menu:hover > .mega-menu__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

/* When mega menu is open, flatten header bottom corners for seamless join */
.header__grid:has(.has-mega-menu:hover) {
    border-radius: 16px 16px 0 0;
}

.mega-menu__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    pointer-events: all;
}

@keyframes megaCardSlideIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mega-menu__card {
    display: block;
    text-decoration: none;
    color: #fff;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(12px);
}

.has-mega-menu:hover .mega-menu__card {
    animation: megaCardSlideIn 0.5s cubic-bezier(0, 0, 0.3, 1) forwards;
}

.has-mega-menu:hover .mega-menu__card:nth-child(1) { animation-delay: 0.05s; }
.has-mega-menu:hover .mega-menu__card:nth-child(2) { animation-delay: 0.1s; }
.has-mega-menu:hover .mega-menu__card:nth-child(3) { animation-delay: 0.15s; }
.has-mega-menu:hover .mega-menu__card:nth-child(4) { animation-delay: 0.2s; }
.has-mega-menu:hover .mega-menu__card:nth-child(5) { animation-delay: 0.25s; }
.has-mega-menu:hover .mega-menu__card:nth-child(6) { animation-delay: 0.3s; }
.has-mega-menu:hover .mega-menu__card:nth-child(7) { animation-delay: 0.35s; }

.mega-menu__card-media {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 5;
    overflow: hidden;
    border-radius: 6px;
    background-color: rgb(50, 63, 61);
}

.mega-menu__card-img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: 50% 50%;
    transition: transform 0.5s ease;
}

.mega-menu__card:hover .mega-menu__card-img {
    transform: scale(1.05);
}

.mega-menu__card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    z-index: 1;
    transition: background 0.35s ease-in-out;
}

.mega-menu__card:hover .mega-menu__card-overlay {
    background: rgba(0, 0, 0, 0.25);
}

.mega-menu__card-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    text-align: left;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: #fff;
    text-transform: uppercase;
}

/* ===========================
   MOBILE NAV DRAWER
   =========================== */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
}

.mobile-nav.open {
    display: block;
}

.mobile-nav__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    animation: fadeIn 0.3s ease;
}

.mobile-nav__drawer {
    position: absolute;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background-color: var(--nanda-background);
    padding: 24px;
    overflow-y: auto;
    animation: slideRight 0.3s ease;
}

.mobile-nav__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--nanda-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Nav User Actions (Account, Wishlist) */
.mobile-nav__user {
    display: flex;
    gap: 0;
    margin-top: 48px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-nav__user-link {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    padding: 12px 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--nanda-text);
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.mobile-nav__user-link:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.mobile-nav__user-link svg {
    flex-shrink: 0;
}

.mobile-nav__links {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 8px;
    list-style: none;
}

.mobile-nav__links li {
    list-style: none;
}

.mobile-nav__links a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--nanda-text);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: color 0.2s;
}

.mobile-nav__links a:hover {
    color: var(--nanda-accent);
}

/* Mobile Nav Utility Links */
.mobile-nav__utility {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav__utility-link {
    display: block;
    padding: 10px 0;
    font-size: 13px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.mobile-nav__utility-link:hover {
    color: var(--nanda-accent);
}

/* Desktop-only icons (hidden on mobile) */
.header__icon--desktop-only {
    display: flex;
}

/* ===========================
   HERO IMAGE BANNER
   =========================== */
/* ===========================
   SEARCH OVERLAY
   =========================== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
}

.search-overlay__inner {
    background: #fff;
    border-radius: 12px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: searchSlideDown 0.25s ease;
}

@keyframes searchSlideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.search-overlay__form {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 0;
}

.search-overlay__input {
    flex: 1;
    padding: 14px 18px;
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
    border: none;
    outline: none;
    background: transparent;
    color: var(--nanda-text);
}

.search-overlay__input::placeholder {
    color: #999;
}

.search-overlay__btn {
    padding: 12px 16px;
    background: var(--nanda-accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.search-overlay__btn:hover {
    opacity: 0.85;
}

.search-overlay__close {
    width: 40px;
    height: 40px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    font-size: 22px;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}

.search-overlay__close:hover {
    background: #e5e5e5;
}

/* ===========================
   HERO BANNER
   =========================== */
.hero-banner {
    width: 100%;
    font-family: "DM Sans", sans-serif;
    padding: 0 40px;
}

.hero-banner__container {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 2 / 1;
    border-radius: 16px;
    min-height: 380px;
    max-height: 85vh;
}

.hero-banner__track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.hero-banner__slide {
    flex: 0 0 100%;
    min-width: 100%;
    height: 100%;
}

.hero-banner__link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: var(--nanda-text);
}

.hero-banner__image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-banner__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center 20%;
}

/* Hero video (desktop only) */
.hero-banner__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

/* Desktop image — visible on desktop, hidden on mobile */
.hero-banner__img--desktop {
    display: block;
}

/* When video is present, desktop image sits behind video */
.hero-banner__img--has-video {
    z-index: 0;
}

/* Mobile image — hidden on desktop, visible on mobile */
.hero-banner__img--mobile {
    display: none;
}

/* Mobile video — visually hidden on desktop, ready on mobile */
.hero-banner__video--mobile {
    position: absolute;
    top: 0; left: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}

@media (max-width: 768px) {
    /* Hide video on mobile */
    .hero-banner__video {
        display: none;
    }
    /* Hide desktop image on mobile */
    .hero-banner__img--desktop {
        display: none;
    }
    /* Show mobile image */
    .hero-banner__img--mobile {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        object-fit: cover;
        object-position: center 20%;
        z-index: 1;
    }
    /* Hide mobile image when mobile video is present */
    .hero-banner__img--has-mobile-video {
        z-index: 0;
    }
    /* Show mobile video */
    .hero-banner__video--mobile {
        width: 100%;
        height: 100%;
        opacity: 1;
        pointer-events: auto;
        object-fit: cover;
        object-position: center;
        z-index: 2;
    }
}

.hero-banner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
    z-index: 2;
}

.hero-banner__content {
    position: relative;
    z-index: 3;
    text-align: left;
    padding: 40px 60px;
    width: 100%;
    max-width: 600px;
    margin-right: auto;
}

.hero-banner__tag {
    display: inline-block;
    padding: 6px 18px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    font-size: clamp(10px, 1.2vw, 12px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--nanda-accent);
    margin-bottom: 16px;
}

.hero-banner__title {
    font-size: clamp(22px, 4vw, 48px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.15;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.hero-banner__subtitle {
    font-size: clamp(12px, 1.6vw, 18px);
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.hero-banner__cta {
    display: inline-block;
    padding: 12px 36px;
    background-color: #fff;
    color: var(--nanda-text);
    font-size: clamp(11px, 1.3vw, 14px);
    font-weight: 600;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.2s, color 0.2s;
}

.hero-banner__link:hover .hero-banner__cta {
    background-color: var(--nanda-accent);
    color: #fff;
}

/* Banner Navigation Arrows */
.hero-banner__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    color: var(--nanda-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
    z-index: 3;
}

.hero-banner__btn:hover {
    background: rgba(255, 255, 255, 0.95);
}

.hero-banner__btn--prev {
    left: 16px;
}

.hero-banner__btn--next {
    right: 16px;
}

/* Banner Dots */
.hero-banner__dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.hero-banner__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.8);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s, border-color 0.3s;
}

.hero-banner__dot:hover {
    border-color: #fff;
}

.hero-banner__dot.active {
    background: #fff;
    border-color: #fff;
}

/* ===========================
   SHOP BY CATEGORY
   =========================== */
.shop-category {
    padding: 60px 40px;
    font-family: "DM Sans", sans-serif;
}

.shop-category__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.shop-category__title {
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 40px;
    color: var(--nanda-text);
    margin-bottom: 20px;
}

.shop-category__tabs {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.shop-category__tab {
    background: none;
    border: none;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.35);
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}

.shop-category__tab:hover {
    color: rgba(0, 0, 0, 0.7);
}

.shop-category__tab.active {
    color: var(--nanda-text);
}

/* Tab Panels */
.shop-category__panel {
    display: none;
}

.shop-category__panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Product Card */
.product-card {
    position: relative;
}

.product-card__link {
    display: block;
    text-decoration: none;
    color: var(--nanda-text);
}

.product-card__media {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 8px;
    background-color: #f0f0f0;
}

/* Wishlist Heart Button on Product Cards */
.product-card__wishlist {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 3;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, transform 0.2s;
    backdrop-filter: blur(4px);
}

.product-card__wishlist:hover {
    background: #fff;
    transform: scale(1.1);
}

.product-card__wishlist svg {
    width: 16px;
    height: 16px;
    transition: fill 0.2s, stroke 0.2s;
}

.product-card__wishlist.active svg {
    fill: var(--nanda-accent);
    stroke: var(--nanda-accent);
}

.product-card__wishlist.active {
    animation: heartPop 0.3s ease;
}

@keyframes heartPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.product-card__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    transition: opacity 0.35s ease;
}

.product-card__img--primary {
    opacity: 1;
}

.product-card__img--hover {
    opacity: 0;
}

.product-card__media:hover .product-card__img--primary {
    opacity: 0;
}

.product-card__media:hover .product-card__img--hover {
    opacity: 1;
}

.product-card__info {
    padding: 12px 4px 0;
}

.product-card__name {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--nanda-text);
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card__prices {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-card__price--sale {
    font-size: 14px;
    font-weight: 600;
    color: var(--nanda-text);
}

.product-card__price--compare {
    font-size: 13px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.45);
    text-decoration: line-through;
}

/* ===========================
   VIDEO REELS CAROUSEL
   =========================== */
.video-reels {
    padding: 60px 40px;
    font-family: "DM Sans", sans-serif;
}

.video-reels__header {
    text-align: center;
    margin-bottom: 32px;
}

.video-reels__title {
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 40px;
    color: var(--nanda-text);
}

.video-reels__carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.video-reels__arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: #fff;
    color: var(--nanda-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, border-color 0.2s;
    z-index: 2;
}

.video-reels__arrow:hover {
    background: #f0f0f0;
    border-color: rgba(0, 0, 0, 0.3);
}

.video-reels__viewport {
    overflow: hidden;
    width: 100%;
}

.video-reels__track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

/* Reel Card */
.reel-card {
    flex: 0 0 240px;
    width: 240px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    background: #fff;
}

.reel-card__video-wrap {
    position: relative;
    height: 340px;
    background: #f2f2f2;
    overflow: hidden;
    cursor: pointer;
}

.reel-card__video {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.reel-card__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s;
    pointer-events: none;
}

.reel-card__video-wrap.playing .reel-card__play-btn {
    display: none;
}

/* Mute/Unmute Button */
.reel-card__mute-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.4);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: background-color 0.2s;
}

.reel-card__mute-btn:hover {
    background: rgba(0, 0, 0, 0.6);
}

.reel-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    background-color: var(--nanda-background);
    color: var(--nanda-text);
    font-size: 12px;
    font-weight: 500;
    border-radius: 4px;
    z-index: 2;
}

.reel-card__views {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 3px 8px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    border-radius: 4px;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.reel-card__actions {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.reel-card__action-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    filter: drop-shadow(0 0 0.4rem rgba(0, 0, 0, 0.5));
    transition: transform 0.2s;
}

.reel-card__action-btn:hover {
    transform: scale(1.2);
}

/* Reel Product Info */
.reel-card__product {
    padding: 12px;
}

.reel-card__product-top {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
}

.reel-card__product-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.reel-card__product-info {
    flex: 1;
    min-width: 0;
}

.reel-card__product-name {
    font-size: 13px;
    font-weight: 400;
    color: var(--nanda-text);
    line-height: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.reel-card__product-pricing {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
}

.reel-card__sale-price {
    font-size: 13px;
    font-weight: 600;
    color: var(--nanda-text);
}

.reel-card__original-price {
    font-size: 12px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.5);
    text-decoration: line-through;
}

.reel-card__offer {
    font-size: 12px;
    font-weight: 400;
    color: var(--nanda-text);
}

.reel-card__arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: var(--nanda-text);
    text-decoration: none;
    margin-top: 4px;
    transition: opacity 0.2s;
}

.reel-card__arrow:hover {
    opacity: 0.6;
}

.reel-card__buy-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: var(--nanda-primary);
    color: #fff;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    border: 1px solid var(--nanda-primary);
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.reel-card__buy-btn:hover {
    background-color: var(--nanda-primary);
    border-color: var(--nanda-primary);
}

/* ===========================
   SHOP BY PRINTS
   =========================== */
.shop-prints {
    padding: 48px 20px;
    font-family: "DM Sans", sans-serif;
}

.shop-prints__header {
    text-align: center;
    margin-bottom: 32px;
}

.shop-prints__title {
    font-family: "Poppins", sans-serif;
    font-size: 26px;
    font-weight: 500;
    line-height: 36px;
    color: var(--nanda-text);
}

.shop-prints__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* Print Card */
.print-card {
    display: block;
    position: relative;
    text-decoration: none;
    color: #fff;
    border-radius: 16px;
    overflow: hidden;
}

.print-card__media {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 16px;
}

.print-card__image,
.print-card__video {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.print-card:hover .print-card__image,
.print-card:hover .print-card__video {
    transform: scale(1.06);
}

.print-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, transparent 50%);
    border-radius: 16px;
    z-index: 1;
}

.print-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.print-card__name {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    text-align: center;
    color: #fff;
}

/* ===========================
   SHOP OUR BESTSELLERS
   =========================== */
.bestsellers {
    padding: 45px 44px 25px;
    font-family: "DM Sans", sans-serif;
    max-width: 1400px;
    margin: 0 auto;
}

.bestsellers__inner {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.bestsellers__text {
    flex: 0 0 272px;
    width: 272px;
    padding-top: 20px;
}

.bestsellers__title {
    font-family: "Poppins", sans-serif;
    font-size: 34px;
    font-weight: 500;
    line-height: 44px;
    color: var(--nanda-text);
    margin-bottom: 24px;
}

.bestsellers__desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.75);
    margin-bottom: 12px;
}

.bestsellers__shop-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--nanda-text);
    text-decoration: none;
    transition: opacity 0.2s;
}

.bestsellers__shop-link span {
    position: relative;
}

.bestsellers__shop-link span::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--nanda-text);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.bestsellers__shop-link:hover span::after {
    transform: scaleX(1);
}

.bestsellers__carousel-wrap {
    flex: 1;
    min-width: 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.bestsellers__arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: var(--nanda-text);
    z-index: 2;
}

.bestsellers__arrow:hover {
    border-color: #999;
    background: #f5f5f5;
}

.bestsellers__carousel {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.bestsellers__track {
    display: flex;
    gap: 16px;
    transition: transform 0.4s ease;
}

.bestsellers__track .product-card {
    flex: 0 0 260px;
    width: 260px;
}

/* Sale Badge */
.product-card__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    padding: 4px 10px;
    background-color: var(--nanda-accent);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===========================
   LIMITED EDITION COLLECTION
   =========================== */
.limited-edition {
    padding: 48px 20px;
    font-family: "DM Sans", sans-serif;
}

.limited-edition__header {
    text-align: center;
    margin-bottom: 32px;
}

.limited-edition__title {
    font-family: "Poppins", sans-serif;
    font-size: 34px;
    font-weight: 500;
    line-height: 44px;
    color: var(--nanda-text);
}

.limited-edition__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* Collage Card */
.collage-card {
    display: block;
    position: relative;
    text-decoration: none;
    color: #fff;
    border-radius: 16px;
    overflow: hidden;
}

.collage-card__media {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 16px;
}

.collage-card__image,
.collage-card__video {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.collage-card:hover .collage-card__image,
.collage-card:hover .collage-card__video {
    transform: scale(1.06);
}

.collage-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    z-index: 1;
}

.collage-card__overlay--top {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, transparent 50%);
}

.collage-card__overlay--bottom {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, transparent 50%);
}

.collage-card__content {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 40px;
    display: flex;
    justify-content: center;
}

.collage-card__content--top {
    top: 0;
    align-items: flex-start;
}

.collage-card__content--bottom {
    bottom: 0;
    align-items: flex-end;
}

.collage-card__name {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    text-align: center;
    color: #fff;
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
    font-family: "DM Sans", sans-serif;
    background-color: var(--nanda-footer-bg);
    color: rgba(255, 255, 255, 0.8);
    margin-top: 40px;
}

.site-footer *,
.site-footer *::before,
.site-footer *::after {
    box-sizing: border-box;
}

.footer__main {
    padding: 60px 40px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer__col--newsletter {
    padding-right: 20px;
}

.footer__logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer__logo-img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer__logo-text {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer__logo {
    text-decoration: none;
    display: inline-block;
    margin-bottom: 16px;
    transition: opacity 0.2s;
}

.footer__logo:hover {
    opacity: 0.85;
}

.footer__tagline {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 28px;
    max-width: 300px;
}

.footer__newsletter {
    margin-bottom: 24px;
}

.footer__newsletter-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.footer__newsletter-row {
    display: flex;
    gap: 0;
}

.footer__newsletter-input {
    flex: 1;
    padding: 12px 16px;
    font-size: 14px;
    font-family: "DM Sans", sans-serif;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-right: none;
    border-radius: 8px 0 0 8px;
    color: #fff;
    outline: none;
    transition: border-color 0.2s, background-color 0.2s;
}

.footer__newsletter-input:hover {
    background-color: rgba(255, 255, 255, 0.12);
}

.footer__newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer__newsletter-input:focus {
    border-color: var(--nanda-primary);
}

.footer__newsletter-btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    background: linear-gradient(135deg, var(--nanda-primary), var(--nanda-accent));
    border: none;
    border-radius: 0 8px 8px 0;
    color: #fff;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s, transform 0.2s;
    letter-spacing: 0.3px;
}

.footer__newsletter-btn:hover {
    opacity: 0.92;
    transform: translateX(1px);
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}

.footer__social-link:hover {
    background-color: var(--nanda-primary);
    color: #fff;
}

.footer__heading {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
}

.footer__heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--nanda-primary);
    border-radius: 1px;
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
}

.footer__links li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer__links a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
    padding: 6px 0;
}

.footer__links a:hover {
    color: var(--nanda-primary);
    padding-left: 4px;
}

.footer__contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
    margin: 0;
}

.footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.footer__contact li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--nanda-primary);
}

.footer__contact a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer__contact a:hover {
    color: var(--nanda-primary);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 1400px;
    margin: 0 auto;
}

.footer__copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

.footer__payments {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.footer__payment-label {
    color: rgba(255, 255, 255, 0.35);
}

.footer__payment-icons {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideRight {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (min-width: 1024px) {
    .header__hamburger {
        display: none;
    }

    .header__grid {
        grid-template-columns: auto 1fr auto;
        grid-template-areas: "logo nav icons-right";
        gap: 0 24px;
        padding: 8px 32px;
        min-height: 68px;
    }

    .header__logo {
        grid-area: logo;
        position: static;
        justify-content: flex-start;
    }

    .header__logo-img {
        height: 32px;
    }

    .header__nav {
        display: flex;
        grid-area: nav;
        justify-content: center;
    }

    .header__icons {
        grid-area: icons-right;
    }

    .header:has(.has-mega-menu:hover) .header__grid {
        border-radius: 16px 16px 0 0;
    }

    .mega-menu__dropdown {
        padding: 0 24px 16px;
    }

    .mega-menu__grid {
        gap: 10px;
    }

    .mega-menu__card-title {
        font-size: 14px;
        line-height: 20px;
        bottom: 12px;
        left: 12px;
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .mega-menu__card-media {
        aspect-ratio: 2 / 3;
    }

    .mega-menu__grid {
        gap: 8px;
    }

    .nav-menu__link {
        padding: 16px 10px 24px;
        font-size: 14px;
    }
}

@media (min-width: 1280px) and (max-width: 1439px) {
    .mega-menu__card-title {
        font-size: 16px;
        line-height: 24px;
        bottom: 14px;
        left: 14px;
    }
}

@media (min-width: 1440px) {
    .mega-menu__card-title {
        font-size: 20px;
        line-height: 30px;
    }
}

@media (min-width: 1280px) {
    .header__grid {
        padding: 8px 40px;
    }
}

/* Tablet (769px - 1023px) */
@media (min-width: 769px) and (max-width: 1023px) {
    .announcement-bar {
        padding: 0 20px;
        gap: 16px;
    }

    .header__grid {
        padding: 10px 20px;
        min-height: 60px;
    }

    .header__logo-img {
        height: 28px;
    }

    .mega-menu__dropdown {
        display: none;
    }

    .hero-banner {
        padding: 0 20px;
    }

    .hero-banner__container {
        aspect-ratio: 16 / 9;
    }

    .hero-banner__content {
        padding: 28px 32px;
    }

    .hero-banner__btn {
        width: 36px;
        height: 36px;
    }

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

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .shop-category {
        padding: 48px 20px;
    }

    .video-reels {
        padding: 48px 20px;
    }

    .shop-prints {
        padding: 40px 20px;
    }

    .shop-prints__grid {
        gap: 12px;
    }

    .video-reels__viewport {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .video-reels__viewport::-webkit-scrollbar {
        display: none;
    }

    .bestsellers {
        padding: 40px 20px;
    }

    .bestsellers__text {
        flex: 0 0 200px;
        width: 200px;
    }

    .bestsellers__title {
        font-size: 26px;
        line-height: 34px;
    }

    .limited-edition {
        padding: 40px 20px;
    }

    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .footer__main {
        padding: 40px 20px 28px;
    }

    .footer__bottom {
        padding: 16px 20px;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {

    body {
        position: relative;
        overflow-x: hidden;
    }

    /* --- Announcement Bar --- */
    .announcement-bar {
        grid-template-columns: 1fr;
        height: auto;
        padding: 6px 12px;
        border-radius: 0;
        gap: 0;
        font-size: 13px;
    }

    .announcement-bar__left,
    .announcement-bar__right {
        display: none;
    }

    .announcement-bar__center {
        width: 100%;
    }

    .carousel__slide {
        font-size: 12px;
        line-height: 18px;
    }

    /* --- Header / Nav --- */
    .header__grid {
        grid-template-columns: auto 1fr auto;
        grid-template-areas: "hamburger logo icons-right";
        padding: 8px 12px;
        border-radius: 0;
        min-height: 52px;
        gap: 0 4px;
    }

    .header__logo {
        justify-content: center;
    }

    .header__logo-img {
        height: 24px;
    }

    .header__icons {
        gap: 0;
    }

    .header__icon-btn {
        width: 36px;
        height: 36px;
        padding: 6px;
    }

    .header__icon-btn svg {
        width: 20px;
        height: 20px;
    }

    /* Hide account & wishlist on mobile - they're in the drawer */
    .header__icon--desktop-only {
        display: none;
    }

    .header__cart-count {
        top: 2px;
        right: 0;
        min-width: 16px;
        height: 16px;
        font-size: 10px;
        line-height: 16px;
    }

    .mega-menu__dropdown {
        display: none;
    }

    .mobile-nav__drawer {
        width: 100%;
        max-width: 300px;
    }

    .mobile-nav__links a {
        padding: 16px 0;
        font-size: 15px;
    }

    /* --- Hero Banner --- */
    .hero-banner {
        width: 100%;
        overflow: hidden;
        padding: 6px;
    }

    .hero-banner__container {
        aspect-ratio: 560 / 892;
        border-radius: 12px;
        min-height: 400px;
        max-height: 90vh;
    }

    .hero-banner__img {
        object-position: center 25%;
    }

    .hero-banner__overlay {
        background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 45%, transparent 75%);
    }

    .hero-banner__content {
        text-align: center;
        padding: 20px 16px 28px;
        margin: auto auto 0;
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-banner__tag {
        margin-bottom: 8px;
    }

    .hero-banner__title {
        line-height: 1.2;
    }

    .hero-banner__subtitle {
        margin-bottom: 14px;
        line-height: 1.4;
    }

    .hero-banner__cta {
        padding: 10px 24px;
    }

    .hero-banner__btn {
        width: 28px;
        height: 28px;
        display: none;
    }

    .hero-banner__dots {
        bottom: 16px;
        gap: 10px;
    }

    .hero-banner__dot {
        width: 8px;
        height: 8px;
        border-width: 1.5px;
        padding: 0;
        margin: 4px;
    }

    .hero-banner__dot.active {
        width: 20px;
        border-radius: 4px;
        background: #fff;
        border-color: #fff;
    }

    /* Landscape mode on mobile */
    @media (orientation: landscape) {
        .hero-banner__container {
            aspect-ratio: 16 / 9;
            min-height: 280px;
            max-height: 90vh;
        }

        .hero-banner__content {
            text-align: left;
            align-items: flex-start;
            max-width: 50%;
            margin-right: auto;
            margin-left: 0;
            padding: 20px 32px;
        }
    }

    /* --- Shop by Category --- */
    .shop-category {
        padding: 32px 0;
        overflow-x: hidden;
    }

    .shop-category__header {
        padding: 0 16px;
        margin-bottom: 16px;
    }

    .shop-category__title {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 14px;
    }

    .shop-category__tabs {
        gap: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        flex-wrap: nowrap;
        padding: 0 16px;
    }

    .shop-category__tabs::-webkit-scrollbar {
        display: none;
    }

    .shop-category__tab {
        padding: 8px 14px;
        border-radius: 20px;
        background-color: #f0f0f0;
        white-space: nowrap;
        flex-shrink: 0;
        font-size: 12px;
    }

    .shop-category__tab.active {
        background-color: var(--nanda-text);
        color: #fff;
    }

    .shop-category__tab:hover {
        color: inherit;
    }

    .shop-category__content {
        padding: 0 16px;
        overflow: hidden;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        overflow: hidden;
    }

    .product-card__info {
        padding: 8px 4px 0;
    }

    .product-card__name {
        font-size: 12px;
        line-height: 16px;
    }

    .product-card__price--sale {
        font-size: 12px;
    }

    .product-card__price--compare {
        font-size: 11px;
    }

    .product-card__media {
        border-radius: 6px;
    }

    /* --- Video Reels --- */
    .video-reels {
        padding: 32px 0;
        overflow-x: hidden;
    }

    .video-reels__header {
        padding: 0 16px;
        margin-bottom: 16px;
    }

    .video-reels__title {
        font-size: 20px;
        line-height: 28px;
    }

    .shop-prints__header {
        margin-bottom: 16px;
    }

    .limited-edition__header {
        margin-bottom: 16px;
    }

    .video-reels__carousel {
        padding: 0;
    }

    .video-reels__arrow {
        display: none;
    }

    .video-reels__viewport {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 16px;
    }

    .video-reels__viewport::-webkit-scrollbar {
        display: none;
    }

    .video-reels__track {
        gap: 12px;
    }

    .reel-card {
        flex: 0 0 180px;
        width: 180px;
        border-radius: 10px;
    }

    .reel-card__video-wrap {
        height: 240px;
    }

    .reel-card__badge {
        font-size: 10px;
        padding: 3px 8px;
        top: 8px;
        left: 8px;
    }

    .reel-card__mute-btn {
        width: 30px;
        height: 30px;
        top: 8px;
        right: 8px;
    }

    .reel-card__mute-btn svg {
        width: 16px;
        height: 16px;
    }

    .reel-card__views {
        font-size: 10px;
        bottom: 8px;
        left: 8px;
    }

    .reel-card__product {
        padding: 10px;
    }

    .reel-card__product-name {
        font-size: 11px;
    }

    .reel-card__sale-price {
        font-size: 11px;
    }

    .reel-card__original-price {
        font-size: 10px;
    }

    .reel-card__offer {
        font-size: 10px;
    }

    .reel-card__buy-btn {
        padding: 8px;
        font-size: 12px;
        border-radius: 6px;
    }

    /* --- Shop by Prints (1 featured + 2 side-by-side) --- */
    .shop-prints {
        padding: 32px 16px;
    }

    .shop-prints__title {
        font-size: 20px;
        line-height: 28px;
    }

    .shop-prints__grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    /* First card spans full width as featured */
    .shop-prints__grid .print-card:first-child {
        grid-column: 1 / -1;
    }

    .shop-prints__grid .print-card:first-child .print-card__media {
        aspect-ratio: 16 / 9;
        border-radius: 12px;
    }

    .shop-prints__grid .print-card:first-child .print-card__name {
        font-size: 18px;
        line-height: 24px;
    }

    .shop-prints__grid .print-card:first-child .print-card__overlay {
        border-radius: 12px;
    }

    .print-card__media {
        aspect-ratio: 2 / 3;
        border-radius: 10px;
    }

    .print-card__overlay {
        border-radius: 10px;
    }

    .print-card__content {
        padding: 14px;
    }

    .print-card__name {
        font-size: 13px;
        line-height: 18px;
    }

    /* --- Bestsellers --- */
    .bestsellers {
        padding: 32px 0;
        overflow-x: hidden;
    }

    .bestsellers__inner {
        flex-direction: column;
        gap: 16px;
    }

    .bestsellers__text {
        flex: none;
        width: 100%;
        padding: 0 16px;
        text-align: center;
    }

    .bestsellers__title {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 8px;
    }

    .bestsellers__desc {
        font-size: 12px;
        line-height: 18px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .bestsellers__shop-link {
        font-size: 13px;
        margin-top: 8px;
    }

    .bestsellers__carousel-wrap {
        padding: 0 8px;
    }

    .bestsellers__arrow {
        width: 32px;
        height: 32px;
    }

    .bestsellers__arrow svg {
        width: 16px;
        height: 16px;
    }

    .bestsellers__carousel {
        padding: 0;
    }

    .bestsellers__track {
        gap: 10px;
    }

    .bestsellers__track .product-card {
        flex: 0 0 150px;
        width: 150px;
    }

    .product-card__badge {
        font-size: 10px;
        padding: 3px 8px;
        top: 6px;
        left: 6px;
    }

    .product-card__wishlist {
        width: 28px;
        height: 28px;
        top: 6px;
        right: 6px;
    }

    .product-card__wishlist svg {
        width: 14px;
        height: 14px;
    }

    /* --- Limited Edition (1 featured + 2 side-by-side) --- */
    .limited-edition {
        padding: 32px 16px;
    }

    .limited-edition__title {
        font-size: 20px;
        line-height: 28px;
    }

    .limited-edition__grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    /* First card spans full width as featured */
    .limited-edition__grid .collage-card:first-child {
        grid-column: 1 / -1;
    }

    .limited-edition__grid .collage-card:first-child .collage-card__media {
        aspect-ratio: 16 / 9;
        border-radius: 12px;
    }

    .limited-edition__grid .collage-card:first-child .collage-card__name {
        font-size: 18px;
        line-height: 24px;
    }

    .limited-edition__grid .collage-card:first-child .collage-card__overlay {
        border-radius: 12px;
    }

    .collage-card__media {
        border-radius: 10px;
        aspect-ratio: 3 / 4;
    }

    .collage-card__overlay {
        border-radius: 10px;
    }

    .collage-card__content {
        padding: 14px;
    }

    .collage-card__name {
        font-size: 13px;
        line-height: 18px;
    }

    /* --- Footer --- */
    .site-footer {
        margin-top: 0;
    }

    .footer__main {
        padding: 32px 16px 20px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer__col--newsletter {
        padding-right: 0;
        text-align: center;
    }

    .footer__logo {
        display: flex;
        justify-content: center;
    }

    .footer__tagline {
        font-size: 13px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer__newsletter-label {
        font-size: 12px;
    }

    .footer__newsletter-row {
        flex-direction: column;
        gap: 8px;
    }

    .footer__newsletter-input {
        width: 100%;
        border-right: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 8px;
    }

    .footer__newsletter-btn {
        width: 100%;
        border-radius: 8px;
        padding: 14px;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__heading {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .footer__heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer__col {
        text-align: center;
    }

    .footer__links a {
        font-size: 13px;
        padding: 5px 0;
    }

    .footer__links a:hover {
        padding-left: 0;
    }

    .footer__contact {
        align-items: center;
    }

    .footer__contact li {
        font-size: 13px;
        justify-content: center;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 18px 16px;
    }

    .footer__payments {
        flex-direction: column;
        gap: 4px;
    }
}

/* Extra small screens */
@media (max-width: 380px) {
    .announcement-bar {
        padding: 4px 8px;
    }

    .carousel__slide {
        font-size: 11px;
        line-height: 16px;
    }

    .header__grid {
        padding: 6px 8px;
    }

    .header__icon-btn {
        width: 30px;
        height: 30px;
        padding: 4px;
    }

    .header__icon-btn svg {
        width: 18px;
        height: 18px;
    }

    .hero-banner__container {
        min-height: 340px;
        max-height: 75vh;
    }

    .hero-banner__content {
        padding: 16px 12px 24px;
    }

    .hero-banner__cta {
        padding: 8px 20px;
        font-size: 11px;
    }

    .shop-category__title {
        font-size: 18px;
        line-height: 24px;
    }

    .shop-category__tab {
        padding: 6px 12px;
        font-size: 11px;
    }

    .reel-card {
        flex: 0 0 155px;
        width: 155px;
    }

    .reel-card__video-wrap {
        height: 210px;
    }

    .bestsellers__track .product-card {
        flex: 0 0 135px;
        width: 135px;
    }

    .shop-prints {
        padding: 24px 12px;
    }

    .limited-edition {
        padding: 24px 12px;
    }

    .footer__main {
        padding: 24px 12px 16px;
    }
}

/* ===========================
   GENERIC PAGE TEMPLATE
   =========================== */
.page-content__header {
    padding: 40px 40px 20px;
}

.page-content__title {
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: var(--nanda-text, #1a1a1a);
}

.page-content__body {
    padding: 0 40px 60px;
    max-width: 960px;
}

/* WooCommerce pages need full-width content */
.woocommerce-cart .page-content__body,
.woocommerce-checkout .page-content__body,
.woocommerce-account .page-content__body {
    max-width: 1200px;
}

@media (max-width: 768px) {
    .page-content__header {
        padding: 24px 16px 12px;
    }

    .page-content__title {
        font-size: 24px;
    }

    .page-content__body {
        padding: 0 16px 40px;
    }
}

/* ===========================
   TESTIMONIALS SECTION
   =========================== */
.testimonials {
    padding: 60px 40px;
    background-color: var(--nanda-background, #f6edd1);
}

.testimonials__inner {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials__header {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials__subtitle {
    display: block;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 8px;
    font-style: italic;
}

.testimonials__title {
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 40px;
    color: var(--nanda-text, #1a1a1a);
}

.testimonials__carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonials__arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: #fff;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, border-color 0.2s;
    z-index: 2;
}

.testimonials__arrow:hover {
    background: #f0f0f0;
    border-color: rgba(0, 0, 0, 0.3);
}

.testimonials__viewport {
    overflow: hidden;
    width: 100%;
}

.testimonials__track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

.testimonials__card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 0;
    background: #fff;
    border-radius: 12px;
    padding: 28px 24px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.testimonials__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.testimonials__text {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
    min-height: 66px;
}

.testimonials__author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonials__avatar-initial {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--nanda-primary, #f775a9), var(--nanda-accent, #c6233a));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.testimonials__name {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--nanda-text, #1a1a1a);
}

/* ===========================
   TRUST BADGES SECTION
   =========================== */
.trust-badges {
    padding: 48px 40px;
    background: #fff;
}

.trust-badges__grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-badges__item {
    text-align: center;
    padding: 24px 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    transition: box-shadow 0.2s;
}

.trust-badges__item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.trust-badges__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    background: linear-gradient(135deg, var(--nanda-primary, #f775a9), var(--nanda-accent, #c6233a));
    border-radius: 50%;
    color: #fff;
}

.trust-badges__title {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--nanda-text, #1a1a1a);
    margin-bottom: 6px;
}

.trust-badges__desc {
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.55);
    line-height: 18px;
}

/* ===========================
   BRAND STORY SECTION
   =========================== */
.brand-story {
    padding: 60px 40px;
}

.brand-story__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.brand-story__media {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--nanda-background, #f6edd1);
}

.brand-story__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-story__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.15);
}

.brand-story__content {
    padding: 16px 0;
}

.brand-story__label {
    display: inline-block;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--nanda-accent, #c6233a);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.brand-story__title {
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--nanda-text, #1a1a1a);
    margin-bottom: 16px;
}

.brand-story__text {
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    line-height: 26px;
    color: rgba(0, 0, 0, 0.65);
    margin-bottom: 24px;
}

.brand-story__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--nanda-accent, #c6233a);
    text-decoration: none;
    transition: gap 0.2s;
}

.brand-story__link:hover {
    gap: 12px;
}

/* ===========================
   BACK TO TOP BUTTON
   =========================== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--nanda-text, #1a1a1a);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background-color 0.2s;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--nanda-accent, #c6233a);
}

/* ===========================
   WHATSAPP CHAT BUTTON
   =========================== */
.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

/* ===========================
   MINI CART DRAWER
   =========================== */
.mini-cart {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10000;
    visibility: hidden;
    pointer-events: none;
}

.mini-cart.open {
    visibility: visible;
    pointer-events: auto;
}

.mini-cart__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s;
}

.mini-cart.open .mini-cart__overlay {
    opacity: 1;
}

.mini-cart__drawer {
    position: absolute;
    top: 0;
    right: 0;
    width: 380px;
    max-width: 90vw;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
}

.mini-cart.open .mini-cart__drawer {
    transform: translateX(0);
}

.mini-cart__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mini-cart__title {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.mini-cart__close {
    width: 32px;
    height: 32px;
    border: none;
    background: none;
    font-size: 24px;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-cart__items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}

.mini-cart__empty {
    text-align: center;
    padding: 48px 16px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
}

.mini-cart__item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
}

.mini-cart__item-img {
    width: 64px;
    height: 80px;
    border-radius: 6px;
    object-fit: cover;
    background: #f5f5f5;
}

.mini-cart__item-info {
    flex: 1;
    min-width: 0;
    font-family: "DM Sans", sans-serif;
}

.mini-cart__item-name {
    font-size: 13px;
    font-weight: 500;
    color: #000;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mini-cart__item-name a {
    color: inherit;
    text-decoration: none;
}

.mini-cart__item-meta {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 6px;
}

.mini-cart__item-price {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.mini-cart__item-remove {
    align-self: flex-start;
    width: 24px;
    height: 24px;
    border: none;
    background: none;
    color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    font-size: 16px;
    transition: color 0.2s;
}

.mini-cart__item-remove:hover {
    color: var(--nanda-accent, #c6233a);
}

.mini-cart__item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 6px 0;
}
.mini-cart__qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s;
    padding: 0;
    line-height: 1;
}
.mini-cart__qty-btn:hover {
    border-color: var(--nanda-primary, #f775a9);
}
.mini-cart__qty-val {
    font-size: 14px;
    font-weight: 500;
    min-width: 20px;
    text-align: center;
}
.mini-cart__remove {
    position: absolute;
    top: 8px;
    right: 0;
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    transition: color 0.2s;
}
.mini-cart__remove:hover {
    color: var(--nanda-accent, #c6233a);
}

.mini-cart__footer {
    padding: 16px 24px 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.mini-cart__subtotal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    font-family: "DM Sans", sans-serif;
}

.mini-cart__subtotal-label {
    font-size: 15px;
    font-weight: 500;
    color: #000;
}

.mini-cart__subtotal-value {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.mini-cart__checkout {
    display: block;
    width: 100%;
    padding: 14px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-bottom: 8px;
}

.mini-cart__checkout:hover {
    background: #333;
}

.mini-cart__view-cart {
    display: block;
    width: 100%;
    padding: 12px;
    background: transparent;
    color: #000;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.2s;
}

.mini-cart__view-cart:hover {
    border-color: #000;
}

/* ===========================
   RESPONSIVE - TABLET
   =========================== */
@media (min-width: 769px) and (max-width: 1023px) {
    .testimonials {
        padding: 48px 20px;
    }

    .testimonials__card {
        flex: 0 0 calc(50% - 10px);
    }

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

    .brand-story__inner {
        gap: 32px;
    }

    .brand-story__title {
        font-size: 26px;
    }
}

/* ===========================
   RESPONSIVE - MOBILE
   =========================== */
@media (max-width: 768px) {
    .testimonials {
        padding: 32px 0;
    }

    .testimonials__header {
        padding: 0 16px;
        margin-bottom: 24px;
    }

    .testimonials__title {
        font-size: 20px;
        line-height: 28px;
    }

    .testimonials__arrow {
        display: none;
    }

    .testimonials__viewport {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 16px;
    }

    .testimonials__viewport::-webkit-scrollbar {
        display: none;
    }

    .testimonials__card {
        flex: 0 0 280px;
    }

    .trust-badges {
        padding: 32px 16px;
    }

    .trust-badges__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .trust-badges__item {
        padding: 20px 12px;
    }

    .trust-badges__icon {
        width: 44px;
        height: 44px;
        margin-bottom: 10px;
    }

    .trust-badges__icon svg {
        width: 24px;
        height: 24px;
    }

    .trust-badges__title {
        font-size: 13px;
    }

    .trust-badges__desc {
        font-size: 11px;
    }

    .brand-story {
        padding: 32px 16px;
    }

    .brand-story__inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .brand-story__media {
        aspect-ratio: 16 / 9;
        border-radius: 12px;
    }

    .brand-story__title {
        font-size: 24px;
    }

    .brand-story__text {
        font-size: 14px;
        line-height: 22px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 16px;
        right: 16px;
    }

    .whatsapp-btn {
        width: 48px;
        height: 48px;
        bottom: 16px;
        left: 16px;
    }

    .whatsapp-btn svg {
        width: 24px;
        height: 24px;
    }

    .mini-cart__drawer {
        width: 100%;
        max-width: 100%;
    }
}

/* ===========================
   PERFORMANCE & MODERN CSS
   =========================== */

/* Remove 300ms tap delay */
* {
    touch-action: manipulation;
}

/* Content visibility for below-fold sections */
.shop-category,
.video-reels,
.shop-prints,
.bestsellers,
.limited-edition,
.testimonials,
.trust-badges,
.brand-story {
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}

/* Fluid Typography */
.hero-banner__title {
    font-size: clamp(24px, 5vw, 56px);
}

.hero-banner__subtitle {
    font-size: clamp(13px, 2vw, 18px);
}

.shop-category__title,
.shop-prints__title,
.bestsellers__title,
.limited-edition__title,
.testimonials__title,
.brand-story__title {
    font-size: clamp(20px, 4vw, 32px);
}

.page-content__title {
    font-size: clamp(24px, 4vw, 32px);
}

/* ===========================
   SCROLL REVEAL ANIMATIONS
   =========================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger {
    transition-delay: calc(var(--stagger, 0) * 80ms);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ===========================
   SKELETON LOADING
   =========================== */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s ease-in-out infinite;
    border-radius: 4px;
}

@keyframes skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-card {
    border-radius: 12px;
    overflow: hidden;
}

.skeleton-card__image {
    aspect-ratio: 3 / 4;
    width: 100%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s ease-in-out infinite;
}

.skeleton-card__text {
    height: 14px;
    margin: 12px 8px 0;
    width: 70%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s ease-in-out infinite;
    border-radius: 4px;
}

.skeleton-card__price {
    height: 16px;
    margin: 8px 8px 12px;
    width: 30%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s ease-in-out infinite;
    border-radius: 4px;
}

.skeleton-loading {
    position: relative;
}

.skeleton-loading::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s ease-in-out infinite;
    border-radius: inherit;
}

/* ===========================
   PREDICTIVE SEARCH RESULTS
   =========================== */
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    max-height: 400px;
    overflow-y: auto;
    z-index: 10;
}

.search-results__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    text-decoration: none;
    color: #000;
    transition: background-color 0.15s;
}

.search-results__item:hover {
    background: #f5f5f5;
}

.search-results__img {
    width: 48px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    background: #f0f0f0;
}

.search-results__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.search-results__name {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-results__price {
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
}

.search-results__view-all {
    display: block;
    text-align: center;
    padding: 12px;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--nanda-accent, #c6233a);
    text-decoration: none;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.search-results__loading,
.search-results__empty {
    padding: 24px;
    text-align: center;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
}

/* ===========================
   FREE SHIPPING PROGRESS BAR
   =========================== */
.shipping-progress {
    padding: 12px 0;
    font-family: "DM Sans", sans-serif;
}

.shipping-progress__text {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 8px;
    text-align: center;
}

.shipping-progress__text strong {
    color: #000;
}

.shipping-progress--complete .shipping-progress__text {
    color: #16a34a;
}

.shipping-progress__bar {
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
}

.shipping-progress__fill {
    height: 100%;
    background: linear-gradient(to right, var(--nanda-primary, #f775a9), var(--nanda-accent, #c6233a));
    border-radius: 3px;
    transition: width 0.4s ease;
}

.shipping-progress--complete .shipping-progress__fill {
    background: #16a34a;
}

/* ===========================
   MOBILE BOTTOM TAB NAVIGATION
   =========================== */
.bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    .bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 56px;
        padding-bottom: env(safe-area-inset-bottom);
        background: #fff;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        z-index: 9998;
        justify-content: space-around;
        align-items: center;
        box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.06);
        transition: transform 0.3s ease;
    }

    .bottom-nav.hidden {
        transform: translateY(100%);
    }

    .bottom-nav__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
        text-decoration: none;
        color: rgba(0, 0, 0, 0.5);
        font-family: "DM Sans", sans-serif;
        font-size: 10px;
        font-weight: 500;
        padding: 6px 12px;
        position: relative;
        transition: color 0.2s;
        border: none;
        background: none;
        cursor: pointer;
    }

    .bottom-nav__item.active,
    .bottom-nav__item:hover {
        color: var(--nanda-accent, #c6233a);
    }

    .bottom-nav__item svg {
        width: 22px;
        height: 22px;
    }

    .bottom-nav__badge {
        position: absolute;
        top: 0;
        right: 4px;
        min-width: 16px;
        height: 16px;
        border-radius: 8px;
        background: var(--nanda-accent, #c6233a);
        color: #fff;
        font-size: 9px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 4px;
    }

    /* Adjust sticky elements to account for bottom nav */
    .back-to-top {
        bottom: 72px;
    }

    .whatsapp-btn {
        bottom: 72px;
    }

    .sticky-atc {
        bottom: 56px;
    }

    /* Add padding to body so content isn't hidden behind bottom nav */
    body {
        padding-bottom: 56px;
    }

    /* Hide bottom nav on product pages where sticky ATC is present */
    .single-product .bottom-nav {
        display: none;
    }

    .single-product body {
        padding-bottom: 0;
    }
}

/* ===========================
   QUICK VIEW MODAL
   =========================== */
.quick-view-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    pointer-events: none;
}

.quick-view-modal.open {
    visibility: visible;
    pointer-events: auto;
}

.quick-view-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s;
}

.quick-view-modal.open .quick-view-modal__overlay {
    opacity: 1;
}

.quick-view-modal__content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    max-width: 800px;
    width: 92%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
}

.quick-view-modal__body {
    display: flex;
    gap: 0;
}

.quick-view-modal__loading {
    padding: 60px;
    text-align: center;
    width: 100%;
    font-family: "DM Sans", sans-serif;
    color: rgba(0, 0, 0, 0.5);
}

.quick-view-modal.open .quick-view-modal__content {
    transform: scale(1);
    opacity: 1;
}

.quick-view-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    font-size: 20px;
    color: #000;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-view-modal__image {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 12px 0 0 12px;
}

.quick-view-modal__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quick-view-modal__info {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: "DM Sans", sans-serif;
}

.quick-view-modal__name {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #000;
}

.quick-view-modal__price {
    font-size: 22px;
    font-weight: 700;
    color: #000;
}

.quick-view-modal__price del {
    font-size: 16px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.4);
    margin-left: 8px;
}

.quick-view-modal__desc {
    font-size: 14px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.65);
}

.quick-view-modal__atc {
    display: block;
    width: 100%;
    padding: 14px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s;
    margin-top: auto;
}

.quick-view-modal__atc:hover {
    background: #333;
}

.quick-view-modal__view-full {
    display: block;
    text-align: center;
    font-size: 13px;
    color: var(--nanda-accent, #c6233a);
    text-decoration: none;
    font-weight: 500;
}

/* Quick View button on product cards */
.coll-product-card__quick-view {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.2s, transform 0.2s;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coll-product-card:hover .coll-product-card__quick-view {
    opacity: 1;
    transform: translateY(0);
}

/* AJAX Add-to-Cart button states */
.coll-product-card__add-btn {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    text-align: center;
}

.coll-product-card__add-btn:hover {
    background: #333;
}

.coll-product-card__add-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

.coll-product-card__add-btn.added {
    background: #16a34a;
}

/* Color Swatches on Product Cards */
.coll-product-card__swatches {
    display: flex;
    gap: 4px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.coll-product-card__swatch {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    cursor: pointer;
    padding: 0;
    background: none;
    transition: border-color 0.2s, transform 0.15s;
}

.coll-product-card__swatch:hover,
.coll-product-card__swatch.active {
    border-color: #000;
    transform: scale(1.2);
}

.coll-product-card__swatch-more {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #f0f0f0;
    border: none;
    font-size: 8px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===========================
   TOAST NOTIFICATION
   =========================== */
.nanda-toast {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #000;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    z-index: 10002;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nanda-toast.show,
.nanda-toast.nanda-toast--visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.nanda-toast--success {
    background: #16a34a;
}

.nanda-toast--error {
    background: #dc2626;
}

@media (max-width: 768px) {
    .quick-view-modal__content {
        max-height: 80vh;
    }

    .quick-view-modal__body {
        flex-direction: column;
    }

    .quick-view-modal__image {
        aspect-ratio: 4 / 3;
        border-radius: 12px 12px 0 0;
    }

    .coll-product-card__quick-view {
        opacity: 1;
        transform: translateY(0);
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 6px;
        border-radius: 6px;
        background: #000;
    }
}

/* ===========================
   POLICY / LEGAL PAGES
   =========================== */
.policy-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 40px 80px;
    font-family: "DM Sans", sans-serif;
}

.policy-page__header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.policy-page__title {
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--nanda-text, #1a1a1a);
    margin-bottom: 8px;
}

.policy-page__updated {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.45);
}

.policy-page__content h2 {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--nanda-text, #1a1a1a);
    margin-top: 36px;
    margin-bottom: 16px;
}

.policy-page__content h3 {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--nanda-text, #1a1a1a);
    margin-top: 28px;
    margin-bottom: 12px;
}

.policy-page__content p {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 16px;
}

.policy-page__content ul,
.policy-page__content ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.policy-page__content li {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 8px;
}

.policy-page__content a {
    color: var(--nanda-accent, #c6233a);
    text-decoration: none;
    transition: opacity 0.2s;
}

.policy-page__content a:hover {
    opacity: 0.8;
}

.policy-page__content strong {
    color: var(--nanda-text, #1a1a1a);
    font-weight: 600;
}

@media (max-width: 768px) {
    .policy-page {
        padding: 24px 16px 60px;
    }

    .policy-page__title {
        font-size: 24px;
    }

    .policy-page__content h2 {
        font-size: 19px;
        margin-top: 28px;
    }

    .policy-page__content h3 {
        font-size: 16px;
        margin-top: 20px;
    }

    .policy-page__content p,
    .policy-page__content li {
        font-size: 14px;
    }
}

/* ===== Promo Strip (scrolling marquee below hero) ===== */
.promo-strip {
    background: #f6edd1;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 14px 0;
}

.promo-strip__track {
    display: inline-flex;
    align-items: center;
    animation: promoScroll 30s linear infinite;
    gap: 0;
}

.promo-strip__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    padding: 0 8px;
}

.promo-strip__icon {
    flex-shrink: 0;
    color: #1a1a1a;
}

.promo-strip__text {
    font-family: var(--nanda-heading-font, 'Playfair Display', serif);
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.promo-strip__separator {
    color: #1a1a1a;
    font-size: 18px;
    padding: 0 16px;
    flex-shrink: 0;
    opacity: 0.4;
}

@keyframes promoScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.promo-strip:hover .promo-strip__track {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .promo-strip {
        padding: 10px 0;
    }
    .promo-strip__text {
        font-size: 14px;
    }
    .promo-strip__icon {
        width: 18px;
        height: 18px;
    }
    .promo-strip__separator {
        font-size: 14px;
        padding: 0 10px;
    }
    .promo-strip__track {
        animation-duration: 20s;
    }
}
