/* ============================================================================
   BabyRompers.in - Complete Stylesheet
   ============================================================================ */

/* ==========================================================================
   1. ROOT VARIABLES & COLOR PALETTE
   ========================================================================== */

:root {
    --sage: #8CB88C;
    --sage-dark: #6B9A6B;
    --sage-light: #C5DEC5;
    --sage-pale: #EBF5EB;
    --coral: #FF7F6B;
    --coral-dark: #E5614D;
    --coral-light: #FFB5AA;
    --cream: #FFFAF5;
    --cream-alt: #FFF5EC;
    --white: #FFFFFF;
    --charcoal: #2D3436;
    --grey-dark: #636E72;
    --grey-light: #B2BEC3;
    --grey-border: #E8E0D8;
    --pink-soft: #FFD5CD;
    --blue-soft: #C5D8F0;
    --lavender: #D4C5F9;
    --yellow-warm: #FFE8A1;
    --star-gold: #F5A623;
    --amazon-orange: #FF9900;
    --success: #27AE60;
    --danger: #E74C3C;
    --prime-blue: #00A8E1;
}

/* ==========================================================================
   2. BASE RESET & GLOBAL STYLES
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    transition: all 200ms ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    color: var(--charcoal);
    background-color: var(--cream);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    color: var(--charcoal);
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

h1 {
    font-size: 2.25rem;
}

h2 {
    font-size: 1.875rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.1rem;
}

h6 {
    font-size: 1rem;
}

/* Links */
a {
    color: var(--sage-dark);
    text-decoration: none;
    transition: all 200ms ease;
}

a:hover {
    color: var(--sage);
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
    -webkit-user-drag: none;
    user-select: none;
}

/* Lists */
ul,
ol {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

/* Forms */
input,
textarea,
select {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   3. BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 200ms ease;
    white-space: nowrap;
}

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

.btn-amazon {
    background-color: var(--amazon-orange);
    color: var(--white);
}

.btn-amazon:hover {
    background-color: #e8890a;
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.3);
}

.btn-sage {
    background-color: var(--sage);
    color: var(--white);
}

.btn-sage:hover {
    background-color: var(--sage-dark);
    box-shadow: 0 4px 12px rgba(140, 184, 140, 0.3);
}

.btn-outline {
    border: 2px solid var(--sage);
    color: var(--sage);
    background-color: transparent;
    padding: 10px 18px;
}

.btn-outline:hover {
    background-color: var(--sage-pale);
    border-color: var(--sage-dark);
    color: var(--sage-dark);
}

.btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
}

.btn-sm {
    padding: 8px 14px;
    font-size: 14px;
}

.btn-lg {
    padding: 16px 28px;
    font-size: 18px;
}

.btn:disabled,
.btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* ==========================================================================
   4. HEADER & NAVIGATION
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--white);
    border-bottom: 1px solid var(--grey-border);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 68px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-logo img {
    max-width: 180px;
    height: auto;
    transition: all 200ms ease;
}

.site-logo:hover img {
    opacity: 0.9;
}

/* Search Bar */
.header-search {
    flex: 1;
    max-width: 480px;
    display: flex;
    border: 2px solid var(--grey-border);
    border-radius: 30px;
    overflow: hidden;
    background-color: var(--cream);
    transition: all 200ms ease;
}

.header-search:focus-within {
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(140, 184, 140, 0.1);
}

.header-search-input {
    flex: 1;
    padding: 10px 16px;
    border: none;
    outline: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--cream);
    color: var(--charcoal);
}

.header-search-input::placeholder {
    color: var(--grey-light);
}

.header-search-btn {
    padding: 10px 16px;
    background-color: var(--sage);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 200ms ease;
}

.header-search-btn:hover {
    background-color: var(--sage-dark);
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--charcoal);
    transition: all 200ms ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--sage);
    background-color: var(--sage-pale);
}

