:root{
  --bg:#f2eee8;
  --bg-soft:#ebe4db;
  --card:#f8f5f1;
  --text:#463d35;
  --text-soft:#73675c;
  --accent:#6a594a;
  --accent-dark:#56473a;
  --line:#d7cec3;
  --white:#ffffff;
  --shadow:0 10px 30px rgba(50,40,30,.08);
  --radius:18px;
  --radius-sm:12px;
  --max:1180px;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}

img{
  max-width:100%;
  display:block;
  height:auto;
  border-radius:var(--radius-sm);
}

a{
  color:inherit;
  text-decoration:none;
}

.container{
  width:min(var(--max), calc(100% - 32px));
  margin:0 auto;
}

.section{
  padding:40px 0;
}

.eyebrow{
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--text-soft);
  margin-bottom:10px;
  font-weight:700;
}

.eyebrow-light{
  color:rgba(255,255,255,.76);
}

h1,h2,h3{
  margin:0 0 16px;
  line-height:1.15;
  color:#332b24;
}

h1{
  font-size:clamp(34px, 5vw, 62px);
  letter-spacing:-1px;
}

h2{
  font-size:clamp(26px, 3.2vw, 40px);
}

h3{
  font-size:22px;
}

p{
  margin:0 0 16px;
  color:var(--text);
  font-size:17px;
}

.muted{
  color:var(--text-soft);
}

.topbar{
  border-bottom:1px solid var(--line);
  background:rgba(255,255,255,.28);
  backdrop-filter:blur(8px);
}

.topbar-inner{
  min-height:66px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.brand{
  font-weight:800;
  letter-spacing:.5px;
  color:#312922;
  font-size:18px;
}

.topnav{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  color:var(--text-soft);
  font-size:14px;
}

.hero{
  padding:28px 0 10px;
}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.15fr) minmax(320px, .85fr);
  gap:34px;
  align-items:start;
}

.hero-copy{
  padding:0;
  max-width:100%;
  width:100%;
  align-self:start;
}

.hero-copy > *:last-child{
  margin-bottom:0;
}

.hero-copy p{
  max-width:100%;
  width:100%;
}

.hero-card{
  background:linear-gradient(180deg, #f7f2ec 0%, #ede5db 100%);
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:var(--shadow);
  padding:26px;
  align-self:start;
}

.hero-image-wrap{
  position:relative;
}

.hero-main{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
  border-radius:22px;
}

.hero-badge-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
}

.hero-badge{
  background:rgba(255,255,255,.92);
  color:#3a312a;
  border:1px solid rgba(0,0,0,.06);
  border-radius:999px;
  padding:10px 16px;
  font-size:13px;
  font-weight:700;
  box-shadow:var(--shadow);
}

.mini-points{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:18px;
}

.mini-point{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:14px;
  padding:14px;
  text-align:center;
  font-size:13px;
  color:var(--text-soft);
  font-weight:700;
}

.rating{
  display:flex;
  align-items:center;
  gap:10px;
  margin:14px 0 20px;
  color:var(--text-soft);
  font-size:14px;
  font-weight:700;
  flex-wrap:wrap;
}

.stars{
  color:#b48842;
  letter-spacing:1px;
  font-size:18px;
}

.btn-row{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:26px;
}

.btn-row-center{
  justify-content:center;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 24px;
  border-radius:999px;
  font-weight:700;
  transition:.2s ease;
  border:1px solid transparent;
}

.btn-etsy{
  background:#f1641e;
  color:#fff;
  box-shadow:var(--shadow);
}

.btn-etsy:hover{
  transform:translateY(-1px);
  filter:brightness(.97);
}

.btn-paypal{
  background:#0070ba;
  color:#fff;
  box-shadow:var(--shadow);
}

.btn-paypal:hover{
  transform:translateY(-1px);
  filter:brightness(.97);
}

.btn-secondary{
  border-color:var(--accent);
  color:var(--accent);
  background:transparent;
}

.btn-secondary:hover{
  background:rgba(106,89,74,.06);
}

.btn-light{
  background:#fff;
  color:#3a312a;
}

.info-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:24px;
}

.info-box{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:16px;
  padding:18px 16px;
  text-align:center;
  box-shadow:var(--shadow);
}

.info-box strong{
  display:block;
  margin-bottom:6px;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.5px;
}

.section-intro{
  max-width:none;
  width:100%;
  color:var(--text-soft);
}

.panel{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
  margin-top:12px;
}

main > .hero + .section{
  padding-top:10px;
}

.gallery-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:18px;
}

.gallery-side{
  display:grid;
  gap:18px;
}

.gallery-grid img,
.gallery-side img{
  width:100%;
  object-fit:cover;
  background:#ddd;
}

.gallery-grid > img{
  height:100%;
  min-height:540px;
}

.gallery-side img{
  min-height:260px;
}

.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:center;
}

.check-list{
  list-style:none;
  padding:0;
  margin:18px 0 0;
}

.check-list li{
  position:relative;
  padding-left:28px;
  margin-bottom:12px;
  color:var(--text);
  font-weight:700;
}

.check-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:#6b8d61;
  font-weight:900;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:24px;
}

.feature-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:20px;
  padding:24px;
  box-shadow:var(--shadow);
}

.feature-card h3{
  margin-bottom:10px;
  font-size:20px;
}

.reviews{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
  margin-top:24px;
}

.review-card{
  background:var(--accent);
  color:#fff;
  border-radius:18px;
  padding:20px;
  box-shadow:var(--shadow);
}

.review-card p{
  color:#fff;
  margin-bottom:12px;
  font-style:italic;
}

