/* ── RESET & BASE ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: #2D2D2D;
  background: #FAFAFA;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── VARIABLES ────────────────────────────────────────────────────────────── */
:root {
  --primary:   #FF4D6D;
  --primary-d: #E0304F;
  --navy:      #1A1A2E;
  --gold:      #FFD700;
  --green-wa:  #25D366;
  --green-wa-d:#1EBE59;
  --grey-light:#F4F4F6;
  --grey-mid:  #E5E5EA;
  --grey-text: #888;
  --radius:    12px;
  --radius-sm: 8px;
  --shadow:    0 2px 12px rgba(0,0,0,.08);
  --shadow-md: 0 4px 24px rgba(0,0,0,.12);
  --transition:all .2s ease;
}

/* ── CONTAINER ────────────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }

/* ── HEADER ───────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 2px solid var(--primary);
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 60px; gap: 16px; position: relative;
}
.logo { display: flex; align-items: baseline; gap: 0; font-weight: 800; font-size: 1.35rem; text-decoration: none; }
.logo-main { color: var(--primary); letter-spacing: -.5px; }
.logo-pk   { color: var(--navy); font-size: .9rem; font-weight: 700; opacity: .75; }

/* ── NAV + DROPDOWNS ──────────────────────────────────────────────────────── */
.main-nav { display: flex; align-items: center; gap: 2px; }

.nav-item { position: relative; }

