@font-face {
  font-family: "Cute Font";
  src: url("../fonts/CuteFont-Regular.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Very Popular";
  src: url("../fonts/VeryPopular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Bebas Neue";
  src: url("../fonts/BebasNeue-Regular.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Author Bold";
  src: url("../fonts/Author-Bold.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Fredoka One";
  src: url("../fonts/FredokaOne-Regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Luckiest Guy";
  src: url("../fonts/LuckiestGuy.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Starborn";
  src: url("../fonts/starborn.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "DK Longreach";
  src: url("../fonts/DK-Longreach.otf") format("opentype");
  font-display: swap;
}

:root {
  --pink-candy: #ffd1dc;
  --sky: #aec6cf;
  --mint: #aaf0d1;
  --lavender: #e6e6fa;
  --lemon: #fffacd;
  --ink: #4a4a57;
  --ink-soft: rgba(74, 74, 87, 0.76);
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.75);
  --shadow-soft: 0 14px 30px rgba(122, 136, 161, 0.22);
  --shadow-card: 0 10px 0 rgba(122, 136, 161, 0.26);
  --radius-xl: 30px;
  --radius-round: 999px;
  --font-title: "DK Longreach", "Starborn", "Luckiest Guy", "Fredoka One", "Very Popular", "Cute Font", "Trebuchet MS", sans-serif;
  --font-product: "Author Bold", "Arial Narrow", "Trebuchet MS", sans-serif;
  --font-body: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 10% -5%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 24%),
    radial-gradient(circle at 88% 6%, rgba(170, 240, 209, 0.55), rgba(170, 240, 209, 0) 26%),
    linear-gradient(165deg, var(--pink-candy) 0%, #fdd8e7 37%, #cde6f6 73%, var(--sky) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.55) 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 34px 34px, 52px 52px;
  background-position: 0 0, 8px 13px;
  opacity: 0.45;
  pointer-events: none;
  z-index: -3;
}

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

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

.container {
  width: min(calc(100% - 2rem), 1140px);
  margin: 0 auto;
}

.section {
  padding: 4.8rem 0;
}

.sky-decor,
.emoji-rain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.sky-decor span {
  position: absolute;
  line-height: 1;
  user-select: none;
}

.decor-cloud {
  filter: drop-shadow(0 7px 8px rgba(255, 255, 255, 0.5));
  animation: cloudFloat 14s ease-in-out infinite;
}

.cloud-a {
  top: 9%;
  left: 5%;
  font-size: 2.1rem;
}

.cloud-b {
  top: 20%;
  right: 7%;
  font-size: 1.8rem;
  animation-delay: -4s;
}

.cloud-c {
  top: 56%;
  left: 8%;
  font-size: 1.4rem;
  animation-delay: -7s;
}

.decor-star,
.decor-heart {
  animation: drift 9s ease-in-out infinite;
}

.star-a {
  top: 17%;
  left: 19%;
  font-size: 1.2rem;
}

.star-b {
  top: 44%;
  right: 14%;
  font-size: 1.1rem;
  animation-delay: -5s;
}

.heart-a {
  top: 30%;
  right: 22%;
  font-size: 1.25rem;
}

.heart-b {
  top: 66%;
  right: 5%;
  font-size: 1.2rem;
  animation-delay: -3.5s;
}

.emoji-drop {
  position: absolute;
  top: -12vh;
  animation-name: emojiRain;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.45));
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 1rem 0 0.5rem;
}

body.admin-bar .topbar {
  top: 32px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 24px;
  border: 2px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.65rem;
  padding: 0.42rem 1.05rem;
  border-radius: var(--radius-round);
  background: linear-gradient(135deg, var(--pink-candy), var(--lavender));
  border: 2px solid rgba(255, 255, 255, 0.95);
  color: #644f6a;
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0;
  box-shadow: var(--shadow-card);
  white-space: nowrap;
}

.brand-logo {
  width: 1.6rem;
  height: 1.6rem;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-chip-text {
  line-height: 1;
  font-size: 1.35rem;
  white-space: nowrap;
}

.brand-note {
  color: var(--ink-soft);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.topnav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.topnav-mobile {
  display: none;
}

.topnav-cart-link,
.topnav-account-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.05rem;
  min-height: 2.05rem;
  text-align: center;
}

.topnav-icon {
  font-size: 1.02rem;
  line-height: 1;
}

.topnav-cart-count {
  position: absolute;
  top: -0.32rem;
  right: -0.32rem;
  min-width: 1.05rem;
  height: 1.05rem;
  padding: 0 0.22rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f8bfd4;
  border: 2px solid rgba(255, 255, 255, 0.95);
  color: #664f6e;
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 4px 10px rgba(122, 136, 161, 0.2);
}

.topnav a:not(.button) {
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-round);
  background: rgba(255, 255, 255, 0.46);
  color: var(--ink);
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.7rem 1.35rem;
  border-radius: var(--radius-round);
  border: 2px solid rgba(255, 255, 255, 0.9);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  filter: saturate(1.15) brightness(1.03);
}

.button-primary {
  background: linear-gradient(135deg, #ffc2d3, #f7d7ff);
  color: #664f6e;
  box-shadow: var(--shadow-card);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 112vh;
  padding: clamp(5rem, 8vh, 6.4rem) 0 5.2rem;
}

.hero .container {
  width: min(calc(100% - 3rem), 1520px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 10% 8% 0;
  border-radius: 48px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.88), transparent 33%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.2));
  z-index: -1;
  filter: blur(0.4px);
}

.hero-mosaic,
.hanger {
  display: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  width: 100%;
  min-height: calc(100vh - 3rem);
  align-items: center;
  justify-items: center;
}

.hero-copy {
  display: none;
}

.kicker,
.label,
.kicker-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.28rem 0.75rem;
  border-radius: var(--radius-round);
  border: 2px solid rgba(255, 255, 255, 0.95);
  background: linear-gradient(125deg, var(--lemon), var(--pink-candy));
  color: #6a5a6c;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-copy h1,
.section-heading h2,
.details-copy h2,
.video-copy h3,
.cta-box h2,
.product-copy h3 {
  margin: 0;
  font-family: var(--font-title);
  letter-spacing: 0.01em;
}

.hero-copy h1 {
  margin-top: 0.7rem;
  font-size: clamp(2.3rem, 6vw, 4.8rem);
  line-height: 0.92;
  color: #705f7b;
  text-shadow: 0 3px 0 rgba(255, 255, 255, 0.8);
}

.hero-subtitle,
.hero-text,
.section-heading,
.details-copy p,
.video-copy p,
.cta-box p {
  color: var(--ink-soft);
}

.hero-subtitle {
  margin: 1rem 0 0;
  max-width: 33rem;
  font-size: 1.15rem;
  line-height: 1.5;
}

.hero-text {
  margin: 0.9rem 0 0;
  max-width: 33rem;
  line-height: 1.55;
}

.accent-pink {
  color: #de8ca3;
  font-weight: 700;
}

.accent-slime {
  color: #5fb998;
  font-weight: 700;
}

.hero-visual-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.hero-tags span {
  padding: 0.38rem 0.74rem;
  border-radius: var(--radius-round);
  border: 2px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.54);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  top: auto;
  transform: none;
  width: 100%;
  max-width: 100%;
  min-height: clamp(22rem, 58vh, 36rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-product {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
  width: min(100%, 920px);
  height: clamp(20rem, 60vh, 34rem);
  overflow: visible;
}

.hero-product::before {
  content: "";
  position: absolute;
  inset: 7% 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.14) 68%, transparent 84%);
  filter: blur(8px);
  z-index: 0;
}

.hero-product img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  border: 3px solid rgba(255, 255, 255, 0.93);
  box-shadow: 0 18px 36px rgba(142, 159, 186, 0.35);
  animation: none;
  transform: none;
}

.hero-product::after {
  content: "concha arte";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  padding: 0.75rem 2.1rem;
  border-radius: var(--radius-round);
  border: 2px solid rgba(255, 255, 255, 0.96);
  background: rgba(230, 230, 250, 0.62);
  backdrop-filter: blur(10px);
  color: #675c7a;
  font-family: var(--font-title);
  font-size: clamp(2.9rem, 8.4vw, 6.4rem);
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1;
  text-transform: lowercase;
  box-shadow: var(--shadow-card);
  pointer-events: none;
}

.hero-badge {
  display: none;
}

.hero-title-overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  padding: 0.75rem 2.1rem;
  border-radius: var(--radius-round);
  border: 2px solid rgba(255, 255, 255, 0.96);
  background: rgba(230, 230, 250, 0.62);
  backdrop-filter: blur(10px);
  color: #675c7a;
  font-family: var(--font-title);
  font-size: clamp(2.9rem, 8.4vw, 6.4rem);
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1;
  text-transform: lowercase;
  box-shadow: var(--shadow-card);
}

.hero-sticker {
  position: absolute;
  z-index: 3;
  border-radius: 18px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
  padding: 0.5rem 0.8rem;
  background: linear-gradient(125deg, var(--mint), var(--lemon));
  color: #526161;
  font-family: var(--font-body);
  font-weight: 700;
}

.hero-sticker-top {
  top: 7%;
  left: 3%;
  transform: rotate(-7deg);
}

.hero-sticker-side {
  right: 2%;
  top: 57%;
  transform: rotate(8deg);
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 1.8rem;
}

#productos .section-heading {
  max-width: none;
  margin-bottom: 1.2rem;
  text-align: center;
}

.kicker-collection {
  min-height: 2.9rem;
  padding: 0.52rem 1.5rem;
  font-size: clamp(1.12rem, 2.2vw, 1.58rem);
  letter-spacing: 0.02em;
}

.section-heading h2,
.details-copy h2,
.video-copy h3,
.cta-box h2 {
  color: #6d6079;
  font-size: clamp(2rem, 5vw, 3.9rem);
  line-height: 0.94;
}

.showcase,
.details,
.videos,
.cta-final {
  position: relative;
  z-index: 1;
}

.broken-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.product-block {
  display: flex;
  flex-direction: column;
  border-radius: 26px;
  border: 2px solid rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.product-block.aqua {
  background: #d9eef3;
}

.product-block.red {
  background: #ffd7e1;
}

.product-block.blue {
  background: #dbe0fa;
}

.product-block.pink {
  background: #ffe3ef;
}

.product-block.slime {
  background: #ddf6ed;
}

.product-block.purple {
  background: #e8e2f8;
}

.product-block-large {
  grid-column: auto;
  transform: none;
}

.product-block-small {
  grid-column: auto;
  transform: none;
}

.product-block-tall {
  grid-column: auto;
  transform: none;
}

.product-block-wide {
  grid-column: auto;
  transform: none;
}

.product-block.purple {
  grid-column: auto;
  transform: none;
}

.product-media {
  position: relative;
  padding: 0.9rem;
}

.product-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.9);
}

.product-media.has-hover-image > img:not(.astra-concha-alt-image) {
  transition: opacity 240ms ease;
}