.review-meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  font-weight:700;
  font-size:14px;
}

.faq{
  display:grid;
  gap:14px;
  margin-top:24px;
}

.faq-item{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:16px;
  padding:18px 20px;
  box-shadow:var(--shadow);
}

.faq-item h3{
  font-size:18px;
  margin-bottom:8px;
}

.cta-banner{
  background:linear-gradient(135deg, #6b5a4b 0%, #4d4035 100%);
  color:#fff;
  border-radius:28px;
  padding:34px 28px;
  text-align:center;
  box-shadow:var(--shadow);
}

.cta-banner h2,
.cta-banner p{
  color:#fff;
}

.footer{
  padding:36px 0 60px;
  color:var(--text-soft);
  font-size:14px;
  text-align:center;
}

.related-links{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:16px;
  margin-top:20px;
}

.related-links a{
  display:block;
  background:white;
  padding:14px;
  border-radius:8px;
  text-decoration:none;
  color:#333;
  font-weight:600;
  box-shadow:0 2px 6px rgba(0,0,0,0.08);
  transition:all 0.2s ease;
}

.related-links a:hover{
  transform:translateY(-2px);
  box-shadow:0 4px 10px rgba(0,0,0,0.12);
}

figure{
  margin:0;
}

figcaption{
  font-size:13px;
  color:#666;
  margin-top:6px;
  text-align:center;
}

.collection-box{
  margin:18px 0 0;
  padding:14px 16px;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:14px;
  box-shadow:var(--shadow);
  color:var(--text);
  font-size:15px;
}

.collection-box a{
  font-weight:700;
  color:var(--accent);
  text-decoration:none;
}

.collection-box a:hover{
  text-decoration:underline;
}

.poster-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:24px;
  margin-top:24px;
}

.poster-card{
  display:block;
  text-decoration:none;
  color:inherit;
  background:#fff;
  border:1px solid rgba(0,0,0,0.08);
  border-radius:14px;
  overflow:hidden;
  transition:transform 0.18s ease, box-shadow 0.18s ease;
}

.poster-card:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 26px rgba(0,0,0,0.08);
}

.poster-card-image{
  aspect-ratio:3 / 4;
  background:#f3f3f3;
  overflow:hidden;
}

.poster-card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.poster-card-body{
  padding:14px;
}

.poster-card-body h3{
  font-size:1rem;
  line-height:1.35;
  margin:0 0 8px 0;
}

.poster-card-link{
  font-size:0.92rem;
  opacity:0.78;
}

.site-footer{
  margin-top:90px;
  background:#e5dfd6;
  border-top:1px solid #d4cabd;
  color:#2f241c;
}

.footer-shell{
  max-width:1280px;
  margin:0 auto;
  padding:42px 36px 26px;
}

.footer-brand-block{
  max-width:760px;
  margin-bottom:34px;
}

.footer-brand-name{
  font-size:30px;
  line-height:1.1;
  font-weight:700;
  letter-spacing:-0.02em;
  margin-bottom:10px;
  color:#2f241c;
}

.footer-brand-text{
  margin:0;
  font-size:16px;
  line-height:1.8;
  color:#5f5247;
}

.footer-columns{
  display:grid;
  grid-template-columns:repeat(4, minmax(180px, 1fr));
  gap:42px;
  padding:18px 0 34px;
}

.footer-col{
  min-width:0;
}

.footer-title{
  margin:0 0 18px;
  font-size:12px;
  line-height:1.2;
  font-weight:700;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:#6f5f51;
}

