/** Shopify CDN: Minification failed

Line 1300:1 Expected "}" to go with "{"

**/
.kesher-section { position: relative; }
.kesher-container { max-width: 1200px; margin: 0 auto; padding: 48px 24px; }

/* ---------- Kesher Reveal (Hero + Manifesto) ---------- */
:root{
  --kesher-bg:#0a0a0a;
  --kesher-offwhite:#f3f0e8;
  --kesher-gold-muted:#b9a46a;
  --kesher-gold:#c8b26a;
  --kesher-line:rgba(243,240,232,.18);
}

.kesher-hero{
  position:relative;
  height:100vh;
  width:100%;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--kesher-bg);
}

.kesher-hero__bg{ position:absolute; inset:0; }
.kesher-hero__bg-img{
  width:100%; height:100%;
  object-fit:cover;
  opacity:.60;
  display:block;
}
.kesher-hero__bg-fallback{ position:absolute; inset:0; background:#111; }
.kesher-hero__overlay{
  position:absolute; inset:0;
  background: rgba(10,10,10, var(--kesher-hero-overlay, .40));
}

.kesher-hero__content{
  position:relative;
  z-index:10;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:48px;
  padding: 0 24px;
}

.kesher-hero__brand{
  font-size: 14px;
  letter-spacing: .5em;
  font-weight: 300;
  text-transform: uppercase;
  color: rgba(243,240,232,.70);
  margin:0;
}

.kesher-hero__headline {
  margin: 0;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--kesher-offwhite);
  letter-spacing: -0.035em;
  line-height: 0.95;
  font-size: clamp(5.6rem, 8vw, 10rem);
  white-space: nowrap;
  max-width: none;
}

.kesher-hero__cta{
  margin-top: 32px;
  font-size: 12px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: rgba(243,240,232,.60);
  border: 1px solid rgba(243,240,232,.20);
  padding: 16px 40px;
  text-decoration:none;
  transition: background-color 700ms ease, border-color 700ms ease, color 700ms ease;
}
.kesher-hero__cta:hover{
  background: rgba(243,240,232,.05);
  border-color: rgba(243,240,232,.40);
  color: rgba(243,240,232,.85);
}

/* Manifesto */
.kesher-manifesto{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 128px 24px;
  background: var(--kesher-bg);
  color: var(--kesher-offwhite);
}
.kesher-manifesto__wrap{ max-width: 900px; margin: 0 auto; text-align:center; }

.kesher-manifesto__label{
  display:block;
  margin-bottom: 64px;
  font-size: 12px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--kesher-gold-muted);
}

.kesher-manifesto__lines{ display:flex; flex-direction:column; gap:24px; margin-top: 64px; }
.kesher-manifesto__line{
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 300;
  line-height: 1.12;
  margin:0;
  color: var(--kesher-offwhite);
  font-size: clamp(30px, 4.2vw, 64px);
}

.kesher-manifesto__rule{
  width: 64px;
  height: 1px;
  background: var(--kesher-gold);
  margin: 80px auto 0;
  transform-origin: left center;
}

/* Reveal system (IntersectionObserver) */
[data-kesher-reveal]{
  opacity: 0;
  transform: translateY(0);
  transition: opacity 1.2s ease, transform 1.2s ease;
  transition-delay: var(--kesher-delay, 0s);
  will-change: opacity, transform;
}

[data-kesher-reveal="fade"]{ transform: translateY(0); }
[data-kesher-reveal="slide-down"]{ transform: translateY(-20px); }
[data-kesher-reveal="rise"]{ transform: translateY(30px); }

[data-kesher-reveal="rule"]{
  opacity: 1;              /* regra aparece via scale */
  transform: scaleX(0);
  transition: transform 1.5s ease;
  transition-delay: var(--kesher-delay, 0s);
}

.kesher-is-visible[data-kesher-reveal],
.kesher-is-visible [data-kesher-reveal]{
  opacity: 1;
  transform: translateY(0);
}