.product-media.has-hover-image .astra-concha-alt-image {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  width: calc(100% - 1.8rem);
  height: calc(100% - 1.8rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.product-block:hover .product-media.has-hover-image > img:not(.astra-concha-alt-image) {
  opacity: 0;
}

.product-block:hover .product-media.has-hover-image .astra-concha-alt-image {
  opacity: 1;
}

.product-copy {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 0.95rem 0.95rem;
  height: 100%;
}

#productos .product-copy h3 {
  display: block;
  margin-top: 0.2rem;
  color: #655f74;
  font-family: var(--font-title);
  font-size: clamp(1.02rem, 2.1vw, 1.25rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

#productos .product-copy .label {
  display: none;
}

.label {
  background: linear-gradient(130deg, var(--lavender), var(--lemon));
  color: #676277;
}

.product-copy h3 {
  margin-top: 0.2rem;
  color: #655f74;
  font-size: clamp(1.45rem, 2.7vw, 2.2rem);
  line-height: 0.98;
}

.product-price {
  position: absolute;
  right: 1.35rem;
  bottom: 1.35rem;
  z-index: 4;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 2rem;
  padding: 0.24rem 0.72rem;
  border-radius: var(--radius-round);
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.95);
  color: #61586f;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(93, 96, 122, 0.2);
}

.product-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  margin-top: auto;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-round);
  border: 2px solid rgba(255, 255, 255, 0.95);
  background: linear-gradient(125deg, var(--pink-candy), var(--lemon));
  color: #735f79;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: lowercase;
  box-shadow: 0 7px 0 rgba(122, 136, 161, 0.2);
}

.details-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1rem;
  align-items: start;
}

.details-copy p {
  line-height: 1.55;
}

.stickers-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.sticker-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  padding: 0.48rem 0.9rem;
  border-radius: var(--radius-round);
  border: 2px solid rgba(255, 255, 255, 0.95);
  color: #635d72;
  box-shadow: 0 6px 0 rgba(122, 136, 161, 0.17);
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 700;
}

.sticker-card:nth-child(1) {
  background: var(--pink-candy);
}

.sticker-card:nth-child(2) {
  background: var(--sky);
}

.sticker-card:nth-child(3) {
  background: var(--mint);
}

.sticker-card:nth-child(4) {
  background: var(--lavender);
}

.sticker-card:nth-child(5) {
  background: var(--lemon);
}

.sticker-card:nth-child(6) {
  background: #ffdce9;
}

.video-stack {
  display: grid;
  gap: 1.1rem;
}

.video-row {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1rem;
  align-items: center;
}

.video-row-reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.video-row-reverse .video-copy {
  order: 2;
}

.video-row-reverse .video-card {
  order: 1;
}

.video-copy {
  padding: 0.4rem 0.2rem;
}

.video-copy h3 {
  font-size: clamp(1.65rem, 4vw, 2.7rem);
}

.video-copy p:last-child {
  margin-top: 0.7rem;
  line-height: 1.55;
}

.video-row-reverse .video-copy {
  position: relative;
  padding: clamp(1rem, 2.5vw, 1.45rem);
  border-radius: 32px 44px 30px 48px;
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.34), transparent 32%),
    linear-gradient(135deg, rgba(93, 88, 111, 0.18), rgba(94, 116, 130, 0.25));
  color: #4c4c5b;
  box-shadow: 0 12px 30px rgba(82, 92, 112, 0.14);
}

.video-row-reverse .video-copy h3 {
  color: #5f526c;
  margin-bottom: 0.72rem;
}

.video-row-reverse .video-copy .label {
  display: none;
}

.video-row-reverse .video-copy p {
  margin: 0.28rem 0 0;
  color: #4d5360;
  line-height: 1.38;
}

.video-row-reverse .video-copy p:last-child {
  margin-top: 0.28rem;
}

.video-card {
  border-radius: 24px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-card);
}

.video-card.aqua-card {
  background: #d5eff6;
}

.video-card.pink-card {
  background: #ffe3ee;
}

.video-frame {
  padding: 0.8rem;
}

.video-frame video {
  width: 100%;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.95);
}

.video-frame img,
.video-frame .about-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.95);
}

.cta-box {
  position: relative;
  overflow: hidden;
  padding: clamp(1.8rem, 4vw, 3rem);
  border-radius: 32px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.8), transparent 30%),
    linear-gradient(140deg, #ffdce8 0%, #efe3ff 48%, #dceaf7 100%);
  box-shadow: var(--shadow-soft);
}

.kicker-dark {
  background: linear-gradient(130deg, #f6e5ff, #e7f6ff);
  color: #665e77;
}

.cta-box h2 {
  font-size: clamp(3rem, 9vw, 6rem);
}

.cta-box p {
  max-width: 42rem;
  line-height: 1.55;
}

.button-final {
  background: linear-gradient(130deg, #ffe0ec, #fff8d4);
  color: #6c617d;
  box-shadow: 0 8px 0 rgba(122, 136, 161, 0.2);
}

.button-final-ghost {
  background: rgba(255, 255, 255, 0.6);
  color: #61597a;
}

@keyframes cloudFloat {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-8px) translateX(8px);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(8deg);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0) rotate(-10deg);
  }

  50% {
    transform: translateY(-10px) rotate(-7.5deg);
  }
}

@keyframes emojiRain {
  0% {
    transform: translate3d(0, -15vh, 0) rotate(0deg);
  }

  100% {
    transform: translate3d(-18px, 120vh, 0) rotate(20deg);
  }
}

@media (max-width: 1040px) {
  .hero-layout,
  .details-layout,
  .video-row,
  .video-row-reverse {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 100vh;
  }

  .hero-layout {
    min-height: calc(100vh - 2rem);
  }

  .hero-visual {
    min-height: clamp(20rem, 56vh, 30rem);
  }

  .hero-product {
    margin-top: 0;
    height: clamp(19rem, 54vh, 28rem);
  }

  .video-row-reverse .video-copy,
  .video-row-reverse .video-card {
    order: initial;
  }

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

@media (max-width: 780px) {
  .container {
    width: min(calc(100% - 1.1rem), 1140px);
  }

  .topbar {
    position: static;
  }

  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }

  .brand-logo {
    width: 1.3rem;
    height: 1.3rem;
  }

  .topnav {
    width: 100%;
  }

  .topnav-desktop {
    display: none;
  }

  .topnav-mobile {
    display: block;
    width: 100%;
  }

  .topnav-mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.2rem;
    padding: 0.35rem 0.8rem;
    border-radius: var(--radius-round);
    border: 2px solid rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.56);
    color: var(--ink);
    font-weight: 700;
    cursor: pointer;
    user-select: none;
  }

  .topnav-mobile-toggle::-webkit-details-marker {
    display: none;
  }

  .topnav-mobile-list {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-top: 0.5rem;
  }

  .topnav-mobile-list a:not(.button) {
    padding: 0.22rem 0;
    background: transparent;
    border-radius: 0;
  }

  .topnav-mobile-list .topnav-cart-link {
    width: fit-content;
    padding: 0.15rem 0.22rem !important;
  }

  .button,
  .button-small,
  .hero-visual-actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding-top: 2.4rem;
  }

  .hero .container {
    width: min(calc(100% - 1rem), 100%);
  }

  .hero-layout {
    min-height: initial;
  }

  .hero::before {
    inset: 7% 2% 0;
  }

  .hero-visual {
    position: relative;
    top: auto;
    transform: none;
    margin-top: 0.6rem;
    min-height: 18rem;
  }

  .hero-product {
    margin-top: 0.4rem;
    height: clamp(15rem, 64vw, 22rem);
  }

  .hero-sticker-side {
    right: 4%;
  }

  .broken-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
  }

  .product-copy {
    padding: 0 0.75rem 0.8rem;
  }

  .product-copy h3 {
    font-size: clamp(1.05rem, 4vw, 1.3rem);
    line-height: 1;
  }

  .product-price {
    right: 1rem;
    bottom: 1rem;
    min-height: 1.9rem;
    padding: 0.2rem 0.6rem;
    font-size: 0.84rem;
  }

  .product-cta {
    min-height: 2.2rem;
    padding: 0.4rem 0.75rem;
    font-size: 0.86rem;
  }

  .emoji-drop {
    opacity: 0.45 !important;
  }
}

@media (max-width: 782px) {
  body.admin-bar .topbar {
    top: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}


/* --------------------------------------------------------
   WordPress + WooCommerce adaptation for Astra child theme
--------------------------------------------------------- */

body.home .site-header,
body.home .site-footer,
body.home .ast-breadcrumbs,
body.home .entry-header {
  display: none;
}

body.home .site-content,
body.home #content,
body.home #primary {
  margin: 0;
  padding: 0;
}

body.home .ast-container,
body.home .site-content .ast-container {
  max-width: 100%;
  padding: 0;
}

.hero-copy {
  display: block;
  text-align: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.3rem;
}

body:not(.home) .site,
body:not(.home) .site-content {
  position: relative;
  z-index: 1;
}

body:not(.home) .site-content,
body:not(.home) .ast-container,
body:not(.home) .woocommerce {
  color: var(--ink);
  font-family: var(--font-body);
}

body:not(.home) h1,
body:not(.home) h2,
body:not(.home) h3,
body:not(.home) .entry-title,
body:not(.home) .woocommerce-loop-product__title,
body:not(.home) .product_title {
  color: #6d6079;
  font-family: var(--font-title);
  letter-spacing: 0.01em;
}

body:not(.home) .site-header,
body:not(.home) .site-footer {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
}

body:not(.home) .ast-builder-grid-row,
body:not(.home) .main-header-bar,
body:not(.home) .site-footer-primary-section-1,
body:not(.home) .site-footer-primary-section-2,
body:not(.home) .site-footer-primary-section-3 {
  background: transparent;
}

body:not(.home) .ast-button,
body:not(.home) .button,
body:not(.home) button,
body:not(.home) input[type="button"],
body:not(.home) input[type="submit"],
body:not(.home) .woocommerce #respond input#submit,
body:not(.home) .woocommerce a.button,
body:not(.home) .woocommerce button.button,
body:not(.home) .woocommerce input.button,
body:not(.home) .woocommerce a.added_to_cart {
  border-radius: var(--radius-round);
  border: 2px solid rgba(255, 255, 255, 0.92);
  background: linear-gradient(130deg, #ffe0ec, #fff8d4);
  color: #6c617d;
  font-family: var(--font-body);
  font-weight: 700;
  box-shadow: 0 7px 0 rgba(122, 136, 161, 0.2);
}

body:not(.home) .ast-button:hover,
body:not(.home) .button:hover,
body:not(.home) button:hover,
body:not(.home) input[type="submit"]:hover,
body:not(.home) .woocommerce a.button:hover,
body:not(.home) .woocommerce button.button:hover,
body:not(.home) .woocommerce input.button:hover {
  transform: translateY(-2px);
  filter: saturate(1.12);
}

body:not(.home) .woocommerce ul.products li.product,
body:not(.home) .woocommerce-page ul.products li.product,
body:not(.home) .woocommerce div.product,
body:not(.home) .woocommerce-cart-form,
body:not(.home) .cart_totals,
body:not(.home) .woocommerce-checkout #customer_details,
body:not(.home) .woocommerce-checkout-review-order,
body:not(.home) .woocommerce-account .woocommerce,
body:not(.home) .widget,
body:not(.home) .ast-archive-description,
body:not(.home) .ast-separate-container .ast-article-post,
body:not(.home) .ast-separate-container .ast-article-single {
  border-radius: 26px;
  border: 2px solid rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-card);
}

