
/* 笏笏 Active nav link 笏笏 */
.nav-link.active-page {
    color: var(--copper) !important;
  }
  .nav-link.active-page::after {
    width: 100% !important;
  }

  /* 笏笏 Page Hero (shared base) 笏笏 */
  .page-hero {
    position: relative;
    padding: 72px 24px 56px;
    background: var(--cream);
    overflow: hidden;
    border-bottom: 1px solid rgba(181,98,42,0.1);
  }
  .page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(181,98,42,0.07) 0%, transparent 70%);
    pointer-events: none;
  }
  .page-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .page-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(44px, 6vw, 76px);
    font-weight: 700;
    color: var(--brown-dark);
    line-height: 1.05;
    margin: 12px 0 14px;
  }
  .page-hero-sub {
    font-size: 16px;
    color: var(--brown-mid);
    max-width: 520px;
  }
  .page-hero-sub em { font-style: italic; color: var(--copper); }

  /* Per-hero tint accents */
  .page-hero--arrivals::after {
    content: '';
    position: absolute;
    right: -60px; top: -60px;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(181,98,42,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .page-hero--bestsellers { background: linear-gradient(135deg, #F5F0E8 0%, #EDE3D5 100%); }
  .page-hero--style { background: linear-gradient(135deg, #F5F0E8 0%, #EFE8DC 100%); }

  /* 笏笏 Social Proof Strip (Best Sellers) 笏笏 */
  .proof-strip {
    background: var(--white);
    border-top: 1px solid rgba(181,98,42,0.12);
    padding: 16px 24px;
    margin-top: 40px;
  }
  .proof-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
  }
  .proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--brown-mid);
  }
  .proof-item i { color: var(--copper); font-size: 13px; }
  .proof-item strong { color: var(--brown-dark); }
  .proof-sep { width: 1px; height: 24px; background: rgba(181,98,42,0.15); }

  /* 笏笏 Catalog Section 笏笏 */
  .catalog-section {
    background: var(--cream);
    padding: 48px 24px 64px;
  }
  .catalog-inner { max-width: 1280px; margin: 0 auto; }

  .catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
  }

  .filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  .filter-tab {
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--brown-mid);
    border: 1.5px solid rgba(45,24,16,0.18);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition);
  }
  .filter-tab:hover {
    border-color: var(--copper);
    color: var(--copper);
  }
  .filter-tab.active {
    background: var(--copper);
    border-color: var(--copper);
    color: var(--white);
    box-shadow: 0 3px 12px rgba(181,98,42,0.25);
  }

  .sort-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: var(--muted);
  }
  .sort-select {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1.5px solid rgba(45,24,16,0.15);
    background: var(--white);
    color: var(--brown-dark);
    font-family: inherit;
    font-size: 13.5px;
    cursor: pointer;
    outline: none;
    transition: border-color var(--transition);
  }
  .sort-select:focus { border-color: var(--copper); }

  .catalog-count {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 20px;
  }
  .catalog-count strong { color: var(--brown-dark); }

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

  .load-more-wrap {
    text-align: center;
    margin-top: 40px;
  }
  .load-more-btn {
    padding: 13px 36px;
    font-size: 14px;
  }

  /* 笏笏 Reviews Banner 笏笏 */
  .reviews-banner {
    background: var(--off-white);
    padding: 72px 24px;
    border-top: 1px solid rgba(181,98,42,0.1);
  }
  .reviews-banner-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .rb-left h2 {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 20px;
  }
  .rb-rating {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
  }
  .rb-score {
    font-family: var(--font-serif);
    font-size: 56px;
    font-weight: 700;
    color: var(--brown-dark);
    line-height: 1;
  }
  .rb-stars { color: var(--copper); font-size: 18px; letter-spacing: 2px; }
  .rb-label { font-size: 13px; color: var(--muted); margin-top: 2px; }
  .rb-bars { display: flex; flex-direction: column; gap: 8px; }
  .rb-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--muted);
  }
  .rb-bar-row > span:first-child { width: 24px; text-align: right; flex-shrink: 0; }
  .rb-bar-row > span:last-child  { width: 32px; flex-shrink: 0; }
  .rb-bar {
    flex: 1;
    height: 8px;
    background: var(--cream-dark);
    border-radius: 999px;
    overflow: hidden;
  }
  .rb-bar-fill {
    height: 100%;
    background: var(--copper);
    border-radius: 999px;
    transition: width 1s ease;
  }
  .rb-testimonials { display: flex; flex-direction: column; gap: 16px; }
  .rb-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 22px;
    box-shadow: var(--shadow-sm);
  }
  .rb-card .t-stars { color: var(--copper); font-size: 13px; margin-bottom: 8px; }
  .rb-card p { font-size: 14px; color: var(--brown-mid); font-style: italic; line-height: 1.6; }
  .rb-author { display: block; font-size: 12px; color: var(--muted); margin-top: 10px; font-style: normal; }

  /* 笏笏 Style Categories 笏笏 */
  .style-categories-section {
    padding: 56px 24px 72px;
    background: var(--cream);
  }
  .style-cat-inner { max-width: 1280px; margin: 0 auto; }
  .style-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
  }

  .style-cat-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: flex-end;
    min-height: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .style-cat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
  .style-card-large {
    grid-column: span 1;
    min-height: 360px;
  }

  /* Category backgrounds */
  .style-kurti   { background: linear-gradient(145deg, #DEB887 0%, #C4955A 40%, #8B6340 100%); }
  .style-saree   { background: linear-gradient(145deg, #D4A0A0 0%, #B05C5C 40%, #7A3030 100%); }
  .style-set     { background: linear-gradient(145deg, #E8C5A0 0%, #C17E52 40%, #7A4F2A 100%); }
  .style-festive { background: linear-gradient(145deg, #E8D280 0%, #C4A020 40%, #7A6510 100%); }
  .style-dupatta { background: linear-gradient(145deg, #C0D4B0 0%, #7A9B70 40%, #4A6B40 100%); }
  .style-travel  { background: linear-gradient(145deg, #A8C4D8 0%, #5A8CA8 40%, #2A5C78 100%); }

  .style-cat-content {
    position: relative;
    z-index: 2;
    padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    width: 100%;
  }
  .style-cat-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 8px;
  }
  .style-cat-title {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 8px;
  }
  .style-cat-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
    margin-bottom: 14px;
  }
  .style-cat-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    background: var(--white);
    color: var(--brown-dark);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    transition: all var(--transition);
    cursor: pointer;
  }
  .style-cat-btn:hover { background: var(--copper); color: var(--white); }
  .style-cat-count {
    position: absolute;
    top: 16px; right: 16px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 999px;
    z-index: 2;
  }

  /* 笏笏 Occasion Section 笏笏 */
  .occasion-section { background: var(--off-white); padding: 72px 24px; }
  .occasion-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .occasion-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
  }
  .occasion-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }
  .occasion-icon {
    width: 48px; height: 48px;
    background: rgba(181,98,42,0.1);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    color: var(--copper);
  }
  .occasion-card h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--brown-dark);
  }
  .occasion-card p { font-size: 13.5px; color: var(--muted); line-height: 1.5; flex: 1; }
  .occasion-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--copper);
    transition: gap var(--transition);
  }
  .occasion-link:hover { gap: 10px; }

  /* 笏笏 Fabric Section 笏笏 */
  .fabric-section { background: var(--cream); padding: 72px 24px; }
  .fabric-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .fabric-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 0 0 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: all var(--transition);
  }
  .fabric-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
  .fabric-swatch {
    width: 100%;
    height: 120px;
  }
  .fabric-cotton  { background: linear-gradient(135deg, #F5DEB3, #DEB887); }
  .fabric-chanderi{ background: linear-gradient(135deg, #F0E6D0, #C9A96E); }
  .fabric-silk    { background: linear-gradient(135deg, #D4B896, #A0624A); }
  .fabric-linen   { background: linear-gradient(135deg, #C8B89A, #9B8B72); }
  .fabric-card h4 {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--brown-dark);
    padding: 16px 16px 6px;
  }
  .fabric-card p {
    font-size: 13px;
    color: var(--muted);
    padding: 0 16px;
    line-height: 1.55;
    flex: 1;
  }
  .fabric-badge {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.06em;
    background: rgba(181,98,42,0.1);
    color: var(--copper);
    padding: 3px 10px;
    border-radius: 999px;
    margin: 10px 16px 0;
  }

  /* 笏笏 Size Strip 笏笏 */
  .size-strip {
    background: var(--copper);
    padding: 28px 24px;
  }
  .size-strip-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  .size-strip-text {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--white);
  }
  .size-strip-text i { font-size: 24px; opacity: 0.9; }
  .size-strip-text h3 { font-size: 18px; font-weight: 600; margin-bottom: 3px; }
  .size-strip-text p { font-size: 14px; opacity: 0.8; }
  .size-strip .btn-primary {
    background: var(--white);
    color: var(--copper);
    border-color: var(--white);
  }
  .size-strip .btn-primary:hover {
    background: var(--cream);
    border-color: var(--cream);
  }

  /* 笏笏 About Hero 笏笏 */
  .about-hero {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
  }
  .about-hero-img-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .about-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }
  .about-hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(45,24,16,0.85) 40%, rgba(45,24,16,0.2) 100%);
  }
  .about-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    padding: 80px 24px;
  }
  .about-hero-inner .label-line { background: rgba(255,255,255,0.6); }
  .about-hero-inner .label-text { color: rgba(255,255,255,0.7); }
  .about-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5.5vw, 68px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.08;
    margin: 14px 0 18px;
  }
  .about-hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.78);
    max-width: 480px;
    line-height: 1.6;
  }

  /* 笏笏 Story Section 笏笏 */
  .story-section {
    background: var(--cream);
    padding: 88px 24px;
  }
  .story-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: start;
  }
  .story-text { display: flex; flex-direction: column; gap: 0; }
  .story-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 3.5vw, 46px);
    font-weight: 700;
    color: var(--brown-dark);
    margin: 12px 0 24px;
    line-height: 1.1;
  }
  .story-text p {
    font-size: 15.5px;
    color: var(--brown-mid);
    line-height: 1.72;
    margin-bottom: 18px;
  }
  .story-quote {
    border-left: 3px solid var(--copper);
    padding-left: 20px;
    margin: 28px 0 0;
    font-family: var(--font-serif);
    font-size: 19px;
    font-style: italic;
    color: var(--brown-dark);
    line-height: 1.55;
  }
  .story-quote cite {
    display: block;
    font-family: var(--font-sans);
    font-size: 13px;
    font-style: normal;
    color: var(--muted);
    margin-top: 12px;
  }
  .story-img {
    width: 100%;
    border-radius: var(--radius-xl);
    height: 520px;
    box-shadow: var(--shadow-lg);
  }
  .story-img-tag {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    margin-top: -40px;
    margin-right: 20px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 3px;
    box-shadow: var(--shadow-md);
  }
  .story-img-tag strong { font-size: 14px; color: var(--brown-dark); }
  .story-img-tag span  { font-size: 12.5px; color: var(--muted); }

  /* 笏笏 About Stats 笏笏 */
  .about-stats-section {
    background: var(--copper);
    padding: 56px 24px;
  }
  .about-stats-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
  }
  .about-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
    padding: 8px;
    border-right: 1px solid rgba(255,255,255,0.2);
  }
  .about-stat:last-child { border-right: none; }
  .about-stat-value {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
  }
  .about-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.72);
    font-weight: 400;
  }

  /* 笏笏 Values 笏笏 */
  .values-section { background: var(--off-white); padding: 80px 24px; }
  .values-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .value-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--copper);
    transition: all var(--transition);
  }
  .value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
  .value-icon {
    width: 44px; height: 44px;
    background: rgba(181,98,42,0.1);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    color: var(--copper);
  }
  .value-card h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--brown-dark);
  }
  .value-card p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

  /* 笏笏 Sustainability 笏笏 */
  .sustain-section { background: var(--cream); padding: 80px 24px; }
  .sustain-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }
  .sustain-text h2 {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: var(--brown-dark);
    margin: 12px 0 20px;
    line-height: 1.15;
  }
  .sustain-text p {
    font-size: 15px;
    color: var(--brown-mid);
    line-height: 1.7;
    margin-bottom: 20px;
  }
  .sustain-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
  }
  .sustain-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    color: var(--brown-mid);
  }
  .sustain-list li i { color: var(--copper); font-size: 13px; flex-shrink: 0; }
  .sustain-img-col { display: flex; flex-direction: column; gap: 16px; }
  .sustain-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 22px 22px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .sustain-card i { font-size: 22px; color: var(--copper); }
  .sustain-card strong { font-size: 15px; color: var(--brown-dark); }
  .sustain-card p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }

  /* 笏笏 Artisans 笏笏 */
  .artisans-section { background: var(--off-white); padding: 80px 24px; }
  .artisans-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .artisan-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
  }
  .artisan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
  .artisan-img {
    width: 100%;
    height: 220px;
  }
  .artisan-1 { background: linear-gradient(145deg, #D4B896 0%, #A07848 100%); }
  .artisan-2 { background: linear-gradient(145deg, #E8C090 0%, #C07840 100%); }
  .artisan-3 { background: linear-gradient(145deg, #C8A090 0%, #904840 100%); }
  .artisan-info { padding: 20px 20px 24px; display: flex; flex-direction: column; gap: 6px; }
  .artisan-region {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--copper);
    text-transform: uppercase;
  }
  .artisan-info h4 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--brown-dark);
  }
  .artisan-info p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }

  /* 笏笏 About CTA 笏笏 */
  .about-cta-section {
    background: var(--brown-dark);
    padding: 80px 24px;
    text-align: center;
  }
  .about-cta-inner {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .about-cta-inner h2 {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--white);
  }
  .about-cta-inner p {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    max-width: 420px;
    line-height: 1.6;
  }
  .about-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

  /* 笏笏 Responsive 笏笏 */
  @media (max-width: 1024px) {
    .catalog-grid { grid-template-columns: repeat(3, 1fr); }
    .style-cat-grid { grid-template-columns: repeat(2, 1fr); }
    .occasion-grid { grid-template-columns: repeat(2, 1fr); }
    .fabric-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .about-stats-inner { grid-template-columns: repeat(3, 1fr); }
    .story-inner { grid-template-columns: 1fr; gap: 40px; }
    .story-img-col { max-width: 400px; }
    .sustain-inner { grid-template-columns: 1fr; }
    .artisans-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-banner-inner { grid-template-columns: 1fr; }
  }
  @media (max-width: 768px) {
    .catalog-grid { grid-template-columns: repeat(2, 1fr); }
    .style-cat-grid { grid-template-columns: 1fr; }
    .occasion-grid { grid-template-columns: 1fr 1fr; }
    .proof-inner { gap: 16px; }
    .about-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .about-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 16px; }
    .about-stat:last-child { border-bottom: none; }
    .size-strip-inner { flex-direction: column; align-items: flex-start; }
    .artisans-grid { grid-template-columns: 1fr; }
    .story-img { height: 340px; }
    .about-cta-btns { flex-direction: column; width: 100%; }
  }
  @media (max-width: 480px) {
    .catalog-grid { grid-template-columns: 1fr 1fr; }
    .occasion-grid { grid-template-columns: 1fr; }
    .fabric-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .about-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .filter-tabs { gap: 6px; }
    .filter-tab { padding: 7px 13px; font-size: 12.5px; }
  }