.nav-highlight {
    color: var(--coral) !important;
    background-color: var(--cream-alt);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    padding: 24px;
    min-width: 560px;
    border: 1px solid var(--grey-border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 200ms ease;
    z-index: 1001;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dropdown-grid a {
    display: block;
    padding: 4px 0;
    color: var(--charcoal);
    font-size: 14px;
    transition: all 200ms ease;
}

.dropdown-grid a:hover {
    color: var(--sage);
}

.dropdown-grid strong {
    display: block;
    color: var(--sage);
    font-family: 'Nunito', sans-serif;
    margin-bottom: 8px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.dropdown-footer {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--grey-border);
}

/* Mobile Header Actions */
.header-mobile-actions {
    display: none;
    gap: 8px;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--sage-pale);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 200ms ease;
}

.icon-btn:hover {
    background-color: var(--sage);
    color: var(--white);
}

/* Mobile Search Bar */
.mobile-search-bar {
    display: none;
    background-color: var(--white);
    padding: 12px 0;
    border-bottom: 1px solid var(--grey-border);
}

.mobile-search-bar form {
    display: flex;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mobile-search-input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid var(--grey-border);
    border-radius: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--cream);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    background-color: var(--white);
    border-bottom: 2px solid var(--grey-border);
    padding: 16px 0;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
}

.mobile-nav-link {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid var(--grey-border);
    font-weight: 600;
    color: var(--charcoal);
    transition: all 200ms ease;
}

.mobile-nav-link:hover {
    background-color: var(--sage-pale);
    color: var(--sage);
}

.mobile-nav-sub {
    padding-left: 20px;
    font-weight: 400;
    color: var(--grey-dark);
}

.mobile-nav-featured {
    color: var(--coral);
    font-weight: 700;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background-color: var(--sage);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 0 0 8px 0;
    z-index: 2000;
}

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

/* ==========================================================================
   5. PRODUCT CARDS
   ========================================================================== */

.product-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 200ms ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.card-image-wrap {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background-color: var(--sage-pale);
    flex-shrink: 0;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}

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

.card-badges {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 2;
}

.card-body {
    padding: 14px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-brand {
    font-size: 12px;
    color: var(--grey-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.card-title {
    font-size: 14px;
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
    color: var(--charcoal);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
    line-height: 1.4;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

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

.star.half {
    opacity: 0.6;
}

.star.empty {
    color: var(--grey-light);
}

.card-review-count {
    font-size: 12px;
    color: var(--grey-dark);
}

.card-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    margin-top: auto;
}

.card-price {
    font-size: 20px;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
    color: var(--charcoal);
}

.card-mrp {
    font-size: 13px;
    color: var(--grey-dark);
    text-decoration: line-through;
}

.card-discount {
    font-size: 12px;
    font-weight: 700;
    color: var(--coral);
    background-color: var(--pink-soft);
    padding: 2px 6px;
    border-radius: 4px;
}

.card-disclaimer {
    font-size: 11px;
    color: var(--grey-light);
    margin-top: 6px;
    text-align: center;
}

/* ==========================================================================
   6. BADGES
   ========================================================================== */

.badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.badge-bestseller {
    background-color: var(--coral);
    color: var(--white);
}

.badge-deal {
    background-color: var(--yellow-warm);
    color: var(--charcoal);
}

.badge-prime {
    background-color: var(--prime-blue);
    color: var(--white);
}

.badge-new {
    background-color: var(--sage);
    color: var(--white);
}

.badge-organic {
    background-color: #2ecc71;
    color: var(--white);
}

.badge-combo {
    background-color: var(--lavender);
    color: var(--charcoal);
}

.badge-desi {
    background-color: #FF9500;
    color: var(--white);
}

/* ==========================================================================
   7. PRODUCT GRID
   ========================================================================== */

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

/* ==========================================================================
   8. HERO SECTION
   ========================================================================== */

.hero {
    background: linear-gradient(135deg, var(--sage-pale) 0%, var(--cream) 50%, var(--cream-alt) 100%);
    padding: 60px 0;
}

.hero-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 2.75rem;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--grey-dark);
    margin-bottom: 32px;
}

.hero-search {
    display: flex;
    max-width: 560px;
    margin: 0 auto;
    border: 3px solid var(--sage);
    border-radius: 50px;
    overflow: hidden;
    background-color: var(--white);
    transition: all 200ms ease;
}

.hero-search:focus-within {
    box-shadow: 0 0 0 4px rgba(140, 184, 140, 0.15);
    border-color: var(--sage-dark);
}

.hero-search input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: transparent;
}