.kesher-is-visible[data-kesher-reveal="rule"]{
  transform: scaleX(1);
}
.kesher-is-visible [data-kesher-reveal="rule"]{
  transform: scaleX(1);
}

/* ---------- Lookbook ---------- */
.kesher-lookbook{
  padding: 128px 0;
  background: var(--kesher-bg);
}
.kesher-lookbook__container{ max-width: 1400px; }
.kesher-lookbook__head{
  text-align:center;
  margin-bottom: 80px;
}
.kesher-kicker{
  display:block;
  font-size: 12px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--kesher-gold-muted);
  margin-bottom: 24px;
}
.kesher-title{
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 300;
  color: var(--kesher-offwhite);
  letter-spacing: .02em;
  margin:0;
  font-size: clamp(24px, 2.4vw, 40px);
}

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

@media (min-width: 768px){
  .kesher-lookbook__grid{
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    grid-auto-rows: 380px;
  }
}

/* Layout options (mimic Tailwind col/row spans) */
.kesher-lb--tall{ grid-column: span 1; grid-row: span 2; }
.kesher-lb--normal{ grid-column: span 1; grid-row: span 1; }
.kesher-lb--wide{ grid-column: span 2; grid-row: span 1; }

@media (max-width: 767px){
  .kesher-lb--tall,
  .kesher-lb--wide{ grid-column: span 1; grid-row: span 1; }
}

.kesher-lookbook__item{
  overflow:hidden;
}
.kesher-lookbook__img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter: grayscale(1);
  transform: scale(1);
  transition: filter 1000ms ease, transform 1000ms ease;
}
.kesher-lookbook__item:hover .kesher-lookbook__img{
  filter: grayscale(0);
  transform: scale(1.03);
}

/* ---------- Movement ---------- */
.kesher-movement{
  padding: 128px 0;
  background: var(--kesher-bg);
}
.kesher-movement__head{
  text-align:center;
  margin-bottom: 64px;
}

.kesher-movement__frame{
  position:relative;
  width:100%;
  aspect-ratio: 16 / 9;
  overflow:hidden;
  border: 1px solid rgba(243,240,232,.10);
}

.kesher-movement__video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter: grayscale(.50);
}

.kesher-movement__overlay{
  position:absolute;
  inset:0;
  background: rgba(10,10,10,.10);
  pointer-events:none;
}

.kesher-movement__placeholder{
  padding: 48px;
  color: rgba(243,240,232,.70);
  border: 1px dashed rgba(243,240,232,.20);
}

/* ---------- Brand Story + Philosophy ---------- */
.kesher-brand-story{
  padding: 224px 0;
  background: rgba(255,255,255,.03); /* aproxima do bg-card */
}
.kesher-brand-story__wrap{ max-width: 900px; text-align:center; }
.kesher-brand-story__title{
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 300;
  color: var(--kesher-offwhite);
  margin:0;
  line-height:1.1;
  font-size: clamp(36px, 4.8vw, 72px);
}
.kesher-hebrew{
  color: var(--kesher-gold);
  margin: 0 12px;
  font-size: .72em;
  font-weight: 300;
}
.kesher-body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: rgba(243,240,232,.72);
  line-height: 1.85;
  margin: 0;
}
.kesher-brand-story__lead{
  margin-top: 56px;
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 300;
  color: rgba(243,240,232,.72);
}
.kesher-brand-story__copy{ margin-top: 28px; display:flex; flex-direction:column; gap: 28px; }
.kesher-rule{
  width: 64px;
  height: 1px;
  background: var(--kesher-gold);
  margin: 64px auto 0;
  transform-origin: left center;
}
.kesher-rule--lg{ width: 80px; margin-top: 80px; }

/* Philosophy */
.kesher-philosophy{
  padding: 224px 0;
  background: var(--kesher-bg);
}
.kesher-philosophy__wrap{
  max-width: 720px;
  text-align:center;
}
.kesher-philosophy__title{
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 300;
  color: var(--kesher-offwhite);
  margin: 24px 0 0;
  line-height: 1.5;
  font-size: clamp(26px, 3vw, 40px);
}
.kesher-philosophy .kesher-body{ margin-top: 28px; font-size: 16px; }