body:not(.home) .woocommerce ul.products li.product,
body:not(.home) .woocommerce-page ul.products li.product {
  padding: 1rem;
}

body:not(.home) .woocommerce ul.products li.product img,
body:not(.home) .woocommerce div.product div.images img,
body:not(.home) .woocommerce-product-gallery__image img,
body:not(.home) .wp-post-image {
  border-radius: 18px;
  border: 2px solid rgba(255, 255, 255, 0.92);
}

.woocommerce ul.products li.product a.woocommerce-LoopProduct-link,
.woocommerce ul.products li.product a.woocommerce-loop-product__link {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
}

.woocommerce ul.products li.product a.woocommerce-LoopProduct-link img,
.woocommerce ul.products li.product a.woocommerce-loop-product__link img {
  transition: opacity 240ms ease;
}

.woocommerce ul.products li.product .astra-concha-alt-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0 !important;
  opacity: 0;
  pointer-events: none;
}

.woocommerce ul.products li.product.astra-concha-has-hover-image:hover .astra-concha-alt-image {
  opacity: 1;
}

.woocommerce ul.products li.product.astra-concha-has-hover-image:hover a.woocommerce-LoopProduct-link img.wp-post-image,
.woocommerce ul.products li.product.astra-concha-has-hover-image:hover a.woocommerce-loop-product__link img.wp-post-image {
  opacity: 0;
}

body:not(.home) .woocommerce ul.products li.product .price,
body:not(.home) .woocommerce div.product p.price,
body:not(.home) .woocommerce div.product span.price,
body:not(.home) .woocommerce-Price-amount {
  color: #5f5b79;
  font-weight: 700;
}

body.ast-woo-shop-archive .woocommerce ul.products li.product .astra-shop-summary-wrap h2.woocommerce-loop-product__title,
body.ast-woo-shop-archive .woocommerce ul.products li.product .astra-shop-summary-wrap .woocommerce-loop-product__title,
body.post-type-archive-product .woocommerce ul.products li.product .astra-shop-summary-wrap h2.woocommerce-loop-product__title,
body.tax-product_cat .woocommerce ul.products li.product .astra-shop-summary-wrap h2.woocommerce-loop-product__title {
  margin: 0.62rem 0 0.42rem;
  font-size: clamp(1.9rem, 2.6vw, 2.5rem) !important;
  line-height: 1 !important;
  letter-spacing: 0.01em;
  font-family: var(--font-title) !important;
  font-weight: 700 !important;
}

/* Extra-strong fallback for Astra product card titles in catalog/archive views */
body:not(.home) .woocommerce ul.products li.product .astra-shop-summary-wrap .ast-loop-product__link {
  display: block;
  font-size: clamp(1.65rem, 2.35vw, 2.3rem) !important;
  line-height: 1.03 !important;
  letter-spacing: 0.01em;
  font-family: var(--font-title) !important;
  font-weight: 700 !important;
}

body:not(.home) .woocommerce ul.products li.product .astra-shop-summary-wrap .ast-loop-product__link .woocommerce-loop-product__title,
body:not(.home) .woocommerce ul.products li.product .woocommerce-loop-product__title {
  margin: 0.5rem 0 0.45rem !important;
  font: inherit !important;
}

body:not(.home) .woocommerce ul.products li.product .astra-shop-thumbnail-wrap {
  position: relative;
}

body:not(.home) .woocommerce ul.products li.product .astra-shop-summary-wrap > .price {
  display: none !important;
}

body:not(.home) .woocommerce ul.products li.product .astra-shop-summary-wrap .price {
  display: none !important;
}

body:not(.home) .woocommerce ul.products li.product .astra-shop-thumbnail-wrap > .price {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  z-index: 5;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.24rem 0.72rem;
  border-radius: var(--radius-round);
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.95);
  color: #61586f;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(93, 96, 122, 0.2);
}

body:not(.home) .woocommerce ul.products li.product .astra-shop-thumbnail-wrap > .price del {
  opacity: 0.65;
  margin-right: 0.28rem;
}

body:not(.home) .woocommerce ul.products li.product .astra-shop-thumbnail-wrap > .price ins {
  text-decoration: none;
}

.concha-shop-cat-nav-wrap {
  margin: 0.35rem 0 1.2rem;
}