.footer-links{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-links li{
  margin:0 0 12px;
}

.footer-links a{
  text-decoration:none;
  color:#2f241c;
  font-size:16px;
  line-height:1.55;
}

.footer-links a:hover{
  opacity:0.68;
}

.footer-bottom{
  border-top:1px solid rgba(70, 52, 39, 0.12);
  padding-top:20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

.footer-copy{
  font-size:13px;
  color:#6b5d52;
}

.footer-bottom-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.footer-bottom-links a{
  text-decoration:none;
  font-size:13px;
  color:#6b5d52;
}

.footer-bottom-links a:hover{
  color:#2f241c;
}

.editorial-inline-links{
  margin-top:18px;
  font-size:0;
  line-height:1.9;
}

.editorial-inline-item{
  font-size:16px;
  line-height:1.9;
}

.editorial-inline-link{
  font-weight:700;
  color:#2f241c;
  text-decoration:none;
  border-bottom:1px solid transparent;
  transition:color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.editorial-inline-link:hover{
  color:#8a745f;
  border-bottom-color:#8a745f;
}

.editorial-inline-link:visited{
  color:#4a372c;
}

.editorial-inline-desc{
  color:#5f5247;
}

.editorial-link-separator{
  display:inline-block;
  margin:0 12px;
  color:#a08d7c;
  font-size:16px;
  vertical-align:middle;
}

.editorial-intro-top,
.editorial-intro-bottom,
.editorial-section-text{
  margin:0;
}

.editorial-intro-top:empty,
.editorial-intro-bottom:empty,
.editorial-section-text:empty{
  display:none;
}

.content-separator{
  border:0;
  height:1px;
  margin:28px 0;
  position:relative;
  background:linear-gradient(
    to right,
    rgba(120, 102, 84, 0),
    rgba(120, 102, 84, 0.35),
    rgba(120, 102, 84, 0)
  );
}

.content-separator::after{
  content:"◆";
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%, -52%);
  font-size:11px;
  line-height:1;
  padding:0 10px;
  color:#8a7664;
  background:#f7f2eb;
}

.hub-articles-list{
  display:flex;
  flex-direction:column;
  gap:16px;
  margin-top:24px;
}

.hub-article-card{
  display:grid;
  grid-template-columns:220px 1fr;
  gap:18px;
  align-items:stretch;
  text-decoration:none;
  color:inherit;
  background:#fff;
  border:1px solid #d9cec1;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 4px 14px rgba(0,0,0,0.06);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.hub-article-card:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 24px rgba(0,0,0,0.08);
  border-color:#c9b8a5;
}

.hub-article-card-media{
  min-height:150px;
  background:#ece7df;
}

.hub-article-card-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.hub-article-card-body{
  padding:18px 18px 18px 0;
}

.hub-article-card-body h3{
  margin:0 0 10px;
  line-height:1.3;
}

.hub-article-card-body p{
  margin:0;
  color:#6f655d;
  line-height:1.6;
}

.panel p,
.two-col p{
  max-width:none;
  width:100%;
}

/* =========================
   ARTICLE SIDE CARDS LIMIT
   ========================= */
.article-side-card{
  align-items:start !important;
}

.article-side-card > div{
  min-width:0;
}

.article-side-card-title{
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  line-clamp:2;
  overflow:hidden;
  line-height:1.35;
  max-height:calc(1.35em * 2);
  word-break:break-word;
}

.article-side-card-text{
  font-size:14px;
  color:#6f655d;
  line-height:1.55;
  min-width:0;
  display:-webkit-box;
  -webkit-line-clamp:8;
  -webkit-box-orient:vertical;
  overflow:hidden;
  max-height:calc(1.55em * 8);
  word-break:break-word;

  /* propriété standard ajoutée pour calmer le linter */
  line-clamp:8;
}

@media (max-width: 980px){
  .hero-grid,
  .two-col,
  .gallery-grid,
  .feature-grid,
  .reviews,
  .info-strip{
    grid-template-columns:1fr;
  }

  .gallery-grid > img,
  .gallery-side img{
    min-height:auto;
  }

  .mini-points{
    grid-template-columns:1fr;
  }

  .hero{
    padding-top:24px;
    padding-bottom:8px;
  }

  .topbar{
    padding:10px 0;
  }

  .topbar-inner{
    min-height:auto;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:flex-start;
    gap:10px;
  }

  .brand{
    width:100%;
  }

  .topnav{
    display:flex;
    width:100%;
    justify-content:flex-start;
    align-items:center;
    gap:10px 18px;
    flex-wrap:wrap;
    font-size:14px;
  }

  .footer-columns{
    grid-template-columns:repeat(2, minmax(180px, 1fr));
    gap:28px;
  }
}

@media (max-width: 768px){
  .hub-article-card{
    grid-template-columns:1fr;
  }

  .hub-article-card-body{
    padding:16px;
  }

  .hub-article-card-media{
    min-height:190px;
  }
}

@media (max-width: 640px){
  .container{
    width:min(var(--max), calc(100% - 22px));
  }

  .section{
    padding:34px 0;
  }

  .hero-card,
  .panel{
    padding:18px;
  }

  p{
    font-size:16px;
  }

  .btn{
    width:100%;
  }

  .hero-badge-row{
    flex-direction:column;
  }

  .topbar-inner{
    gap:8px;
  }

  .topnav{
    gap:8px 14px;
    font-size:13px;
  }

  .footer-shell{
    padding:34px 20px 24px;
  }

  .footer-columns{
    grid-template-columns:1fr;
  }

  .footer-brand-name{
    font-size:26px;
  }
}

.lightbox-trigger-card,
.lightbox-trigger-figure{
  font:inherit;
}

.lightbox-trigger-card:hover,
.lightbox-trigger-card:focus-visible{
  transform:translateY(-2px);
  box-shadow:0 10px 24px rgba(0,0,0,0.08) !important;
  border-color:#c9b8a5 !important;
}

.lightbox-trigger-card img,
.lightbox-trigger-figure img{
  transition:transform .2s ease;
}

.lightbox-trigger-card:hover img,
.lightbox-trigger-card:focus-visible img,
.lightbox-trigger-figure:hover img,
.lightbox-trigger-figure:focus-visible img{
  transform:scale(1.02);
}

.image-lightbox{
  position:fixed;
  inset:0;
  display:none;
  z-index:9999;
}

.image-lightbox.is-open{
  display:block;
}

.image-lightbox-backdrop{
  position:absolute;
  inset:0;
  background:rgba(21,16,12,.78);
}

.image-lightbox-dialog{
  position:relative;
  z-index:1;
  width:min(96vw, 1200px);
  max-height:92vh;
  margin:4vh auto;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:22px;
  box-shadow:0 24px 60px rgba(0,0,0,.28);
  padding:20px;
  overflow:auto;
}

.image-lightbox-media{
  width:100%;
  max-height:74vh;
  object-fit:contain;
  background:#e9e2d8;
}

.image-lightbox-close{
  position:absolute;
  top:12px;
  right:12px;
  width:44px;
  height:44px;
  border:none;
  border-radius:999px;
  background:rgba(0,0,0,.68);
  color:#fff;
  font-size:28px;
  line-height:1;
  cursor:pointer;
  z-index:2;
}

.image-lightbox-caption{
  margin-top:14px;
  color:var(--text-soft);
}

.image-lightbox-caption p:last-child{
  margin-bottom:0;
}

@media (max-width: 640px){
  .image-lightbox-dialog{
    width:min(100vw - 16px, 1200px);
    margin:8px auto;
    max-height:calc(100vh - 16px);
    padding:14px;
  }

  .image-lightbox-media{
    max-height:68vh;
  }
}
/* =========================
   HUB NAV DROPDOWN
   shop buttons visible / editorial grouped
   ========================= */

.hub-nav{
  border-bottom:1px solid var(--line);
  background:rgba(242,238,232,.92);
  padding:14px 0;
  position:relative;
  z-index:50;
}

.hub-nav-desktop{
  display:block;
}

.hub-nav-mobile{
  display:none;
}

.hub-nav-inner{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}

.hub-nav-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:34px;
  padding:7px 18px;
  border:0;
  border-radius:9px;
  color:#fff;
  font-family:inherit;
  font-size:17px;
  font-weight:700;
  line-height:1.1;
  text-decoration:none;
  box-shadow:0 4px 12px rgba(0,0,0,.08);
  transition:transform .16s ease, background .16s ease, opacity .16s ease, box-shadow .16s ease;
  white-space:nowrap;
  cursor:pointer;
}

.hub-nav-pill-shop{
  background:#f1641e;
}

.hub-nav-pill-shop:hover,
.hub-nav-pill-shop:focus-visible{
  transform:translateY(-1px);
  background:#d95618;
  opacity:.98;
  outline:none;
}

.hub-nav-pill-stories{
  background:#352b24;
}

.hub-nav-pill-stories:hover,
.hub-nav-pill-stories:focus-visible,
.hub-nav-dropdown:hover .hub-nav-pill-stories,
.hub-nav-dropdown:focus-within .hub-nav-pill-stories{
  transform:translateY(-1px);
  background:#4a3a30;
  opacity:.98;
  outline:none;
}

.hub-nav-caret{
  font-size:13px;
  line-height:1;
  transform:translateY(1px);
}

.hub-nav-dropdown{
  position:relative;
  display:inline-flex;
  align-items:center;
}

.hub-nav-dropdown-menu{
  position:absolute;
  left:50%;
  top:calc(100% + 10px);
  min-width:220px;
  padding:8px;
  border:1px solid rgba(70,61,53,.14);
  border-radius:14px;
  background:#fffaf4;
  box-shadow:0 18px 36px rgba(35,28,22,.18);
  opacity:0;
  visibility:hidden;
  transform:translate(-50%, -4px);
  pointer-events:none;
  transition:opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.hub-nav-dropdown-menu::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-12px;
  height:12px;
}

.hub-nav-dropdown:hover .hub-nav-dropdown-menu,
.hub-nav-dropdown:focus-within .hub-nav-dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translate(-50%, 0);
  pointer-events:auto;
}

