/* ============================================================
   VAYU ARTS — Soft Luxury E-Commerce Theme
   Light, airy palette derived from the hummingbird logo
   ============================================================ */

/* ── Design Tokens ── */
:root {
    /* Primary — soft teal-blue (from the bird's wing) */
    --vayu-primary: #345060;
    --vayu-primary-dark: #345060;
    --vayu-primary-light: #6a8e9e;
    --vayu-primary-lighter: #a3c0ce;
    --vayu-primary-ghost: rgba(74, 110, 130, 0.07);

    /* Accents (muted, light tones from logo) */
    --vayu-accent-rose: #c9929f;       /* dusty pink from magenta body */
    --vayu-accent-rose-light: #e6c4cb;
    --vayu-accent-peach: #deb399;      /* soft peach from orange crest */
    --vayu-accent-peach-light: #f0d5c3;
    --vayu-accent-coral: #c9929f;      /* alias for compatibility */
    --vayu-accent-magenta: #c9929f;    /* alias for compatibility */
    --vayu-accent-orange: #deb399;     /* alias for compatibility */

    /* Warm Neutrals */
    --vayu-cream: #faf8f6;
    --vayu-sand: #f4f0eb;
    --vayu-linen: #ebe5de;
    --vayu-accent-gold: #d6c7ad;
    --vayu-accent-gold-dark: #c4b49a;

    /* Surfaces */
    --vayu-surface: #ffffff !important;
    --vayu-surface-raised: #ffffff !important;

    /* Text */
    --vayu-text-dark: #3a3533;
    --vayu-text-muted: #7a7470;
    --vayu-text-light: #a09a95;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(74, 110, 130, 0.06);
    --shadow-md: 0 4px 16px rgba(74, 110, 130, 0.08);
    --shadow-lg: 0 12px 40px rgba(74, 110, 130, 0.1);
    --shadow-xl: 0 20px 60px rgba(74, 110, 130, 0.12);
    --shadow-glow: 0 0 30px rgba(201, 146, 159, 0.15);

    /* Radii */
    --radius-sm: 0.5rem;
    --radius-md: 0.875rem;
    --radius-lg: 1.25rem;
    --radius-xl: 1.75rem;
    --radius-full: 100px;

    /* Transitions */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Global Reset & Typography ── */
html {
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
    background-color: var(--vayu-cream);
    color: var(--vayu-text-dark);
    font-size: 15px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

main {
    flex: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 600;
    line-height: 1.25;
    color: var(--vayu-text-dark);
}

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

a, button, .btn {
    transition: all 0.35s var(--ease-out);
}

a:focus, button:focus, .btn:focus {
    outline: 2px solid var(--vayu-accent-rose);
    outline-offset: 2px;
}

::selection {
    background: var(--vayu-accent-rose-light);
    color: var(--vayu-text-dark);
}

/* ══════════════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════════════ */

.vayu-navbar {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 rgba(74, 110, 130, 0.06);
    padding: 0.75rem 0;
    border-bottom: none;
    transition: all 0.4s var(--ease-out);
}

.vayu-navbar.scrolled {
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-weight: 700;
    padding: 0.25rem 0;
    transition: transform 0.4s var(--ease-out);
}

.navbar-brand:hover {
    transform: translateY(-1px);
}

.navbar-logo {
    height: 52px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(74, 110, 130, 0.12));
    transition: all 0.4s var(--ease-out);
    background: transparent;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(201, 146, 159, 0.2));
}

.nav-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    padding: 0.6rem 1rem !important;
    color: var(--vayu-text-dark) !important;
    font-weight: 600;
    letter-spacing: 0.3px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--vayu-accent-rose);
    transition: all 0.35s var(--ease-out);
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link:hover {
    color: var(--vayu-primary) !important;
}

.nav-link.active {
    color: var(--vayu-primary) !important;
    font-weight: 700;
}

/* Dropdown */
.dropdown-menu {
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    background: var(--vayu-surface);
    animation: dropdownFade 0.25s var(--ease-out);
}

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

.dropdown-item {
    border-radius: var(--radius-sm);
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--vayu-text-dark);
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: var(--vayu-sand);
    color: var(--vayu-primary);
}

/* Navbar Cart Badge */
.vayu-cart-badge,
.cart-badge {
    background: var(--vayu-accent-rose) !important;
    color: white;
    font-size: 0.65rem;
    min-width: 18px;
    text-align: center;
}