/* ---------- Quality Icons ---------- */
.kesher-qualities{
  padding: 176px 0;
  background: var(--kesher-bg);
  border-top: 1px solid rgba(243,240,232,.08);
}
.kesher-qualities__head{ text-align:center; margin-bottom: 80px; }
.kesher-qualities__grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 900px){
  .kesher-qualities__grid{
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 32px;
  }
}
.kesher-qualities__item{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap: 14px;
}
.kesher-qualities__icon{
  width: 24px;
  height: 24px;
  color: var(--kesher-gold-muted);
}
.kesher-qualities__icon svg{ width:100%; height:100%; display:block; }
.kesher-qualities__title{
  margin:0;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--kesher-offwhite);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
}
.kesher-qualities__desc{
  margin: 6px 0 0;
  font-size: 11px;
  color: rgba(243,240,232,.65);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* ---------- Shipping / Logistics ---------- */
.kesher-shipping{
  padding: 128px 0;
  background: var(--kesher-bg);
  border-top: 1px solid rgba(243,240,232,.08);
}
.kesher-shipping__wrap{ max-width: 980px; text-align:center; }
.kesher-shipping__title{ margin-top: 0; }
.kesher-shipping__grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 64px;
}
@media (min-width: 640px){
  .kesher-shipping__grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px){
  .kesher-shipping__grid{ grid-template-columns: repeat(4, 1fr); gap: 40px; }
}
.kesher-shipping__item{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 12px;
}
.kesher-shipping__icon{
  width: 20px;
  height: 20px;
  color: var(--kesher-gold-muted);
}
.kesher-shipping__icon svg{ width:100%; height:100%; display:block; }
.kesher-shipping__text{
  margin:0;
  font-size: 12px;
  letter-spacing: .02em;
  color: rgba(243,240,232,.65);
  line-height: 1.7;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* ---------- Collection Grid ---------- */
.kesher-collection{
  padding: 128px 0;
  background: var(--kesher-bg);
}
.kesher-collection__head{
  text-align:center;
  margin-bottom: 96px;
}

.kesher-collection__grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 4px; /* gap-1 aproximado */
}
@media (min-width: 768px){
  .kesher-collection__grid{ grid-template-columns: repeat(2, 1fr); }
}

.kesher-collection__card{
  position:relative;
  display:block;
  overflow:hidden;
  text-decoration:none;
  background: rgba(255,255,255,.03); /* bg-secondary */
}

.kesher-collection__media{
  aspect-ratio: 3 / 4;
  overflow:hidden;
  background:#111;
}
.kesher-collection__img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter: grayscale(1);
  transform: scale(1);
  transition: transform 1000ms ease, filter 1000ms ease;
}
.kesher-collection__card:hover .kesher-collection__img{
  transform: scale(1.05);
  filter: grayscale(0);
}

.kesher-collection__overlay{
  position:absolute;
  left:0; right:0; bottom:0;
  height: 48%;
  background: linear-gradient(to top, rgba(10,10,10,.90), rgba(10,10,10,0));
  pointer-events:none;
}

.kesher-collection__meta{
  position:absolute;
  left:0; right:0; bottom:0;
  padding: 32px;
}