.hero-search input::placeholder {
    color: var(--grey-light);
}

.hero-search button {
    padding: 14px 24px;
    background-color: var(--sage);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    transition: all 200ms ease;
}

.hero-search button:hover {
    background-color: var(--sage-dark);
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 24px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background-color: var(--white);
    border: 1px solid var(--grey-border);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--charcoal);
    cursor: pointer;
    transition: all 200ms ease;
}

.hero-pill:hover {
    background-color: var(--sage-pale);
    border-color: var(--sage);
}

/* ==========================================================================
   9. TRUST BAR
   ========================================================================== */

.trust-bar {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 10px 0;
    overflow: hidden;
}

.trust-inner {
    display: flex;
    gap: 32px;
    align-items: center;
    white-space: nowrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.trust-item {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
    flex-shrink: 0;
}

/* ==========================================================================
   10. SECTION STYLES
   ========================================================================== */

.section {
    padding: 60px 0;
}

.section-title {
    font-size: 2rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    margin-bottom: 8px;
}

.section-subtitle {
    color: var(--grey-dark);
    font-size: 1.1rem;
    margin-bottom: 36px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
}

.view-all {
    color: var(--sage-dark);
    font-weight: 600;
    text-decoration: none;
    transition: all 200ms ease;
}

.view-all:hover {
    text-decoration: underline;
    color: var(--sage);
}

/* ==========================================================================
   11. AGE CARDS (Shop by Age)
   ========================================================================== */

.age-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.age-card {
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    transition: all 200ms ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.age-card:hover {
    transform: translateY(-4px);
}

.age-card-newborn {
    background: linear-gradient(135deg, #FFE4E1 0%, #FFD5CD 100%);
}

.age-card-infant {
    background: linear-gradient(135deg, var(--yellow-warm) 0%, #FFD87A 100%);
}

.age-card-toddler {
    background: linear-gradient(135deg, var(--sage-pale) 0%, var(--sage-light) 100%);
}

.age-card-all {
    background: linear-gradient(135deg, var(--lavender) 0%, #C5B5F5 100%);
}

.age-card-emoji {
    font-size: 3rem;
    margin-bottom: 12px;
}

.age-card-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.age-card-sub {
    font-size: 14px;
    color: var(--grey-dark);
}

/* ==========================================================================
   12. DESI SECTION
   ========================================================================== */

.desi-section {
    background: linear-gradient(135deg, #FFF8F0 0%, #FFF3E0 50%, #FFF8F0 100%);
    border-top: 3px solid #FF9500;
    border-bottom: 3px solid #FF9500;
    padding: 60px 0;
}

.desi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.desi-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    border: 2px solid #FFE0C0;
    transition: all 200ms ease;
    cursor: pointer;
}

.desi-card:hover {
    border-color: #FF9500;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 149, 0, 0.15);
}

.desi-card-emoji {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.desi-card-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--charcoal);
}

.desi-card-quote {
    font-size: 12px;
    color: var(--grey-dark);
    font-style: italic;
    line-height: 1.5;
}

/* ==========================================================================
   13. BREADCRUMBS
   ========================================================================== */

.breadcrumb-nav {
    margin-bottom: 16px;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: var(--grey-dark);
}

.breadcrumb-item a {
    color: var(--sage-dark);
    transition: all 200ms ease;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
    color: var(--sage);
}

.breadcrumb-sep {
    color: var(--grey-light);
    font-size: 16px;
}

.breadcrumb-item:last-child span[aria-current] {
    color: var(--charcoal);
    font-weight: 600;
}

/* ==========================================================================
   14. FILTERS SIDEBAR
   ========================================================================== */

.filter-sidebar {
    width: 260px;
    flex-shrink: 0;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.filter-title {
    font-family: 'Nunito', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--charcoal);
}

.filter-clear-all {
    color: var(--coral);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 200ms ease;
}

.filter-clear-all:hover {
    text-decoration: underline;
}

.filter-group {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--grey-border);
}

.filter-group-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--grey-dark);
    margin-bottom: 12px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    font-size: 14px;
    color: var(--charcoal);
    transition: all 200ms ease;
}

.filter-checkbox:hover {
    color: var(--sage);
}

.filter-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--sage);
    cursor: pointer;
}