.navbar-nav .nav-link i {
    font-size: 1.05rem;
    margin-right: 0.2rem;
}

/* Navbar Toggler */
.vayu-navbar .navbar-toggler {
    border-color: var(--vayu-linen);
    padding: 0.35rem 0.6rem;
    border-radius: var(--radius-sm);
}

.vayu-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(58,53,51,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── Search ── */
.search-container {
    position: relative;
}

.search-toggle-btn {
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0.5rem 1rem !important;
}

.search-toggle-btn::after {
    display: none !important;
}

.search-toggle-btn:hover {
    color: var(--vayu-primary) !important;
}

.search-input-wrapper {
    position: absolute;
    top: 100%;
    right: 0;
    width: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s var(--ease-out);
    z-index: 1000;
    margin-top: 0.5rem;
}

.search-input-wrapper.active {
    width: 340px;
    opacity: 1;
    visibility: visible;
}

.search-form {
    display: flex;
    align-items: center;
    background: var(--vayu-surface);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    padding: 0.4rem 0.5rem;
    border: 1.5px solid var(--vayu-linen);
    gap: 0.4rem;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    color: var(--vayu-text-dark);
    background: transparent;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.search-input::placeholder {
    color: var(--vayu-text-light);
}

.search-submit-btn {
    background: var(--vayu-primary);
    border: none;
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.search-submit-btn:hover {
    background: var(--vayu-primary-dark);
    transform: scale(1.05);
}

.search-close-btn {
    background: transparent;
    border: none;
    color: var(--vayu-text-muted);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.search-close-btn:hover {
    background: var(--vayu-sand);
    color: var(--vayu-accent-rose);
    transform: rotate(90deg);
}

/* ══════════════════════════════════════════════════════════════
   HERO BANNER
   ══════════════════════════════════════════════════════════════ */

.hero-banner {
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 0;
    padding: 0;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(201, 146, 159, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(222, 179, 153, 0.08) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.hero-slide {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 90vh;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(52, 80, 96, 0.88) 0%,
        rgba(74, 110, 130, 0.82) 40%,
        rgba(201, 146, 159, 0.78) 100%
    ) !important;
    z-index: -1;
}

.hero-content {
    padding: 3rem 0;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    line-height: 1.05;
    margin-bottom: 1rem !important;
    font-weight: 700;
    letter-spacing: -1.5px;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    animation: heroFadeUp 1s var(--ease-out) 0.1s both;
}

.hero-subtitle-main {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    line-height: 1.3;
    margin-bottom: 1rem !important;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--vayu-accent-peach-light) !important;
    animation: heroFadeUp 1s var(--ease-out) 0.3s both;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    opacity: 0.9;
    margin-bottom: 2.5rem !important;
    line-height: 1.7;
    max-width: 520px;
    font-weight: 400;
    animation: heroFadeUp 1s var(--ease-out) 0.5s both;
}

.hero-cta-btn {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(0.85rem, 1.8vw, 0.95rem) !important;
    min-height: 48px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    animation: heroFadeUp 1s var(--ease-out) 0.7s both;
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

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

.min-vh-75 {
    min-height: 75vh;
}

/* ══════════════════════════════════════════════════════════════
   SECTIONS — Global
   ══════════════════════════════════════════════════════════════ */

section {
    padding: 5rem 0;
    position: relative;
}

section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    color: var(--vayu-text-dark);
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 2px;
    background: var(--vayu-accent-rose);
    border-radius: 1px;
}

section .lead {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: #ffffff;
    font-weight: 400;
}

.section-title-featured,
.section-title-accent {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 600;
    color: var(--vayu-text-dark);
    letter-spacing: -0.5px;
    margin-bottom: 0.75rem;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.section-header {
    padding: 1.5rem 0;
}

.letter-spacing {
    letter-spacing: 2px;
}

/* ══════════════════════════════════════════════════════════════
   CATEGORY CARDS
   ══════════════════════════════════════════════════════════════ */

.categories-section {
    padding: 4rem 0;
    background: var(--vayu-cream);
}

.category-card {
    display: block;
    text-decoration: none;
    transition: all 0.45s var(--ease-out);
}

.category-card:hover {
    transform: translateY(-8px);
    text-decoration: none;
}

.category-image {
    height: 340px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    transition: all 0.45s var(--ease-out);
    box-shadow: var(--shadow-md);
}

.category-card:hover .category-image {
    box-shadow: var(--shadow-xl);
}

.category-image img {
    width: 100%;
    height: 100%;
    transition: transform 0.7s var(--ease-out);
    object-fit: cover;
}

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

.category-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: clamp(1.5rem, 3vw, 2rem);
    background: linear-gradient(to top, rgba(52, 80, 96, 0.85), transparent) !important;
    color: white;
}

.category-overlay h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.3rem, 3vw, 1.75rem);
    font-weight: 600;
}

/* ══════════════════════════════════════════════════════════════
   PRODUCT CARDS
   ══════════════════════════════════════════════════════════════ */

.product-card-fashion {
    background: var(--vayu-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(74, 110, 130, 0.04);
    position: relative;
}

.product-card-fashion::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(201, 146, 159, 0.03) 0%,
        rgba(222, 179, 153, 0.03) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    border-radius: var(--radius-lg);
}

.product-card-fashion:hover::before {
    opacity: 1;
}

.product-card-fashion:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 146, 159, 0.12);
}

