:root {
  --wine: #8c0708;
  --wine-dark: #5f0304;
  --cream: #f2efeb;
  --cream-light: #fbf7f2;
  --black: #000000;
  --ink: #1f1b1b;
  --muted: #716767;
  --white: #ffffff;
  --rose: #f3b5b8;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream-light);
}

body.cart-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.topbar {
  background: var(--black);
  color: var(--cream);
  text-align: center;
  padding: 9px 16px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.topbar p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(242, 239, 235, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(140, 7, 8, 0.14);
}

.brand {
  position: relative;
  display: inline-grid;
  grid-template-columns: auto auto auto;
  grid-template-areas:
    "small name kiss"
    ". subtitle .";
  align-items: end;
  column-gap: 5px;
  width: max-content;
}

.brand-small {
  grid-area: small;
  font-family: "Cambo", serif;
  font-size: 1rem;
  line-height: 1;
}

.brand-name {
  grid-area: name;
  font-family: "Cambo", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.76;
  letter-spacing: -0.04em;
}

.brand-kiss {
  grid-area: kiss;
  color: var(--wine);
  transform: rotate(-18deg);
  font-size: 1rem;
  line-height: 1;
}

.brand-subtitle {
  grid-area: subtitle;
  font-family: "Cambo", Georgia, serif;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: right;
  margin-top: 4px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--wine);
  transition: width 0.2s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.cart-button,
.primary-button,
.secondary-button,
.whatsapp-checkout {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cart-button {
  background: var(--wine);
  color: var(--white);
  padding: 12px 16px;
}

.cart-button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  margin-left: 6px;
  border-radius: 999px;
  background: var(--white);
  color: var(--wine);
  font-size: 0.72rem;
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--wine);
  color: var(--white);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  font-size: 1.4rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 72px);
  min-height: 640px;
  background:
    radial-gradient(circle at 14% 18%, rgba(140, 7, 8, 0.12), transparent 30%),
    linear-gradient(135deg, var(--cream-light), var(--cream));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--wine);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: "Cambo", Georgia, serif;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.05em;
  color: var(--black);
}

h1 {
  max-width: 720px;
  font-size: clamp(4rem, 10vw, 8.4rem);
  line-height: 0.84;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.9;
}

.hero-text {
  max-width: 570px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-button,
.secondary-button,
.whatsapp-checkout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 15px 24px;
}

.primary-button,
.whatsapp-checkout {
  background: var(--wine);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(140, 7, 8, 0.22);
}

.secondary-button {
  color: var(--wine);
  background: rgba(140, 7, 8, 0.08);
  border: 1px solid rgba(140, 7, 8, 0.16);
}

.primary-button:hover,
.secondary-button:hover,
.whatsapp-checkout:hover,
.cart-button:hover {
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-card-main {
  position: absolute;
  inset: 30px 44px 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 5vw, 56px);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(160deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.64)),
    linear-gradient(145deg, var(--wine), var(--wine-dark));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}


.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  opacity: 0.9;
}

.hero-card-main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.72));
}

.hero-card-main span,
.hero-card-main strong,
.hero-card-main em {
  position: relative;
  z-index: 2;
}

.hero-card-main span {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
}

.hero-card-main strong {
  font-family: "Cambo", Georgia, serif;
  margin-top: 14px;
  font-size: clamp(3.4rem, 8vw, 6.6rem);
  line-height: 0.8;
  font-weight: 400;
}

.hero-card-main em {
  max-width: 260px;
  margin-top: 18px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.82);
}

.floating-card,
.kiss-mark {
  position: absolute;
  z-index: 3;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.floating-card {
  background: var(--white);
  padding: 18px 22px;
  color: var(--wine);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}

.card-one {
  left: 0;
  top: 18%;
}

.card-two {
  right: 0;
  bottom: 17%;
}

.kiss-mark {
  right: 9%;
  top: 10%;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  background: var(--cream-light);
  color: var(--wine);
  font-size: 2.2rem;
  transform: rotate(-18deg);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 72px);
  background: rgba(140, 7, 8, 0.16);
  border: 1px solid rgba(140, 7, 8, 0.16);
  border-radius: 24px;
  overflow: hidden;
  transform: translateY(-28px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
}

.trust-strip article {
  padding: 24px;
  background: var(--white);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--black);
  margin-bottom: 8px;
}

.trust-strip span {
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.92rem;
}

.section-intro,
.faq-section {
  padding: 52px clamp(18px, 5vw, 72px) 24px;
  text-align: center;
}

.section-intro p:not(.eyebrow),
.faq-section > p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 5vw, 72px);
}

.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-button {
  border: 1px solid rgba(140, 7, 8, 0.16);
  background: var(--white);
  color: var(--wine);
  padding: 12px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.filter-button.active {
  background: var(--wine);
  color: var(--white);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: min(100%, 360px);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(140, 7, 8, 0.16);
}

.search-box span {
  color: var(--wine);
  font-weight: 800;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding: 22px clamp(18px, 5vw, 72px) 74px;
}

.product-card {
  overflow: hidden;
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(140, 7, 8, 0.1);
}

.product-image {
  position: relative;
  min-height: 430px;
  background: var(--cream);
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.35s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.04);
}

.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--wine);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-content {
  padding: 20px;
}

.product-content h3 {
  margin: 0;
  font-family: "Cambo", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
}