.price-presets {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.price-preset {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    padding: 6px 10px;
    border-radius: 8px;
    transition: all 200ms ease;
}

.price-preset:hover {
    background-color: var(--sage-pale);
}

.price-preset.active {
    background-color: var(--sage-pale);
    font-weight: 600;
    color: var(--sage-dark);
}

.filter-scroll-list {
    max-height: 200px;
    overflow-y: auto;
}

.filter-apply-btn {
    margin-top: 8px;
}

/* ==========================================================================
   15. PRODUCTS LAYOUT & SORT
   ========================================================================== */

.products-layout {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.products-main {
    flex: 1;
    min-width: 0;
}

.sort-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 12px 16px;
    background-color: var(--white);
    border-radius: 12px;
    border: 1px solid var(--grey-border);
}

.sort-options {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.sort-btn {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid transparent;
    background-color: transparent;
    cursor: pointer;
    transition: all 200ms ease;
    color: var(--charcoal);
}

.sort-btn:hover {
    background-color: var(--sage-pale);
}

.sort-btn.active {
    background-color: var(--sage);
    color: var(--white);
    border-color: var(--sage);
}

.results-count {
    font-size: 14px;
    color: var(--grey-dark);
}

/* ==========================================================================
   16. PAGINATION
   ========================================================================== */

.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 48px;
    padding: 20px 0;
    flex-wrap: wrap;
}

.page-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid var(--grey-border);
    background-color: var(--white);
    cursor: pointer;
    text-decoration: none;
    color: var(--charcoal);
    transition: all 200ms ease;
}

.page-btn:hover:not(.disabled) {
    background-color: var(--sage-pale);
    border-color: var(--sage);
    color: var(--sage);
}

.page-btn.active {
    background-color: var(--sage);
    color: var(--white);
    border-color: var(--sage);
}

.page-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.page-prev,
.page-next {
    width: auto;
    padding: 0 14px;
}

.page-ellipsis {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey-dark);
}

/* ==========================================================================
   17. PRODUCT DETAIL PAGE
   ========================================================================== */

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.product-image-main {
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--sage-pale);
    aspect-ratio: 1/1;
    cursor: zoom-in;
    transition: all 200ms ease;
}

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

.product-images-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 12px;
}

.product-image-thumb {
    aspect-ratio: 1/1;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--sage-pale);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 200ms ease;
}

.product-image-thumb:hover,
.product-image-thumb.active {
    border-color: var(--sage);
}

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

.product-info-box {
    background-color: var(--white);
    border: 2px solid var(--grey-border);
    border-radius: 16px;
    padding: 20px;
    margin: 20px 0;
    transition: all 200ms ease;
}

.product-price-large {
    font-size: 2.25rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    color: var(--charcoal);
}

.product-mrp {
    font-size: 16px;
    color: var(--grey-dark);
    text-decoration: line-through;
    margin-left: 8px;
}