.product-card-fashion > * {
    position: relative;
    z-index: 1;
}

.product-image-wrapper {
    height: 360px;
    position: relative;
    background: var(--vayu-sand);
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    transition: transform 0.6s var(--ease-out);
    object-fit: cover;
}

.product-card-fashion:hover .product-image {
    transform: scale(1.06);
}

/* Badges */
.product-badges {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.product-badges .badge {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.72rem;
    padding: 0.35rem 0.75rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
}

.badge-vayu-new {
    background: var(--vayu-accent-peach);
    color: white;
    box-shadow: 0 2px 8px rgba(222, 179, 153, 0.4);
}

.badge-vayu-sale {
    background: var(--vayu-accent-rose);
    color: white;
    box-shadow: 0 2px 8px rgba(201, 146, 159, 0.4);
}

.badge-vayu-trending {
    background: var(--vayu-primary);
    color: white;
    box-shadow: 0 2px 8px rgba(74, 110, 130, 0.4);
}

/* Product Overlay */
.product-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(52, 80, 96, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s var(--ease-out);
    gap: 0.5rem;
}

.product-card-fashion:hover .product-overlay {
    opacity: 1;
}

.product-overlay .btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

.product-overlay .btn-dark {
    background: var(--vayu-primary) !important;
    border: none;
}

.product-overlay .btn-dark:hover {
    background: var(--vayu-primary-dark) !important;
}

/* Product Info */
.product-info {
    background: var(--vayu-surface);
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.25rem !important;
}

.product-info h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 600;
    line-height: 1.35;
    transition: color 0.3s ease;
    color: var(--vayu-text-dark);
}

.product-info .h5,
.product-info .h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}

.product-info .h5 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
.product-info .h4 { font-size: clamp(1.2rem, 2.8vw, 1.5rem); }

.product-info p {
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.product-info a h5 {
    transition: color 0.3s ease;
}
.product-info a:hover h5 {
    color: var(--vayu-primary) !important;
}
.product-card-fashion a {
    text-decoration: none;
}

/* ══════════════════════════════════════════════════════════════
   FEATURED SECTION
   ══════════════════════════════════════════════════════════════ */

.featured-products-section {
    padding: 5rem 0;
    background: var(--vayu-surface);
}

.featured-card {
    transition: all 0.45s var(--ease-out);
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

/* ── Add to Cart Button ── */
.add-to-cart-btn {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.3px;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s var(--ease-out);
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(74, 110, 130, 0.25);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════════
   FEATURED BANNER
   ══════════════════════════════════════════════════════════════ */

.featured-banner {
    background: linear-gradient(135deg, var(--vayu-primary) 0%, var(--vayu-accent-rose) 60%, var(--vayu-accent-peach) 100%);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.featured-banner::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatOrb 8s ease-in-out infinite;
}

.featured-banner::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -5%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatOrb 10s ease-in-out infinite reverse;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-15px, -15px) scale(1.05); }
}

.banner-content {
    z-index: 1;
    padding: 2rem 0 !important;
}

.banner-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.75rem, 4vw, 3rem);
    color: white;
}