.product-description {
  min-height: 44px;
  margin: 10px 0 16px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.product-price {
  display: block;
  margin-bottom: 18px;
  color: var(--wine);
  font-weight: 900;
  font-size: 1.08rem;
}

.product-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.product-options label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-options select {
  width: 100%;
  border: 1px solid rgba(140, 7, 8, 0.14);
  background: var(--cream-light);
  border-radius: 14px;
  padding: 11px 10px;
  color: var(--black);
  outline-color: var(--wine);
}

.add-button {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 16px;
  background: var(--black);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.add-button:hover {
  transform: translateY(-2px);
  background: var(--wine);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 56px;
  border-radius: var(--radius);
  background: var(--white);
  text-align: center;
  color: var(--muted);
}

.looks-section,
.about-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(64px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.looks-section {
  background: var(--black);
  color: var(--white);
}

.looks-section h2,
.looks-section p:not(.eyebrow) {
  color: var(--white);
}

.looks-section p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.look-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.look-cards article {
  min-height: 250px;
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(160deg, rgba(140, 7, 8, 0.96), rgba(95, 3, 4, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.look-cards span {
  display: block;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 86px;
}

.look-cards strong {
  display: block;
  font-family: "Cambo", Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.look-cards p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  font-size: 0.9rem;
}

.about-section {
  background: linear-gradient(135deg, var(--cream-light), var(--cream));
}

.about-card {
  padding: clamp(28px, 5vw, 54px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-card p:not(.eyebrow) {
  margin: 22px 0 26px;
  color: var(--muted);
  line-height: 1.8;
}

.brand-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.brand-board div {
  display: grid;
  place-items: center;
  min-height: 190px;
  padding: 22px;
  border-radius: 28px;
  font-family: "Cambo", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.95;
  text-align: center;
  background: var(--wine);
  color: var(--white);
}

.brand-board div:nth-child(2),
.brand-board div:nth-child(3) {
  background: var(--white);
  color: var(--wine);
  border: 1px solid rgba(140, 7, 8, 0.12);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
  text-align: left;
}

details {
  padding: 22px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid rgba(140, 7, 8, 0.1);
}

summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--black);
}

details p {
  color: var(--muted);
  line-height: 1.7;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  justify-content: flex-end;
  background: rgba(0, 0, 0, 0.5);
}

.cart-drawer.open {
  display: flex;
}

.cart-panel {
  width: min(100%, 440px);
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--cream-light);
  box-shadow: -16px 0 50px rgba(0, 0, 0, 0.25);
}

.cart-header,
.cart-footer {
  padding: 24px;
}

.cart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid rgba(140, 7, 8, 0.16);
}

.cart-header h2 {
  font-size: 2.8rem;
}

.close-cart {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 20px;
}

.cart-item {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  margin-bottom: 12px;
  background: var(--white);
  border-radius: 18px;
}

.cart-item img {
  width: 74px;
  height: 86px;
  border-radius: 14px;
  object-fit: cover;
}

.cart-item h3 {
  margin: 0 0 5px;
  font-size: 0.94rem;
}

.cart-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.remove-item {
  border: 0;
  background: rgba(140, 7, 8, 0.09);
  color: var(--wine);
  width: 34px;
  height: 34px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 900;
}

.cart-footer {
  border-top: 1px solid rgba(140, 7, 8, 0.16);
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.cart-total span {
  color: var(--muted);
  font-weight: 800;
}

.cart-total strong {
  color: var(--wine);
  font-size: 1.3rem;
}

.whatsapp-checkout {
  width: 100%;
}

.cart-footer small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.5;
  text-align: center;
}

.empty-cart {
  display: grid;
  place-items: center;
  min-height: 300px;
  padding: 30px;
  border-radius: 22px;
  background: var(--white);
  color: var(--muted);
  text-align: center;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 42;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--wine);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(140, 7, 8, 0.3);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px clamp(18px, 5vw, 72px);
  background: var(--black);
  color: var(--cream);
}

.footer-brand .brand-name,
.footer-brand .brand-small,
.footer-brand .brand-subtitle {
  color: var(--cream);
}

.site-footer p {
  margin: 0;
  color: rgba(242, 239, 235, 0.72);
  text-align: right;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 30px;
  z-index: 120;
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: var(--shadow);
  transform: translate(-50%, 120px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}


.checkout-preferences {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 16px 0 12px;
}

.checkout-preferences label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.checkout-preferences select {
  width: 100%;
  border: 1px solid rgba(140, 7, 8, 0.14);
  background: var(--cream-light);
  border-radius: 14px;
  padding: 11px 10px;
  color: var(--black);
  outline-color: var(--wine);
}

.footer-instagram {
  display: inline-flex;
  margin-top: 12px;
  color: var(--wine);
  font-weight: 800;
}

@media (max-width: 1180px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 460px;
  }
}

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a,
  .cart-button {
    padding: 16px;
    text-align: left;
  }

  .trust-strip,
  .look-cards,
  .faq-grid,
  .about-section,
  .looks-section {
    grid-template-columns: 1fr;
  }

  .shop-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .search-box {
    width: 100%;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .brand-name {
    font-size: 2.15rem;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  h1 {
    font-size: clamp(4rem, 18vw, 5.4rem);
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-card-main {
    inset: 0;
  }

  .floating-card,
  .kiss-mark {
    display: none;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    transform: none;
    margin-top: 18px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-image,
  .product-image img {
    min-height: 500px;
  }

  .brand-board {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }
}

/* Storytelling da marca — capítulo editorial By Giovanna */
.brand-story-section {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(650px, 1.42fr);
  align-items: center;
  gap: clamp(46px, 5vw, 92px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(74px, 7vw, 108px) clamp(22px, 4vw, 72px);
  background:
    radial-gradient(circle at 78% 43%, rgba(143, 16, 23, 0.31), transparent 34%),
    linear-gradient(112deg, #17100f 0 50%, #211315 100%);
  color: var(--white);
}

.brand-story-section::before {
  content: "BY GIOVANNA";
  position: absolute;
  left: -1.5vw;
  bottom: -0.13em;
  z-index: -2;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 250, 245, 0.075);
  font-family: "Cambo", Georgia, serif;
  font-size: clamp(105px, 13vw, 245px);
  line-height: 0.72;
  white-space: nowrap;
}

.brand-story-section::after {
  content: "";
  width: 190px;
  height: 190px;
  position: absolute;
  right: -52px;
  top: -55px;
  z-index: -1;
  border-radius: 50%;
  background: repeating-linear-gradient(
    135deg,
    rgba(233, 167, 177, 0.16) 0 2px,
    transparent 2px 12px
  );
}

.story-intro,
.story-journey {
  position: relative;
  z-index: 2;
}

.story-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--rose);
}

.story-eyebrow span {
  width: 28px;
  height: 2px;
  display: inline-block;
  background: currentColor;
}

.story-intro h2 {
  max-width: 620px;
  margin-top: 16px;
  color: var(--white);
  font-size: clamp(3.5rem, 4.8vw, 5.8rem);
  line-height: 0.88;
  letter-spacing: -0.045em;
}

.story-intro h2 em {
  color: var(--rose);
  font-weight: 400;
}

.story-lead {
  max-width: 570px;
  margin: 26px 0 0;
  color: rgba(255, 250, 245, 0.72);
  font-size: clamp(0.9rem, 1vw, 1.02rem);
  line-height: 1.8;
}

.story-signature {
  max-width: 540px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 250, 245, 0.18);
}

.story-signature span {
  color: rgba(255, 250, 245, 0.52);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-signature strong {
  color: var(--rose);
  font-family: "Cambo", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
  white-space: nowrap;
}

.story-journey {
  min-height: 360px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: clamp(12px, 1.2vw, 22px);
  padding: 26px 0 12px;
}

.story-journey::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 46px;
  z-index: -1;
  border-top: 1px dashed rgba(255, 250, 245, 0.25);
}

.story-card {
  min-height: 304px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  padding: 27px 24px 25px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 112px 112px 24px 24px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 36px 72px rgba(0, 0, 0, 0.28);
}

.story-card-one {
  background: linear-gradient(155deg, #a3121b, #6e080e);
}

.story-card-two {
  min-height: 342px;
  background: linear-gradient(155deg, #fffaf5, #eadbd0);
  color: var(--ink);
  transform: translateY(-16px);
}

.story-card-two:hover {
  transform: translateY(-24px);
}

.story-card-three {
  background: linear-gradient(155deg, #e9a7b1, #c56f7c);
  color: #3d1115;
  transform: translateY(12px);
}

.story-card-three:hover {
  transform: translateY(4px);
}

.story-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  opacity: 0.72;
}

.story-card small {
  display: block;
  margin-bottom: 10px;
  color: inherit;
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  opacity: 0.68;
}

.story-card h3 {
  margin: 0;
  color: inherit;
  font-family: "Cambo", Georgia, serif;
  font-size: clamp(1.75rem, 2vw, 2.35rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.story-card h3 em {
  color: inherit;
  font-weight: 400;
  opacity: 0.7;
}

.story-card p {
  margin: 15px 0 0;
  color: inherit;
  font-size: 0.76rem;
  line-height: 1.65;
  opacity: 0.76;
}

.story-seal {
  width: 86px;
  height: 86px;
  display: grid;
  place-content: center;
  gap: 5px;
  position: absolute;
  right: -22px;
  bottom: -22px;
  z-index: 5;
  border: 1px solid var(--wine);
  border-radius: 50%;
  background: var(--cream-light);
  color: var(--wine);
  text-align: center;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
  transform: rotate(8deg);
}

.story-seal > span {
  font-size: 0.9rem;
  line-height: 1;
}

.story-seal small {
  font-size: 0.43rem;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .brand-story-section {
    grid-template-columns: 1fr;
  }

  .story-intro h2,
  .story-lead {
    max-width: 760px;
  }

  .story-journey {
    width: min(100%, 900px);
    justify-self: center;
  }
}

@media (max-width: 720px) {
  .brand-story-section {
    min-height: auto;
    gap: 42px;
    padding-top: 64px;
    padding-bottom: 76px;
  }

  .story-intro h2 {
    font-size: clamp(3.35rem, 14.8vw, 4.8rem);
  }

  .story-signature {
    align-items: flex-start;
    flex-direction: column;
  }

  .story-journey {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0;
  }

  .story-journey::before {
    left: 19px;
    right: auto;
    top: 24px;
    bottom: 24px;
    border-top: 0;
    border-left: 1px dashed rgba(255, 250, 245, 0.25);
  }

  .story-card,
  .story-card-two,
  .story-card-three {
    min-height: 230px;
    padding: 24px 22px;
    border-radius: 70px 22px 22px 22px;
    transform: none;
  }

  .story-card:hover,
  .story-card-two:hover,
  .story-card-three:hover {
    transform: translateY(-4px);
  }

  .story-card h3 {
    font-size: 2.15rem;
  }

  .story-seal {
    right: -5px;
    bottom: -42px;
  }
}

/* Checkout online — Mercado Pago + Melhor Envio */
.legacy-checkout-controls {
  display: none !important;
}

.price-pending {
  color: var(--muted) !important;
  font-size: 0.82rem !important;
}

.cart-panel {
  width: min(100%, 560px);
  overflow-y: auto;
}

.cart-header {
  position: sticky;
  top: 0;
  z-index: 4;
  background: var(--cream-light);
}

.cart-items {
  flex: 0 0 auto;
  overflow: visible;
  padding-bottom: 8px;
}

.cart-footer {
  padding-top: 18px;
}

.checkout-summary {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  margin-bottom: 18px;
  border-radius: 17px;
  background: rgba(143, 16, 23, 0.055);
  border: 1px solid rgba(143, 16, 23, 0.1);
}

.checkout-summary > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 700;
}

.checkout-summary > div strong {
  color: var(--ink);
  font-size: 0.9rem;
  text-align: right;
}

.checkout-summary .cart-total {
  margin: 5px 0 0;
  padding-top: 10px;
  border-top: 1px solid rgba(143, 16, 23, 0.13);
}

.checkout-summary .cart-total span,
.checkout-summary .cart-total strong {
  color: var(--wine);
  font-size: 1.05rem;
}

.online-checkout {
  display: grid;
  gap: 17px;
}

.online-checkout fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.online-checkout legend {
  width: 100%;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.checkout-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.checkout-fields label {
  min-width: 0;
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.checkout-fields label.wide {
  grid-column: 1 / -1;
}

.checkout-fields input {
  width: 100%;
  min-width: 0;
  min-height: 43px;
  padding: 10px 12px;
  border: 1px solid rgba(143, 16, 23, 0.15);
  border-radius: 12px;
  outline: none;
  background: #fff;
  color: var(--ink);
  font: 500 0.82rem "Montserrat", Arial, sans-serif;
  text-transform: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.checkout-fields input:focus {
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(143, 16, 23, 0.08);
}

.address-fields {
  grid-template-columns: 1fr auto;
}

.shipping-button {
  min-height: 43px;
  align-self: end;
  padding: 0 15px;
  border: 1px solid var(--wine);
  border-radius: 12px;
  background: transparent;
  color: var(--wine);
  font: 800 0.72rem "Montserrat", Arial, sans-serif;
  cursor: pointer;
}

.shipping-button:disabled,
.payment-button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.shipping-options {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.shipping-options > p {
  margin: 0;
  padding: 11px 13px;
  border-radius: 12px;
  background: rgba(143, 16, 23, 0.045);
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.shipping-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid rgba(143, 16, 23, 0.13);
  border-radius: 13px;
  background: #fff;
  cursor: pointer;
}

.shipping-option.selected {
  border-color: var(--wine);
  box-shadow: 0 0 0 2px rgba(143, 16, 23, 0.07);
}

.shipping-option input {
  accent-color: var(--wine);
}

.shipping-option span {
  display: grid;
  gap: 3px;
}

.shipping-option strong {
  color: var(--ink);
  font-size: 0.73rem;
}

.shipping-option small {
  color: var(--muted);
  font-size: 0.65rem;
}

.shipping-option b {
  color: var(--wine);
  font-size: 0.77rem;
}

.checkout-message {
  display: none;
  margin: 0;
  padding: 10px 12px;
  border-radius: 11px;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.45;
}

.checkout-message:not(:empty) {
  display: block;
}

.checkout-message.error {
  background: #f9dfe1;
  color: #790d14;
}

.checkout-message.success {
  background: #e8f4e8;
  color: #245c2a;
}

.payment-button {
  width: 100%;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: var(--wine);
  color: #fff;
  font: 900 0.76rem "Montserrat", Arial, sans-serif;
  cursor: pointer;
}

.secure-checkout-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 11px;
  color: var(--muted);
}

.secure-checkout-note span {
  color: var(--wine);
  font-size: 0.65rem;
}

.secure-checkout-note small {
  margin: 0;
  font-size: 0.66rem;
}

/* Retorno do Mercado Pago */
.payment-status-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 10%, rgba(233, 167, 177, 0.38), transparent 30%),
    linear-gradient(135deg, #fffaf5, #f1e8de);
}

.payment-status-shell {
  width: min(100% - 32px, 760px);
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 28px;
  margin: 0 auto;
  padding: 38px 0;
}

.payment-status-shell > .brand {
  justify-self: center;
}

.payment-status-card {
  padding: clamp(36px, 7vw, 70px);
  border: 1px solid rgba(143, 16, 23, 0.12);
  border-radius: 36px;
  background: rgba(255, 250, 245, 0.92);
  box-shadow: 0 30px 80px rgba(82, 31, 24, 0.14);
  text-align: center;
}

.payment-status-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--wine);
  color: #fff;
  font-size: 1.5rem;
}

.payment-status-card h1 {
  max-width: none;
  margin: 8px 0 14px;
  font-size: clamp(2.6rem, 8vw, 5rem);
  line-height: 0.95;
}

.payment-status-card > p:not(.eyebrow) {
  max-width: 520px;
  margin: 0 auto 28px;
  color: var(--muted);
  line-height: 1.7;
}

.payment-status-card .primary-button {
  margin: 0 auto;
}

.payment-status-card.approved .payment-status-icon { background: #2e7d45; }
.payment-status-card.pending .payment-status-icon { background: #b47714; }
.payment-status-card.rejected .payment-status-icon { background: #8f1017; }

@media (max-width: 620px) {
  .cart-header,
  .cart-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .cart-items {
    padding-left: 12px;
    padding-right: 12px;
  }

  .checkout-fields,
  .address-fields {
    grid-template-columns: 1fr;
  }

  .checkout-fields label.wide {
    grid-column: auto;
  }

  .shipping-button {
    width: 100%;
  }

  .shipping-option {
    grid-template-columns: auto 1fr;
  }

  .shipping-option b {
    grid-column: 2;
  }
}

/* Redesign editorial — By Giovanna */
:root {
  --wine: #8f1017;
  --wine-dark: #5c070d;
  --cream: #f6f0e9;
  --cream-light: #fffaf5;
  --black: #17100f;
  --ink: #17100f;
  --muted: #6f605a;
  --rose: #e9a7b1;
}

.topbar {
  padding: 8px 16px;
  background: var(--black);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.topbar p::before,
.topbar p::after {
  content: "✦";
  margin: 0 18px;
  color: var(--rose);
}

.site-header {
  min-height: 82px;
  padding: 10px clamp(22px, 4vw, 72px);
  background: rgba(246, 240, 233, 0.95);
  border-color: rgba(31, 17, 14, 0.14);
}

.brand-name {
  font-size: clamp(2.15rem, 3.2vw, 2.75rem);
}

.main-nav {
  gap: clamp(18px, 2.2vw, 36px);
  font-size: 0.66rem;
  letter-spacing: 0.13em;
}

.cart-button {
  padding: 11px 18px;
}

.hero-redesign {
  min-height: calc(100svh - 110px);
  display: grid;
  grid-template-columns: minmax(410px, 0.9fr) minmax(540px, 1.1fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 0 clamp(34px, 5vw, 86px);
  padding: clamp(40px, 4.5vw, 64px) clamp(22px, 4vw, 72px) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 10%, rgba(233, 167, 177, 0.34), transparent 28%),
    linear-gradient(108deg, #fffaf5 0 46%, #f1e8de 46% 100%);
}

.hero-redesign::before {
  content: "GIRLS";
  position: absolute;
  left: -1vw;
  bottom: 43px;
  z-index: -1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(143, 16, 23, 0.09);
  font-family: "Cambo", Georgia, serif;
  font-size: clamp(130px, 18vw, 310px);
  line-height: 0.7;
}

.hero-copy {
  padding-bottom: 42px;
  position: relative;
  z-index: 4;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
}

.hero-eyebrow span {
  width: 25px;
  height: 2px;
  display: inline-block;
  background: currentColor;
}

.hero-redesign h1 {
  max-width: 680px;
  font-size: clamp(4.2rem, 5.4vw, 6.4rem);
  line-height: 0.78;
  letter-spacing: -0.065em;
}

.hero-redesign h1 em {
  color: var(--wine);
  font-weight: 400;
}

.hero-redesign h1 mark {
  position: relative;
  background: transparent;
  color: inherit;
}

.hero-redesign h1 mark::after {
  content: "";
  position: absolute;
  left: 2%;
  right: -3%;
  bottom: -4px;
  z-index: -1;
  height: 11px;
  border-radius: 50%;
  background: var(--rose);
  transform: rotate(-2deg);
}

.hero-redesign .hero-text {
  max-width: 520px;
  margin-top: 24px;
  font-size: clamp(0.92rem, 1.1vw, 1.08rem);
  line-height: 1.7;
}

.hero-redesign .hero-actions {
  margin-top: 22px;
}

.hero-redesign .primary-button,
.hero-redesign .secondary-button {
  min-height: 54px;
  padding: 14px 24px;
  font-size: 0.75rem;
}

.hero-redesign .primary-button {
  min-width: 285px;
  min-height: 62px;
  justify-content: space-between;
  gap: 22px;
  padding: 17px 30px;
  font-size: 0.82rem;
}

.hero-redesign .secondary-button {
  background: rgba(255, 250, 245, 0.68);
  border-color: var(--wine);
}

.hero-signature {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 22px;
}

.hero-signature > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--wine);
  border-radius: 50%;
  color: var(--wine);
}

.hero-signature p {
  margin: 0;
  color: #796862;
  font-family: "Cambo", Georgia, serif;
  font-size: 0.82rem;
  line-height: 1.35;
}

.hero-signature strong {
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-gallery {
  height: min(590px, 56vw);
  min-height: 460px;
  align-self: end;
  position: relative;
  z-index: 3;
}

.gallery-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(63, 28, 21, 0.19);
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-main {
  width: 48%;
  height: 87%;
  left: 25%;
  bottom: 4%;
  z-index: 3;
  border-radius: 44% 44% 18px 18px;
}

.gallery-main figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 8px 11px;
  background: #e8e679;
  color: var(--ink);
  font-size: 0.55rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-left {
  width: 34%;
  height: 59%;
  left: 0;
  bottom: 1%;
  z-index: 2;
  border-radius: 120px 120px 16px 16px;
  transform: rotate(-6deg);
}

.gallery-right {
  width: 35%;
  height: 65%;
  right: 0;
  top: 5%;
  z-index: 2;
  border-radius: 140px 140px 16px 16px;
  transform: rotate(6deg);
}

.gallery-caption {
  position: absolute;
  z-index: 5;
  padding: 10px 14px;
  border: 1px solid var(--ink);
  background: var(--cream-light);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.caption-top {
  top: 0;
  left: 4%;
  transform: rotate(-7deg);
}

.caption-bottom {
  right: 1%;
  bottom: 14%;
  color: white;
  border-color: var(--wine);
  background: var(--wine);
  transform: rotate(7deg);
}

.gallery-heart {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  position: absolute;
  left: 14%;
  top: 13%;
  z-index: 6;
  border-radius: 50%;
  background: var(--rose);
  color: var(--wine);
  font-size: 1.45rem;
  box-shadow: 0 14px 28px rgba(80, 19, 26, 0.18);
  transform: rotate(-10deg);
}

/* Campanha tipográfica do hero: impacto editorial sem depender de fotografias. */
.hero-editorial {
  overflow: visible;
  isolation: isolate;
}

.hero-editorial::before {
  content: "";
  width: 62%;
  height: 79%;
  position: absolute;
  left: 19%;
  bottom: 3%;
  z-index: -1;
  border-radius: 48% 48% 26px 26px;
  background: var(--rose);
  transform: rotate(-5deg);
  box-shadow: 0 34px 70px rgba(92, 7, 13, 0.12);
}

.hero-editorial::after {
  content: "";
  width: 135px;
  height: 135px;
  position: absolute;
  right: -1%;
  top: 8%;
  z-index: -2;
  border-radius: 50%;
  background: repeating-linear-gradient(
    135deg,
    rgba(143, 16, 23, 0.16) 0 2px,
    transparent 2px 11px
  );
}

.editorial-orbit {
  position: absolute;
  z-index: -2;
  border: 1px solid rgba(143, 16, 23, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: 74%;
  height: 66%;
  left: 6%;
  top: 13%;
  transform: rotate(-12deg);
}

.orbit-two {
  width: 36%;
  height: 32%;
  right: 0;
  bottom: 4%;
  transform: rotate(16deg);
}

.editorial-word {
  position: absolute;
  left: -3%;
  bottom: 0;
  z-index: -1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(143, 16, 23, 0.17);
  font-family: "Cambo", Georgia, serif;
  font-size: clamp(10rem, 13vw, 15rem);
  line-height: 0.72;
  letter-spacing: -0.1em;
  transform: rotate(-7deg);
  user-select: none;
}

.editorial-card {
  width: 62%;
  height: 82%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  left: 22%;
  bottom: 6%;
  z-index: 2;
  margin: 0;
  padding: clamp(48px, 5vw, 74px) clamp(30px, 3.4vw, 52px) 34px;
  overflow: hidden;
  border-radius: 49% 49% 22px 22px;
  background:
    radial-gradient(circle at 77% 18%, rgba(233, 167, 177, 0.24), transparent 27%),
    linear-gradient(145deg, #a6131d 0%, var(--wine) 56%, var(--wine-dark) 100%);
  color: white;
  box-shadow: 0 34px 78px rgba(66, 11, 15, 0.26);
}

.editorial-card::before {
  content: "♥";
  position: absolute;
  right: -16px;
  top: 18%;
  color: rgba(255, 255, 255, 0.055);
  font-family: Georgia, serif;
  font-size: clamp(9rem, 12vw, 14rem);
  line-height: 1;
  transform: rotate(9deg);
}

.editorial-card::after {
  content: "";
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 49% 49% 14px 14px;
  pointer-events: none;
}

.editorial-card-kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  color: #f3bdc6;
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.editorial-card-kicker span {
  margin: 0 5px;
  color: white;
}

.editorial-card h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: white;
  font-family: "Cambo", Georgia, serif;
  font-size: clamp(3.35rem, 4.5vw, 5.6rem);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.055em;
}

.editorial-card h2 em {
  color: var(--rose);
  font-weight: 400;
}

.editorial-card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
}

.editorial-card-footer span {
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.editorial-card-footer b {
  color: rgba(255, 255, 255, 0.32);
  font-family: "Cambo", Georgia, serif;
  font-size: 2.7rem;
  font-weight: 400;
  line-height: 0.8;
}

.editorial-seal {
  width: 102px;
  height: 102px;
  display: grid;
  place-content: center;
  gap: 6px;
  position: absolute;
  left: 1%;
  top: 16%;
  z-index: 5;
  border: 1px solid var(--wine);
  border-radius: 50%;
  background: var(--cream-light);
  color: var(--wine);
  text-align: center;
  box-shadow: 0 17px 35px rgba(80, 19, 26, 0.12);
  transform: rotate(-8deg);
}

.editorial-seal > span {
  font-size: 1.15rem;
  line-height: 1;
}

.editorial-seal small {
  font-size: 0.46rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.editorial-tag {
  position: absolute;
  right: -1%;
  top: 28%;
  z-index: 5;
  padding: 14px 17px;
  border: 1px solid var(--ink);
  background: var(--cream-light);
  color: var(--ink);
  font-family: "Cambo", Georgia, serif;
  font-size: 0.86rem;
  line-height: 1.18;
  box-shadow: 0 16px 36px rgba(80, 19, 26, 0.11);
  transform: rotate(6deg);
}

.editorial-tag strong {
  color: var(--wine);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.57rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.editorial-sticker {
  display: flex;
  align-items: center;
  gap: 22px;
  position: absolute;
  right: 0;
  bottom: 11%;
  z-index: 5;
  padding: 11px 13px;
  background: #e8e679;
  color: var(--ink);
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(80, 19, 26, 0.12);
  transform: rotate(-5deg);
}

.editorial-sticker span {
  font-size: 1rem;
  line-height: 0.7;
}

/* Fotografia principal da campanha By Giovanna. */
.hero-campaign {
  overflow: visible;
  isolation: isolate;
}

.hero-campaign::before {
  content: "";
  position: absolute;
  inset: 7% 1% 1% 4%;
  z-index: -1;
  border-radius: 34px;
  background: var(--rose);
  opacity: 0.72;
  transform: rotate(-3deg);
  box-shadow: 0 28px 66px rgba(92, 7, 13, 0.14);
}

.hero-campaign::after {
  content: "";
  width: 116px;
  height: 116px;
  position: absolute;
  right: -3%;
  top: -3%;
  z-index: -2;
  border-radius: 50%;
  background: repeating-linear-gradient(
    135deg,
    rgba(143, 16, 23, 0.16) 0 2px,
    transparent 2px 11px
  );
}

.hero-campaign-frame {
  position: absolute;
  inset: 1% 2% 4%;
  z-index: 2;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(143, 16, 23, 0.14);
  border-radius: 34px 34px 22px 22px;
  background:
    radial-gradient(circle at 74% 19%, rgba(255, 250, 245, 0.7), transparent 32%),
    #ead8cb;
  box-shadow: 0 34px 78px rgba(66, 11, 15, 0.22);
}

.hero-campaign-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.campaign-ticket {
  position: absolute;
  left: 0;
  top: 8%;
  z-index: 5;
  padding: 12px 15px;
  border: 1px solid var(--ink);
  background: var(--cream-light);
  color: var(--ink);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  box-shadow: 0 15px 34px rgba(80, 19, 26, 0.13);
  transform: rotate(-6deg);
}

.campaign-ticket span {
  margin-left: 5px;
  color: var(--wine);
}

.campaign-heart {
  width: 92px;
  height: 92px;
  display: grid;
  place-content: center;
  gap: 6px;
  position: absolute;
  left: 4%;
  bottom: 0;
  z-index: 5;
  border: 1px solid var(--wine);
  border-radius: 50%;
  background: var(--cream-light);
  color: var(--wine);
  text-align: center;
  box-shadow: 0 17px 35px rgba(80, 19, 26, 0.14);
  transform: rotate(-7deg);
}

.campaign-heart > span {
  font-size: 1rem;
  line-height: 1;
}

.campaign-heart small {
  font-size: 0.44rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* Manifesto gráfico do hero: campanha editorial criada somente com HTML e CSS. */
.hero-manifesto {
  overflow: visible;
  isolation: isolate;
}

.hero-manifesto::before {
  content: "";
  position: absolute;
  inset: 7% 1% 1% 5%;
  z-index: -2;
  border-radius: 54px 160px 48px 48px;
  background: linear-gradient(145deg, rgba(243, 181, 184, 0.9), rgba(205, 126, 133, 0.72));
  transform: rotate(-3deg);
  box-shadow: 0 30px 68px rgba(92, 7, 13, 0.15);
}

.hero-manifesto::after {
  content: "";
  width: 128px;
  height: 128px;
  position: absolute;
  right: -2%;
  top: -2%;
  z-index: -3;
  border-radius: 50%;
  background: repeating-linear-gradient(
    135deg,
    rgba(140, 7, 8, 0.17) 0 2px,
    transparent 2px 11px
  );
}

.manifesto-orbit {
  width: 82%;
  height: 72%;
  position: absolute;
  left: -4%;
  top: 13%;
  z-index: -3;
  border: 1px solid rgba(140, 7, 8, 0.2);
  border-radius: 50%;
  transform: rotate(-12deg);
  pointer-events: none;
}

.manifesto-panel {
  display: flex;
  flex-direction: column;
  position: absolute;
  inset: 2% 2% 5% 6%;
  z-index: 2;
  margin: 0;
  padding: clamp(46px, 4.6vw, 68px) clamp(34px, 4.1vw, 62px) clamp(30px, 3.2vw, 48px);
  overflow: hidden;
  border-radius: 48px 156px 42px 42px;
  background:
    radial-gradient(circle at 78% 18%, rgba(243, 181, 184, 0.32), transparent 25%),
    linear-gradient(145deg, #a1111b 0%, var(--wine) 48%, var(--wine-dark) 100%);
  color: white;
  box-shadow: 0 36px 82px rgba(66, 11, 15, 0.28);
}

.manifesto-panel::before {
  content: "GIO";
  position: absolute;
  right: -7%;
  bottom: 3%;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
  font-family: "Cambo", Georgia, serif;
  font-size: clamp(9rem, 13vw, 14rem);
  line-height: 0.72;
  letter-spacing: -0.09em;
  transform: rotate(-6deg);
  pointer-events: none;
}

.manifesto-panel::after {
  content: "♥";
  position: absolute;
  right: 8%;
  top: 24%;
  color: rgba(255, 255, 255, 0.055);
  font-family: Georgia, serif;
  font-size: clamp(9rem, 12vw, 13rem);
  line-height: 1;
  transform: rotate(10deg);
  pointer-events: none;
}

.manifesto-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.manifesto-topline p {
  margin: 0;
  color: white;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.manifesto-topline p span {
  margin-left: 6px;
  color: var(--rose);
}

.manifesto-topline b {
  color: rgba(255, 255, 255, 0.38);
  font-family: "Cambo", Georgia, serif;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 0.65;
}

.manifesto-panel h2 {
  position: relative;
  z-index: 2;
  margin: auto 0 16px;
  color: white;
  font-family: "Cambo", Georgia, serif;
  font-size: clamp(3.55rem, 4.7vw, 5.75rem);
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: -0.06em;
}

.manifesto-panel h2 em {
  color: var(--rose);
  font-weight: 400;
}

.manifesto-text {
  max-width: 390px;
  position: relative;
  z-index: 2;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Cambo", Georgia, serif;
  font-size: clamp(0.92rem, 1.1vw, 1.08rem);
  line-height: 1.45;
}

.manifesto-palette {
  display: flex;
  gap: 7px;
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
}

.manifesto-palette span {
  width: 27px;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
}

.manifesto-palette span:nth-child(1) { background: var(--rose); }
.manifesto-palette span:nth-child(2) { background: #fff8ef; }
.manifesto-palette span:nth-child(3) { background: #b77863; }
.manifesto-palette span:nth-child(4) { background: #4e2022; }

.manifesto-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 2;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.36);
}

.manifesto-footer span {
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.manifesto-footer i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream-light);
  color: var(--wine);
  font-size: 1rem;
  font-style: normal;
}

.manifesto-note {
  display: grid;
  gap: 3px;
  position: absolute;
  left: 0;
  top: 9%;
  z-index: 5;
  min-width: 205px;
  padding: 13px 17px;
  border: 1px solid var(--ink);
  background: var(--cream-light);
  color: var(--ink);
  box-shadow: 0 17px 36px rgba(80, 19, 26, 0.13);
  transform: rotate(-6deg);
}

.manifesto-note strong,
.manifesto-note span {
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.manifesto-note strong { color: var(--wine); }
.manifesto-note span { color: var(--ink); }

.manifesto-seal {
  width: 92px;
  height: 92px;
  display: grid;
  place-content: center;
  gap: 6px;
  position: absolute;
  left: 2%;
  bottom: 0;
  z-index: 5;
  border: 1px solid var(--wine);
  border-radius: 50%;
  background: var(--cream-light);
  color: var(--wine);
  text-align: center;
  box-shadow: 0 17px 35px rgba(80, 19, 26, 0.14);
  transform: rotate(-7deg);
}

.manifesto-seal > span {
  font-size: 1rem;
  line-height: 1;
}

.manifesto-seal small {
  font-size: 0.42rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.manifesto-ribbon {
  display: flex;
  align-items: center;
  gap: 28px;
  position: absolute;
  right: 0;
  bottom: 10%;
  z-index: 5;
  padding: 12px 15px;
  background: #e8e679;
  color: var(--ink);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 15px 32px rgba(80, 19, 26, 0.14);
  transform: rotate(-4deg);
}

.manifesto-ribbon span {
  font-size: 1rem;
  line-height: 0.7;
}

.hero-marquee {
  grid-column: 1 / -1;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 18px;
  margin: 0 calc(clamp(22px, 4vw, 72px) * -1);
  padding: 0 26px;
  overflow: hidden;
  background: var(--wine);
  color: white;
  white-space: nowrap;
  transform: rotate(-1deg) scale(1.02);
}

.hero-marquee span {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-marquee b {
  color: var(--rose);
}

.trust-strip {
  margin: 0;
  border: 0;
  border-bottom: 1px solid rgba(31, 17, 14, 0.14);
  border-radius: 0;
  box-shadow: none;
  transform: none;
  background: var(--cream-light);
}

.trust-strip article {
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px clamp(22px, 4vw, 64px);
  border-right: 1px solid rgba(31, 17, 14, 0.14);
  background: var(--cream-light);
}

.trust-strip article:last-child {
  border-right: 0;
}

.trust-strip strong {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-strip span {
  font-size: 0.78rem;
}

.section-intro {
  padding-top: clamp(76px, 8vw, 120px);
}

.section-intro h2 {
  color: var(--wine);
}

.product-card,
.look-cards article,
.about-card,
.faq-grid details {
  border-radius: 0;
}

/* Mantém a primeira dobra inteira em 100% de zoom em notebooks e monitores baixos. */
@media (min-width: 981px) and (max-height: 950px) {
  .topbar {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .site-header {
    min-height: 76px;
    padding-top: 7px;
    padding-bottom: 7px;
  }

  .brand-name {
    font-size: clamp(2rem, 2.6vw, 2.45rem);
  }

  .brand-subtitle {
    font-size: 0.72rem;
  }

  .hero-redesign {
    height: calc(100svh - 102px);
    min-height: 0;
    padding-top: 30px;
  }

  .hero-copy {
    padding-bottom: 26px;
  }

  .hero-eyebrow {
    margin-bottom: 13px;
  }

  .hero-redesign h1 {
    max-width: 620px;
    font-size: clamp(4rem, 4.7vw, 5.5rem);
    line-height: 0.77;
  }

  .hero-redesign .hero-text {
    max-width: 500px;
    margin-top: 18px;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .hero-redesign .hero-actions {
    margin-top: 18px;
  }

  .hero-redesign .primary-button,
  .hero-redesign .secondary-button {
    min-height: 48px;
    padding: 11px 22px;
    font-size: 0.7rem;
  }

  .hero-redesign .primary-button {
    min-width: 270px;
    min-height: 58px;
    padding: 15px 28px;
    font-size: 0.78rem;
  }

  .hero-signature {
    margin-top: 16px;
  }

  .hero-signature > span {
    width: 34px;
    height: 34px;
  }

  .hero-signature p {
    font-size: 0.75rem;
  }

  .hero-gallery {
    height: min(535px, calc(100svh - 185px));
    min-height: 430px;
  }

  .gallery-heart {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .gallery-caption {
    padding: 8px 12px;
    font-size: 0.54rem;
  }

  .editorial-seal {
    width: 88px;
    height: 88px;
  }

  .editorial-card {
    padding-top: 56px;
    padding-bottom: 28px;
  }

  .editorial-card h2 {
    font-size: clamp(3.25rem, 4vw, 4.7rem);
  }

  .campaign-heart {
    width: 80px;
    height: 80px;
  }

  .manifesto-panel {
    padding-top: 48px;
    padding-bottom: 30px;
  }

  .manifesto-panel h2 {
    font-size: clamp(3.3rem, 4.2vw, 4.8rem);
  }

  .manifesto-seal {
    width: 80px;
    height: 80px;
  }

  .hero-marquee {
    height: 42px;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero-redesign {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding: 58px 22px 0;
    background: linear-gradient(180deg, #fffaf5 0 52%, #f1e8de 52% 100%);
  }

  .hero-redesign h1 {
    font-size: clamp(4.4rem, 13vw, 7rem);
  }

  .hero-copy {
    padding-bottom: 40px;
  }

  .hero-gallery {
    width: min(680px, 100%);
    height: 590px;
    margin: 0 auto;
  }

  .hero-marquee {
    grid-column: 1;
  }
}

@media (max-width: 620px) {
  .topbar p::before,
  .topbar p::after {
    display: none;
  }

  .site-header {
    min-height: 76px;
  }

  .hero-redesign {
    padding-top: 46px;
  }

  .hero-redesign .primary-button {
    width: min(100%, 310px);
    min-width: 0;
    min-height: 58px;
  }

  .hero-redesign h1 {
    font-size: clamp(4rem, 18vw, 5.4rem);
  }

  .hero-gallery {
    height: 470px;
    min-height: 0;
  }

  .gallery-main {
    width: 56%;
    left: 22%;
  }

  .gallery-left,
  .gallery-right {
    width: 38%;
    height: 57%;
  }

  .gallery-heart {
    left: 5%;
    top: 17%;
  }

  .hero-editorial::before {
    width: 70%;
    left: 15%;
  }

  .editorial-card {
    width: 70%;
    height: 82%;
    left: 15%;
    padding: 54px 24px 25px;
  }

  .editorial-card h2 {
    font-size: clamp(3rem, 12.8vw, 4.2rem);
  }

  .editorial-seal {
    width: 78px;
    height: 78px;
    left: 0;
    top: 12%;
  }

  .editorial-seal small {
    font-size: 0.4rem;
  }

  .editorial-tag {
    right: 0;
    top: 21%;
    padding: 10px 12px;
  }

  .editorial-sticker {
    bottom: 8%;
    gap: 13px;
  }

  .hero-campaign::before {
    inset: 6% 1% 1% 3%;
  }

  .hero-campaign-frame {
    inset: 1% 1% 4%;
    border-radius: 25px 25px 18px 18px;
  }

  .hero-campaign-frame img {
    object-position: center;
  }

  .campaign-ticket {
    left: 1%;
    top: 5%;
    padding: 9px 11px;
    font-size: 0.49rem;
  }

  .campaign-heart {
    width: 72px;
    height: 72px;
    left: 3%;
    bottom: 1%;
  }

  .campaign-heart small {
    font-size: 0.38rem;
  }

  .hero-manifesto::before {
    inset: 6% 1% 2% 4%;
    border-radius: 38px 108px 34px 34px;
  }

  .manifesto-panel {
    inset: 2% 2% 6% 5%;
    padding: 45px 30px 28px;
    border-radius: 34px 108px 30px 30px;
  }

  .manifesto-panel h2 {
    font-size: clamp(3.1rem, 13.6vw, 4.2rem);
  }

  .manifesto-text {
    max-width: 280px;
    font-size: 0.9rem;
  }

  .manifesto-note {
    left: 0;
    top: 6%;
    min-width: 160px;
    padding: 10px 12px;
  }

  .manifesto-note strong,
  .manifesto-note span {
    font-size: 0.48rem;
  }

  .manifesto-seal {
    width: 70px;
    height: 70px;
    left: 1%;
    bottom: 1%;
  }

  .manifesto-seal small {
    font-size: 0.34rem;
  }

  .manifesto-ribbon {
    right: 0;
    bottom: 8%;
    gap: 15px;
    padding: 9px 11px;
    font-size: 0.48rem;
  }

  .hero-marquee {
    justify-content: flex-start;
  }

  .hero-marquee span:nth-of-type(n + 3),
  .hero-marquee b:nth-of-type(n + 3) {
    display: none;
  }

  .trust-strip {
    margin-top: 0;
  }

  .trust-strip article {
    min-height: 95px;
    border-right: 0;
    border-bottom: 1px solid rgba(31, 17, 14, 0.14);
  }
}

/* Ajuste responsivo final — encaixe completo em tablets e celulares */
@media (max-width: 980px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
  }

  main,
  .hero-redesign,
  .brand-story-section,
  .faq-section,
  .site-footer {
    min-width: 0;
  }

  .site-header {
    padding-left: 20px;
    padding-right: 20px;
  }

  .main-nav {
    max-height: calc(100dvh - 110px);
    overflow-y: auto;
  }

  .hero-redesign {
    min-height: auto;
    gap: 0;
    padding: 52px 20px 0;
  }

  .hero-copy {
    width: min(100%, 720px);
    margin: 0 auto;
  }

  .hero-redesign h1 {
    max-width: 100%;
    font-size: clamp(4rem, 13vw, 6.5rem);
  }

  .hero-gallery {
    width: min(100%, 680px);
    height: clamp(480px, 72vw, 590px);
  }

  .hero-marquee {
    margin-left: -20px;
    margin-right: -20px;
    transform: none;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip article:last-child {
    border-bottom: 0;
  }

  .section-intro,
  .faq-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .shop-toolbar,
  .product-grid {
    padding-left: 20px;
    padding-right: 20px;
  }

  .product-grid {
    gap: 18px;
  }

  .product-card,
  .product-content,
  .product-options,
  .product-options label {
    min-width: 0;
  }

  .brand-story-section {
    gap: 50px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .story-intro,
  .story-journey {
    width: 100%;
    min-width: 0;
  }

  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .topbar {
    padding: 7px 12px;
    font-size: 0.52rem;
    line-height: 1.45;
    letter-spacing: 0.1em;
  }

  .site-header {
    min-height: 70px;
    gap: 12px;
    padding: 9px 15px;
  }

  .brand-name {
    font-size: 2rem;
  }

  .brand-small,
  .brand-kiss {
    font-size: 0.82rem;
  }

  .brand-subtitle {
    margin-top: 3px;
    font-size: 0.68rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 50%;
  }

  .main-nav {
    top: calc(100% + 1px);
    right: 12px;
    left: 12px;
    padding: 9px;
    border: 1px solid rgba(143, 16, 23, 0.12);
    border-radius: 18px;
  }

  .main-nav a,
  .main-nav .cart-button {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 13px 14px;
  }

  .main-nav .cart-button {
    justify-content: space-between;
    border-radius: 13px;
  }

  .hero-redesign {
    padding: 38px 16px 0;
    background: linear-gradient(180deg, #fffaf5 0 48%, #f1e8de 48% 100%);
  }

  .hero-redesign::before {
    bottom: 38px;
    font-size: 42vw;
  }

  .hero-copy {
    padding-bottom: 34px;
  }

  .hero-eyebrow {
    margin-bottom: 17px;
    font-size: 0.56rem;
    line-height: 1.5;
  }

  .hero-redesign h1 {
    font-size: clamp(3.15rem, 15.8vw, 4.45rem);
    line-height: 0.82;
    letter-spacing: -0.055em;
  }

  .hero-redesign h1 mark::after {
    height: 8px;
  }

  .hero-redesign .hero-text {
    margin-top: 20px;
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .hero-redesign .hero-actions {
    margin-top: 20px;
  }

  .hero-redesign .primary-button {
    width: 100%;
    min-height: 55px;
    padding: 15px 20px;
    font-size: 0.72rem;
  }

  .hero-signature {
    align-items: flex-start;
    margin-top: 20px;
  }

  .hero-signature > span {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }

  .hero-signature p {
    font-size: 0.76rem;
  }

  .hero-gallery {
    width: 100%;
    height: 430px;
    margin: 0 auto;
  }

  .hero-manifesto::before {
    inset: 7% 0 2% 3%;
    border-radius: 30px 94px 28px 28px;
  }

  .hero-manifesto::after {
    width: 82px;
    height: 82px;
    right: -6%;
    top: 0;
  }

  .manifesto-orbit {
    width: 94%;
    left: -12%;
  }

  .manifesto-panel {
    inset: 2% 1% 6% 4%;
    padding: 42px 24px 24px;
    border-radius: 28px 94px 25px 25px;
  }

  .manifesto-topline {
    gap: 12px;
  }

  .manifesto-topline p {
    font-size: 0.49rem;
    line-height: 1.5;
  }

  .manifesto-topline b {
    font-size: 2.45rem;
  }

  .manifesto-panel h2 {
    margin-bottom: 12px;
    font-size: clamp(2.7rem, 13vw, 3.5rem);
    line-height: 0.82;
  }

  .manifesto-text {
    max-width: 250px;
    margin-bottom: 15px;
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .manifesto-palette {
    margin-bottom: 15px;
  }

  .manifesto-palette span {
    width: 22px;
    height: 7px;
  }

  .manifesto-footer {
    padding-top: 14px;
  }

  .manifesto-footer i {
    width: 34px;
    height: 34px;
  }

  .manifesto-note {
    left: 0;
    top: 5%;
    min-width: 145px;
    padding: 9px 11px;
  }

  .manifesto-note strong,
  .manifesto-note span {
    font-size: 0.43rem;
  }

  .manifesto-seal {
    width: 64px;
    height: 64px;
    left: 1%;
    bottom: 1%;
  }

  .manifesto-ribbon {
    right: 0;
    bottom: 8%;
    gap: 12px;
    padding: 9px 10px;
    font-size: 0.43rem;
  }

  .hero-marquee {
    width: auto;
    height: 42px;
    justify-content: space-evenly;
    gap: 12px;
    margin-right: -16px;
    margin-left: -16px;
    padding: 0 14px;
  }

  .hero-marquee span {
    font-size: 0.52rem;
    letter-spacing: 0.14em;
  }

  .trust-strip {
    margin: 0;
  }

  .trust-strip article {
    min-height: 0;
    padding: 22px 16px;
  }

  .trust-strip strong {
    font-size: 0.68rem;
  }

  .trust-strip span {
    font-size: 0.76rem;
  }

  .section-intro {
    padding: 64px 16px 18px;
  }

  .section-intro h2,
  .faq-section h2 {
    font-size: clamp(2.75rem, 13vw, 3.65rem);
    line-height: 0.94;
  }

  .section-intro p:not(.eyebrow),
  .faq-section > p:not(.eyebrow) {
    margin-top: 17px;
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .shop-toolbar {
    gap: 15px;
    padding: 18px 16px 12px;
  }

  .filters {
    width: calc(100vw - 32px);
    flex-wrap: nowrap;
    gap: 8px;
    padding-bottom: 5px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .filters::-webkit-scrollbar {
    display: none;
  }

  .filter-button {
    flex: 0 0 auto;
    padding: 10px 13px;
    font-size: 0.65rem;
  }

  .search-box {
    min-width: 0;
    padding: 10px 12px;
    border-radius: 16px;
  }

  .search-box span {
    font-size: 0.65rem;
  }

  .search-box input {
    min-width: 0;
    font-size: 0.85rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 12px 14px 64px;
  }

  .product-card {
    border-radius: 22px;
  }

  .product-image {
    min-height: 0;
    aspect-ratio: 3 / 4;
  }

  .product-image img {
    height: 100%;
    min-height: 0;
  }

  .badge {
    top: 12px;
    left: 12px;
    padding: 7px 10px;
    font-size: 0.61rem;
  }

  .product-content {
    padding: 18px 16px 17px;
  }

  .product-content h3 {
    font-size: 1.7rem;
    line-height: 1.05;
  }

  .product-description {
    min-height: 0;
    margin: 9px 0 13px;
    font-size: 0.84rem;
  }

  .product-price {
    margin-bottom: 15px;
  }

  .product-options {
    gap: 8px;
  }

  .product-options label {
    font-size: 0.64rem;
  }

  .product-options select {
    min-width: 0;
    padding: 11px 8px;
    font-size: 0.78rem;
  }

  .add-button {
    min-height: 48px;
  }

  .brand-story-section {
    gap: 38px;
    padding: 62px 16px 84px;
  }

  .brand-story-section::before {
    left: -5vw;
    font-size: 31vw;
  }

  .brand-story-section::after {
    width: 112px;
    height: 112px;
    right: -38px;
    top: -28px;
  }

  .story-intro h2 {
    max-width: 100%;
    font-size: clamp(3rem, 14.5vw, 4.1rem);
    line-height: 0.9;
  }

  .story-lead {
    margin-top: 21px;
    font-size: 0.88rem;
    line-height: 1.7;
  }

  .story-signature {
    gap: 11px;
    margin-top: 24px;
    padding-top: 15px;
  }

  .story-signature span {
    font-size: 0.56rem;
    line-height: 1.55;
  }

  .story-signature strong {
    font-size: 1.08rem;
  }

  .story-journey {
    gap: 13px;
  }

  .story-card,
  .story-card-two,
  .story-card-three {
    min-height: 208px;
    padding: 22px 19px 20px;
    border-radius: 62px 20px 20px 20px;
  }

  .story-number {
    width: 34px;
    height: 34px;
  }

  .story-card h3 {
    font-size: clamp(1.85rem, 9vw, 2.25rem);
  }

  .story-card p {
    margin-top: 11px;
    font-size: 0.72rem;
    line-height: 1.55;
  }

  .story-seal {
    width: 78px;
    height: 78px;
    right: 0;
    bottom: -47px;
  }

  .faq-section {
    padding: 64px 16px 62px;
  }

  .faq-grid {
    gap: 10px;
    margin-top: 25px;
  }

  .faq-grid details {
    padding: 18px 16px;
    border-radius: 18px;
  }

  summary {
    padding-right: 8px;
    font-size: 0.88rem;
    line-height: 1.45;
  }

  details p {
    margin-bottom: 0;
    font-size: 0.82rem;
    line-height: 1.65;
  }

  .site-footer {
    align-items: center;
    gap: 20px;
    padding: 34px 16px calc(92px + env(safe-area-inset-bottom));
    text-align: center;
  }

  .site-footer .brand {
    align-self: center;
  }

  .site-footer p {
    font-size: 0.76rem;
    line-height: 1.55;
    text-align: center;
  }

  .footer-instagram {
    margin-top: 0;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    min-height: 46px;
    padding: 0 15px;
    font-size: 0.78rem;
  }

  .cart-drawer {
    align-items: stretch;
  }

  .cart-panel {
    width: 100%;
    max-width: none;
    height: 100dvh;
    border-radius: 0;
  }

  .cart-header,
  .cart-footer {
    padding-right: 15px;
    padding-left: 15px;
  }

  .cart-header {
    padding-top: 16px;
    padding-bottom: 14px;
  }

  .cart-header h2 {
    font-size: 2.35rem;
  }

  .close-cart {
    width: 40px;
    height: 40px;
  }

  .cart-items {
    padding: 12px;
  }

  .cart-item {
    grid-template-columns: 62px minmax(0, 1fr) 34px;
    gap: 10px;
    padding: 11px;
    border-radius: 15px;
  }

  .cart-item img {
    width: 62px;
    height: 78px;
    border-radius: 11px;
  }

  .cart-item h3 {
    font-size: 0.86rem;
    line-height: 1.25;
  }

  .cart-item p {
    font-size: 0.72rem;
  }

  .checkout-summary {
    padding: 12px;
    margin-bottom: 16px;
  }

  .checkout-summary > div {
    gap: 10px;
    font-size: 0.75rem;
  }

  .checkout-summary > div strong {
    font-size: 0.8rem;
  }

  .checkout-fields,
  .address-fields {
    grid-template-columns: 1fr;
  }

  .checkout-fields label.wide {
    grid-column: auto;
  }

  .checkout-fields input {
    min-height: 46px;
    font-size: 0.84rem;
  }

  .shipping-button {
    width: 100%;
    min-height: 46px;
  }

  .shipping-option {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .shipping-option b {
    grid-column: 2;
  }

  .payment-button {
    min-height: 54px;
    padding: 0 16px;
    font-size: 0.7rem;
  }

  .secure-checkout-note {
    padding-bottom: env(safe-area-inset-bottom);
  }

  .toast {
    width: calc(100% - 28px);
    bottom: calc(70px + env(safe-area-inset-bottom));
    border-radius: 16px;
    text-align: center;
  }

  .payment-status-shell {
    width: min(100% - 24px, 760px);
    gap: 20px;
    padding: 24px 0;
  }

  .payment-status-card {
    padding: 34px 18px;
    border-radius: 24px;
  }

  .payment-status-card h1 {
    font-size: clamp(2.5rem, 13vw, 3.6rem);
  }
}

@media (max-width: 380px) {
  .hero-redesign h1 {
    font-size: clamp(2.9rem, 15.3vw, 3.65rem);
  }

  .hero-gallery {
    height: 405px;
  }

  .manifesto-panel {
    padding-right: 20px;
    padding-left: 20px;
  }

  .manifesto-topline b {
    display: none;
  }

  .manifesto-panel h2 {
    font-size: clamp(2.5rem, 12.6vw, 3rem);
  }

  .manifesto-footer span {
    font-size: 0.48rem;
    letter-spacing: 0.12em;
  }

  .product-options {
    grid-template-columns: 1fr;
  }

  .story-intro h2 {
    font-size: clamp(2.75rem, 13.8vw, 3.35rem);
  }

  .story-signature strong {
    white-space: normal;
  }
}