.concha-shop-cat-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.3rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.concha-shop-cat-nav a,
.concha-shop-cat-nav summary {
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.concha-shop-cat-nav summary {
  list-style: none;
}

.concha-shop-cat-nav summary::-webkit-details-marker {
  display: none;
}

.concha-shop-cat-nav .concha-cat-item.is-active > a,
.concha-shop-cat-nav .concha-cat-item.is-active > details > summary {
  color: #6d6079;
}

.concha-shop-cat-nav .concha-cat-item {
  position: relative;
}

.concha-shop-cat-nav .concha-cat-group {
  position: relative;
}

.concha-shop-cat-nav .concha-cat-children {
  position: absolute;
  top: 1.35rem;
  left: 0;
  min-width: 10rem;
  margin: 0;
  padding: 0;
  list-style: none;
  z-index: 20;
  display: none;
}

.concha-shop-cat-nav .concha-cat-group[open] .concha-cat-children {
  display: block;
}

.concha-shop-cat-nav .concha-cat-children li + li {
  margin-top: 0.35rem;
}

.concha-shop-cat-nav .concha-cat-children a {
  white-space: nowrap;
}

@media (max-width: 780px) {
  .concha-shop-cat-nav {
    gap: 0.7rem 1rem;
  }

  .concha-shop-cat-nav .concha-cat-children {
    position: static;
    margin-top: 0.3rem;
  }

  .concha-shop-cat-nav .concha-cat-children a {
    white-space: normal;
  }

  body:not(.home) .woocommerce ul.products li.product .astra-shop-thumbnail-wrap > .price {
    right: 0.65rem;
    bottom: 0.65rem;
    min-height: 1.9rem;
    padding: 0.2rem 0.62rem;
    font-size: 0.84rem;
  }
}

body:not(.home) .woocommerce-message,
body:not(.home) .woocommerce-info,
body:not(.home) .woocommerce-error,
body:not(.home) .woocommerce-notices-wrapper > * {
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  background: linear-gradient(130deg, #f6e5ff, #e7f6ff);
  color: #5b5570;
}

body:not(.home) input[type="text"],
body:not(.home) input[type="email"],
body:not(.home) input[type="tel"],
body:not(.home) input[type="number"],
body:not(.home) input[type="search"],
body:not(.home) input[type="password"],
body:not(.home) textarea,
body:not(.home) select,
body:not(.home) .select2-container .select2-selection--single,
body:not(.home) .select2-container .select2-selection--multiple {
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
}

body:not(.home) .woocommerce .quantity .qty {
  min-height: 2.7rem;
}

@media (max-width: 780px) {
  .hero-actions {
    flex-direction: column;
  }

  body:not(.home) .woocommerce ul.products {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

/* --------------------------------------------------------
   Woo Catalog Hard Overrides
--------------------------------------------------------- */
body:not(.home) .concha-shop-cat-nav-wrap {
  position: relative;
  z-index: 6;
  margin: 0.55rem 0 1.2rem;
  padding: 0.65rem 0.85rem;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(122, 136, 161, 0.14);
}

body:not(.home) .concha-shop-cat-nav .concha-cat-children {
  padding: 0.6rem 0.72rem;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 18px rgba(122, 136, 161, 0.16);
}

body:not(.home) .woocommerce ul.products li.product .ast-woo-product-category {
  display: none !important;
}

body:not(.home) .woocommerce ul.products li.product .astra-shop-summary-wrap h2.woocommerce-loop-product__title,
body:not(.home) .woocommerce ul.products li.product .astra-shop-summary-wrap .woocommerce-loop-product__title,
body:not(.home) .woocommerce ul.products li.product .astra-shop-summary-wrap .ast-loop-product__link .woocommerce-loop-product__title,
body:not(.home) .woocommerce-page ul.products li.product .astra-shop-summary-wrap h2.woocommerce-loop-product__title,
body:not(.home) .woocommerce-page ul.products li.product .astra-shop-summary-wrap .woocommerce-loop-product__title {
  margin: 0.56rem 0 0.5rem !important;
  font-family: var(--font-title) !important;
  font-size: clamp(2.05rem, 2.95vw, 2.9rem) !important;
  line-height: 0.98 !important;
  font-weight: 700 !important;
  letter-spacing: 0.012em !important;
}

#productos .product-copy h3 {
  font-size: clamp(1.35rem, 3.4vw, 1.75rem) !important;
  line-height: 1.08 !important;
}

@media (max-width: 780px) {
  body:not(.home) .concha-shop-cat-nav-wrap {
    padding: 0.55rem 0.65rem;
  }

  body:not(.home) .concha-shop-cat-nav .concha-cat-children {
    padding: 0.42rem 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  body:not(.home) .woocommerce ul.products li.product .astra-shop-summary-wrap h2.woocommerce-loop-product__title,
  body:not(.home) .woocommerce ul.products li.product .astra-shop-summary-wrap .woocommerce-loop-product__title,
  body:not(.home) .woocommerce ul.products li.product .astra-shop-summary-wrap .ast-loop-product__link .woocommerce-loop-product__title,
  body:not(.home) .woocommerce-page ul.products li.product .astra-shop-summary-wrap h2.woocommerce-loop-product__title,
  body:not(.home) .woocommerce-page ul.products li.product .astra-shop-summary-wrap .woocommerce-loop-product__title {
    font-size: clamp(1.55rem, 7.8vw, 2.15rem) !important;
    line-height: 1 !important;
  }
}

/* --------------------------------------------------------
   Hero full-width redesign
--------------------------------------------------------- */
.concha-front-page .hero {
  min-height: auto;
  padding: clamp(1.1rem, 3vw, 2rem) 0 0.95rem;
}

.concha-front-page .hero::before {
  display: none;
}

.concha-front-page .hero-mosaic,
.concha-front-page .hanger,
.concha-front-page .hero-copy,
.concha-front-page .hero-visual,
.concha-front-page .hero-badge,
.concha-front-page .hero-sticker {
  display: none !important;
}

.concha-front-page .hero-product {
  position: relative !important;
  margin: 0 auto;
  width: auto;
  max-width: min(calc(100% - 1rem), 1240px);
  min-height: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.concha-front-page .hero-product::before,
.concha-front-page .hero-product::after {
  content: none;
}

.concha-front-page .hero-product > img {
  display: none !important;
}

.concha-front-page .hero-product > figcaption.hero-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  text-align: center;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.concha-front-page .hero-overlay-title-image {
  display: block;
  width: min(88vw, 940px);
  max-height: min(58vh, 460px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(122, 136, 161, 0.22));
}

.concha-front-page .brand-chip-text,
.concha-front-page .section-heading h2,
.concha-front-page .details-copy h2,
.concha-front-page .video-copy h3,
.concha-front-page .cta-box h2,
.concha-front-page .product-copy h3 {
  text-transform: uppercase;
}

.concha-front-page .hero-overlay-cta {
  width: auto;
  min-width: 11rem;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: #f8bfd4;
  color: #664f6e;
  box-shadow: 0 7px 0 rgba(122, 136, 161, 0.18);
}

@media (max-width: 780px) {
  .concha-front-page .hero-product {
    max-width: calc(100% - 0.5rem);
    min-height: 0;
    padding: 0;
  }

  .concha-front-page .hero-product > figcaption.hero-overlay {
    gap: 0;
  }

  .concha-front-page .hero-overlay-title-image {
    width: min(94vw, 760px);
    max-height: min(48vh, 320px);
  }

  .concha-front-page .hero-overlay-cta {
    width: auto !important;
    min-width: 9.4rem;
  }
}

/* --------------------------------------------------------
   Woo Catalog Final Hard Fixes
--------------------------------------------------------- */
body .woocommerce ul.products li.product .astra-shop-thumbnail-wrap,
body .woocommerce ul.products li.product a.woocommerce-LoopProduct-link,
body .woocommerce ul.products li.product a.woocommerce-loop-product__link,
body .woocommerce-page ul.products li.product .astra-shop-thumbnail-wrap,
body .woocommerce-page ul.products li.product a.woocommerce-LoopProduct-link,
body .woocommerce-page ul.products li.product a.woocommerce-loop-product__link,
body .wc-block-grid__product .wc-block-grid__product-link,
body .wc-block-grid__product .wc-block-grid__product-image {
  position: relative !important;
  overflow: hidden;
}

body .woocommerce ul.products li.product .concha-price-tag,
body .woocommerce-page ul.products li.product .concha-price-tag,
body .wc-block-grid__product .concha-price-tag {
  position: absolute !important;
  right: 0.65rem !important;
  bottom: 0.65rem !important;
  z-index: 12 !important;
  margin: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 2rem;
  padding: 0.24rem 0.72rem;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.9);
  color: #61586f;
  font-size: 1rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  box-shadow: 0 6px 14px rgba(93, 96, 122, 0.2);
  pointer-events: none;
}

body .woocommerce ul.products li.product .concha-price-tag del,
body .woocommerce-page ul.products li.product .concha-price-tag del,
body .wc-block-grid__product .concha-price-tag del {
  opacity: 0.68;
  margin-right: 0.28rem;
}

body .woocommerce ul.products li.product .concha-price-tag ins,
body .woocommerce-page ul.products li.product .concha-price-tag ins,
body .wc-block-grid__product .concha-price-tag ins {
  text-decoration: none;
}

body .woocommerce ul.products li.product .concha-price-source,
body .woocommerce-page ul.products li.product .concha-price-source,
body .wc-block-grid__product .concha-price-source,
body .woocommerce ul.products li.product.concha-has-price-tag .astra-shop-summary-wrap > .price,
body .woocommerce-page ul.products li.product.concha-has-price-tag .astra-shop-summary-wrap > .price,
body .woocommerce ul.products li.product.concha-has-price-tag > .price,
body .woocommerce-page ul.products li.product.concha-has-price-tag > .price,
body .wc-block-grid__product.concha-has-price-tag .wc-block-grid__product-price,
body .wc-block-grid__product.concha-has-price-tag .wc-block-components-product-price {
  display: none !important;
}

body .woocommerce ul.products li.product .woocommerce-loop-product__title,
body .woocommerce-page ul.products li.product .woocommerce-loop-product__title,
body .woocommerce ul.products li.product .astra-shop-summary-wrap .woocommerce-loop-product__title,
body .woocommerce-page ul.products li.product .astra-shop-summary-wrap .woocommerce-loop-product__title,
body .wc-block-grid__product .wc-block-grid__product-title,
body .wc-block-grid__product .wc-block-components-product-name,
body .concha-force-product-title {
  margin: 0.56rem 0 0.5rem !important;
  font-family: var(--font-title) !important;
  font-size: clamp(1.75rem, 2.45vw, 2.35rem) !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
  color: #61586f !important;
}

body .woocommerce ul.products li.product .ast-woo-product-category,
body .woocommerce-page ul.products li.product .ast-woo-product-category,
body .wc-block-grid__product .wc-block-grid__product-category {
  display: none !important;
}

@media (max-width: 780px) {
  body .woocommerce ul.products li.product .concha-price-tag,
  body .woocommerce-page ul.products li.product .concha-price-tag,
  body .wc-block-grid__product .concha-price-tag {
    right: 0.55rem !important;
    bottom: 0.55rem !important;
    min-height: 1.85rem;
    padding: 0.2rem 0.62rem;
    font-size: 0.88rem !important;
  }

  body .woocommerce ul.products li.product .woocommerce-loop-product__title,
  body .woocommerce-page ul.products li.product .woocommerce-loop-product__title,
  body .woocommerce ul.products li.product .astra-shop-summary-wrap .woocommerce-loop-product__title,
  body .woocommerce-page ul.products li.product .astra-shop-summary-wrap .woocommerce-loop-product__title,
  body .wc-block-grid__product .wc-block-grid__product-title,
  body .wc-block-grid__product .wc-block-components-product-name,
  body .concha-force-product-title {
    font-size: clamp(1.42rem, 7.2vw, 2rem) !important;
    line-height: 1.02 !important;
  }
}

body.post-type-archive-product .woocommerce-products-header__title.page-title,
body.woocommerce-shop .woocommerce-products-header__title.page-title,
body.tax-product_cat .woocommerce-products-header__title.page-title {
  margin: 0.2rem 0 0.9rem !important;
  font-family: var(--font-title) !important;
  font-size: clamp(2.5rem, 4.6vw, 4rem) !important;
  line-height: 0.95 !important;
  letter-spacing: 0.01em !important;
  font-weight: 700 !important;
  color: #61586f !important;
  text-transform: none !important;
}

@media (max-width: 780px) {
  body.post-type-archive-product .woocommerce-products-header__title.page-title,
  body.woocommerce-shop .woocommerce-products-header__title.page-title,
  body.tax-product_cat .woocommerce-products-header__title.page-title {
    font-size: clamp(2rem, 10vw, 2.8rem) !important;
    line-height: 0.98 !important;
  }
}

/* --------------------------------------------------------
   Hero emergency cleanup
--------------------------------------------------------- */
.concha-front-page .hero {
  min-height: 0 !important;
  padding: clamp(0.6rem, 2vw, 1.2rem) 0 0.4rem !important;
}

.concha-front-page .hero::before {
  content: none !important;
  display: none !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.concha-front-page .hero-product,
.concha-front-page .hero-product::before,
.concha-front-page .hero-product::after,
.concha-front-page .hero-product > figcaption.hero-overlay {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.concha-front-page .hero-product {
  width: auto !important;
  max-width: min(calc(100% - 0.25rem), 1400px) !important;
  min-height: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
}

.concha-front-page .hero-overlay-title-image {
  width: min(98vw, 1320px) !important;
  max-height: min(74vh, 700px) !important;
}

@media (max-width: 780px) {
  .concha-front-page .hero-overlay-title-image {
    width: min(99vw, 920px) !important;
    max-height: min(60vh, 440px) !important;
  }
}

/* --------------------------------------------------------
   Very Popular font size tuning
--------------------------------------------------------- */
.section-heading h2,
.details-copy h2,
.video-copy h3,
.cta-box h2 {
  font-size: clamp(1rem, 2.35vw, 1.75rem) !important;
  line-height: 1.36 !important;
}

#productos .product-copy h3,
.product-copy h3 {
  font-size: clamp(0.76rem, 1.35vw, 0.92rem) !important;
  line-height: 1.24 !important;
}

body .woocommerce ul.products li.product .woocommerce-loop-product__title,
body .woocommerce-page ul.products li.product .woocommerce-loop-product__title,
body .woocommerce ul.products li.product .astra-shop-summary-wrap .woocommerce-loop-product__title,
body .woocommerce-page ul.products li.product .astra-shop-summary-wrap .woocommerce-loop-product__title,
body .wc-block-grid__product .wc-block-grid__product-title,
body .wc-block-grid__product .wc-block-components-product-name,
body .concha-force-product-title {
  font-size: clamp(1rem, 1.5vw, 1.3rem) !important;
  line-height: 1.22 !important;
}

/* --------------------------------------------------------
   Uppercase normalization (Very Popular has uppercase glyphs)
--------------------------------------------------------- */
.brand-chip,
.brand-chip-text,
.kicker-collection,
.hero-copy h1,
.section-heading h2,
.details-copy h2,
.video-copy h3,
.cta-box h2,
.product-copy h3,
body .woocommerce ul.products li.product .woocommerce-loop-product__title,
body .woocommerce-page ul.products li.product .woocommerce-loop-product__title,
body .woocommerce ul.products li.product .astra-shop-summary-wrap .woocommerce-loop-product__title,
body .woocommerce-page ul.products li.product .astra-shop-summary-wrap .woocommerce-loop-product__title,
body .wc-block-grid__product .wc-block-grid__product-title,
body .wc-block-grid__product .wc-block-components-product-name,
body .concha-force-product-title,
body.post-type-archive-product .woocommerce-products-header__title.page-title,
body.woocommerce-shop .woocommerce-products-header__title.page-title,
body.tax-product_cat .woocommerce-products-header__title.page-title,
.hero-product::after,
.hero-title-overlay,
.product-cta {
  text-transform: uppercase !important;
}

.brand-chip,
.brand-chip-text {
  font-size: clamp(1rem, 2vw, 1.26rem) !important;
  line-height: 1.04 !important;
}

.kicker-collection {
  font-family: var(--font-title) !important;
  font-size: clamp(1rem, 2vw, 1.3rem) !important;
  line-height: 1.08 !important;
}

.hero-copy h1 {
  font-size: clamp(1.7rem, 4.2vw, 2.85rem) !important;
  line-height: 1.08 !important;
}

.section-heading h2,
.details-copy h2,
.video-copy h3,
.cta-box h2 {
  font-size: clamp(1.12rem, 2.45vw, 1.9rem) !important;
  line-height: 1.62 !important;
}

#productos .product-copy h3,
.product-copy h3 {
  font-size: clamp(0.84rem, 1.2vw, 1.05rem) !important;
  line-height: 1.16 !important;
}

body.post-type-archive-product .woocommerce-products-header__title.page-title,
body.woocommerce-shop .woocommerce-products-header__title.page-title,
body.tax-product_cat .woocommerce-products-header__title.page-title {
  font-size: clamp(1.45rem, 3vw, 2.15rem) !important;
  line-height: 1.08 !important;
}

/* --------------------------------------------------------
   Infinite product slider (between hero and seleccion)
--------------------------------------------------------- */
.concha-front-page .product-marquee {
  position: relative;
  z-index: 1;
  isolation: isolate;
  margin: 0.35rem 0 0.9rem;
}

.concha-front-page .product-marquee-mask {
  position: relative;
  overflow: hidden;
  padding: 0.2rem 0;
}

.concha-front-page .product-marquee-mask::before,
.concha-front-page .product-marquee-mask::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(5vw, 3.6rem);
  pointer-events: none;
  z-index: 2;
}

.concha-front-page .product-marquee-mask::before {
  left: 0;
  background: linear-gradient(90deg, rgba(243, 226, 236, 0.92), rgba(243, 226, 236, 0));
}

.concha-front-page .product-marquee-mask::after {
  right: 0;
  background: linear-gradient(270deg, rgba(243, 226, 236, 0.92), rgba(243, 226, 236, 0));
}

.concha-front-page .product-marquee-track {
  --marquee-gap: 0.85rem;
  display: flex;
  align-items: stretch;
  gap: var(--marquee-gap);
  width: max-content;
  animation: conchaMarqueeScroll 42s linear infinite;
  will-change: transform;
}

.concha-front-page .product-marquee-mask:hover .product-marquee-track {
  animation-play-state: paused;
}

.concha-front-page .product-marquee-item {
  flex: 0 0 clamp(10rem, 16vw, 12.4rem);
}

.concha-front-page .product-marquee-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 0.52rem;
  padding: 0.45rem;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 7px 16px rgba(116, 123, 151, 0.16);
}

.concha-front-page .product-marquee-media {
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
}

.concha-front-page .product-marquee-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concha-front-page .product-marquee-copy {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  min-height: 3.2rem;
}

.concha-front-page .product-marquee-title {
  font-family: var(--font-title);
  font-size: clamp(0.84rem, 1.15vw, 1rem);
  line-height: 1.2;
  text-transform: uppercase;
  color: #61586f;
}

.concha-front-page .product-marquee-price {
  font-size: 0.83rem;
  font-weight: 700;
  line-height: 1.15;
  color: #6d6079;
}

.concha-front-page .product-marquee-price ins {
  text-decoration: none;
}

@keyframes conchaMarqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - (var(--marquee-gap) / 2)));
  }
}