.banner-image {
    height: 400px;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ══════════════════════════════════════════════════════════════
   TRENDING SECTION
   ══════════════════════════════════════════════════════════════ */

.trending-section {
    background: var(--vayu-cream);
}

.trending-card {
    height: 400px;
    cursor: pointer;
    transition: all 0.45s var(--ease-out);
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.trending-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.trending-image {
    width: 100%;
    height: 100%;
    transition: transform 0.6s var(--ease-out);
    object-fit: cover;
}

.trending-card:hover .trending-image {
    transform: scale(1.06);
}

.trending-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: clamp(1.5rem, 3vw, 2rem);
    background: linear-gradient(to top, rgba(52, 80, 96, 0.85), transparent) !important;
    color: white;
}

.trending-overlay h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
}

/* ══════════════════════════════════════════════════════════════
   FEATURES SECTION
   ══════════════════════════════════════════════════════════════ */

.features-section {
    padding: 3.5rem 0;
    background: var(--vayu-surface);
    border-top: 1px solid rgba(74, 110, 130, 0.04);
    border-bottom: 1px solid rgba(74, 110, 130, 0.04);
}

.feature-icon {
    transition: all 0.4s var(--ease-out);
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 70px; height: 70px;
    background: var(--vayu-primary-ghost);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-icon:hover::before {
    opacity: 1;
}

.feature-icon:hover {
    transform: scale(1.1) translateY(-3px);
}

.feature-icon i {
    font-size: clamp(1.8rem, 4vw, 2.5rem) !important;
    color: var(--vayu-primary) !important;
}

.feature-icon + h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(0.85rem, 1.8vw, 1rem);
    font-weight: 600;
    margin-top: 0.75rem;
}

/* ══════════════════════════════════════════════════════════════
   NEWSLETTER
   ══════════════════════════════════════════════════════════════ */

.newsletter-section {
    background: linear-gradient(135deg, var(--vayu-sand) 0%, var(--vayu-linen) 100%);
    padding: 4.5rem 0;
    color: var(--vayu-text-dark);
}

.newsletter-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--vayu-text-dark);
}

.newsletter-form {
    width: 100%;
}

.newsletter-form .form-control {
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    border: 1.5px solid var(--vayu-accent-gold);
    background: var(--vayu-surface);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.newsletter-form .form-control:focus {
    border-color: var(--vayu-primary);
    box-shadow: 0 0 0 0.2rem rgba(74, 110, 130, 0.15);
}

.newsletter-form .btn {
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    white-space: nowrap;
}

/* ── Section backgrounds ── */
.new-arrivals-section {
    background: var(--vayu-sand) !important;
}

.cod-sets-section {
    background: var(--vayu-cream);
}

.suits-section {
    background: var(--vayu-sand) !important;
}

/* ══════════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════════ */

.btn {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(0.8rem, 1.8vw, 0.95rem);
    white-space: nowrap;
    border-radius: var(--radius-sm);
}

.btn-lg {
    font-size: clamp(0.85rem, 2vw, 1rem);
    padding: clamp(0.7rem, 2vw, 0.85rem) clamp(1.5rem, 4vw, 2.5rem);
}

.btn-vayu-primary {
    background: var(--vayu-primary);
    border: none;
    color: white;
    transition: all 0.35s var(--ease-out);
    box-shadow: 0 2px 10px rgba(74, 110, 130, 0.2);
    font-weight: 600;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn-vayu-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-vayu-primary:hover::before {
    left: 100%;
}

.btn-vayu-primary:hover {
    background: var(--vayu-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 110, 130, 0.3);
    color: white;
}

.btn-vayu-primary:active {
    transform: translateY(0);
}

.btn-outline-vayu {
    border: 1.5px solid var(--vayu-primary);
    color: var(--vayu-primary);
    background: transparent;
    font-weight: 600;
}

.btn-outline-vayu:hover {
    background: var(--vayu-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(74, 110, 130, 0.2);
    border-color: var(--vayu-primary);
}

.btn-vayu-accent {
    background: var(--vayu-accent-rose);
    border: none;
    color: white;
    box-shadow: 0 2px 10px rgba(201, 146, 159, 0.25);
    font-weight: 600;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn-vayu-accent::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.btn-vayu-accent:hover::before {
    left: 100%;
}

.btn-vayu-accent:hover {
    background: #b5818e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 146, 159, 0.35);
    color: white;
}

.btn-vayu-accent:active {
    transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════════
   BADGES
   ══════════════════════════════════════════════════════════════ */

.badge {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(0.68rem, 1.3vw, 0.8rem);
    padding: 0.3rem 0.6rem;
    font-weight: 700;
    letter-spacing: 0.4px;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */

footer {
    background: var(--vayu-primary-dark);
    color: #fff;
    margin-top: auto;
}

footer h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

footer p, footer a {
    font-size: 0.9rem;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.55) !important;
}

.text-white-50:hover {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* ══════════════════════════════════════════════════════════════
   CONTAINER
   ══════════════════════════════════════════════════════════════ */

.container {
    padding-left: clamp(1rem, 4vw, 1.5rem);
    padding-right: clamp(1rem, 4vw, 1.5rem);
    max-width: 1200px;
}

/* ══════════════════════════════════════════════════════════════
   AUTH PAGES (Login / Register)
   ══════════════════════════════════════════════════════════════ */

.auth-wrapper {
    min-height: 100vh;
    display: flex;
    background: var(--vayu-sand);
}

.auth-left {
    flex: 1;
    background: linear-gradient(135deg, var(--vayu-primary) 0%, var(--vayu-accent-rose) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.auth-left::before {
    content: '';
    position: absolute;
    top: -50%; right: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    animation: authPulse 18s ease-in-out infinite;
}

@keyframes authPulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.05); opacity: 0.7; }
}

.auth-left-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 480px;
}

.auth-left-content .auth-logo-img {
    max-width: 180px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.2));
    animation: authFloat 4s ease-in-out infinite;
}

@keyframes authFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.auth-left-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
}

.auth-left-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.auth-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.auth-features li {
    padding: 0.6rem 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.auth-features li i {
    font-size: 1.3rem;
    color: var(--vayu-accent-peach-light);
}

.auth-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: var(--vayu-cream);
    overflow-y: auto;
}

.auth-card {
    width: 100%;
    max-width: 480px;
    background: var(--vayu-surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 2.5rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.auth-card:hover {
    box-shadow: var(--shadow-xl);
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--vayu-primary), var(--vayu-accent-rose), var(--vayu-accent-peach));
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.auth-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo .auth-logo-img {
    max-width: 160px;
    height: auto;
    margin-bottom: 1.25rem;
}

.auth-logo h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--vayu-text-dark);
    margin-bottom: 0.4rem;
}

