/* ==========================================================================
   SHILARA JEWELS — Stylesheet
   Palette: White + Royal Blue | Fonts: Cormorant Garamond (display) + Poppins
   ========================================================================== */

:root{
  --white:#ffffff;
  --off-white:#f5f7fc;
  --royal-blue:#1a3fa0;
  --royal-blue-dark:#0c2158;
  --royal-blue-light:#3f5fd6;
  --royal-blue-pale:#e9edfb;
  --royal-blue-pale-2:#dde6ff;
  --ink:#0e1730;
  --gray:#5c6478;
  --gray-light:#8990a3;
  --border:#dfe4f3;
  --shadow-sm:0 4px 14px rgba(14,23,48,.06);
  --shadow-md:0 14px 34px rgba(14,23,48,.10);
  --shadow-lg:0 24px 60px rgba(14,23,48,.16);
  --font-serif:'Cormorant Garamond', Georgia, serif;
  --font-sans:'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm:8px;
  --radius:16px;
  --radius-lg:26px;
  --header-h:78px;
  --topbar-h:38px;
  --ease:cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;scroll-padding-top:calc(var(--header-h) + var(--topbar-h) + 10px);}
body{
  font-family:var(--font-sans);
  color:var(--ink);
  background:var(--white);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img,svg{display:block;max-width:100%;}
a{text-decoration:none;color:inherit;}
ul{list-style:none;}
button{font:inherit;background:none;border:none;cursor:pointer;color:inherit;}
h1,h2,h3,h4{font-family:var(--font-serif);font-weight:600;letter-spacing:.2px;color:var(--royal-blue-dark);}
.icon{width:20px;height:20px;fill:none;stroke:currentColor;}
.icon use{color:inherit;}

/* ---------- Scroll reveal ---------- */
.reveal{opacity:0;transform:translateY(28px);transition:opacity .8s var(--ease), transform .8s var(--ease);}
.reveal.is-visible{opacity:1;transform:translateY(0);}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:.9rem 1.8rem;border-radius:999px;
  font-weight:600;font-size:.92rem;letter-spacing:.3px;
  transition:transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  white-space:nowrap;
}
.btn--light{background:var(--white);color:var(--royal-blue-dark);box-shadow:var(--shadow-md);}
.btn--light:hover{transform:translateY(-3px);box-shadow:var(--shadow-lg);}
.btn--dark{background:var(--royal-blue-dark);color:var(--white);}
.btn--dark:hover{background:var(--royal-blue);transform:translateY(-3px);}
.btn--whatsapp{background:#1a3fa0;color:#fff;}
.btn--whatsapp .icon{width:18px;height:18px;}
.btn--whatsapp:hover{background:var(--royal-blue-dark);transform:translateY(-3px);box-shadow:var(--shadow-md);}
.btn--instagram{background:var(--white);color:var(--royal-blue-dark);border:1.5px solid var(--royal-blue);}
.btn--instagram .icon{width:18px;height:18px;}
.btn--instagram:hover{background:var(--royal-blue-pale);transform:translateY(-3px);}

/* ---------- Section shells ---------- */
.section-title{
  font-size:clamp(1.6rem,2.4vw,2.2rem);
  color:var(--royal-blue-dark);
  position:relative;
  padding-bottom:.5rem;
}
.section-title::after{
  content:'';position:absolute;left:0;bottom:0;
  width:56px;height:3px;background:var(--royal-blue);border-radius:3px;
}
.section-head{
  display:flex;align-items:flex-end;justify-content:space-between;
  max-width:1240px;margin:0 auto 1.8rem;padding:0 1.5rem;
}
.section-link{
  font-size:.85rem;font-weight:600;color:var(--royal-blue);
  border-bottom:1.5px solid transparent;transition:border-color .25s var(--ease);
}
.section-link:hover{border-color:var(--royal-blue);}
.products-section{padding:4.5rem 0;}
.quick-cats,.budget-section{padding:4rem 1.5rem;max-width:1240px;margin:0 auto;}

/* ---------- Topbar marquee ---------- */
.topbar{
  height:var(--topbar-h);
  background:var(--royal-blue-dark);
  color:var(--white);
  overflow:hidden;
  display:flex;
  align-items:center;
  position:relative;
  z-index:60;
}
.topbar__track{
  display:flex;gap:3rem;white-space:nowrap;
  padding-left:2rem;
  font-size:.78rem;letter-spacing:.6px;font-weight:500;
  animation:marquee 22s linear infinite;
}
@keyframes marquee{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}

/* ---------- Header ---------- */
.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
  transition:box-shadow .3s var(--ease), padding .3s var(--ease);
}
.site-header.is-scrolled{box-shadow:var(--shadow-sm);}
.site-header__inner{
  max-width:1320px;margin:0 auto;padding:0 1.5rem;
  height:var(--header-h);
  display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:1.5rem;
}
.logo{
  display:flex;align-items:center;gap:.6rem;justify-self:center;
}
.logo__mark{
  width:42px;height:42px;border-radius:50%;
  background:linear-gradient(135deg,var(--royal-blue),var(--royal-blue-dark));
  color:#fff;font-family:var(--font-serif);font-weight:700;font-size:1.3rem;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 6px 16px rgba(26,63,160,.35);
}
.logo__word{
  font-family:var(--font-serif);font-weight:700;font-size:1.35rem;
  letter-spacing:1.5px;color:var(--royal-blue-dark);
}
.logo__word em{font-style:normal;color:var(--royal-blue);font-weight:500;}