.product-discount-badge {
    background-color: var(--coral);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    margin-left: 8px;
}

.product-rating-section {
    margin: 16px 0;
}

.product-description {
    margin: 20px 0;
    line-height: 1.7;
    color: var(--grey-dark);
}

.product-features {
    margin: 20px 0;
}

.product-features li {
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
}

.product-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--sage);
    font-weight: 700;
}

.product-options {
    margin: 20px 0;
}

.option-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--charcoal);
}

.option-values {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.option-value {
    padding: 8px 14px;
    border: 2px solid var(--grey-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 200ms ease;
    background-color: var(--white);
}

.option-value:hover {
    border-color: var(--sage);
}

.option-value.active {
    background-color: var(--sage);
    color: var(--white);
    border-color: var(--sage);
}

.product-buy-btn {
    width: 100%;
    padding: 18px;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 12px;
    margin-top: 20px;
}

.product-availability {
    margin: 12px 0;
    font-weight: 600;
    color: var(--success);
}

.product-availability.out-of-stock {
    color: var(--danger);
}

/* ==========================================================================
   18. BLOG & ARTICLES
   ========================================================================== */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 200ms ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background-color: var(--sage-pale);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}

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

.blog-card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-cat {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--sage);
    margin-bottom: 8px;
}

.blog-card-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--charcoal);
}

.blog-card-excerpt {
    font-size: 14px;
    color: var(--grey-dark);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 16px;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--grey-light);
}

.blog-card-date {
    flex-shrink: 0;
}

.blog-card-read-time {
    flex-shrink: 0;
}

/* ==========================================================================
   19. FAQ & ACCORDION
   ========================================================================== */

.faq-list {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--grey-border);
    background-color: var(--white);
}

.faq-item {
    border-bottom: 1px solid var(--grey-border);
    transition: all 200ms ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-align: left;
    color: var(--charcoal);
    gap: 16px;
    transition: all 200ms ease;
}

.faq-question:hover {
    background-color: var(--sage-pale);
    padding-left: 28px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--grey-dark);
    transition: all 200ms ease;
    background-color: var(--cream);
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 20px 18px;
}

.faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 200ms ease;
    color: var(--sage);
}

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

/* ==========================================================================
   20. FOOTER
   ========================================================================== */

.site-footer {
    background-color: var(--charcoal);
    color: rgba(255, 255, 255, 0.85);
    padding-top: 60px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col-brand {
    grid-column: 1;
}

.footer-heading {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all 200ms ease;
}

.footer-links a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 16px 0;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 200ms ease;
    cursor: pointer;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--sage);
    color: var(--white);
}

.footer-logo img {
    max-width: 140px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-affiliate-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    max-width: 600px;
    text-align: center;
    line-height: 1.5;
}

.footer-legal-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

.footer-legal-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 200ms ease;
}

.footer-legal-links a:hover {
    color: var(--white);
}

.footer-legal-links span {
    color: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   21. AFFILIATE DISCLOSURE
   ========================================================================== */

.affiliate-disclosure {
    background-color: var(--yellow-warm);
    padding: 12px 0;
    border-top: 2px solid #FFD700;
}

.affiliate-disclosure p {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 13px;
    color: var(--charcoal);
}

/* ==========================================================================
   22. COOKIE BANNER
   ========================================================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-top: 2px solid var(--sage);
    padding: 16px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    font-size: 14px;
    color: var(--charcoal);
    flex: 1;
    margin: 0;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* ==========================================================================
   23. SWIPER CAROUSEL CUSTOMIZATION
   ========================================================================== */

.swiper-button-next,
.swiper-button-prev {
    color: var(--sage) !important;
    background-color: var(--white);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--sage-pale);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
}

.swiper-pagination-bullet {
    background-color: var(--grey-light) !important;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background-color: var(--sage) !important;
    opacity: 1;
}