.auth-logo p {
    color: var(--vayu-text-muted);
    margin: 0;
    font-size: 0.9rem;
}

.auth-form-label {
    font-weight: 600;
    color: var(--vayu-text-dark);
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
}

.auth-form-control {
    border: 1.5px solid var(--vayu-linen);
    border-radius: var(--radius-sm);
    padding: 0.7rem 1rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.auth-form-control:focus {
    border-color: var(--vayu-primary);
    box-shadow: 0 0 0 0.2rem rgba(74, 110, 130, 0.12);
    outline: none;
}

.auth-form-control.is-invalid {
    border-color: #dc3545;
}

.auth-invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.auth-input-group-text {
    background: var(--vayu-primary);
    color: white;
    border: 1.5px solid var(--vayu-primary);
    border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-input-group .auth-form-control {
    border-left: none;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.auth-input-group .auth-form-control:focus {
    border-left: 1.5px solid var(--vayu-primary);
}

.auth-btn-primary {
    background: var(--vayu-primary);
    border: none;
    color: white;
    transition: all 0.35s var(--ease-out);
    box-shadow: 0 2px 10px rgba(74, 110, 130, 0.2);
    font-weight: 600;
    padding: 0.7rem 2rem;
    width: 100%;
    border-radius: var(--radius-sm);
    margin-top: 0.75rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.auth-btn-primary:hover {
    background: var(--vayu-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 110, 130, 0.3);
    color: white;
}

.auth-btn-outline {
    border: 1.5px solid var(--vayu-primary);
    color: var(--vayu-primary);
    background: transparent;
    font-weight: 600;
    padding: 0.7rem 2rem;
    width: 100%;
    border-radius: var(--radius-sm);
    text-decoration: none;
    display: block;
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all 0.35s var(--ease-out);
}

.auth-btn-outline:hover {
    background: var(--vayu-primary);
    color: white;
    transform: translateY(-2px);
}

.auth-form-check-label { color: var(--vayu-text-muted); font-size: 0.85rem; }
.auth-form-check-input:checked { background-color: var(--vayu-primary); border-color: var(--vayu-primary); }
.auth-form-check-input:focus { border-color: var(--vayu-primary); box-shadow: 0 0 0 0.2rem rgba(74, 110, 130, 0.15); }

.auth-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%; left: 0; right: 0;
    height: 1px;
    background: var(--vayu-linen);
}

.auth-divider span {
    background: var(--vayu-surface);
    padding: 0 0.75rem;
    color: var(--vayu-text-light);
    position: relative;
    font-size: 0.85rem;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--vayu-text-muted);
    font-size: 0.9rem;
}

.auth-footer a { color: var(--vayu-primary); text-decoration: none; font-weight: 600; }
.auth-footer a:hover { color: var(--vayu-accent-rose); }

.auth-alert { border-radius: var(--radius-sm); border: none; padding: 0.75rem 1rem; margin-bottom: 1.25rem; }
.auth-alert-danger { background: #fef2f2; color: #b91c1c; border-left: 3px solid #dc2626; }
.auth-alert-success { background: #f0fdf4; color: #166534; border-left: 3px solid #16a34a; }

.auth-forgot-password { text-align: right; margin-top: 0.4rem; }
.auth-forgot-password a { color: var(--vayu-primary); text-decoration: none; font-size: 0.85rem; font-weight: 500; }
.auth-forgot-password a:hover { color: var(--vayu-accent-rose); }

.auth-remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.auth-password-requirements { font-size: 0.8rem; color: var(--vayu-text-light); margin-top: 0.4rem; }

.auth-info-box {
    background: rgba(74, 110, 130, 0.05);
    border-left: 3px solid var(--vayu-primary);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.25rem;
}
.auth-info-box p { margin: 0; color: var(--vayu-text-muted); font-size: 0.85rem; }

@media (max-width: 992px) {
    .auth-wrapper { flex-direction: column; }
    .auth-left { min-height: 260px; padding: 2rem; }
    .auth-left-content h1 { font-size: 2rem; }
    .auth-features { display: none; }
    .auth-card { padding: 2rem; }
}

/* ══════════════════════════════════════════════════════════════
   CART PAGE
   ══════════════════════════════════════════════════════════════ */

.cart-section {
    padding: 3rem 0;
    background: var(--vayu-sand);
    min-height: 70vh;
}

.cart-header {
    background: var(--vayu-surface);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.cart-header h1 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--vayu-text-dark);
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.cart-item {
    background: var(--vayu-surface);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease-out);
    border: 1px solid rgba(74, 110, 130, 0.04);
}

.cart-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 146, 159, 0.1);
}

.cart-item-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.cart-item-details h5 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--vayu-text-dark);
    font-weight: 600;
}