.hub-nav-dropdown-link{
  display:block;
  padding:10px 12px;
  border-radius:10px;
  color:#352b24;
  font-size:15px;
  font-weight:700;
  line-height:1.25;
  text-decoration:none;
  white-space:nowrap;
  transition:background .16s ease, color .16s ease, transform .16s ease;
}

.hub-nav-dropdown-link:hover,
.hub-nav-dropdown-link:focus-visible{
  background:#efe5db;
  color:#241c17;
  transform:translateX(2px);
  outline:none;
}

@media (max-width: 980px){
  .hub-nav{
    padding:12px 0;
  }

  .hub-nav-inner{
    gap:8px;
  }

  .hub-nav-pill{
    font-size:15px;
    min-height:32px;
    padding:7px 13px;
  }

  .hub-nav-dropdown-menu{
    min-width:200px;
  }
}

/* Mobile : menu repliable */
@media (max-width: 640px){
  .hub-nav{
    padding:8px 0;
  }

  .hub-nav-desktop{
    display:none;
  }

  .hub-nav-mobile{
    display:block;
  }

  .hub-nav-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-height:34px;
    padding:7px 13px;
    border-radius:999px;
    background:#352b24;
    color:#fff;
    font-size:14px;
    font-weight:700;
    line-height:1;
    cursor:pointer;
    list-style:none;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
    user-select:none;
  }

  .hub-nav-toggle::-webkit-details-marker{
    display:none;
  }

  .hub-nav-toggle::marker{
    content:"";
  }

  .hub-nav-toggle-icon,
  .hub-nav-toggle-text{
    line-height:1;
  }

  .hub-nav-mobile-panel{
    display:none;
    margin-top:10px;
  }

  .hub-nav-mobile[open] .hub-nav-mobile-panel{
    display:flex;
    flex-direction:column;
    align-items:stretch;
    justify-content:flex-start;
    gap:8px;
  }

  .hub-nav-mobile-link{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    min-height:38px;
    padding:9px 14px;
    border-radius:10px;
    color:#fff;
    font-size:15px;
    font-weight:700;
    line-height:1.15;
    text-align:center;
    text-decoration:none;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
  }

  .hub-nav-mobile-link-shop{
    background:#f1641e;
  }

  .hub-nav-mobile-link-editorial{
    background:#352b24;
  }

  .hub-nav-mobile-separator{
    height:1px;
    margin:2px 0;
    background:rgba(70,61,53,.16);
  }
}

/* =========================
   HUB ARCHIVE / PAGINATION ADDITIONS
   ========================= */
.hub-article-card-badge{
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#8a7f73;
  margin-bottom:8px;
  font-weight:700;
}

.hub-article-card-excerpt{
  margin:0;
  color:#6f655d;
  line-height:1.6;
  overflow-wrap:anywhere;
  word-break:break-word;
}