/* ==========================================================================
   24. LOADING SKELETON
   ========================================================================== */

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px;
}

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

.skeleton-product {
    aspect-ratio: 1/1.4;
}

.skeleton-text {
    height: 16px;
    margin-bottom: 8px;
}

.skeleton-text-short {
    height: 14px;
    width: 60%;
    margin-bottom: 8px;
}

/* ==========================================================================
   25. SIZE CHART PAGE
   ========================================================================== */

.size-chart-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--white);
    margin-bottom: 32px;
}

.size-chart-table th {
    background-color: var(--sage);
    color: var(--white);
    padding: 12px 16px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    text-align: left;
}

.size-chart-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--grey-border);
    text-align: left;
}

.size-chart-table tr:nth-child(even) td {
    background-color: var(--sage-pale);
}

.size-chart-table tr.highlighted {
    background-color: var(--yellow-warm);
    font-weight: 700;
}

.size-chart-table tr.highlighted td {
    background-color: var(--yellow-warm);
}

/* ==========================================================================
   26. GUIDE / BLOG POST CONTENT
   ========================================================================== */

.post-content {
    max-width: 760px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
    color: var(--charcoal);
}

.post-content h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.75rem;
    margin: 2rem 0 1rem;
    color: var(--charcoal);
}

.post-content h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.4rem;
    margin: 1.75rem 0 0.75rem;
    color: var(--sage-dark);
}

.post-content h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--charcoal);
}

.post-content p {
    margin-bottom: 1.25rem;
}

.post-content ul,
.post-content ol {
    margin-bottom: 1.25rem;
    padding-left: 24px;
}

.post-content li {
    margin-bottom: 8px;
}

.post-content strong {
    font-weight: 700;
    color: var(--charcoal);
}

.post-content a {
    color: var(--sage-dark);
    text-decoration: underline;
    transition: all 200ms ease;
}

.post-content a:hover {
    color: var(--coral);
}

.post-content blockquote {
    border-left: 4px solid var(--sage);
    background-color: var(--sage-pale);
    padding: 16px 20px;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--grey-dark);
}

.post-content img {
    max-width: 100%;
    height: auto;
    margin: 24px 0;
    border-radius: 12px;
}

.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.post-content table th,
.post-content table td {
    border: 1px solid var(--grey-border);
    padding: 12px;
}

.post-content table th {
    background-color: var(--sage-pale);
    font-weight: 700;
}

/* ==========================================================================
   27. INLINE PRODUCT RECOMMENDATION BOX
   ========================================================================== */

.inline-product {
    display: flex;
    gap: 16px;
    background-color: var(--white);
    border: 2px solid var(--grey-border);
    border-radius: 16px;
    padding: 16px;
    margin: 24px 0;
    align-items: center;
    transition: all 200ms ease;
}

.inline-product:hover {
    border-color: var(--sage);
    box-shadow: 0 4px 12px rgba(140, 184, 140, 0.2);
}

.inline-product-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    background-color: var(--sage-pale);
}

.inline-product-info {
    flex: 1;
}

.inline-product-title {
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 4px;
    color: var(--charcoal);
}

.inline-product-price {
    color: var(--coral);
    font-weight: 700;
    font-size: 1.1rem;
}

.inline-product-btn {
    flex-shrink: 0;
}

/* ==========================================================================
   28. COMPARE TABLE
   ========================================================================== */

.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 32px;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
}

.compare-table th {
    background-color: var(--sage);
    color: var(--white);
    padding: 14px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    text-align: center;
}

.compare-table th:first-child {
    background-color: var(--charcoal);
    text-align: left;
}

.compare-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--grey-border);
    text-align: center;
}

.compare-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--grey-dark);
    background-color: var(--cream);
}

.compare-table tr:nth-child(even) td {
    background-color: var(--sage-pale);
}

.compare-table tr:nth-child(even) td:first-child {
    background-color: var(--cream);
}