.kesher-collection__subtitle{
  margin:0 0 8px;
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(243,240,232,.50);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.kesher-collection__name{
  margin:0;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 300;
  font-size: 24px;
  color: var(--kesher-offwhite);
}
.kesher-collection__price{
  margin: 8px 0 0;
  font-size: 14px;
  color: rgba(243,240,232,.40);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.kesher-collection__empty{
  padding: 32px;
  border: 1px dashed rgba(243,240,232,.20);
  color: rgba(243,240,232,.70);
  text-align:center;
}

/* =========================================================
   KESHER HOME — HERO + TRANSPARENT HEADER OVERRIDE
   ========================================================= */

:root{
  --kesher-offwhite: #f3efe8;
  --kesher-header-link: rgba(243, 239, 232, 0.78);
  --kesher-header-link-hover: rgba(243, 239, 232, 1);
  --kesher-header-border: rgba(243, 239, 232, 0.12);
  --kesher-header-blur: rgba(5, 5, 5, 0.22);
}

/* ---------- Header sobreposto ao hero ---------- */

.template-index .shopify-section-group-header-group,
.template-index .section-header {
  position: absolute !important;
  inset: 0 0 auto 0;
  width: 100%;
  z-index: 50;
  margin-bottom: 0 !important;
  background: transparent !important;
}

.template-index sticky-header.header-wrapper,
.template-index .header-wrapper {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border-bottom: none !important;
}

.template-index .header-wrapper--border-bottom::after,
.template-index .header-wrapper::after {
  display: none !important;
}

.template-index .header {
  padding-top: 2.4rem !important;
  padding-bottom: 2.4rem !important;
  padding-left: 5.4rem !important;
  padding-right: 5.4rem !important;
  min-height: auto !important;
  align-items: center;
}

@media screen and (max-width: 989px) {
  .template-index .header {
    padding-top: 1.8rem !important;
    padding-bottom: 1.8rem !important;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}

.template-index .header__heading-link,
.template-index .header__menu-item,
.template-index .list-menu__item,
.template-index .header__icon,
.template-index .header__icon span,
.template-index .header__active-menu-item {
  color: var(--kesher-header-link) !important;
  fill: var(--kesher-header-link) !important;
  transition: color 240ms ease, opacity 240ms ease, border-color 240ms ease;
}

.template-index .header__heading-link:hover,
.template-index .header__menu-item:hover,
.template-index .list-menu__item:hover,
.template-index .header__icon:hover,
.template-index .header__active-menu-item {
  color: var(--kesher-header-link-hover) !important;
  fill: var(--kesher-header-link-hover) !important;
}

.template-index .header__menu-item,
.template-index .list-menu__item {
  font-size: 1.18rem !important;
  letter-spacing: 0.34em !important;
  text-transform: uppercase !important;
  font-weight: 400 !important;
}

.template-index .header__heading-link {
  letter-spacing: 0.42em !important;
  text-transform: uppercase !important;
}

.template-index .header__icons {
  gap: 1.8rem;
}

/* estado com scroll */
.template-index .shopify-section-header-sticky,
.template-index .scrolled-past-header .header-wrapper,
.template-index sticky-header.header-wrapper.scrolled-past-header {
  background: var(--kesher-header-blur) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--kesher-header-border) !important;
}

/* ---------- Remove respiro herdado antes do primeiro bloco ---------- */

.template-index #MainContent,
.template-index .content-for-layout {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.template-index #MainContent > .shopify-section:first-child,
.template-index #MainContent > .section:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.template-index .shopify-section + .shopify-section {
  margin-top: 0;
}

/* ---------- Hero refinado ---------- */

.kesher-hero {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #050505;
}

@supports not (height: 100svh) {
  .kesher-hero {
    min-height: 100vh;
    height: 100vh;
  }
}

.kesher-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.kesher-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  opacity: 0.52;
  transform: scale(1.02);
  filter: brightness(0.62) contrast(1.02);
}

.kesher-hero__bg-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,0.08), transparent 28%),
    linear-gradient(180deg, #131313 0%, #080808 55%, #050505 100%);
}

.kesher-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 14%, rgba(255,255,255,0.08), transparent 24%),
    linear-gradient(to bottom, rgba(0,0,0,0.68), rgba(0,0,0,0.38) 34%, rgba(0,0,0,0.72)),
    rgba(10,10,10,var(--kesher-hero-overlay, .55));
}

.kesher-hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 17rem 4rem 8rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
}

.kesher-hero__eyebrow {
  margin: 0;
}

.kesher-hero__brand {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.58em;
  text-transform: uppercase;
  color: rgba(243, 239, 232, 0.72);
  font-weight: 300;
}