.cart-item-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--vayu-text-dark);
}

.cart-item-price-old {
    text-decoration: line-through;
    color: var(--vayu-text-light);
    font-size: 0.9rem;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.quantity-btn {
    width: 34px; height: 34px;
    border: 1.5px solid var(--vayu-linen);
    background: var(--vayu-surface);
    color: var(--vayu-text-dark);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    font-weight: 600;
}

.quantity-btn:hover {
    background: var(--vayu-primary);
    color: white;
    border-color: var(--vayu-primary);
}

.quantity-input {
    width: 50px;
    text-align: center;
    border: 1.5px solid var(--vayu-linen);
    border-radius: var(--radius-sm);
    padding: 0.4rem;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.cart-summary {
    background: var(--vayu-surface);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
    border: 1px solid rgba(74, 110, 130, 0.04);
}

.cart-summary h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--vayu-text-dark);
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--vayu-linen);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--vayu-sand);
    font-size: 0.95rem;
}

.summary-row span:first-child { color: var(--vayu-text-muted); font-weight: 500; }
.summary-row span:last-child { color: var(--vayu-text-dark); font-weight: 600; }

.summary-row:last-child {
    border-bottom: none;
    border-top: 2px solid var(--vayu-primary-lighter);
    padding-top: 1rem;
    margin-top: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.summary-row:last-child span:first-child { color: var(--vayu-text-dark); }
.summary-row:last-child span:last-child { color: var(--vayu-primary); font-size: 1.4rem; }

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--vayu-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.empty-cart-icon { font-size: 4rem; color: var(--vayu-linen); margin-bottom: 1rem; }
.empty-cart h3 { font-family: 'Cormorant Garamond', serif; color: var(--vayu-text-dark); margin-bottom: 0.75rem; }

.remove-item-btn {
    background: transparent;
    border: none;
    color: #dc3545;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s var(--ease-out);
    border-radius: 50%;
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-item-btn:hover {
    transform: scale(1.15);
    background: rgba(220, 53, 69, 0.08);
}

/* ══════════════════════════════════════════════════════════════
   SETTINGS PAGE
   ══════════════════════════════════════════════════════════════ */

.settings-section { padding: 3rem 0; background: var(--vayu-sand); min-height: 70vh; }

.settings-header {
    background: var(--vayu-surface);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.settings-header h1 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--vayu-text-dark);
    font-weight: 600;
}

.settings-card {
    background: var(--vayu-surface);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.settings-card-header {
    display: flex; align-items: center; gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--vayu-sand);
}

.settings-card-header i { font-size: 1.3rem; color: var(--vayu-primary); }
.settings-card-header h3 { font-family: 'Cormorant Garamond', serif; color: var(--vayu-text-dark); font-weight: 600; margin: 0; }

.settings-form-label { font-weight: 600; color: var(--vayu-text-dark); margin-bottom: 0.4rem; font-size: 0.85rem; }

.settings-form-control {
    border: 1.5px solid var(--vayu-linen);
    border-radius: var(--radius-sm);
    padding: 0.7rem 1rem;
    transition: all 0.3s ease;
    background: var(--vayu-surface);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.settings-form-control:focus {
    border-color: var(--vayu-primary);
    box-shadow: 0 0 0 0.2rem rgba(74, 110, 130, 0.12);
    outline: none;
}

.settings-btn-primary {
    background: var(--vayu-primary);
    border: none;
    color: white;
    padding: 0.7rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: all 0.35s var(--ease-out);
}

.settings-btn-primary:hover {
    background: var(--vayu-primary-dark);
    transform: translateY(-2px);
    color: white;
}

.settings-btn-outline {
    border: 1.5px solid var(--vayu-primary);
    color: var(--vayu-primary);
    background: transparent;
    padding: 0.7rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.settings-btn-outline:hover { background: var(--vayu-primary); color: white; }

.profile-avatar {
    width: 110px; height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--vayu-primary-lighter);
    margin-bottom: 1rem;
}

.avatar-upload { position: relative; display: inline-block; }

.avatar-upload-btn {
    position: absolute; bottom: 0; right: 0;
    width: 36px; height: 36px;
    background: var(--vayu-primary);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.avatar-upload-btn:hover { background: var(--vayu-primary-dark); transform: scale(1.08); }

.settings-tabs {
    background: var(--vayu-surface);
    border-radius: var(--radius-lg);
    padding: 0;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.settings-tabs .nav-link {
    color: var(--vayu-text-muted);
    padding: 0.85rem 1.25rem;
    border: none;
    border-bottom: 2px solid transparent;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
}

.settings-tabs .nav-link:hover { color: var(--vayu-primary); background: var(--vayu-sand); }
.settings-tabs .nav-link.active { color: var(--vayu-primary); background: var(--vayu-sand); border-bottom-color: var(--vayu-primary); font-weight: 600; }

/* ══════════════════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════════════════ */

/* Card stagger */
.product-card-fashion {
    animation: fadeInUp 0.5s var(--ease-out) both;
}
.product-card-fashion:nth-child(1) { animation-delay: 0.05s; }
.product-card-fashion:nth-child(2) { animation-delay: 0.1s; }
.product-card-fashion:nth-child(3) { animation-delay: 0.15s; }
.product-card-fashion:nth-child(4) { animation-delay: 0.2s; }

/* Scroll animations */
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Loading skeleton */
.product-image,
.category-image img,
.trending-image {
    background: linear-gradient(90deg, var(--vayu-sand) 25%, var(--vayu-linen) 50%, var(--vayu-sand) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.8s infinite;
}

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

img[src] {
    animation: none;
    background: transparent;
}

/* ══════════════════════════════════════════════════════════════
   ROW & GRID FIXES
   ══════════════════════════════════════════════════════════════ */

.row { margin-left: 0; margin-right: 0; }
.row > * { padding-left: 0.75rem; padding-right: 0.75rem; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 575.98px) {
    .hero-banner { min-height: 70vh; }
    .hero-slide { min-height: 70vh; }
    .hero-content { padding: 1.5rem 0; text-align: center; }
    .hero-title { margin-bottom: 0.75rem !important; }
    .hero-subtitle { margin-bottom: 1.5rem !important; }
    .category-image { height: 220px; }
    .product-image-wrapper { height: 280px; }
    .banner-image { height: 250px; margin-top: 1.5rem; }
    .trending-card { height: 250px; margin-bottom: 1rem; }
    .banner-content { padding: 1.5rem 0 !important; text-align: center; }
    .featured-banner .row { flex-direction: column-reverse; }

    .newsletter-form { flex-direction: column; }
    .newsletter-form .form-control { max-width: 100% !important; margin-bottom: 0.75rem; }
    .newsletter-form .btn { width: 100%; }

    .d-flex.gap-3 { flex-direction: column; gap: 0.75rem !important; }
    .d-flex.gap-3 .btn { width: 100%; min-height: 48px; }

    .add-to-cart-btn { width: 100%; min-height: 44px; margin-top: 0.5rem; }
    .hero-cta-btn { width: 100%; min-height: 48px; }

    .section-header { padding: 1rem 0; }
    .featured-products-section { padding: 3rem 0; }

    .navbar-nav { text-align: center; }
    .navbar-nav .nav-link { padding: 0.65rem 1rem !important; }
    section { padding: 2.5rem 0; }

    .search-input-wrapper { right: -50px; }
    .search-input-wrapper.active { width: calc(100vw - 100px); max-width: 280px; }

    .navbar-logo { height: 42px; max-width: 140px; }
    .navbar-brand { padding: 0.2rem 0; }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .hero-banner, .hero-slide { min-height: 75vh; }
    .category-image { height: 250px; }
    .product-image-wrapper { height: 300px; }
    .banner-image { height: 300px; margin-top: 2rem; }
    .trending-card { height: 300px; }
    .featured-banner .row { flex-direction: column-reverse; }
    .banner-content { text-align: center; padding: 2rem 0 !important; }
}

@media (max-width: 991.98px) {
    .navbar-logo { height: 48px; max-width: 160px; }
    .vayu-navbar { padding: 0.6rem 0; }
    .nav-link { padding: 0.65rem 1rem !important; }
    .hero-banner { min-height: 80vh; }

    .search-input-wrapper.active { width: 300px; }
    .search-toggle-btn span { display: none !important; }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-banner, .hero-slide { min-height: 80vh; }
    .category-image { height: 280px; }
    .product-image-wrapper { height: 320px; }
    .banner-image { height: 350px; }
    .trending-card { height: 350px; }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .hero-banner, .hero-slide { min-height: 85vh; }
    .category-image { height: 300px; }
    .product-image-wrapper { height: 350px; }
}

@media (min-width: 1200px) {
    .hero-banner, .hero-slide { min-height: 90vh; }
    .category-image { height: 350px; }
    .product-image-wrapper { height: 380px; }
    .banner-image { height: 430px; }
    .trending-card { height: 430px; }
}

@media (max-width: 768px) {
    .cart-item-image { width: 90px; height: 90px; }
    .cart-summary { position: static; margin-top: 1.5rem; }
    .settings-card { padding: 1.5rem; }
}

/* ── Landscape ── */
@media (orientation: landscape) and (max-height: 500px) {
    .hero-banner, .hero-slide { min-height: 100vh; }
    .hero-content { padding: 1rem 0; }
    .hero-title { font-size: 2rem; margin-bottom: 0.5rem !important; }
    .hero-subtitle { font-size: 1rem; margin-bottom: 1rem !important; }
}

/* ── High DPI ── */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .product-image, .category-image img, .trending-image, .banner-image img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* ── Print ── */
@media print {
    .navbar, .product-overlay, .category-overlay, .trending-overlay, footer { display: none; }
    .hero-banner { min-height: auto; page-break-after: always; }
}

/* ══════════════════════════════════════════════════════════════
   PRODUCT INFO SPACING OVERRIDES (desktop)
   ══════════════════════════════════════════════════════════════ */

.categories-section,
.new-arrivals-section,
.featured-products-section {
    padding: 5rem 0;
}

.product-card-fashion .product-info { padding: 1.25rem; }

@media (min-width: 992px) {
    .product-card-fashion .product-info { padding: 1.5rem; }
}