.compare-winner {
    display: inline-block;
    background-color: var(--sage);
    color: var(--white);
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 6px;
    font-weight: 700;
}

/* ==========================================================================
   29. UTILITY CLASSES & MISCELLANEOUS
   ========================================================================== */

.section-divider {
    border: none;
    border-top: 2px solid var(--grey-border);
    margin: 48px 0;
}

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

.text-sage {
    color: var(--sage);
}

.text-coral {
    color: var(--coral);
}

.text-success {
    color: var(--success);
}

.text-danger {
    color: var(--danger);
}

.bg-sage-pale {
    background-color: var(--sage-pale);
}

.bg-cream {
    background-color: var(--cream);
}

.bg-white {
    background-color: var(--white);
}

.mb-0 {
    margin-bottom: 0;
}

.mb-8 {
    margin-bottom: 8px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mt-8 {
    margin-top: 8px;
}

.mt-16 {
    margin-top: 16px;
}

.mt-24 {
    margin-top: 24px;
}

.highlight-box {
    background-color: var(--yellow-warm);
    border-radius: 12px;
    padding: 16px 20px;
    margin: 16px 0;
    color: var(--charcoal);
}

.brand-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 50px;
    background-color: var(--white);
    border: 1px solid var(--grey-border);
    font-size: 14px;
    font-weight: 600;
    color: var(--charcoal);
    margin: 4px;
    transition: all 200ms ease;
    text-decoration: none;
    cursor: pointer;
}

.brand-chip:hover {
    background-color: var(--sage-pale);
    border-color: var(--sage);
}

/* Error & Info Messages */
.alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.alert-success {
    background-color: rgba(39, 174, 96, 0.1);
    color: var(--success);
    border-left: 4px solid var(--success);
}

.alert-danger {
    background-color: rgba(231, 76, 60, 0.1);
    color: var(--danger);
    border-left: 4px solid var(--danger);
}

.alert-info {
    background-color: rgba(0, 168, 225, 0.1);
    color: var(--prime-blue);
    border-left: 4px solid var(--prime-blue);
}

.alert-warning {
    background-color: rgba(255, 232, 161, 0.5);
    color: #E67E22;
    border-left: 4px solid #E67E22;
}