@media (max-width: 900px) {
  .concha-front-page .product-marquee-item {
    flex-basis: clamp(8.8rem, 42vw, 11.2rem);
  }

  .concha-front-page .product-marquee-track {
    animation-duration: 34s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .concha-front-page .product-marquee-mask {
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .concha-front-page .product-marquee-track {
    animation: none;
    width: auto;
  }
}

/* Keep front-page sections visible after marquee insertion */
.concha-front-page .hero,
.concha-front-page .hero-photo-carousel-section,
.concha-front-page .showcase,
.concha-front-page .details,
.concha-front-page .videos,
.concha-front-page .cta-final {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative;
  z-index: 1;
}

.concha-front-page .showcase,
.concha-front-page .details,
.concha-front-page .videos,
.concha-front-page .cta-final {
  clear: both;
}

/* Compact home flow after adding the marquee */
.concha-front-page {
  display: block !important;
  overflow-x: hidden;
}

.concha-front-page .hero {
  min-height: 0 !important;
  padding: clamp(0.45rem, 1.5vw, 0.9rem) 0 clamp(0.35rem, 1vw, 0.7rem) !important;
}

.concha-front-page .hero-product {
  min-height: 0 !important;
  overflow: visible !important;
}

.concha-front-page .hero-product > figcaption.hero-overlay,
.concha-front-page .hero-overlay-title-image {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.concha-front-page .hero-overlay-title-image {
  width: min(92vw, 960px) !important;
  max-height: clamp(8.5rem, 28vh, 18rem) !important;
  object-fit: contain !important;
}

.concha-front-page .hero-photo-carousel-section {
  display: block !important;
  margin: 0.16rem 0 0.62rem !important;
}

.concha-front-page .hero-photo-carousel-section .container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.concha-front-page .hero-photo-carousel {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.concha-front-page .hero-photo-carousel-viewport {
  position: relative;
  overflow: hidden;
  height: clamp(24rem, 40vw, 34rem);
  border-radius: 0;
  border: 0;
  background: transparent;
}

.concha-front-page .hero-photo-carousel-viewport::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(30, 35, 51, 0.19) 0%,
    rgba(30, 35, 51, 0.08) 46%,
    rgba(30, 35, 51, 0.18) 100%
  );
}

.concha-front-page .hero-photo-carousel-logo {
  position: absolute;
  top: 50%;
  left: clamp(1.4rem, 7vw, 7rem);
  transform: translateY(-50%);
  z-index: 5;
  pointer-events: none;
  width: min(68vw, 720px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.concha-front-page .hero-photo-carousel-card {
  pointer-events: auto;
  width: min(100%, 640px);
  padding: clamp(1.35rem, 3vw, 3.1rem) clamp(1.35rem, 3.6vw, 3.45rem);
  background: rgba(255, 255, 255, 0.94);
  color: #111111;
  box-shadow: 0 18px 34px rgba(20, 22, 32, 0.18);
}

.concha-front-page .hero-photo-carousel-card h1 {
  margin: 0;
  color: #0d0d0d;
  font-family: var(--font-title);
  font-size: clamp(2rem, 5.8vw, 4.6rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0.75px;
  text-transform: uppercase;
}

.concha-front-page .hero-photo-carousel-card p {
  margin: clamp(0.72rem, 1.8vw, 1.2rem) 0 0;
  max-width: 34rem;
  color: #25212b;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.7vw, 1.28rem);
  font-weight: 500;
  line-height: 1.65;
}

.concha-front-page .hero-photo-carousel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  margin-top: clamp(1.1rem, 2.5vw, 1.75rem);
  padding: 0.7rem 1.9rem;
  border: 3px solid #ff35be;
  background: rgba(255, 255, 255, 0.78);
  color: #ff00b8;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  box-shadow: none;
  transition: transform 180ms ease, background-color 180ms ease;
}

.concha-front-page .hero-photo-carousel-button:hover {
  transform: translateY(-2px);
  background: #fff0fb;
}

.concha-front-page .hero-photo-carousel-track {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.concha-front-page .hero-photo-carousel-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 900ms ease;
}

.concha-front-page .hero-photo-carousel-slide.is-active {
  opacity: 1;
}

.concha-front-page .hero-photo-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  image-orientation: from-image;
}

.concha-front-page .hero-photo-carousel-nav {
  display: none !important;
}

.concha-front-page .hero-photo-carousel [data-carousel-prev],
.concha-front-page .hero-photo-carousel [data-carousel-next],
.concha-front-page .hero-photo-carousel [data-carousel-dot] {
  display: none !important;
}

.concha-front-page .hero-photo-carousel-dots,
.concha-front-page .hero-photo-carousel-dot,
.concha-front-page .hero-photo-carousel-dot.is-active {
  display: none !important;
}

.concha-front-page .product-marquee {
  display: block !important;
  max-height: none !important;
  margin: 0.25rem 0 0.45rem !important;
  overflow: hidden;
}

.concha-front-page .product-marquee-mask {
  max-height: none !important;
}

.concha-front-page .product-marquee-item {
  flex-basis: clamp(6.8rem, 10vw, 8.8rem) !important;
}

.concha-front-page .product-marquee-link {
  gap: 0.34rem !important;
  padding: 0.34rem !important;
}

.concha-front-page .product-marquee-copy {
  min-height: 2.5rem !important;
  gap: 0.16rem !important;
}

.concha-front-page .product-marquee-title {
  font-size: clamp(0.68rem, 0.95vw, 0.82rem) !important;
  line-height: 1.12 !important;
}

.concha-front-page .product-marquee-price {
  font-size: 0.72rem !important;
}

.concha-front-page .showcase.section {
  padding-top: clamp(0.65rem, 1.8vw, 1.2rem) !important;
}

@media (max-width: 780px) {
  .concha-front-page .hero-overlay-title-image {
    width: min(94vw, 680px) !important;
    max-height: clamp(6.8rem, 22vh, 12rem) !important;
  }

  .concha-front-page .hero-photo-carousel {
    width: 100%;
    padding: 0;
  }

  .concha-front-page .hero-photo-carousel-viewport {
    height: clamp(23rem, 96vw, 31rem);
  }

  .concha-front-page .hero-photo-carousel-logo {
    top: 50%;
    left: 50%;
    width: min(calc(100% - 1.8rem), 920px);
    padding: 0;
    transform: translate(-50%, -50%);
  }

  .concha-front-page .hero-photo-carousel-card {
    width: 100%;
    padding: 1.15rem 1.1rem;
  }

  .concha-front-page .hero-photo-carousel-card h1 {
    font-size: clamp(1.65rem, 9vw, 2.8rem);
    line-height: 1;
  }

  .concha-front-page .hero-photo-carousel-card p {
    margin-top: 0.55rem;
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .concha-front-page .hero-photo-carousel-button {
    min-height: 2.65rem;
    margin-top: 0.78rem;
    padding: 0.58rem 1.25rem;
    font-size: 0.92rem;
  }

  .concha-front-page .product-marquee-item {
    flex-basis: clamp(6.4rem, 31vw, 8rem) !important;
  }
}

@media (max-width: 780px) {
  .topbar-inner {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    gap: 0.45rem !important;
  }

  .brand {
    flex-wrap: nowrap !important;
    min-width: 0;
    gap: 0.38rem !important;
  }

  .brand-note {
    display: none !important;
  }

  .topnav-mobile {
    width: auto !important;
    margin-left: auto;
    flex: 0 0 auto;
  }

  .topnav-mobile-toggle {
    white-space: nowrap;
    min-height: 2rem !important;
    padding: 0.26rem 0.62rem !important;
  }

  .concha-front-page .sky-decor,
  .concha-front-page .emoji-rain,
  .concha-front-page .emoji-drop {
    display: none !important;
  }
}

/* WooCommerce page titles in the Concha title style */
body.woocommerce-cart .entry-title,
body.woocommerce-checkout .entry-title,
body.woocommerce-account .entry-title,
body.woocommerce-page:not(.archive) .entry-title {
  font-family: var(--font-title) !important;
  text-transform: uppercase !important;
  color: #61586f !important;
  font-size: clamp(1.15rem, 2.65vw, 2rem) !important;
  line-height: 1.18 !important;
}

/* Checkout shipping/billing copy should stay sober and highly legible. */
body.woocommerce-checkout .woocommerce-billing-fields > h3,
body.woocommerce-checkout .woocommerce-additional-fields > h3,
body.woocommerce-checkout #order_review_heading {
  font-family: var(--font-body) !important;
  text-transform: none !important;
  color: #4f5565 !important;
  font-size: clamp(1rem, 1.45vw, 1.2rem) !important;
  line-height: 1.35 !important;
  letter-spacing: 0 !important;
  margin: 0 0 0.95rem !important;
  font-weight: 700 !important;
}

body.woocommerce-checkout .woocommerce-billing-fields > h3 {
  margin-bottom: 0.9rem !important;
}

body.woocommerce-checkout .woocommerce-additional-fields > h3 {
  font-size: clamp(0.9rem, 1.25vw, 1.05rem) !important;
  line-height: 1.3 !important;
  margin-bottom: 0.72rem !important;
}

/* Keep order table, labels and legal copy formal/readable. */
body.woocommerce-cart .shop_table thead th,
body.woocommerce-cart .cart_totals h2,
body.woocommerce-checkout .shop_table thead th,
body.woocommerce-checkout .woocommerce-checkout-review-order-table .product-name,
body.woocommerce-checkout .woocommerce-checkout-review-order-table .product-total,
body.woocommerce-checkout form .form-row label,
body.woocommerce-checkout .woocommerce-checkout-review-order-table th,
body.woocommerce-checkout .woocommerce-checkout-review-order-table td,
body.woocommerce-checkout .woocommerce-privacy-policy-text,
body.woocommerce-checkout .woocommerce-privacy-policy-text p,
body.woocommerce-checkout .woocommerce-privacy-policy-text a {
  font-family: var(--font-body) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: #4f5565 !important;
}

body.woocommerce-cart .shop_table thead th,
body.woocommerce-checkout .shop_table thead th,
body.woocommerce-checkout form .form-row label {
  font-size: clamp(0.9rem, 1.05vw, 0.98rem) !important;
  line-height: 1.35 !important;
  font-weight: 600 !important;
}

body.woocommerce-checkout .woocommerce-privacy-policy-text,
body.woocommerce-checkout .woocommerce-privacy-policy-text p,
body.woocommerce-checkout .woocommerce-privacy-policy-text a {
  font-size: clamp(0.9rem, 1vw, 0.98rem) !important;
  line-height: 1.6 !important;
}

/* Product typography: use Bebas Neue on home + catalog product titles and prices. */
.concha-front-page #productos .product-copy,
.concha-front-page #productos .product-copy h3,
.concha-front-page #productos .product-copy h3 a,
body .woocommerce ul.products li.product .woocommerce-loop-product__title,
body .woocommerce-page ul.products li.product .woocommerce-loop-product__title,
body .woocommerce ul.products li.product .astra-shop-summary-wrap .woocommerce-loop-product__title,
body .woocommerce-page ul.products li.product .astra-shop-summary-wrap .woocommerce-loop-product__title,
body .wc-block-grid__product .wc-block-grid__product-title,
body .wc-block-grid__product .wc-block-components-product-name,
body .concha-force-product-title {
  font-family: var(--font-product) !important;
  text-transform: uppercase !important;
  letter-spacing: 0 !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

body .woocommerce ul.products li.product a.woocommerce-LoopProduct-link,
body .woocommerce ul.products li.product a.woocommerce-loop-product__link,
body .woocommerce-page ul.products li.product a.woocommerce-LoopProduct-link,
body .woocommerce-page ul.products li.product a.woocommerce-loop-product__link {
  text-decoration: none !important;
}

.concha-front-page .product-price,
body:not(.home) .woocommerce ul.products li.product .price,
body:not(.home) .woocommerce-page ul.products li.product .price,
body .woocommerce ul.products li.product .concha-price-tag,
body .woocommerce-page ul.products li.product .concha-price-tag {
  font-family: var(--font-product) !important;
  text-transform: uppercase !important;
  letter-spacing: 0 !important;
}

/* Slight size bump for product names and prices (home + catalog). */
.concha-front-page #productos .product-copy h3,
body .woocommerce ul.products li.product .woocommerce-loop-product__title,
body .woocommerce-page ul.products li.product .woocommerce-loop-product__title,
body .woocommerce ul.products li.product .astra-shop-summary-wrap .woocommerce-loop-product__title,
body .woocommerce-page ul.products li.product .astra-shop-summary-wrap .woocommerce-loop-product__title,
body .wc-block-grid__product .wc-block-grid__product-title,
body .wc-block-grid__product .wc-block-components-product-name,
body .concha-force-product-title {
  font-size: clamp(1.12rem, 1.72vw, 1.58rem) !important;
  line-height: 1.14 !important;
}

.concha-front-page .product-price,
body:not(.home) .woocommerce ul.products li.product .price,
body:not(.home) .woocommerce-page ul.products li.product .price,
body .woocommerce ul.products li.product .concha-price-tag,
body .woocommerce-page ul.products li.product .concha-price-tag {
  font-size: clamp(1rem, 1.28vw, 1.2rem) !important;
  line-height: 1.08 !important;
}

/* Slightly increase tracking on main title typography. */
.brand-chip,
.brand-chip-text,
.kicker-collection,
.hero-copy h1,
.section-heading h2,
.details-copy h2,
.video-copy h3,
.cta-box h2,
body.woocommerce-cart .entry-title,
body.woocommerce-checkout .entry-title,
body.woocommerce-account .entry-title,
body.woocommerce-page:not(.archive) .entry-title,
body.post-type-archive-product .woocommerce-products-header__title.page-title,
body.woocommerce-shop .woocommerce-products-header__title.page-title,
body.tax-product_cat .woocommerce-products-header__title.page-title {
  letter-spacing: 0.75px !important;
}

/* Slight size bump for main title groups with the new display font. */
.hero-copy h1 {
  font-size: clamp(1.9rem, 4.8vw, 3.15rem) !important;
}

.section-heading h2,
.details-copy h2,
.video-copy h3,
.cta-box h2 {
  font-size: clamp(1.24rem, 2.8vw, 2.1rem) !important;
}

body.woocommerce-cart .entry-title,
body.woocommerce-checkout .entry-title,
body.woocommerce-account .entry-title,
body.woocommerce-page:not(.archive) .entry-title {
  font-size: clamp(1.3rem, 3vw, 2.25rem) !important;
}

body.post-type-archive-product .woocommerce-products-header__title.page-title,
body.woocommerce-shop .woocommerce-products-header__title.page-title,
body.tax-product_cat .woocommerce-products-header__title.page-title {
  font-size: clamp(1.65rem, 3.4vw, 2.4rem) !important;
}

/* Clean full-width top navigation. */
.topbar {
  padding: 0 !important;
  background: rgba(255, 255, 255, 0.9) !important;
  border-bottom: 1px solid rgba(82, 76, 98, 0.12) !important;
  box-shadow: 0 8px 20px rgba(42, 43, 54, 0.08) !important;
}

.topbar .container {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

.topbar-inner {
  min-height: 4.3rem !important;
  padding: 0.65rem clamp(1rem, 3vw, 2.5rem) !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.brand-chip,
.topnav a:not(.button),
.topnav-cart-count,
.topnav-mobile-toggle {
  border-radius: 0 !important;
  box-shadow: none !important;
}

.brand-chip {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #5f526d !important;
}

.topnav a:not(.button),
.topnav-mobile-toggle {
  background: transparent !important;
  border: 0 !important;
}

.topnav a:not(.button):hover,
.topnav-mobile-toggle:hover {
  color: #ff00b8 !important;
}

@media (max-width: 780px) {
  .topbar-inner {
    min-height: 3.75rem !important;
    padding: 0.55rem 0.75rem !important;
  }

  .brand-chip-text {
    font-size: clamp(0.92rem, 4.8vw, 1.18rem) !important;
  }

  .topnav-mobile-toggle {
    padding: 0 !important;
  }
}

/* Sharper editorial styling: remove rounded card corners across storefront UI. */
.concha-front-page .hero-photo-carousel,
.concha-front-page .hero-photo-carousel-viewport,
.concha-front-page .hero-photo-carousel-card,
.concha-front-page .hero-photo-carousel-button,
.concha-front-page .product-block,
.concha-front-page .product-media,
.concha-front-page .product-media img,
.concha-front-page .product-price,
.concha-front-page .details-layout,
.concha-front-page .stickers-wall,
.concha-front-page .sticker-card,
.concha-front-page .video-card,
.concha-front-page .video-frame,
.concha-front-page .video-frame img,
.concha-front-page .video-frame video,
.concha-front-page .about-photo,
.concha-front-page .kicker,
.concha-front-page .label,
.concha-front-page .kicker-dark,
.concha-front-page .button,
body .woocommerce ul.products li.product,
body .woocommerce-page ul.products li.product,
body .woocommerce ul.products li.product .astra-shop-thumbnail-wrap,
body .woocommerce-page ul.products li.product .astra-shop-thumbnail-wrap,
body .woocommerce ul.products li.product img,
body .woocommerce-page ul.products li.product img,
body .woocommerce ul.products li.product .concha-price-tag,
body .woocommerce-page ul.products li.product .concha-price-tag,
body:not(.home) .woocommerce,
body:not(.home) .woocommerce .woocommerce-notices-wrapper,
body:not(.home) .woocommerce form,
body:not(.home) .woocommerce table.shop_table,
body:not(.home) .woocommerce-cart-form,
body:not(.home) .cart_totals,
body:not(.home) .woocommerce-checkout #customer_details,
body:not(.home) .woocommerce-checkout-review-order,
body:not(.home) .woocommerce-checkout-payment,
body:not(.home) .woocommerce-checkout-payment .payment_box,
body:not(.home) .woocommerce input.input-text,
body:not(.home) .woocommerce textarea,
body:not(.home) .woocommerce select,
body:not(.home) .woocommerce button.button,
body:not(.home) .woocommerce a.button,
body:not(.home) .woocommerce .button {
  border-radius: 0 !important;
}

/* Home product grid: no card boxes, only image, price and title. */
.concha-front-page .showcase.section {
  padding-top: clamp(1.8rem, 4vw, 3.2rem) !important;
}

.concha-front-page .broken-grid {
  gap: clamp(1rem, 2.2vw, 2rem) !important;
}

.concha-front-page .product-block,
.concha-front-page .product-block.aqua,
.concha-front-page .product-block.red,
.concha-front-page .product-block.blue,
.concha-front-page .product-block.pink,
.concha-front-page .product-block.slime,
.concha-front-page .product-block.purple {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.concha-front-page .product-media {
  padding: 0 !important;
  overflow: visible !important;
}

.concha-front-page .product-media img,
.concha-front-page .product-media.has-hover-image .astra-concha-alt-image {
  border: 0 !important;
  box-shadow: none !important;
}

.concha-front-page .product-media.has-hover-image .astra-concha-alt-image {
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.concha-front-page .product-copy {
  padding: 0.62rem 0 0 !important;
}

.concha-front-page #productos .product-copy h3,
.concha-front-page .product-copy h3 {
  margin: 0 !important;
  color: #4f465d !important;
}

.concha-front-page .product-price {
  right: 0.7rem !important;
  bottom: 0.7rem !important;
  border: 0 !important;
  background: rgba(255, 255, 255, 0.88) !important;
  box-shadow: none !important;
}

/* More readable paragraph rhythm in the video/about blocks. */
.concha-front-page .video-copy p {
  margin: 0.34rem 0 0 !important;
  color: #4d5360 !important;
  font-size: clamp(1.04rem, 1.35vw, 1.18rem) !important;
  line-height: 1.42 !important;
}

.concha-front-page .video-copy p:last-child {
  margin-top: 0.34rem !important;
}

.concha-front-page .video-copy h3 {
  margin-bottom: 0.55rem !important;
}

/* Classic site footer. */
.concha-site-footer {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: clamp(2.4rem, 5vw, 4rem);
  border-top: 1px solid rgba(74, 74, 87, 0.18);
  background: rgba(255, 255, 255, 0.9);
  color: #4a4a57;
}

.concha-site-footer-inner {
  width: min(calc(100% - 2rem), 1180px);
  margin: 0 auto;
  padding: 1.35rem 0 0.85rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.2rem;
  align-items: center;
}

.concha-site-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.concha-site-footer-brand strong {
  font-family: var(--font-title);
  font-size: clamp(1.05rem, 1.9vw, 1.45rem);
  letter-spacing: 0.75px;
  text-transform: uppercase;
  color: #5f526d;
}

.concha-site-footer-brand span,
.concha-site-footer-credit,
.concha-site-footer-links a {
  font-family: var(--font-body);
  font-size: 0.94rem;
  line-height: 1.35;
}

.concha-site-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.concha-site-footer-links a {
  color: #4a4a57;
  font-weight: 700;
  text-decoration: none;
}

.concha-site-footer-links a:hover {
  color: #ff00b8;
}

.concha-site-footer-instagram {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4a4a57;
  font-size: 1.7rem !important;
  line-height: 1;
}

.concha-site-footer-credit {
  margin: 0;
  padding: 0.75rem 1rem 1rem;
  border-top: 1px solid rgba(74, 74, 87, 0.1);
  color: rgba(74, 74, 87, 0.74);
  text-align: center;
}

@media (max-width: 780px) {
  .concha-site-footer-inner {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    text-align: center;
  }

  .concha-site-footer-links {
    justify-content: center;
  }

.concha-site-footer-credit {
    text-align: center;
  }
}

/* Front product rows: wider, larger and grouped by category. */
.concha-front-page #productos .container {
  width: min(calc(100% - 1.25rem), 1640px) !important;
}

.concha-front-page #productos .section-heading {
  width: 100% !important;
  text-align: left !important;
  margin: 0 0 1.15rem !important;
}

.concha-front-page .product-category-rows {
  display: grid;
  gap: clamp(2.1rem, 4vw, 4rem);
}

.concha-front-page .product-category-row {
  width: 100%;
}

.concha-front-page .product-category-title {
  margin: 0 0 0.95rem;
  color: #5f526d;
  font-family: var(--font-title);
  font-size: clamp(1.55rem, 3.2vw, 2.8rem);
  line-height: 1;
  letter-spacing: 0.75px;
  text-transform: uppercase;
}

.concha-front-page .product-category-row .broken-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(0.9rem, 1.8vw, 1.55rem) !important;
}

.concha-front-page .product-category-row .product-media img {
  aspect-ratio: 1 / 1 !important;
  width: 100% !important;
  object-fit: cover !important;
}

.concha-front-page .product-category-row .product-copy {
  padding-top: 0.72rem !important;
}

.concha-front-page .product-category-row .product-copy h3 {
  font-size: clamp(1.22rem, 1.65vw, 1.7rem) !important;
}

@media (max-width: 980px) {
  .concha-front-page .product-category-row .broken-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 560px) {
  .concha-front-page #productos .container {
    width: min(calc(100% - 0.9rem), 1640px) !important;
  }

  .concha-front-page .product-category-row .broken-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Catalog: match the cleaner home product treatment. */
body.post-type-archive-product .site-content .ast-container,
body.woocommerce-shop .site-content .ast-container,
body.tax-product_cat .site-content .ast-container {
  width: min(calc(100% - 1.25rem), 1640px) !important;
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body.post-type-archive-product .woocommerce,
body.woocommerce-shop .woocommerce,
body.tax-product_cat .woocommerce,
body.post-type-archive-product .ast-archive-description,
body.woocommerce-shop .ast-archive-description,
body.tax-product_cat .ast-archive-description {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.post-type-archive-product .woocommerce ul.products,
body.woocommerce-shop .woocommerce ul.products,
body.tax-product_cat .woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(0.9rem, 1.8vw, 1.55rem) !important;
  margin-top: clamp(1rem, 2vw, 1.6rem) !important;
}

body.post-type-archive-product .woocommerce ul.products li.product,
body.woocommerce-shop .woocommerce ul.products li.product,
body.tax-product_cat .woocommerce ul.products li.product,
body.post-type-archive-product .woocommerce-page ul.products li.product,
body.woocommerce-shop .woocommerce-page ul.products li.product,
body.tax-product_cat .woocommerce-page ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

body.post-type-archive-product .woocommerce ul.products li.product .astra-shop-thumbnail-wrap,
body.woocommerce-shop .woocommerce ul.products li.product .astra-shop-thumbnail-wrap,
body.tax-product_cat .woocommerce ul.products li.product .astra-shop-thumbnail-wrap,
body.post-type-archive-product .woocommerce ul.products li.product a.woocommerce-LoopProduct-link,
body.woocommerce-shop .woocommerce ul.products li.product a.woocommerce-LoopProduct-link,
body.tax-product_cat .woocommerce ul.products li.product a.woocommerce-LoopProduct-link,
body.post-type-archive-product .woocommerce ul.products li.product a.woocommerce-loop-product__link,
body.woocommerce-shop .woocommerce ul.products li.product a.woocommerce-loop-product__link,
body.tax-product_cat .woocommerce ul.products li.product a.woocommerce-loop-product__link {
  position: relative !important;
  display: block !important;
  overflow: visible !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.post-type-archive-product .woocommerce ul.products li.product img,
body.woocommerce-shop .woocommerce ul.products li.product img,
body.tax-product_cat .woocommerce ul.products li.product img {
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: cover !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.post-type-archive-product .woocommerce ul.products li.product .astra-shop-summary-wrap,
body.woocommerce-shop .woocommerce ul.products li.product .astra-shop-summary-wrap,
body.tax-product_cat .woocommerce ul.products li.product .astra-shop-summary-wrap {
  padding: 0.72rem 0 0 !important;
  background: transparent !important;
}

body.post-type-archive-product .woocommerce ul.products li.product .woocommerce-loop-product__title,
body.woocommerce-shop .woocommerce ul.products li.product .woocommerce-loop-product__title,
body.tax-product_cat .woocommerce ul.products li.product .woocommerce-loop-product__title,
body.post-type-archive-product .woocommerce ul.products li.product .astra-shop-summary-wrap .woocommerce-loop-product__title,
body.woocommerce-shop .woocommerce ul.products li.product .astra-shop-summary-wrap .woocommerce-loop-product__title,
body.tax-product_cat .woocommerce ul.products li.product .astra-shop-summary-wrap .woocommerce-loop-product__title {
  margin: 0 !important;
  color: #4f465d !important;
  font-family: var(--font-product) !important;
  font-size: clamp(1.22rem, 1.65vw, 1.7rem) !important;
  line-height: 1.14 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

body.post-type-archive-product .woocommerce ul.products li.product .concha-price-tag,
body.woocommerce-shop .woocommerce ul.products li.product .concha-price-tag,
body.tax-product_cat .woocommerce ul.products li.product .concha-price-tag {
  right: 0.7rem !important;
  bottom: 0.7rem !important;
  border: 0 !important;
  background: rgba(255, 255, 255, 0.88) !important;
  box-shadow: none !important;
  color: #4f465d !important;
  font-family: var(--font-product) !important;
}

body.post-type-archive-product .concha-shop-cat-nav-wrap,
body.woocommerce-shop .concha-shop-cat-nav-wrap,
body.tax-product_cat .concha-shop-cat-nav-wrap {
  padding: 0.55rem 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.post-type-archive-product .concha-shop-cat-nav a,
body.woocommerce-shop .concha-shop-cat-nav a,
body.tax-product_cat .concha-shop-cat-nav a,
body.post-type-archive-product .concha-shop-cat-nav summary,
body.woocommerce-shop .concha-shop-cat-nav summary,
body.tax-product_cat .concha-shop-cat-nav summary {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

@media (max-width: 980px) {
  body.post-type-archive-product .woocommerce ul.products,
  body.woocommerce-shop .woocommerce ul.products,
  body.tax-product_cat .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 560px) {
  body.post-type-archive-product .site-content .ast-container,
  body.woocommerce-shop .site-content .ast-container,
  body.tax-product_cat .site-content .ast-container {
    width: min(calc(100% - 0.9rem), 1640px) !important;
  }

  body.post-type-archive-product .woocommerce ul.products,
  body.woocommerce-shop .woocommerce ul.products,
  body.tax-product_cat .woocommerce ul.products {
    grid-template-columns: 1fr !important;
  }
}

/* Final catalog square-corner lock for Astra/WooCommerce product archives. */
body.post-type-archive-product .woocommerce ul.products li.product *,
body.woocommerce-shop .woocommerce ul.products li.product *,
body.tax-product_cat .woocommerce ul.products li.product *,
body.post-type-archive-product .woocommerce-page ul.products li.product *,
body.woocommerce-shop .woocommerce-page ul.products li.product *,
body.tax-product_cat .woocommerce-page ul.products li.product * {
  border-radius: 0 !important;
}

body.post-type-archive-product .woocommerce ul.products li.product .astra-shop-thumbnail-wrap,
body.woocommerce-shop .woocommerce ul.products li.product .astra-shop-thumbnail-wrap,
body.tax-product_cat .woocommerce ul.products li.product .astra-shop-thumbnail-wrap,
body.post-type-archive-product .woocommerce ul.products li.product .woocommerce-LoopProduct-link,
body.woocommerce-shop .woocommerce ul.products li.product .woocommerce-LoopProduct-link,
body.tax-product_cat .woocommerce ul.products li.product .woocommerce-LoopProduct-link,
body.post-type-archive-product .woocommerce ul.products li.product .woocommerce-loop-product__link,
body.woocommerce-shop .woocommerce ul.products li.product .woocommerce-loop-product__link,
body.tax-product_cat .woocommerce ul.products li.product .woocommerce-loop-product__link,
body.post-type-archive-product .woocommerce ul.products li.product img,
body.woocommerce-shop .woocommerce ul.products li.product img,
body.tax-product_cat .woocommerce ul.products li.product img,
body.post-type-archive-product .woocommerce ul.products li.product .attachment-woocommerce_thumbnail,
body.woocommerce-shop .woocommerce ul.products li.product .attachment-woocommerce_thumbnail,
body.tax-product_cat .woocommerce ul.products li.product .attachment-woocommerce_thumbnail,
body.post-type-archive-product .woocommerce ul.products li.product .button,
body.woocommerce-shop .woocommerce ul.products li.product .button,
body.tax-product_cat .woocommerce ul.products li.product .button,
body.post-type-archive-product .woocommerce ul.products li.product .added_to_cart,
body.woocommerce-shop .woocommerce ul.products li.product .added_to_cart,
body.tax-product_cat .woocommerce ul.products li.product .added_to_cart {
  border-radius: 0 !important;
}

/* Final presentation section: calmer layout and cleaner image treatment. */
.concha-front-page .videos.section {
  padding-block: clamp(3rem, 7vw, 6.5rem) !important;
}

.concha-front-page .videos .container {
  width: min(calc(100% - 2rem), 1380px) !important;
}

.concha-front-page .video-stack {
  gap: clamp(2.5rem, 6vw, 5.5rem) !important;
}

.concha-front-page .video-row,
.concha-front-page .video-row-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr) !important;
  gap: clamp(2rem, 5vw, 5rem) !important;
  align-items: center !important;
}

.concha-front-page .video-row-reverse {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr) !important;
}

.concha-front-page .video-copy,
.concha-front-page .video-row-reverse .video-copy {
  padding: clamp(1.65rem, 3.2vw, 2.85rem) !important;
  background: rgba(238, 246, 249, 0.56) !important;
  border: 0 !important;
  border-left: 4px solid rgba(109, 96, 121, 0.26) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.concha-front-page .video-copy h3,
.concha-front-page .video-row-reverse .video-copy h3 {
  margin-bottom: clamp(0.95rem, 1.8vw, 1.35rem) !important;
  color: #5f526c !important;
  font-size: clamp(2.25rem, 4.6vw, 3.9rem) !important;
  line-height: 1.12 !important;
}

.concha-front-page .video-copy p,
.concha-front-page .video-row-reverse .video-copy p {
  max-width: 64ch !important;
  margin: 0.45rem 0 0 !important;
  color: #4d5360 !important;
  font-size: clamp(1.18rem, 1.55vw, 1.38rem) !important;
  line-height: 1.5 !important;
}

.concha-front-page .video-card,
.concha-front-page .video-card.pink-card,
.concha-front-page .video-card.aqua-card {
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.concha-front-page .video-frame {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.concha-front-page .video-frame img,
.concha-front-page .video-frame video,
.concha-front-page .video-frame .about-photo {
  display: block !important;
  width: 100% !important;
  aspect-ratio: 4 / 5 !important;
  object-fit: cover !important;
  object-position: center top !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: 10px 10px 0 rgba(255, 211, 230, 0.85) !important;
}

@media (max-width: 900px) {
  .concha-front-page .video-row,
  .concha-front-page .video-row-reverse {
    grid-template-columns: 1fr !important;
  }

  .concha-front-page .video-row-reverse .video-copy,
  .concha-front-page .video-row-reverse .video-card {
    order: initial !important;
  }
}

/* Cleaner selection intro and softer catalog CTA. */
.concha-front-page #productos .section-heading {
  display: none !important;
}

.concha-front-page .hero-photo-carousel-button {
  border: 2px solid rgba(109, 96, 121, 0.38) !important;
  background: linear-gradient(135deg, rgba(255, 248, 216, 0.94), rgba(255, 227, 238, 0.9)) !important;
  color: #5f526c !important;
  font-family: var(--font-product) !important;
  font-size: 1.08rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  text-transform: lowercase !important;
  box-shadow: 5px 5px 0 rgba(109, 96, 121, 0.16) !important;
}

.concha-front-page .hero-photo-carousel-button:hover {
  background: linear-gradient(135deg, rgba(255, 240, 246, 0.98), rgba(255, 250, 218, 0.96)) !important;
  color: #4f465d !important;
  transform: translateY(-2px) !important;
}

/* Real Instagram icon in the footer. */
.concha-site-footer-instagram img {
  display: block;
  width: 1.9rem;
  height: 1.9rem;
  opacity: 0.9;
  transition: opacity 180ms ease, transform 180ms ease;
}

.concha-site-footer-instagram:hover img {
  opacity: 1;
  transform: translateY(-1px);
}

/* Mobile product grids stay in two columns. */
@media (max-width: 640px) {
  .concha-front-page .broken-grid,
  .concha-front-page .product-category-row .broken-grid,
  body.post-type-archive-product .woocommerce ul.products,
  body.woocommerce-shop .woocommerce ul.products,
  body.tax-product_cat .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.85rem !important;
  }

  .concha-front-page .product-copy h3,
  body.post-type-archive-product .woocommerce ul.products li.product .woocommerce-loop-product__title,
  body.woocommerce-shop .woocommerce ul.products li.product .woocommerce-loop-product__title,
  body.tax-product_cat .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: clamp(0.82rem, 4vw, 1rem) !important;
    line-height: 1.12 !important;
  }
}

.concha-front-page .product-block-link {
  color: inherit !important;
  text-decoration: none !important;
  cursor: pointer;
}

.concha-front-page .product-block-link:hover .product-copy h3,
.concha-front-page .product-block-link:focus-visible .product-copy h3 {
  color: #5f526c !important;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.concha-front-page .product-block-link:focus-visible {
  outline: 2px solid rgba(109, 96, 121, 0.42);
  outline-offset: 5px;
}

/* Product grid actions: text-only, no rounded pills. */
body.woocommerce ul.products li.product .button,
body.woocommerce-page ul.products li.product .button,
body.woocommerce ul.products li.product .added_to_cart,
body.woocommerce-page ul.products li.product .added_to_cart,
body.single-product .related.products ul.products li.product .button,
body.single-product .related.products ul.products li.product .added_to_cart {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  min-height: 0 !important;
  width: auto !important;
  margin-top: 0.55rem !important;
  padding: 0.12rem 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #5f526c !important;
  font-family: var(--font-body) !important;
  font-size: clamp(0.86rem, 2.4vw, 0.98rem) !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  text-decoration: underline !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 0.22em !important;
  text-transform: none !important;
}

body.woocommerce ul.products li.product .button:hover,
body.woocommerce-page ul.products li.product .button:hover,
body.woocommerce ul.products li.product .added_to_cart:hover,
body.woocommerce-page ul.products li.product .added_to_cart:hover,
body.single-product .related.products ul.products li.product .button:hover,
body.single-product .related.products ul.products li.product .added_to_cart:hover {
  transform: none !important;
  color: #4f465d !important;
  background: transparent !important;
}

/* Custom product CTA and tighter video/presentation section. */
.concha-front-page .custom-order.section {
  padding-block: clamp(2.2rem, 5vw, 4.2rem) !important;
}

.concha-front-page .custom-order .container {
  width: min(calc(100% - 2rem), 1380px) !important;
}

.concha-front-page .custom-order-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1fr);
  gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: center;
  padding: clamp(1.35rem, 3vw, 2.4rem);
  background:
    linear-gradient(135deg, rgba(255, 248, 216, 0.78), rgba(238, 246, 249, 0.74)),
    rgba(255, 255, 255, 0.35);
  border-left: 4px solid rgba(109, 96, 121, 0.28);
  box-shadow: 10px 10px 0 rgba(109, 96, 121, 0.12);
}

.concha-front-page .custom-order-media {
  min-width: 0;
}

.concha-front-page .custom-order-carousel-viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 8px 8px 0 rgba(255, 211, 230, 0.74);
}

.concha-front-page .custom-order-carousel-track,
.concha-front-page .custom-order-carousel-slide {
  position: absolute;
  inset: 0;
}

.concha-front-page .custom-order-carousel-slide {
  margin: 0;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 700ms ease, transform 900ms ease;
}

.concha-front-page .custom-order-carousel-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.concha-front-page .custom-order-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concha-front-page .custom-order-kicker {
  margin: 0 0 0.45rem;
  color: #6d6079;
  font-family: var(--font-product);
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.concha-front-page .custom-order-copy h2 {
  margin: 0;
  color: #5f526c;
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.concha-front-page .custom-order-copy p:last-child {
  max-width: 58rem;
  margin: clamp(0.65rem, 1.4vw, 1rem) 0 0;
  color: #4d5360;
  font-family: var(--font-body);
  font-size: clamp(1.04rem, 1.35vw, 1.22rem);
  line-height: 1.45;
}

.concha-front-page .custom-order-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 3.45rem;
  margin-top: clamp(1rem, 2vw, 1.45rem);
  padding: 0.95rem 1.65rem;
  border: 2px solid rgba(109, 96, 121, 0.38);
  background: rgba(255, 244, 206, 0.9);
  color: #5f526c;
  font-family: var(--font-product);
  font-size: clamp(1.12rem, 1.8vw, 1.35rem);
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-transform: lowercase;
  white-space: nowrap;
  box-shadow: 5px 5px 0 rgba(109, 96, 121, 0.16);
}

.concha-front-page .custom-order-button:hover,
.concha-front-page .custom-order-button:focus-visible {
  color: #4f465d;
  background: rgba(255, 231, 241, 0.94);
  transform: translateY(-2px);
}

.concha-front-page .videos.section {
  padding-block: clamp(2.1rem, 4.8vw, 4.6rem) !important;
}

.concha-front-page .video-stack {
  gap: clamp(1.75rem, 4.2vw, 3.6rem) !important;
}

.concha-front-page .video-row,
.concha-front-page .video-row-reverse {
  gap: clamp(1.5rem, 4vw, 3.6rem) !important;
}

.concha-front-page .video-copy,
.concha-front-page .video-row-reverse .video-copy {
  padding: clamp(1.35rem, 2.7vw, 2.35rem) !important;
}

.concha-front-page .video-frame img,
.concha-front-page .video-frame video,
.concha-front-page .video-frame .about-photo {
  max-height: clamp(440px, 58vw, 720px) !important;
}

@media (max-width: 780px) {
  .concha-front-page .custom-order-panel {
    grid-template-columns: 1fr;
  }

  .concha-front-page .custom-order-media {
    max-width: 420px;
    width: 100%;
    justify-self: center;
  }

  .concha-front-page .custom-order-button {
    width: 100%;
  }
}

/* Small scale down for process/about media. */
.concha-front-page .video-frame img,
.concha-front-page .video-frame video,
.concha-front-page .video-frame .about-photo {
  width: 94% !important;
  max-height: clamp(390px, 52vw, 640px) !important;
  margin-inline: auto !important;
}

/* Catalog category filters in uppercase. */
body:not(.home) .concha-shop-cat-nav a,
body:not(.home) .concha-shop-cat-nav summary,
body:not(.home) .concha-cat-children a {
  text-transform: uppercase !important;
}