.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 7px 13px; border-radius: 20px;
  font-size: .82rem; font-weight: 600; color: var(--navy);
  transition: var(--transition); cursor: pointer;
  white-space: nowrap;
}
.nav-link:hover,
.nav-item:hover .nav-link,
.nav-item:focus-within .nav-link {
  background: var(--grey-light); color: var(--primary);
}
.nav-link-all {
  font-size: .78rem; font-weight: 500; color: var(--grey-text);
  padding: 7px 11px;
}
.nav-link-all:hover { color: var(--primary); background: #fff0f3; }

.nav-chevron {
  transition: transform .2s ease;
  opacity: .6;
  flex-shrink: 0;
}
.nav-item:hover .nav-chevron,
.nav-item:focus-within .nav-chevron { transform: rotate(180deg); opacity: 1; }

/* Dropdown panel */
.nav-dropdown {
  display: none;
  position: absolute; top: calc(100% + 6px); left: 0;
  background: #fff;
  border: 1px solid var(--grey-mid);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  min-width: 220px; z-index: 200;
  padding: 6px;
  animation: ddFadeIn .15s ease;
}
@keyframes ddFadeIn { from { opacity:0; transform:translateY(-6px) } to { opacity:1; transform:none } }

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown { display: block; }

.nav-dropdown-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 14px; border-radius: 8px;
  font-size: .82rem; color: var(--navy);
  transition: var(--transition);
  gap: 12px;
}
.nav-dropdown-link:hover { background: #fff0f3; color: var(--primary); }
.dd-label { font-weight: 600; }
.dd-count {
  font-size: .7rem; font-weight: 500; color: var(--grey-text);
  background: var(--grey-light); padding: 2px 8px; border-radius: 10px;
  white-space: nowrap; flex-shrink: 0;
}
.nav-dropdown-link:hover .dd-count { background: #ffe0e6; color: var(--primary); }

/* Hamburger toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  width: 36px; height: 36px;
  border-radius: 8px; border: 1px solid var(--grey-mid);
  background: #fff; cursor: pointer;
  align-items: center; justify-content: center;
  padding: 0;
}
.hamburger-line {
  width: 18px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn-wa-header {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 20px;
  background: var(--green-wa); color: #fff;
  font-size: .8rem; font-weight: 600;
  white-space: nowrap;
  transition: var(--transition);
}
.btn-wa-header:hover { background: var(--green-wa-d); }

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
.site-footer { background: var(--navy); color: #ccc; padding: 48px 0 0; margin-top: 64px; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 32px; padding-bottom: 32px; }
.footer-col h3 { color: #fff; font-size: .9rem; font-weight: 600; margin-bottom: 12px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { font-size: .85rem; color: #aaa; transition: var(--transition); }
.footer-col ul a:hover { color: var(--primary); }
.footer-logo { font-size: 1.15rem; font-weight: 800; margin-bottom: 8px; }
.footer-tagline { font-size: .82rem; color: #888; line-height: 1.5; }
.footer-col p { font-size: .82rem; color: #aaa; margin-bottom: 12px; }
.btn-wa-footer {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 20px;
  background: var(--green-wa); color: #fff;
  font-size: .8rem; font-weight: 600;
  transition: var(--transition);
}
.btn-wa-footer:hover { background: var(--green-wa-d); }
.footer-bottom {
  border-top: 1px solid #2a2a3e;
  padding: 16px 0;
  font-size: .75rem; color: #666; text-align: center;
}
.footer-bottom a { color: #888; }
.footer-bottom a:hover { color: var(--primary); }

/* ── STICKY WA ────────────────────────────────────────────────────────────── */
.wa-sticky {
  position: fixed; bottom: 20px; right: 20px; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--green-wa);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: var(--transition);
}
.wa-sticky:hover { background: var(--green-wa-d); transform: scale(1.08); }

/* ── BREADCRUMB ───────────────────────────────────────────────────────────── */
.breadcrumb-bar { background: var(--grey-light); border-bottom: 1px solid var(--grey-mid); padding: 10px 0; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 4px; align-items: center; font-size: .8rem; }
.breadcrumb-item a { color: var(--primary); }
.breadcrumb-item.active span { color: var(--grey-text); }
.bc-sep { color: var(--grey-text); margin: 0 2px; }

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.hero { background: linear-gradient(135deg, #fff0f3 0%, #fff 60%, #f0f4ff 100%); padding: 56px 0 48px; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero-badge {
  display: inline-block; padding: 4px 14px; border-radius: 20px;
  background: var(--gold); color: var(--navy);
  font-size: .75rem; font-weight: 700; margin-bottom: 16px;
}
.hero h1 { font-size: 2.6rem; font-weight: 800; line-height: 1.15; color: var(--navy); margin-bottom: 16px; }
.hero-accent { color: var(--primary); }
.hero-sub { font-size: 1rem; color: #555; margin-bottom: 24px; max-width: 480px; }
.hero-price { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.price-now  { font-size: 1.8rem; font-weight: 800; color: var(--primary); }
.price-was  { font-size: 1rem; color: var(--grey-text); text-decoration: line-through; }
.price-badge { background: var(--primary); color: #fff; padding: 3px 10px; border-radius: 12px; font-size: .75rem; font-weight: 700; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  padding: 13px 28px; border-radius: 30px;
  background: var(--navy); color: #fff;
  font-weight: 700; font-size: .95rem;
  transition: var(--transition);
}
.btn-primary:hover { background: var(--primary); }
.btn-wa {
  display: flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: 30px;
  background: var(--green-wa); color: #fff;
  font-weight: 700; font-size: .95rem;
  transition: var(--transition);
}
.btn-wa:hover { background: var(--green-wa-d); }
.btn-outline {
  display: inline-block; padding: 12px 28px; border-radius: 30px;
  border: 2px solid var(--navy); color: var(--navy);
  font-weight: 600; font-size: .9rem;
  transition: var(--transition);
}
.btn-outline:hover { background: var(--navy); color: #fff; }

.hero-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.hero-img-card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.hero-img-card:hover { transform: translateY(-4px); }
.hero-img-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }

/* ── TRUST BAR ────────────────────────────────────────────────────────────── */
.trust-bar { background: var(--navy); color: #fff; padding: 16px 0; }
.trust-inner { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: .85rem; font-weight: 500; }
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ── SECTION TITLES ───────────────────────────────────────────────────────── */
.section-title {
  font-size: 1.6rem; font-weight: 800; color: var(--navy);
  margin-bottom: 28px; text-align: center;
  position: relative;
}
.section-title::after {
  content: ''; display: block;
  width: 48px; height: 3px;
  background: var(--primary); border-radius: 2px;
  margin: 8px auto 0;
}

/* ── CATEGORY GRID ────────────────────────────────────────────────────────── */
.cat-section { padding: 56px 0; }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cat-card {
  border-radius: var(--radius); overflow: hidden;
  background: #fff; box-shadow: var(--shadow);
  transition: var(--transition); display: block;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cat-card-img { aspect-ratio: 1; overflow: hidden; }
.cat-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.cat-card:hover .cat-card-img img { transform: scale(1.04); }
.cat-card-body { padding: 16px; }
.cat-card-body h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.cat-count { font-size: .8rem; color: var(--grey-text); }

/* ── PRODUCT GRID ─────────────────────────────────────────────────────────── */
.featured-section, .products-section { padding: 56px 0; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.product-grid-4 { grid-template-columns: repeat(4, 1fr); }
.product-card {
  border-radius: var(--radius); overflow: hidden;
  background: #fff; box-shadow: var(--shadow);
  transition: var(--transition); display: block;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-img-wrap { position: relative; aspect-ratio: 1; overflow: hidden; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.04); }
.badge-sale {
  position: absolute; top: 10px; left: 10px;
  background: var(--primary); color: #fff;
  font-size: .7rem; font-weight: 700;
  padding: 3px 8px; border-radius: 8px;
}
.product-card-body { padding: 12px; }
.product-card-name { font-size: .82rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; line-height: 1.35; }
.product-card-price { display: flex; align-items: center; gap: 8px; }
.price-now { font-size: 1rem; font-weight: 700; color: var(--primary); }
.price-was { font-size: .78rem; color: var(--grey-text); text-decoration: line-through; }
.color-dots { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 6px; }
.color-label { font-size: .7rem; background: var(--grey-light); color: var(--grey-text); padding: 2px 7px; border-radius: 8px; }
.color-more  { font-size: .7rem; color: var(--primary); font-weight: 600; }
.view-all-wrap { text-align: center; margin-top: 32px; }

/* ── WHY SECTION ──────────────────────────────────────────────────────────── */
.why-section { padding: 56px 0; background: var(--grey-light); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card { background: #fff; border-radius: var(--radius); padding: 28px 20px; text-align: center; box-shadow: var(--shadow); }
.why-icon { font-size: 2rem; margin-bottom: 12px; }
.why-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.why-card p { font-size: .83rem; color: #555; line-height: 1.5; }

/* ── CATEGORY PAGE ────────────────────────────────────────────────────────── */
.cat-header { padding: 32px 0 24px; }
.cat-header h1 { font-size: 1.8rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.cat-desc { font-size: .9rem; color: #555; max-width: 640px; margin-bottom: 12px; }
.cat-meta { display: flex; align-items: center; gap: 16px; font-size: .82rem; color: var(--grey-text); }
.cat-count-label { background: var(--primary); color: #fff; padding: 3px 12px; border-radius: 12px; font-weight: 600; }
.cat-seo { padding: 40px 0 48px; background: var(--grey-light); margin-top: 32px; }
.seo-block { max-width: 720px; }
.seo-block h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; color: var(--navy); }
.seo-block p { font-size: .88rem; color: #555; margin-bottom: 12px; line-height: 1.65; }
.text-link { color: var(--primary); font-weight: 600; font-size: .88rem; }
.empty-cat { text-align: center; padding: 40px; color: var(--grey-text); }

/* ── PRODUCT DETAIL ───────────────────────────────────────────────────────── */
.product-detail { padding: 32px 0 48px; }
.product-detail-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.product-img-main { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.product-img-main img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.badge-sale-large {
  position: absolute; top: 14px; left: 14px;
  background: var(--primary); color: #fff;
  font-size: .85rem; font-weight: 700;
  padding: 5px 14px; border-radius: 10px;
}
.product-title { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 16px; line-height: 1.25; }
.product-price-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.price-now-large { font-size: 2rem; font-weight: 800; color: var(--primary); }
.price-was-large { font-size: 1.1rem; color: var(--grey-text); text-decoration: line-through; }
.price-save { background: #fff3cd; color: #856404; font-size: .8rem; font-weight: 600; padding: 3px 10px; border-radius: 8px; }
.product-fabric-tag { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.product-fabric-tag span { background: var(--grey-light); color: var(--navy); font-size: .78rem; font-weight: 500; padding: 4px 12px; border-radius: 12px; }

/* SELECTORS */
.selector-block { margin-bottom: 20px; }
.selector-label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.selector-label strong { color: var(--primary); }

.colour-options { display: flex; flex-wrap: wrap; gap: 8px; }
.colour-btn {
  padding: 6px 14px; border-radius: 20px;
  border: 2px solid var(--grey-mid);
  font-size: .78rem; font-weight: 500; color: #555;
  transition: var(--transition);
}
.colour-btn:hover, .colour-btn.selected {
  border-color: var(--primary); color: var(--primary); background: #fff0f3;
}

.size-options { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.size-btn {
  min-width: 64px; padding: 8px 12px; border-radius: 10px;
  border: 2px solid var(--grey-mid);
  font-size: .82rem; font-weight: 600; color: #555;
  text-align: center; transition: var(--transition);
}
.size-btn:hover   { border-color: var(--navy); color: var(--navy); }
.size-btn.selected { border-color: var(--primary); background: var(--primary); color: #fff; }
.size-guide-link { font-size: .78rem; color: var(--primary); font-weight: 500; }

.qty-control { display: flex; align-items: center; gap: 0; border: 2px solid var(--grey-mid); border-radius: 10px; width: fit-content; }
.qty-btn {
  width: 40px; height: 40px; font-size: 1.2rem; font-weight: 700; color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.qty-btn:hover { background: var(--grey-light); }
.qty-value { min-width: 40px; text-align: center; font-weight: 700; font-size: 1rem; }

.btn-wa-order {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 16px;
  border-radius: var(--radius); border: none;
  background: var(--green-wa); color: #fff;
  font-size: 1.05rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
  margin-top: 4px; margin-bottom: 8px;
}
.btn-wa-order:hover { background: var(--green-wa-d); transform: translateY(-1px); }
.btn-wa-order:active { transform: translateY(0); }
.order-note { font-size: .75rem; color: var(--grey-text); text-align: center; margin-bottom: 24px; }

/* ACCORDION */
.accordion { margin-top: 8px; }
.accordion details {
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-sm);
  margin-bottom: 8px; overflow: hidden;
}
.accordion summary {
  padding: 14px 16px; cursor: pointer;
  font-weight: 600; font-size: .88rem; color: var(--navy);
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  user-select: none;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: '+'; font-size: 1.1rem; color: var(--primary); }
.accordion details[open] summary::after { content: '−'; }
.accordion-body { padding: 0 16px 16px; }
.accordion-body p { font-size: .85rem; color: #555; margin-bottom: 8px; line-height: 1.6; }
.accordion-body ul { padding-left: 16px; }
.accordion-body ul li { font-size: .85rem; color: #555; margin-bottom: 6px; list-style: disc; }
.accordion-body ul li strong { color: var(--navy); }

/* RELATED */
.related-section { padding: 48px 0; background: var(--grey-light); }

/* ── STATIC PAGES ─────────────────────────────────────────────────────────── */
.static-page { padding: 40px 0 64px; }
.static-inner { max-width: 800px; }
.static-inner h1 { font-size: 1.8rem; font-weight: 800; color: var(--navy); margin-bottom: 24px; }
.static-content h2 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin: 24px 0 10px; }
.static-content p  { font-size: .9rem; color: #444; margin-bottom: 12px; line-height: 1.7; }
.static-content ul { padding-left: 20px; margin-bottom: 16px; }
.static-content ul li { font-size: .88rem; color: #444; margin-bottom: 6px; list-style: disc; }
.static-content ul li strong { color: var(--navy); }
.contact-block { margin: 24px 0; }
.btn-wa-large {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 30px;
  background: var(--green-wa); color: #fff;
  font-size: 1rem; font-weight: 700;
  transition: var(--transition);
}
.btn-wa-large:hover { background: var(--green-wa-d); }
.size-table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: .85rem; }
.size-table th, .size-table td { border: 1px solid var(--grey-mid); padding: 10px 14px; text-align: left; }
.size-table th { background: var(--navy); color: #fff; font-weight: 600; }
.size-table tr:nth-child(even) { background: var(--grey-light); }

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid     { grid-template-columns: repeat(2, 1fr); }
  .why-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    flex-direction: column; gap: 0;
    position: absolute; top: 60px; left: 0; right: 0;
    background: #fff; border-bottom: 2px solid var(--primary);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    padding: 8px 0; z-index: 300;
  }
  .main-nav.nav-open { display: flex; }
  .nav-item { width: 100%; }
  .nav-link { border-radius: 0; padding: 12px 20px; justify-content: space-between; }
  .nav-link-all { padding: 12px 20px; border-top: 1px solid var(--grey-light); }
  .nav-dropdown {
    display: none; position: static;
    border: none; border-radius: 0; box-shadow: none;
    background: #fafafa; border-top: 1px solid var(--grey-light);
    padding: 0; animation: none; min-width: 0;
  }
  .nav-item.dd-open .nav-dropdown { display: block; }
  .nav-item.dd-open .nav-chevron { transform: rotate(180deg); }
  .nav-dropdown-link { padding: 10px 20px 10px 32px; border-radius: 0; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.8rem; }
  .hero-imgs { display: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .product-detail-inner { grid-template-columns: 1fr; }
  .trust-inner { gap: 20px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 480px) {
  .cat-grid  { grid-template-columns: 1fr 1fr; gap: 12px; }
  .why-grid  { grid-template-columns: 1fr; }
  .hero h1   { font-size: 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .btn-wa-header span { display: none; }
  .trust-inner { flex-direction: column; gap: 12px; align-items: flex-start; padding: 0 16px; }
}

/* ── SILO SIBLINGS BAR ──────────────────────────────────────────────────────── */
.silo-siblings-bar {
  background: #fff8f9;
  border-bottom: 1px solid #ffe0e6;
  padding: 10px 0;
}
.silo-siblings-bar .container { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.silo-label { font-size: .78rem; font-weight: 600; color: var(--grey-text); white-space: nowrap; }
.silo-link {
  font-size: .78rem; font-weight: 500; color: var(--primary);
  padding: 4px 12px; border-radius: 16px;
  border: 1px solid #ffc0cb; background: #fff;
  transition: var(--transition);
}
.silo-link:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ── PRODUCT SILO LINKS (product page body) ─────────────────────────────────── */
.product-silo-links {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid var(--grey-mid);
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}

/* ── CAT INTRO ───────────────────────────────────────────────────────────────── */
.cat-intro { margin-top: 12px; max-width: 680px; }
.cat-intro p { font-size: .88rem; color: #444; line-height: 1.7; margin-bottom: 8px; }
.cat-intro strong { color: var(--navy); }

/* ── HOMEPAGE SEO BLOCK ──────────────────────────────────────────────────────── */
.homepage-seo { padding: 40px 0 48px; background: var(--grey-light); }
.homepage-seo .seo-block { max-width: 780px; }
.homepage-seo .seo-block h2 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.homepage-seo .seo-block p { font-size: .88rem; color: #555; line-height: 1.7; margin-bottom: 12px; }
.homepage-seo .seo-block a { color: var(--primary); font-weight: 500; }

/* ── SIZE GUIDE MODAL ─────────────────────────────────────────────────────── */
.size-modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,.55);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  animation: fadeIn .18s ease;
}
.size-modal-overlay[hidden] { display: none; }
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }
.size-modal-box {
  background: #fff; border-radius: 16px;
  width: 100%; max-width: 420px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  animation: slideUp .2s ease;
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0 } to { transform: none; opacity: 1 } }
.size-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px 12px; border-bottom: 1px solid var(--grey-mid);
  position: sticky; top: 0; background: #fff; z-index: 1;
}
.size-modal-header h2 { font-size: 1.05rem; font-weight: 700; color: var(--navy); }
.size-modal-close {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--grey-light); color: var(--navy);
  font-size: .85rem; cursor: pointer; border: none;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.size-modal-close:hover { background: var(--primary); color: #fff; }
.size-modal-body { padding: 16px 20px 20px; }
.size-modal-tip {
  font-size: .82rem; color: #555; background: #fff8f0;
  border-left: 3px solid var(--gold); padding: 8px 12px;
  border-radius: 0 8px 8px 0; margin-bottom: 14px; line-height: 1.5;
}
.size-modal-tip strong { color: var(--navy); }
.size-modal-note { font-size: .75rem; color: var(--grey-text); margin-top: 12px; line-height: 1.5; }
/* Override size-table for modal (compact) */
.size-modal-body .size-table { font-size: .82rem; }
.size-modal-body .size-table th { padding: 8px 12px; }
.size-modal-body .size-table td { padding: 7px 12px; }

/* size guide button styled as inline link (used on product page) */
button.size-guide-link, button.text-link {
  background: none; border: none; padding: 0;
  cursor: pointer; font-family: inherit;
}
button.size-guide-link {
  font-size: .78rem; color: var(--primary); font-weight: 500;
  text-decoration: underline; text-decoration-color: transparent;
  transition: text-decoration-color .15s;
}
button.size-guide-link:hover { text-decoration-color: var(--primary); }
button.text-link {
  font-size: .88rem; color: var(--primary); font-weight: 600;
}