.hub-pagination-list{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.hub-pagination-nav{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  margin-top:24px;
}

.hub-pagination-nav button{
  min-width:38px;
  min-height:38px;
  border:1px solid #cdbba8;
  border-radius:999px;
  background:#fff;
  color:#3d352d;
  font-weight:700;
  cursor:pointer;
}

.hub-pagination-nav button.is-active{
  background:#3d352d;
  color:#fff;
}

/* =========================
   PRODUCT TEMPLATE - Etsy inspired
   ========================= */
.product-page{
  background:var(--bg);
}

.product-shell{
  padding:28px 0 56px;
}

.product-layout{
  display:grid;
  grid-template-columns:minmax(0, 1.45fr) minmax(340px, .75fr);
  gap:44px;
  align-items:start;
  margin-top:24px;
}

.product-left{
  min-width:0;
}

.product-right{
  min-width:0;
  position:sticky;
  top:22px;
}

.product-gallery{
  display:grid;
  grid-template-columns:86px minmax(0, 1fr);
  gap:18px;
  align-items:start;
}

.product-gallery-main{
  order:2;
  position:relative;
  background:#efe7dc;
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  min-height:620px;
  box-shadow:var(--shadow);
}

.product-gallery-slide{
  display:none;
  width:100%;
  height:100%;
}

.product-gallery-slide.is-active{
  display:block;
}

.product-gallery-slide img{
  width:100%;
  height:100%;
  min-height:620px;
  object-fit:cover;
  border-radius:0;
}

.product-gallery-thumbs{
  order:1;
  display:flex;
  flex-direction:column;
  gap:10px;
  max-height:620px;
  overflow:auto;
  padding-right:4px;
}

.product-gallery-thumb{
  width:76px;
  height:76px;
  padding:0;
  border:2px solid transparent;
  border-radius:12px;
  overflow:hidden;
  background:#fff;
  cursor:pointer;
  box-shadow:0 4px 12px rgba(0,0,0,.06);
}

.product-gallery-thumb.is-active{
  border-color:#332b24;
}

.product-gallery-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:0;
}

.product-gallery-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:54px;
  height:54px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.94);
  color:#332b24;
  font-size:42px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 10px 26px rgba(0,0,0,.14);
  z-index:3;
}

.product-gallery-arrow:hover{
  transform:translateY(-50%) scale(1.03);
}

.product-gallery-arrow-prev{
  left:18px;
}

.product-gallery-arrow-next{
  right:18px;
}

.product-buy-panel{
  background:rgba(248,245,241,.96);
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
}

.product-price-row{
  display:flex;
  align-items:baseline;
  gap:10px;
  margin-bottom:12px;
}

.product-now-label{
  color:var(--text-soft);
  font-weight:700;
  font-size:14px;
}

.product-price{
  font-size:30px;
  line-height:1;
  color:#332b24;
  font-weight:800;
}

.product-buy-panel h1{
  font-size:clamp(24px, 2.4vw, 34px);
  letter-spacing:-.5px;
  margin-bottom:10px;
}

.product-etsy-rating{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--text-soft);
  font-weight:700;
  margin-bottom:22px;
}

.product-stars{
  color:#f5a400;
  letter-spacing:1px;
  font-weight:800;
}

.product-buy-buttons{
  display:grid;
  gap:12px;
  margin:18px 0 24px;
}

.product-buy-btn{
  min-height:52px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-weight:800;
  transition:transform .16s ease, filter .16s ease, background .16s ease;
}

.product-buy-btn:hover{
  transform:translateY(-1px);
  filter:brightness(.98);
}

.product-buy-stripe{
  background:#332b24;
  color:#fff;
}

.product-buy-paypal{
  background:#0070ba;
  color:#fff;
}

.product-buy-etsy{
  background:#f1641e;
  color:#fff;
}

.product-item-details{
  border-top:1px solid var(--line);
  padding-top:20px;
  margin-top:4px;
}

.product-item-details h2,
.product-description-box h2{
  font-size:18px;
  margin-bottom:14px;
}

.product-item-details ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:12px;
}

.product-item-details li{
  display:flex;
  align-items:center;
  gap:10px;
  color:#3c322b;
  font-weight:700;
}

.product-detail-icon{
  width:28px;
  height:28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:#efe5db;
  color:#3c322b;
  flex:0 0 auto;
}

.product-description-box{
  border-top:1px solid var(--line);
  margin-top:22px;
  padding-top:20px;
}

.product-description-text{
  position:relative;
  color:var(--text);
  overflow:hidden;
}

.product-description-text.is-collapsed{
  max-height:185px;
}

.product-description-text.is-collapsed::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:72px;
  background:linear-gradient(to bottom, rgba(248,245,241,0), rgba(248,245,241,1));
  pointer-events:none;
}

.product-description-text p{
  font-size:16px;
  line-height:1.75;
}

.product-learn-more{
  margin-top:8px;
  padding:0;
  border:0;
  background:transparent;
  color:#332b24;
  font-weight:800;
  text-decoration:underline;
  text-underline-offset:3px;
  cursor:pointer;
}

.product-accordion{
  border-top:1px solid var(--line);
  margin-top:22px;
  padding-top:18px;
}

.product-accordion summary{
  cursor:pointer;
  list-style:none;
  font-weight:800;
  color:#332b24;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.product-accordion summary::-webkit-details-marker{
  display:none;
}

.product-accordion summary::after{
  content:"⌄";
  font-size:18px;
}

.product-accordion[open] summary::after{
  content:"⌃";
}

.product-accordion h3{
  font-size:17px;
  margin:16px 0 8px;
}

.product-accordion p{
  font-size:15px;
  line-height:1.65;
  color:var(--text-soft);
}