.kesher-hero__headline {
  margin: 0;
  max-width: 13ch;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--kesher-offwhite);
  letter-spacing: -0.035em;
  line-height: 0.94;
  font-size: clamp(5.6rem, 8.2vw, 10.6rem);
  text-wrap: balance;
}

.kesher-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.2rem;
  min-width: 16.5rem;
  min-height: 5.8rem;
  padding: 0 2.8rem;
  font-size: 1.15rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(243,239,232,.78);
  border: 1px solid rgba(243,239,232,.18);
  background: rgba(255,255,255,0.01);
  text-decoration: none;
  transition:
    background-color 300ms ease,
    border-color 300ms ease,
    color 300ms ease,
    transform 300ms ease;
}

.kesher-hero__cta:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(243,239,232,.42);
  color: rgba(243,239,232,.98);
  transform: translateY(-1px);
}

@media screen and (max-width: 989px) {
  .kesher-hero__content {
    padding: 14rem 2rem 6rem;
    gap: 1.8rem;
  }

  .kesher-hero__brand {
    font-size: 1rem;
    letter-spacing: 0.42em;
  }

  .kesher-hero__headline {
    max-width: 11ch;
    font-size: clamp(4rem, 12vw, 6.2rem);
    line-height: 1;
  }

  .kesher-hero__cta {
    min-width: 14.6rem;
    min-height: 5rem;
    font-size: 1.05rem;
    letter-spacing: 0.34em;
  }
}

/* =========================================================
   KESHER HEADER — REFERENCE MATCH
   ========================================================= */

/* Header apenas na home */
.template-index .section-header {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 80;
  margin-bottom: 0 !important;
  background: transparent !important;
}