.main-nav{display:flex;align-items:center;gap:1.9rem;justify-self:start;}
.main-nav a{
  font-size:.88rem;font-weight:500;color:var(--ink);position:relative;padding:.3rem 0;
  transition:color .25s var(--ease);
}
.main-nav a::after{
  content:'';position:absolute;left:0;bottom:-2px;width:0;height:2px;
  background:var(--royal-blue);transition:width .3s var(--ease);
}
.main-nav a:hover{color:var(--royal-blue);}
.main-nav a:hover::after{width:100%;}
.nav-close{display:none;}

.header-actions{display:flex;align-items:center;gap:.4rem;justify-self:end;}
.icon-btn{
  width:40px;height:40px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  color:var(--royal-blue-dark);
  transition:background .25s var(--ease), transform .25s var(--ease);
}
.icon-btn:hover{background:var(--royal-blue-pale);transform:translateY(-2px);}
.icon-btn--whatsapp{color:var(--royal-blue);}

.hamburger{display:none;width:40px;height:40px;align-items:center;justify-content:center;color:var(--royal-blue-dark);}

.search-panel{
  max-height:0;overflow:hidden;
  background:var(--off-white);border-top:1px solid transparent;
  transition:max-height .35s var(--ease), border-color .35s var(--ease);
  display:flex;align-items:center;gap:1rem;
}
.search-panel.is-open{max-height:80px;border-color:var(--border);}
.search-panel input{
  flex:1;max-width:1240px;margin:0 auto;padding:1rem 1.5rem;
  border:none;background:transparent;font-size:1rem;font-family:var(--font-sans);
  color:var(--ink);
}
.search-panel input:focus{outline:none;}
.search-panel button{padding-right:1.5rem;color:var(--gray);}

.nav-overlay{
  position:fixed;inset:0;background:rgba(14,23,48,.5);
  opacity:0;visibility:hidden;transition:opacity .35s var(--ease), visibility .35s var(--ease);
  z-index:45;
}
.nav-overlay.is-active{opacity:1;visibility:visible;}