/* Rating Display */
.rating-display {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-stars {
    color: var(--star-gold);
    font-size: 14px;
    letter-spacing: 1px;
}

.rating-text {
    font-weight: 600;
    color: var(--charcoal);
}

.rating-count {
    font-size: 14px;
    color: var(--grey-dark);
}

/* ==========================================================================
   30. RESPONSIVE DESIGN
   ========================================================================== */

/* Tablet: ≤ 1024px */
@media (max-width: 1024px) {
    .site-logo img {
        max-width: 140px;
    }

    .header-search {
        max-width: 360px;
    }

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

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

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

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

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

    .dropdown-menu {
        min-width: 440px;
    }

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

    .product-detail {
        gap: 30px;
    }
}

/* Mobile: ≤ 768px */
@media (max-width: 768px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .site-header {
        height: auto;
        padding: 12px 0;
    }

    .header-inner {
        height: auto;
        gap: 12px;
        flex-wrap: wrap;
        align-items: center;
    }

    .site-logo img {
        max-width: 120px;
    }

    .desktop-nav {
        display: none;
    }

    .header-search {
        display: none;
    }

    .header-mobile-actions {
        display: flex;
    }

    .mobile-search-bar {
        display: block;
    }

    .mobile-nav {
        display: block;
    }

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

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

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

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

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

    .footer-col-brand {
        grid-column: auto;
    }

    .products-layout {
        flex-direction: column;
    }

    .filter-sidebar {
        width: 100%;
        order: -1;
    }

    .product-detail {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sort-bar {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .hero {
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section {
        padding: 40px 0;
    }

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

    .hero-pills {
        gap: 6px;
    }

    .hero-pill {
        font-size: 13px;
        padding: 6px 12px;
    }

    .cookie-inner {
        flex-direction: column;
        gap: 12px;
    }

    .cookie-text {
        flex: 1;
    }

    .cookie-actions {
        width: 100%;
        flex-wrap: wrap;
    }

    .post-content {
        font-size: 15px;
    }

    .post-content h2 {
        font-size: 1.5rem;
    }

    .post-content h3 {
        font-size: 1.2rem;
    }

    .compare-table {
        font-size: 13px;
    }

    .compare-table th,
    .compare-table td {
        padding: 8px;
    }
}

/* Small Mobile: ≤ 480px */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    .header-inner {
        padding: 0 16px;
    }

    .site-logo img {
        max-width: 100px;
    }

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

    .card-price {
        font-size: 18px;
    }

    .card-title {
        font-size: 13px;
    }

    .hero-pills {
        gap: 6px;
        margin-top: 16px;
    }

    .hero-pill {
        font-size: 12px;
        padding: 5px 10px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-search {
        flex-direction: column;
        border-radius: 12px;
    }

    .hero-search input,
    .hero-search button {
        padding: 12px 16px;
        font-size: 14px;
    }

    .hero-search button {
        width: 100%;
    }

    .age-cards {
        grid-template-columns: 1fr;
    }

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

    .trust-inner {
        gap: 16px;
        font-size: 12px;
    }

    .product-image-main {
        border-radius: 12px;
    }

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

    .product-info-box {
        padding: 16px;
        margin: 16px 0;
    }

    .product-price-large {
        font-size: 1.75rem;
    }

    .product-buy-btn {
        padding: 14px;
        font-size: 1rem;
        margin-top: 16px;
    }

    .inline-product {
        flex-direction: column;
        text-align: center;
    }

    .inline-product-img {
        width: 120px;
        height: 120px;
    }

    .faq-question {
        padding: 14px 16px;
    }

    .filter-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .sort-bar {
        flex-direction: column;
        gap: 12px;
    }

    .sort-options {
        width: 100%;
        gap: 6px;
    }

    .pagination {
        gap: 4px;
    }

    .page-btn {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .blog-card-image {
        aspect-ratio: 16/12;
    }

    .blog-card-title {
        font-size: 1rem;
    }

    .blog-card-excerpt {
        font-size: 13px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .view-all {
        margin-top: 12px;
    }

    .footer-grid {
        gap: 24px;
    }

    .footer-heading {
        font-size: 0.9rem;
    }

    .footer-links a {
        font-size: 13px;
    }

    .cookie-banner {
        padding: 12px;
    }

    .cookie-text {
        font-size: 12px;
    }

    .cookie-actions {
        gap: 8px;
    }

    .cookie-actions .btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .post-content {
        font-size: 14px;
    }

    .post-content h2 {
        font-size: 1.3rem;
        margin: 1.5rem 0 0.75rem;
    }

    .post-content h3 {
        font-size: 1.1rem;
    }

    .post-content ul,
    .post-content ol {
        padding-left: 20px;
    }

    .post-content blockquote {
        padding: 12px 16px;
        margin: 1.5rem 0;
    }
}

/* ==========================================================================
   31. PRINT STYLES
   ========================================================================== */

@media print {
    .site-header,
    .site-footer,
    .cookie-banner,
    .affiliate-disclosure {
        display: none;
    }

    body {
        background-color: var(--white);
    }

    .product-card {
        page-break-inside: avoid;
    }

    .blog-card {
        page-break-inside: avoid;
    }

    a {
        color: var(--sage-dark);
        text-decoration: underline;
    }
}

/* ==========================================================================
   32. ACCESSIBILITY
   ========================================================================== */

/* Focus styles for keyboard navigation */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--sage);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: more) {
    :root {
        --charcoal: #000;
        --grey-dark: #333;
    }

    .btn {
        border-width: 2px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    /* Can be enabled if dark mode is required */
}