.product-proof-block,
.product-reviews-block,
.product-shop-card,
.product-all-reviews,
.product-more-block{
  margin-top:34px;
}

.product-proof-heading{
  font-size:22px;
  font-weight:800;
  color:#332b24;
  margin-bottom:16px;
}

.product-score-row{
  display:flex;
  align-items:flex-start;
  gap:22px;
  flex-wrap:wrap;
}

.product-score{
  display:flex;
  align-items:center;
  gap:10px;
  color:inherit;
}

.product-score-circle{
  width:58px;
  height:58px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:3px solid #6b8d61;
  color:#332b24;
  background:#fffaf4;
  font-weight:800;
  box-shadow:0 6px 16px rgba(0,0,0,.06);
}

.product-score-label{
  max-width:92px;
  font-size:13px;
  color:var(--text-soft);
  line-height:1.25;
  font-weight:700;
}

.product-reviews-block{
  display:grid;
  gap:20px;
}

.product-long-review{
  padding:0 0 20px;
  border-bottom:1px solid var(--line);
}

.product-long-review p{
  font-size:16px;
  line-height:1.75;
  margin-bottom:12px;
}

.product-review-response-title{
  margin:14px 0 6px;
  font-weight:800;
  color:#3c322b;
  font-size:14px;
}

.product-review-response{
  color:var(--text-soft) !important;
  padding-left:14px;
  border-left:3px solid #d7cec3;
}

.product-review-link,
.product-shop-small-link{
  display:inline-flex;
  width:max-content;
  color:#332b24;
  font-weight:800;
  text-decoration:underline;
  text-underline-offset:3px;
}

.product-shop-card{
  background:#fffaf4;
  border:1px solid var(--line);
  border-radius:22px;
  padding:22px;
  box-shadow:var(--shadow);
}

.product-shop-header{
  display:grid;
  grid-template-columns:auto minmax(0, 1fr) auto;
  gap:14px;
  align-items:center;
  padding-bottom:20px;
  border-bottom:1px solid var(--line);
}

.product-shop-logo{
  width:64px;
  height:64px;
  border-radius:999px;
  background:#d9c5e9;
  color:#332b24;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  font-weight:800;
}

.product-shop-header h2{
  font-size:24px;
  margin:0 0 4px;
}

.product-shop-meta{
  color:var(--text-soft);
  font-weight:700;
}

.product-message-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 18px;
  border:1px solid #332b24;
  border-radius:999px;
  font-weight:800;
  background:#fff;
}

.product-shop-trust-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  padding:20px 0;
  border-bottom:1px solid var(--line);
}

.product-shop-trust-item{
  display:grid;
  gap:4px;
  color:var(--text-soft);
  font-size:14px;
}

.product-shop-trust-item strong{
  color:#332b24;
  font-size:16px;
}

.product-shop-icon{
  font-size:22px;
  color:#332b24;
}

.product-shop-small-link{
  margin-top:16px;
}

.product-section-title-row h2{
  font-size:22px;
  margin-bottom:16px;
}

.product-review-scroller{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:minmax(260px, 320px);
  gap:16px;
  overflow-x:auto;
  padding-bottom:10px;
  scroll-snap-type:x proximity;
}

.product-mini-review-card{
  scroll-snap-align:start;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:18px;
  min-height:190px;
  box-shadow:0 4px 14px rgba(0,0,0,.04);
}

.product-mini-review-card p{
  font-size:15px;
  line-height:1.6;
}

.product-mini-review-name{
  margin-top:10px;
  color:var(--text-soft);
  font-weight:800;
}

.product-more-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:16px;
}

.product-more-card{
  position:relative;
  display:block;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 4px 14px rgba(0,0,0,.04);
}

.product-more-card img{
  width:100%;
  aspect-ratio:3/4;
  object-fit:cover;
  border-radius:0;
}

.product-more-card strong,
.product-more-card span:not(.product-download-badge){
  display:block;
  padding:0 12px;
}

.product-more-card strong{
  margin-top:12px;
  color:#332b24;
  line-height:1.35;
}

.product-more-card span:not(.product-download-badge){
  margin:6px 0 14px;
  color:var(--text-soft);
  font-size:14px;
}

.product-download-badge{
  position:absolute;
  left:10px;
  top:10px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(0,0,0,.08);
  border-radius:999px;
  padding:5px 9px;
  font-size:12px;
  font-weight:800;
  color:#332b24;
}

@media (max-width: 1100px){
  .product-layout{
    grid-template-columns:1fr;
  }

  .product-right{
    position:static;
  }
}

@media (max-width: 760px){
  .product-gallery{
    grid-template-columns:1fr;
  }

  .product-gallery-main{
    order:1;
    min-height:auto;
  }

  .product-gallery-slide img{
    min-height:auto;
    aspect-ratio:1/1;
  }

  .product-gallery-thumbs{
    order:2;
    flex-direction:row;
    max-height:none;
    overflow-x:auto;
    padding:4px 0 8px;
  }

  .product-score-row{
    gap:14px;
  }

  .product-shop-header{
    grid-template-columns:auto minmax(0, 1fr);
  }

  .product-message-btn{
    grid-column:1 / -1;
  }

  .product-shop-trust-row,
  .product-more-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width: 520px){
  .product-buy-panel,
  .product-shop-card{
    padding:18px;
  }

  .product-more-grid{
    grid-template-columns:1fr;
  }

  .product-gallery-arrow{
    width:44px;
    height:44px;
    font-size:34px;
  }
}

/* =========================
   PRODUCT TEMPLATE V5 refinements
   zoom, review avatars, compact proof row, single social block
   ========================= */