/* ---------- Hero carousel ---------- */
.hero{
  position:relative;height:min(88vh,720px);min-height:460px;overflow:hidden;
  background:var(--royal-blue-dark);
}
.hero__track{display:flex;height:100%;width:300%;transition:transform .7s var(--ease);}
.hero__slide{
  width:33.3333%;height:100%;position:relative;
  display:flex;align-items:center;
  padding:0 8%;
}
.hero__slide--a{background:
  radial-gradient(circle at 82% 30%, rgba(255,255,255,.14), transparent 45%),
  linear-gradient(120deg,#0c2158 0%, #1a3fa0 55%, #3f5fd6 100%);}
.hero__slide--b{background:
  radial-gradient(circle at 15% 70%, rgba(255,255,255,.14), transparent 45%),
  linear-gradient(120deg,#123a94 0%, #274fc0 55%, #6d87e6 100%);}
.hero__slide--c{background:
  radial-gradient(circle at 70% 80%, rgba(255,255,255,.14), transparent 45%),
  linear-gradient(120deg,#0c2158 0%, #24408f 55%, #4864c9 100%);}
.hero__content{max-width:560px;color:#fff;}
.hero__eyebrow{
  text-transform:uppercase;letter-spacing:3px;font-size:.78rem;font-weight:600;
  color:#c9d6ff;margin-bottom:1rem;
}
.hero__content h1{
  color:#fff;font-size:clamp(2.3rem,5vw,3.6rem);line-height:1.1;margin-bottom:1.2rem;
}
.hero__sub{font-size:1.05rem;color:#e3e9ff;margin-bottom:2rem;max-width:440px;}

.hero__arrow{
  position:absolute;top:50%;translate:0 -50%;
  width:48px;height:48px;border-radius:50%;
  background:rgba(255,255,255,.16);color:#fff;
  display:flex;align-items:center;justify-content:center;
  backdrop-filter:blur(6px);
  transition:background .25s var(--ease);
  z-index:5;
}
.hero__arrow:hover{background:rgba(255,255,255,.32);}
.hero__arrow--prev{left:24px;}
.hero__arrow--next{right:24px;}

.hero__dots{
  position:absolute;bottom:26px;left:50%;translate:-50% 0;
  display:flex;gap:.6rem;z-index:5;
}
.hero__dots button{
  width:9px;height:9px;border-radius:50%;background:rgba(255,255,255,.4);
  transition:background .25s var(--ease), width .25s var(--ease);
}
.hero__dots button.is-active{background:#fff;width:26px;border-radius:6px;}

/* ---------- Trust strip ---------- */
.trust-strip{
  display:grid;grid-template-columns:repeat(4,1fr);
  max-width:1240px;margin:0 auto;padding:2.4rem 1.5rem;
  gap:1.5rem;
}
.trust-item{
  display:flex;align-items:center;gap:.7rem;
  font-size:.85rem;font-weight:500;color:var(--royal-blue-dark);
}
.trust-item .icon{color:var(--royal-blue);flex-shrink:0;}

/* ---------- Quick category grid ---------- */
.quick-cats__grid{
  display:grid;grid-template-columns:repeat(7,1fr);gap:1.2rem;margin-top:1.8rem;
}
.quick-cat{
  display:flex;flex-direction:column;align-items:center;gap:.8rem;
  padding:1.6rem .5rem;border-radius:var(--radius);
  background:var(--off-white);border:1px solid var(--border);
  font-size:.85rem;font-weight:600;color:var(--royal-blue-dark);
  transition:transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.quick-cat:hover{transform:translateY(-6px);box-shadow:var(--shadow-md);background:#fff;}
.quick-cat__icon{
  width:56px;height:56px;border-radius:50%;
  background:linear-gradient(135deg,var(--royal-blue-pale),var(--royal-blue-pale-2));
  display:flex;align-items:center;justify-content:center;color:var(--royal-blue);
}
.quick-cat__icon .icon{width:26px;height:26px;}

/* ---------- Product grid & cards ---------- */
.product-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:1.6rem;
  max-width:1240px;margin:0 auto;padding:0 1.5rem;
}
.product-card{
  background:var(--white);border:1px solid var(--border);border-radius:var(--radius);
  overflow:hidden;transition:box-shadow .35s var(--ease), transform .35s var(--ease);
}
.product-card:hover{box-shadow:var(--shadow-lg);transform:translateY(-4px);}

.product-card__media{
  position:relative;aspect-ratio:1/1;overflow:hidden;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(150deg,var(--royal-blue-pale) 0%, var(--royal-blue-pale-2) 100%);
}
/* Slight per-category tint variation so the placeholder grid doesn't look uniform/fake */
.product-card__media--ring{background:linear-gradient(150deg,#eef1fc,#dbe4fb);}
.product-card__media--bracelet{background:linear-gradient(150deg,#eaf0ff,#d6e2ff);}
.product-card__media--earring{background:linear-gradient(150deg,#f0f2fd,#dfe6fb);}
.product-card__media--pendant{background:linear-gradient(150deg,#eef2ff,#d9e3ff);}
.product-card__media--anklet{background:linear-gradient(150deg,#eef1fb,#dce5fb);}
.product-card__media--set{background:linear-gradient(150deg,#eaeffd,#d4e0fc);}
.product-card__media--mens{background:linear-gradient(150deg,#e6ecfb,#c9d7f7);}

.icon--product{
  width:42%;height:42%;color:var(--royal-blue);
  stroke-width:1.6;
  transition:transform .55s var(--ease);
  filter:drop-shadow(0 8px 18px rgba(26,63,160,.18));
}
.product-card:hover .icon--product{transform:scale(1.18) rotate(-3deg);}

/* Diagonal shine sweep on hover, for a premium in-motion feel */
.product-card__media::before{
  content:'';position:absolute;inset:0;
  background:linear-gradient(115deg, transparent 40%, rgba(255,255,255,.55) 50%, transparent 60%);
  transform:translateX(-120%);
  transition:transform .8s var(--ease);
  pointer-events:none;
}
.product-card:hover .product-card__media::before{transform:translateX(120%);}

.product-card__badge{
  position:absolute;top:12px;left:12px;z-index:2;
  background:var(--royal-blue-dark);color:#fff;
  font-size:.66rem;font-weight:600;letter-spacing:.5px;text-transform:uppercase;
  padding:.35rem .7rem;border-radius:999px;
}

.product-card__zoom{
  position:absolute;bottom:12px;right:12px;z-index:2;
  width:38px;height:38px;border-radius:50%;background:rgba(255,255,255,.9);
  display:flex;align-items:center;justify-content:center;color:var(--royal-blue-dark);
  opacity:0;transform:translateY(10px) scale(.85);
  transition:opacity .3s var(--ease), transform .3s var(--ease);
  box-shadow:var(--shadow-sm);
}
.product-card:hover .product-card__zoom{opacity:1;transform:translateY(0) scale(1);}

.product-card__body{padding:1.2rem 1.2rem 1.4rem;}
.product-card__body h3{font-size:1.15rem;color:var(--ink);margin-bottom:.35rem;font-weight:600;}
.product-card__price{
  font-family:var(--font-sans);font-weight:600;color:var(--royal-blue-dark);
  font-size:1rem;margin-bottom:1rem;
}
.product-card__price span{
  font-weight:400;color:var(--gray-light);font-size:.78rem;margin-left:.4rem;
}

.product-card__cta{display:flex;gap:.6rem;}
.cta-btn{
  flex:1;text-align:center;padding:.62rem .5rem;border-radius:999px;
  font-size:.78rem;font-weight:600;letter-spacing:.2px;
  transition:transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.cta-btn--wa{background:var(--royal-blue);color:#fff;}
.cta-btn--wa:hover{background:var(--royal-blue-dark);transform:translateY(-2px);}
.cta-btn--ig{background:var(--off-white);color:var(--royal-blue-dark);border:1.3px solid var(--border);}
.cta-btn--ig:hover{background:var(--royal-blue-pale);border-color:var(--royal-blue-light);transform:translateY(-2px);}

/* ---------- Promo banner ---------- */
.promo-banner{
  margin:1rem 1.5rem 4.5rem;max-width:1240px;margin-left:auto;margin-right:auto;
  border-radius:var(--radius-lg);overflow:hidden;position:relative;
  background:linear-gradient(120deg,#0c2158,#1a3fa0 60%,#3f5fd6);
  background-size:cover;background-position:center;background-repeat:no-repeat;
  padding:4rem 3rem;
}
.promo-banner::after{
  content:'';position:absolute;right:-60px;top:-60px;width:280px;height:280px;
  border-radius:50%;background:radial-gradient(circle,rgba(255,255,255,.16),transparent 70%);
}
.promo-banner__text{max-width:520px;position:relative;z-index:1;}
.promo-banner__eyebrow{
  color:#c9d6ff;text-transform:uppercase;letter-spacing:2.5px;font-size:.75rem;font-weight:600;margin-bottom:.8rem;
}
.promo-banner__text h2{color:#fff;font-size:clamp(1.7rem,3.4vw,2.4rem);margin-bottom:1rem;line-height:1.2;}
.promo-banner__text p{color:#dce4fb;margin-bottom:1.8rem;}

/* ---------- Budget cards ---------- */
.budget-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1.4rem;margin-top:1.8rem;
}
.budget-card{
  padding:2.4rem 1.5rem;text-align:center;border-radius:var(--radius);
  background:linear-gradient(150deg,var(--royal-blue-pale),var(--royal-blue-pale-2));
  color:var(--royal-blue-dark);font-family:var(--font-serif);font-weight:700;font-size:1.35rem;
  border:1px solid var(--border);
  transition:transform .3s var(--ease), box-shadow .3s var(--ease), color .3s var(--ease), background .3s var(--ease);
}
.budget-card:hover{
  transform:translateY(-6px);box-shadow:var(--shadow-md);
  background:linear-gradient(150deg,var(--royal-blue),var(--royal-blue-dark));color:#fff;
}

/* ---------- CTA strip ---------- */
.cta-strip{
  text-align:center;padding:5rem 1.5rem;max-width:760px;margin:0 auto;
}
.cta-strip h2{font-size:clamp(1.7rem,3.2vw,2.4rem);margin-bottom:.9rem;}
.cta-strip p{color:var(--gray);margin-bottom:2.2rem;}
.cta-strip__buttons{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;}

/* ---------- Footer ---------- */
.site-footer{background:var(--royal-blue-dark);color:#dce4fb;padding-top:4rem;}
.site-footer__grid{
  max-width:1240px;margin:0 auto;padding:0 1.5rem 3rem;
  display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:2.5rem;
}
.footer-col h4{color:#fff;font-family:var(--font-sans);font-size:.9rem;text-transform:uppercase;letter-spacing:1px;margin-bottom:1.1rem;}
.footer-col a{display:block;font-size:.88rem;color:#c3cdf0;margin-bottom:.7rem;transition:color .25s var(--ease);}
.footer-col a:hover{color:#fff;}
.footer-col--brand p{font-size:.86rem;color:#b7c3ee;margin:1rem 0 1.4rem;max-width:320px;}
.footer-col--brand .logo__word,.footer-col--brand .logo__word em{color:#fff;}
.footer-col--brand .logo__mark{background:linear-gradient(135deg,#fff,#c9d6ff);color:var(--royal-blue-dark);}
.footer-social{display:flex;gap:.7rem;}
.footer-social a{
  width:38px;height:38px;border-radius:50%;background:rgba(255,255,255,.08);
  display:flex;align-items:center;justify-content:center;margin:0;
}
.footer-social a:hover{background:rgba(255,255,255,.18);}
.site-footer__bottom{
  border-top:1px solid rgba(255,255,255,.1);padding:1.4rem 1.5rem;text-align:center;
  font-size:.8rem;color:#9aa8db;
}

/* ---------- Floating WhatsApp button ---------- */
.floating-wa{
  position:fixed;bottom:24px;right:24px;z-index:70;
  width:58px;height:58px;border-radius:50%;
  background:var(--royal-blue);color:#fff;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 12px 28px rgba(26,63,160,.4);
  animation:pulse-wa 2.6s ease-in-out infinite;
}
.floating-wa .icon{width:28px;height:28px;}
.floating-wa:hover{background:var(--royal-blue-dark);}
@keyframes pulse-wa{
  0%,100%{box-shadow:0 12px 28px rgba(26,63,160,.4);}
  50%{box-shadow:0 12px 28px rgba(26,63,160,.4), 0 0 0 10px rgba(26,63,160,.08);}
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width:1080px){
  .product-grid{grid-template-columns:repeat(3,1fr);}
  .quick-cats__grid{grid-template-columns:repeat(4,1fr);}
  .trust-strip{grid-template-columns:repeat(2,1fr);}
  .site-footer__grid{grid-template-columns:1.4fr 1fr 1fr;}
  .footer-col--brand{grid-column:1/-1;}
}

@media (max-width:860px){
  .site-header__inner{grid-template-columns:auto auto auto;}
  .hamburger{display:flex;}
  .main-nav{
    position:fixed;top:0;left:0;height:100%;width:min(78vw,320px);
    background:#fff;flex-direction:column;align-items:flex-start;
    padding:5.5rem 2rem 2rem;gap:1.4rem;
    transform:translateX(-100%);transition:transform .4s var(--ease);
    z-index:46;justify-self:start;
    box-shadow:var(--shadow-lg);
  }
  .main-nav.is-open{transform:translateX(0);}
  .main-nav a{font-size:1rem;}
  .nav-close{
    display:flex;position:absolute;top:1.4rem;right:1.4rem;
    width:36px;height:36px;align-items:center;justify-content:center;color:var(--royal-blue-dark);
  }
  .budget-grid{grid-template-columns:1fr;}
}

@media (max-width:680px){
  :root{--header-h:66px;}
  .logo__word{font-size:1.05rem;}
  .logo__mark{width:36px;height:36px;font-size:1.1rem;}
  .product-grid{grid-template-columns:repeat(2,1fr);gap:1rem;}
  .quick-cats__grid{grid-template-columns:repeat(3,1fr);}
  .trust-strip{grid-template-columns:1fr 1fr;gap:1rem;padding:1.8rem 1.2rem;}
  .hero{height:min(72vh,560px);}
  .hero__slide{padding:0 6.5%;}
  .hero__arrow{width:38px;height:38px;}
  .promo-banner{padding:2.8rem 1.6rem;margin-bottom:3rem;border-radius:var(--radius);}
  .site-footer__grid{grid-template-columns:1fr 1fr;}
  .footer-col--brand{grid-column:1/-1;}
  .cta-strip{padding:3.5rem 1.2rem;}
  .cta-strip__buttons{flex-direction:column;align-items:stretch;}
  .floating-wa{width:50px;height:50px;bottom:16px;right:16px;}
  .floating-wa .icon{width:24px;height:24px;}
}

@media (max-width:420px){
  .quick-cats__grid{grid-template-columns:repeat(2,1fr);}
  .product-grid{grid-template-columns:1fr 1fr;}
  .product-card__body{padding:.9rem;}
  .product-card__body h3{font-size:1rem;}
}

/* ==========================================================================
   REAL PRODUCT PHOTOS — added once actual images were supplied
   ========================================================================== */

.product-card__media img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .6s var(--ease);
}
.product-card:hover .product-card__media img{transform:scale(1.08);}

/* ---------- Featured-single (homepage teaser for a full catalog page) ---------- */
.featured-single{
  display:grid;grid-template-columns:360px 1fr;gap:2.8rem;align-items:center;
  max-width:1240px;margin:0 auto;padding:0 1.5rem;
}
.featured-single__aside{max-width:480px;}
.featured-single__eyebrow{
  text-transform:uppercase;letter-spacing:2px;font-size:.75rem;font-weight:600;
  color:var(--royal-blue);margin-bottom:.7rem;
}
.featured-single__aside h3{font-size:clamp(1.4rem,2.6vw,1.9rem);margin-bottom:.8rem;color:var(--royal-blue-dark);}
.featured-single__aside p{color:var(--gray);margin-bottom:1.6rem;}

@media (max-width:860px){
  .featured-single{grid-template-columns:1fr;gap:1.8rem;}
  .featured-single .product-card{max-width:360px;margin:0 auto;}
}

/* ---------- Men's Silver hub tiles ---------- */
.mens-hub{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;
  max-width:1240px;margin:0 auto;padding:0 1.5rem;
}
.mens-hub__tile{
  position:relative;display:block;border-radius:var(--radius);overflow:hidden;
  aspect-ratio:3/4;box-shadow:var(--shadow-sm);
  transition:box-shadow .35s var(--ease), transform .35s var(--ease);
}
.mens-hub__tile:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);}
.mens-hub__tile img{width:100%;height:100%;object-fit:cover;transition:transform .6s var(--ease);}
.mens-hub__tile:hover img{transform:scale(1.08);}
.mens-hub__label{
  position:absolute;left:0;right:0;bottom:0;padding:1.3rem 1.2rem;
  background:linear-gradient(0deg,rgba(12,33,88,.88),transparent 80%);
  color:#fff;font-family:var(--font-serif);font-weight:700;font-size:1.25rem;
}
.mens-hub__label span{
  display:block;font-family:var(--font-sans);font-weight:500;font-size:.72rem;
  text-transform:uppercase;letter-spacing:1px;color:#c9d6ff;margin-bottom:.25rem;
}
@media (max-width:680px){
  .mens-hub{grid-template-columns:1fr;}
}

/* ---------- Visit Our Store ---------- */
.store-section{max-width:1240px;margin:0 auto;padding:1rem 1.5rem 4.5rem;text-align:center;}
.store-gallery{
  display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;margin:1.8rem 0 1.6rem;
}
.store-gallery img{
  width:100%;aspect-ratio:3/4;object-fit:cover;border-radius:var(--radius);
  transition:transform .4s var(--ease), box-shadow .4s var(--ease);
}
.store-gallery img:hover{transform:scale(1.03);box-shadow:var(--shadow-md);}
.store-section__note{color:var(--gray);font-size:.92rem;max-width:520px;margin:0 auto;}
@media (max-width:680px){
  .store-gallery{grid-template-columns:repeat(2,1fr);}
}

/* ---------- Catalog page header (breadcrumb-style back link) ---------- */
.catalog-hero{
  max-width:1240px;margin:0 auto;padding:2.6rem 1.5rem 1rem;
}
.catalog-hero__back{
  font-size:.82rem;font-weight:600;color:var(--royal-blue);margin-bottom:.9rem;display:inline-block;
}
.catalog-hero h1{font-size:clamp(1.9rem,3.6vw,2.6rem);margin-bottom:.5rem;}
.catalog-hero p{color:var(--gray);max-width:560px;}

/* ---------- Active nav state on catalog pages ---------- */
.main-nav a.is-active{color:var(--royal-blue);}
.main-nav a.is-active::after{width:100%;}

/* ---------- Quick-category real photo thumbnails ---------- */
.quick-cat__photo{
  width:64px;height:64px;border-radius:50%;overflow:hidden;
  border:2px solid var(--royal-blue-pale-2);
  transition:transform .3s var(--ease), border-color .3s var(--ease);
}
.quick-cat__photo img{width:100%;height:100%;object-fit:cover;display:block;}
.quick-cat:hover .quick-cat__photo{transform:scale(1.08);border-color:var(--royal-blue);}

/* ---------- Store address / directions link ---------- */
.store-section__directions{
  display:inline-block;margin-top:.6rem;font-weight:600;color:var(--royal-blue);
  border-bottom:1.5px solid transparent;transition:border-color .25s var(--ease);
}
.store-section__directions:hover{border-color:var(--royal-blue);}
.footer-col a[href*="google.com/maps"]{line-height:1.5;margin-bottom:0;}

/* ---------- Hero video slides ---------- */
.hero__slide--video{
  background:#0c2158;
  align-items:flex-end;
  padding-bottom:4.5rem;
}
.hero__video{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;z-index:0;
}
.hero__video-overlay{
  position:absolute;inset:0;z-index:1;
  background:linear-gradient(180deg, rgba(6,15,40,0) 35%, rgba(6,15,40,.82) 100%);
}
.hero__slide--video .hero__content{position:relative;z-index:2;max-width:600px;}
.hero__slide--video .hero__content h1{color:#fff;}
@media (max-width:680px){
  .hero__slide--video{padding-bottom:3rem;}
}

/* ---------- Real logo image (replacing text wordmark) ---------- */
.logo__img{height:34px;width:auto;display:block;}
.logo__img--footer{height:30px;}
@media (max-width:680px){
  .logo__img{height:26px;}
}