.template-index .header-wrapper,
.template-index sticky-header.header-wrapper {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.template-index .header-wrapper::after,
.template-index .header-wrapper--border-bottom::after {
  display: none !important;
}

.template-index .header {
  display: grid !important;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: unset !important;
  padding: 3.2rem 5.4rem 0 !important;
  background: transparent !important;
}

/* Logo à esquerda */
.template-index .header__heading,
.template-index .header__heading-link {
  justify-self: start;
  margin: 0;
}

.template-index .header__heading-link {
  color: rgba(243, 239, 232, 0.92) !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  letter-spacing: 0.38em !important;
  font-size: 1.15rem !important;
  line-height: 1 !important;
  font-weight: 400 !important;
}

.template-index .header__heading-logo {
  max-width: 150px;
  height: auto;
  object-fit: contain;
  filter: brightness(1.05);
}

/* Menu desktop no canto direito */
.template-index .header__inline-menu {
  justify-self: end;
  margin-left: auto;
}

.template-index .header__inline-menu .list-menu {
  display: flex;
  align-items: center;
  gap: 4.8rem;
}

.template-index .header__menu-item,
.template-index .list-menu__item {
  padding: 0 !important;
  color: rgba(243, 239, 232, 0.72) !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  letter-spacing: 0.34em !important;
  font-size: 1.08rem !important;
  line-height: 1 !important;
  font-weight: 400 !important;
  transition: color 220ms ease, opacity 220ms ease;
}

.template-index .header__menu-item:hover,
.template-index .list-menu__item:hover,
.template-index .header__active-menu-item {
  color: rgba(243, 239, 232, 0.96) !important;
}

/* Remove ícones no desktop para ficar igual à referência */
@media screen and (min-width: 990px) {
  .template-index .header__icons,
  .template-index .header__icon,
  .template-index .header__icon--cart,
  .template-index .header__icon--account,
  .template-index .header__search,
  .template-index predictive-search,
  .template-index details-modal {
    display: none !important;
  }

  .template-index .header {
    grid-template-columns: auto 1fr auto !important;
  }
}

/* Mobile: mantém drawer/ícones mínimos */
@media screen and (max-width: 989px) {
  .template-index .header {
    padding: 2rem 2rem 0 !important;
    grid-template-columns: auto 1fr auto !important;
  }

  .template-index .header__heading-link {
    letter-spacing: 0.3em !important;
    font-size: 1rem !important;
  }

  .template-index .header__inline-menu {
    display: none !important;
  }

  .template-index .header__icons {
    display: flex !important;
    justify-self: end;
    gap: 1.2rem;
  }

  .template-index .header__icon,
  .template-index .header__icon span {
    color: rgba(243, 239, 232, 0.88) !important;
    fill: rgba(243, 239, 232, 0.88) !important;
  }
}

/* Estado ao rolar: quase invisível, só um véu sutil */
.template-index .shopify-section-header-sticky,
.template-index .scrolled-past-header .header-wrapper,
.template-index sticky-header.header-wrapper.scrolled-past-header {
  background: rgba(7, 7, 7, 0.14) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(243, 239, 232, 0.08) !important;
}

/* Remove qualquer empilhamento estranho do topo */
.template-index #MainContent {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* =========================================================
   KESHER HEADER — HERO OVERLAY / REFERENCE STYLE
   ========================================================= */

/* Aplica somente na home */
.template-index .shopify-section-group-header-group,
.template-index .section-header,
.template-index .header-wrapper,
.template-index header.header {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  z-index: 80;
}

/* Remove qualquer fundo herdado */
.template-index .header-wrapper,
.template-index .header-wrapper--border-bottom,
.template-index .header-wrapper.gradient,
.template-index .header-wrapper.color-background-1,
.template-index .header {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* Remove linha inferior automática */
.template-index .header-wrapper::after,
.template-index .header-wrapper--border-bottom::after {
  display: none !important;
}

/* Estrutura principal do header */
.template-index .header {
  display: grid !important;
  grid-template-columns: auto 1fr auto !important;
  align-items: center !important;
  min-height: unset !important;
  padding: 3rem 5.4rem 0 !important;
}

/* Logo à esquerda */
.template-index .header__heading,
.template-index .header__heading-link,
.template-index .header__heading-logo-wrapper {
  justify-self: start !important;
  margin: 0 !important;
}

.template-index .header__heading-link,
.template-index .header__heading-logo-wrapper,
.template-index .header__heading-logo {
  color: #f3efe8 !important;
  fill: #f3efe8 !important;
}

.template-index .header__heading-link {
  text-decoration: none !important;
  text-transform: uppercase !important;
  letter-spacing: 0.34em !important;
  font-size: 1.02rem !important;
  line-height: 1 !important;
  font-weight: 400 !important;
}

.template-index .header__heading-logo {
  max-width: 140px !important;
  height: auto !important;
  object-fit: contain !important;
}

/* Menu alinhado à direita */
.template-index .header__inline-menu {
  justify-self: end !important;
  margin-left: auto !important;
}

.template-index .header__inline-menu .list-menu {
  display: flex !important;
  align-items: center !important;
  gap: 4.4rem !important;
}

/* Links do menu */
.template-index .header__menu-item,
.template-index .list-menu__item,
.template-index .header__active-menu-item {
  color: rgba(243, 239, 232, 0.74) !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  letter-spacing: 0.30em !important;
  font-size: 0.98rem !important;
  line-height: 1 !important;
  font-weight: 400 !important;
  padding: 0 !important;
  transition: color 220ms ease, opacity 220ms ease;
}

.template-index .header__menu-item:hover,
.template-index .list-menu__item:hover,
.template-index .header__active-menu-item {
  color: rgba(243, 239, 232, 0.96) !important;
}

/* Ícones ficam fora de cena no desktop */
@media screen and (min-width: 990px) {
  .template-index .header__icons,
  .template-index .header__icon,
  .template-index .header__icon span,
  .template-index .header__icon--cart,
  .template-index .header__icon--account,
  .template-index predictive-search,
  .template-index details-modal {
    display: none !important;
  }
}

/* Mobile: mantém funcional, mas limpo */
@media screen and (max-width: 989px) {
  .template-index .header {
    grid-template-columns: auto 1fr auto !important;
    padding: 2rem 2rem 0 !important;
  }

  .template-index .header__inline-menu {
    display: none !important;
  }

  .template-index .header__heading-link {
    font-size: 0.94rem !important;
    letter-spacing: 0.26em !important;
  }

  .template-index .header__heading-logo {
    max-width: 110px !important;
  }

  .template-index .header__icons {
    display: flex !important;
    justify-self: end !important;
    gap: 1rem !important;
  }

  .template-index .header__icon,
  .template-index .header__icon span {
    color: #f3efe8 !important;
    fill: #f3efe8 !important;
  }
}

/* Estado ao rolar: vidro sutil, sem faixa pesada */
.template-index .scrolled-past-header .header-wrapper,
.template-index .shopify-section-header-sticky,
.template-index .shopify-section-header-hidden {
  background: rgba(8, 8, 8, 0.12) !important;
  border-bottom: 1px solid rgba(243, 239, 232, 0.08) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

/* Garante que nada empurre o hero para baixo */
.template-index #MainContent,
.template-index .content-for-layout {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* =========================================================
   KESHER MANIFESTO
   ========================================================= */

.kesher-manifesto {
  position: relative;
  background: #050505;
  color: #f3efe8;
  overflow: hidden;
}

.kesher-manifesto__inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 6.5rem 4rem 3.6rem;
  text-align: center;
}

.kesher-manifesto__label {
  margin: 0 0 5.8rem;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.52em;
  text-transform: uppercase;
  color: #9e7d33;
  opacity: 0.95;
}

.kesher-manifesto__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}

.kesher-manifesto__line {
  margin: 0;
  max-width: 13ch;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(4.4rem, 5.3vw, 7.2rem);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.035em;
  color: #f1ede6;
  text-wrap: balance;
  opacity: 0;
  transform: translateY(18px);
  animation: kesherManifestoFadeUp 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--manifesto-line-delay, 0s);
}

.kesher-manifesto__line--last {
  max-width: 16ch;
  line-height: 0.9;
}

.kesher-manifesto__rule-wrap {
  display: flex;
  justify-content: center;
  margin-top: 6rem;
}

.kesher-manifesto__rule {
  display: block;
  width: 6.4rem;
  height: 1px;
  background: #9e7d33;
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: center;
  animation: kesherManifestoRule 0.9s ease forwards;
  animation-delay: var(--manifesto-rule-delay, 2s);
}

@keyframes kesherManifestoFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes kesherManifestoRule {
  from {
    opacity: 0;
    transform: scaleX(0.4);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@media screen and (max-width: 989px) {
  .kesher-manifesto__inner {
    padding: 5rem 2rem 3rem;
  }

  .kesher-manifesto__label {
    margin-bottom: 4rem;
    font-size: 1rem;
    letter-spacing: 0.42em;
  }

  .kesher-manifesto__content {
    gap: 1.2rem;
  }

  .kesher-manifesto__line {
  margin: 0;
  max-width: 13ch;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(4.4rem, 5.3vw, 7.2rem);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.035em;
  color: #f1ede6;
  text-wrap: balance;

  opacity: 0;
  transform: translate3d(0, 42px, 0);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--manifesto-line-delay, 0s);
  will-change: opacity, transform;
}

.kesher-manifesto__line.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.kesher-manifesto__line--last {
  max-width: 16ch;
  line-height: 0.9;
}

.kesher-manifesto__rule {
  display: block;
  width: 6.4rem;
  height: 1px;
  background: #9e7d33;
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: center;
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  transition-delay: var(--manifesto-rule-delay, 0.8s);
}

.kesher-manifesto__rule.is-visible {
  opacity: 1;
  transform: scaleX(1);
}

@media screen and (max-width: 989px) {
  .kesher-manifesto__line {
    max-width: 11ch;
    font-size: clamp(3.1rem, 10vw, 5rem);
    line-height: 1;
    transform: translate3d(0, 28px, 0);
  }

  .kesher-manifesto__line--last {
    max-width: 12ch;
  }

  .kesher-manifesto__rule {
    width: 5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kesher-manifesto__line,
  .kesher-manifesto__rule {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}