.product-gallery-slide img[data-product-zoom-trigger]{
  cursor:zoom-in;
  touch-action:manipulation;
}

.product-score-row{
  flex-wrap:nowrap;
  overflow-x:auto;
  padding-bottom:6px;
  scrollbar-width:none;
}

.product-score-row::-webkit-scrollbar{
  display:none;
}

.product-score{
  flex:0 0 auto;
}

.product-score-label{
  max-width:none;
  white-space:nowrap;
}

.product-long-review-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom:8px;
}

.product-review-person{
  display:inline-flex;
  align-items:center;
  justify-content:flex-end;
  gap:8px;
  color:var(--text-soft);
  font-size:14px;
  white-space:nowrap;
}

.product-review-avatar,
.product-mini-review-avatar{
  width:26px;
  height:26px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  background:#e8dccf;
  border:1px solid rgba(70,61,53,.14);
  font-size:15px;
  line-height:1;
}

.product-review-name,
.product-mini-review-name{
  color:#332b24;
  font-weight:800;
}

.product-review-date,
.product-mini-review-date{
  color:var(--text-soft);
}

.product-social-panel{
  margin-top:34px;
  background:#fffaf4;
  border:1px solid var(--line);
  border-radius:24px;
  padding:22px;
  box-shadow:var(--shadow);
  overflow:hidden;
}

.product-social-panel .product-shop-card{
  margin-top:0;
  padding:0 0 22px;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}

.product-social-panel .product-all-reviews,
.product-social-panel .product-more-block{
  margin-top:26px;
}

.product-section-title-row-with-action{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:16px;
}

.product-section-title-row-with-action h2{
  margin-bottom:0;
}

.product-review-carousel-controls{
  display:inline-flex;
  align-items:center;
  gap:8px;
  flex:0 0 auto;
}

.product-review-carousel-btn{
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid #332b24;
  background:#fff;
  color:#332b24;
  font-size:30px;
  line-height:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 8px 18px rgba(0,0,0,.08);
  transition:transform .16s ease, background .16s ease;
}

.product-review-carousel-btn:hover,
.product-review-carousel-btn:focus-visible{
  transform:translateY(-1px);
  background:#f3ede6;
  outline:none;
}

.product-review-scroller{
  scrollbar-width:none;
  padding:0 4px 4px 0;
}

.product-review-scroller::-webkit-scrollbar{
  display:none;
}

.product-mini-review-person{
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:14px;
  color:var(--text-soft);
  font-size:14px;
  white-space:nowrap;
}

.product-mini-review-name{
  margin-top:0;
}

.product-zoom-modal{
  position:fixed;
  inset:0;
  z-index:10050;
  display:none;
}

.product-zoom-modal.is-open{
  display:block;
}

.product-zoom-backdrop{
  position:absolute;
  inset:0;
  background:rgba(25,18,12,.82);
}

.product-zoom-dialog{
  position:relative;
  z-index:1;
  width:min(94vw, 1180px);
  height:min(90vh, 860px);
  margin:5vh auto;
  background:#111;
  border:1px solid rgba(255,255,255,.16);
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 28px 80px rgba(0,0,0,.42);
}

.product-zoom-stage{
  width:100%;
  height:calc(100% - 42px);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  cursor:grab;
  touch-action:none;
  user-select:none;
  background:#1b1714;
}

.product-zoom-stage.is-panning{
  cursor:grabbing;
}

.product-zoom-image{
  max-width:78%;
  max-height:78%;
  width:auto;
  height:auto;
  border-radius:12px;
  object-fit:contain;
  transform:scale(1.85);
  transform-origin:center center;
  will-change:transform;
  user-select:none;
  pointer-events:none;
}

.product-zoom-close{
  position:absolute;
  top:14px;
  right:14px;
  width:46px;
  height:46px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.92);
  color:#332b24;
  font-size:30px;
  line-height:1;
  cursor:pointer;
  z-index:2;
  box-shadow:0 8px 18px rgba(0,0,0,.22);
}

.product-zoom-hint{
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 18px;
  color:rgba(255,255,255,.78);
  font-size:14px;
  background:#111;
  text-align:center;
}

@media (max-width: 760px){
  .product-score-row{
    gap:12px;
  }

  .product-score{
    gap:8px;
  }

  .product-score-circle{
    width:54px;
    height:54px;
    font-size:16px;
  }

  .product-score-label{
    font-size:12px;
  }

  .product-long-review-head{
    align-items:flex-start;
    flex-direction:column;
    gap:6px;
  }

  .product-review-person{
    justify-content:flex-start;
  }

  .product-social-panel{
    padding:18px;
  }

  .product-review-scroller{
    grid-auto-columns:minmax(240px, 82vw);
  }

  .product-zoom-dialog{
    width:calc(100vw - 18px);
    height:calc(100vh - 28px);
    margin:14px auto;
    border-radius:18px;
  }

  .product-zoom-image{
    max-width:86%;
    max-height:76%;
  }
}

@media (max-width: 420px){
  .product-score-circle{
    width:50px;
    height:50px;
    border-width:2px;
  }

  .product-score-label{
    font-size:11px;
  }

  .product-review-carousel-btn{
    width:38px;
    height:38px;
  }
}


/* =========================
   PRODUCT TEMPLATE V6 proof-summary layout
   Etsy-like desktop row + clean mobile grid
   ========================= */
.product-proof-block{
  overflow:visible;
}

.product-score-row{
  display:grid;
  grid-template-columns:minmax(180px, 1.35fr) repeat(4, minmax(125px, 1fr));
  gap:18px 20px;
  align-items:center;
  overflow:visible;
  padding-bottom:0;
}

.product-score{
  min-width:0;
}

.product-score-average{
  display:grid;
  grid-template-columns:auto auto minmax(0, 1fr);
  align-items:center;
  gap:8px;
}

.product-score-average-value{
  font-size:28px;
  line-height:1;
  font-weight:500;
  color:#3a3028;
}

.product-score-average-star{
  font-size:30px;
  line-height:1;
  color:#d79b18;
  transform:translateY(-1px);
}

.product-score-average-copy{
  display:flex;
  flex-direction:column;
  min-width:0;
  line-height:1.15;
}

.product-score-average-label{
  font-size:14px;
  font-weight:700;
  color:var(--text-soft);
}

.product-score-average-sub{
  margin-top:2px;
  font-size:13px;
  color:var(--text-soft);
}

.product-score-compact{
  display:grid;
  grid-template-columns:58px minmax(0, 1fr);
  align-items:center;
  gap:10px;
}

.product-score-circle{
  width:50px;
  height:50px;
  border-width:2.5px;
  font-size:16px;
}

.product-score-label{
  max-width:none;
  white-space:normal;
  font-size:13px;
  line-height:1.2;
  word-break:normal;
  overflow-wrap:anywhere;
}

@media (max-width: 980px){
  .product-score-row{
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:16px 18px;
  }

  .product-score-average{
    grid-column:span 3;
    justify-content:flex-start;
  }
}

@media (max-width: 640px){
  .product-score-row{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:14px 16px;
  }

  .product-score-average{
    grid-column:span 2;
  }

  .product-score-average-value{
    font-size:26px;
  }

  .product-score-average-star{
    font-size:28px;
  }

  .product-score-compact{
    grid-template-columns:50px minmax(0, 1fr);
    gap:10px;
  }

  .product-score-label{
    font-size:12.5px;
  }
}

/* =========================
   FOOTER SOCIAL LINKS
   ========================= */
.footer-social-wrap{
  margin-top:18px;
}

.footer-social-title{
  margin:0 0 10px;
  font-size:12px;
  font-weight:700;
  line-height:1.2;
  letter-spacing:.08em;
  text-transform:uppercase;
  opacity:.72;
}

.footer-social-links{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.footer-social-link{
  width:36px;
  height:36px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border:1px solid rgba(111, 101, 93, .28);
  background:rgba(255, 255, 255, .18);
  transition:transform .16s ease, opacity .16s ease, border-color .16s ease, background .16s ease;
}

.footer-social-link:hover{
  transform:translateY(-2px);
  opacity:.9;
  border-color:rgba(111, 101, 93, .52);
  background:rgba(255, 255, 255, .28);
}

.footer-social-link img{
  width:28px;
  height:28px;
  display:block;
  object-fit:contain;
  border-radius:0;
}

.footer-social-link-disabled{
  opacity:.32;
  filter:grayscale(1);
  cursor:default;
}

.footer-social-link-disabled:hover{
  transform:none;
  opacity:.32;
  border-color:rgba(111, 101, 93, .28);
  background:rgba(255, 255, 255, .18);
}


/* =========================
   Shared page share buttons
   ========================= */
.site-share-panel{
  margin:18px 0 22px;
  padding:16px;
  border:1px solid rgba(80,60,45,.14);
  border-radius:18px;
  background:rgba(255,255,255,.82);
  box-shadow:0 10px 24px rgba(50,40,30,.05);
}

.site-share-label{
  display:block;
  margin-bottom:10px;
  color:#5b493a;
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.site-share-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.site-share-button{
  min-height:40px;
  padding:0 14px;
  border:1px solid transparent;
  border-radius:999px;
  color:#fff;
  font-size:13px;
  font-weight:900;
  cursor:pointer;
  transition:transform .18s ease, filter .18s ease, border-color .18s ease;
}

.site-share-button:hover,
.site-share-button:focus-visible{
  transform:translateY(-1px);
  filter:brightness(.96);
}

.site-share-button[data-site-share-network="facebook"]{ background:#4c6f9f; border-color:#4c6f9f; }
.site-share-button[data-site-share-network="x"]{ background:#222; border-color:#222; }
.site-share-button[data-site-share-network="reddit"]{ background:#b96a42; border-color:#b96a42; }
.site-share-button[data-site-share-network="whatsapp"]{ background:#4f9365; border-color:#4f9365; color:#fff; }
.site-share-button[data-site-share-network="copy"]{ background:#fff; border-color:rgba(80,60,45,.22); color:#392e26; }
.site-share-button.is-copied{ background:#e5f2e6; border-color:rgba(47,138,75,.34); color:#246e3b; }

@media (max-width:640px){
  .site-share-button{ width:100%; justify-content:center; }
}

@media (prefers-reduced-motion: reduce){
  .site-share-button{ transition:none; }
}


/* =========================
   LINK ASSET APP NAV BUTTONS
   ========================= */
.hub-nav-pill-tool,
.hub-nav-pill-tools{
  background:#157a78;
  color:#fff;
}

.hub-nav-pill-tool:hover,
.hub-nav-pill-tool:focus-visible,
.hub-nav-pill-tools:hover,
.hub-nav-pill-tools:focus-visible,
.hub-nav-tools-dropdown:hover .hub-nav-pill-tools,
.hub-nav-tools-dropdown:focus-within .hub-nav-pill-tools{
  transform:translateY(-1px);
  background:#106260;
  color:#fff;
  opacity:.98;
  outline:none;
}

.hub-nav-mobile-link-tool{
  background:#157a78;
  color:#fff;
}
