:root {
  --pink: #F1498C;
  --blue: #00A6E9;
  --yellow: #FFD602;
  --dark-blue: #00295F;
  --text: #333333;
  --white: #FFFFFF;
  --light-bg: #FFF7FB;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Inter", "Poppins", Arial, sans-serif;
}

body.cart-open {
  overflow: hidden;
}

body.cart-open .floating-whatsapp {
  display: none;
}

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

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

button,
input {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--dark-blue);
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--blue));
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(241, 73, 140, 0.25);
}

.logo-mark {
  overflow: hidden;
  background: var(--white);
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: var(--dark-blue);
  font-size: 0.82rem;
  font-weight: 800;
}

.main-nav a {
  padding: 10px 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-button,
.cart-button,
.menu-toggle,
.close-cart {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  color: var(--dark-blue);
  background: var(--light-bg);
  cursor: pointer;
}

.header-icon {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  display: none;
  font-size: 1.35rem;
}

.cart-button {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  border-radius: 999px;
  color: var(--dark-blue);
  background: var(--yellow);
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 22px;
}

.whatsapp-button,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.whatsapp-button,
.primary-button {
  color: var(--white);
  background: var(--pink);
  box-shadow: 0 10px 24px rgba(241, 73, 140, 0.26);
}

.secondary-button {
  color: var(--dark-blue);
  background: var(--yellow);
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  min-height: 650px;
  padding: 54px clamp(18px, 5vw, 72px) 64px;
  background:
    linear-gradient(120deg, rgba(255, 247, 251, 0.96), rgba(231, 249, 255, 0.88)),
    radial-gradient(circle at 18% 18%, rgba(255, 214, 2, 0.25), transparent 28%);
}

.hero-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.decor-bubble {
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.35;
  animation: float-bubble 15s infinite alternate ease-in-out;
}

.bubble-pink {
  width: 280px;
  height: 280px;
  background: var(--pink);
  top: -40px;
  left: 20%;
  animation-duration: 18s;
}

.bubble-blue {
  width: 350px;
  height: 350px;
  background: var(--blue);
  bottom: -60px;
  right: 15%;
  animation-duration: 22s;
  animation-delay: -3s;
}

.bubble-yellow {
  width: 200px;
  height: 200px;
  background: var(--yellow);
  top: 40%;
  left: -50px;
  animation-duration: 14s;
  animation-delay: -7s;
}

@keyframes float-bubble {
  0% {
    transform: translateY(0) scale(1) rotate(0deg);
  }
  100% {
    transform: translateY(-40px) scale(1.15) rotate(45deg);
  }
}

.hero-content {
  max-width: 720px;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(18px) saturate(155%);
  box-shadow: 0 24px 60px rgba(0, 41, 95, 0.08);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--pink);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-eyebrow {
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--dark-blue);
  background: var(--yellow);
  box-shadow: 0 10px 24px rgba(255, 214, 2, 0.25);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--dark-blue);
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
}

h3 {
  font-size: 1.1rem;
}

p {
  line-height: 1.7;
}

.hero p {
  max-width: 610px;
  margin: 20px 0 0;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 610px;
  padding: 32px clamp(20px, 3.5vw, 52px) 38px;
  place-items: center;
}

.hero-visual img {
  width: min(125%, 1025px);
  height: auto;
  max-height: 740px;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

.floating-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 172px;
  padding: 13px 16px 13px 13px;
  border-radius: 8px;
  color: var(--dark-blue);
  background: rgba(255, 255, 255, 0.94);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(0, 41, 95, 0.14);
  backdrop-filter: blur(12px);
  animation: float-card 6s infinite alternate ease-in-out;
  z-index: 2;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.floating-card svg {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  padding: 7px;
  place-items: center;
  border-radius: 8px;
  color: var(--dark-blue);
  background: var(--yellow);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-card:hover,
.floating-card:focus-visible {
  background: var(--white);
  box-shadow: 0 22px 52px rgba(0, 41, 95, 0.2);
  transform: translateY(-3px);
}

.card-pink {
  left: 0;
  top: 84px;
  border-left: 8px solid var(--pink);
  animation-delay: 0s;
}

.card-blue {
  right: 0;
  top: 292px;
  border-left: 8px solid var(--blue);
  animation-delay: -2s;
}

.card-yellow {
  left: 58px;
  bottom: 54px;
  border-left: 8px solid var(--yellow);
  animation-delay: -4s;
}

@keyframes float-card {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-12px);
  }
}

.section {
  padding: 74px clamp(18px, 5vw, 72px);
  scroll-margin-top: 96px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.section-heading p {
  margin-bottom: 0;
}

.category-grid,
.product-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.category-card,
.product-card,
.benefit-grid article {
  border: 1px solid rgba(0, 41, 95, 0.1);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(0, 41, 95, 0.07);
}

.category-card {
  position: relative;
  min-height: 280px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.category-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0, 41, 95, 0.78));
  z-index: 1;
}

.category-card h3,
.category-card a,
.category-icon {
  position: relative;
  z-index: 2;
}

.category-card h3 {
  color: var(--white);
}

.category-card a {
  width: max-content;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--dark-blue);
  background: var(--white);
  font-weight: 900;
}

.category-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 8px;
  background: var(--yellow);
  box-shadow: 0 10px 24px rgba(0, 41, 95, 0.18);
}

.category-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--dark-blue);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-hub,
.themes-page {
  background: var(--light-bg);
}

.theme-hub {
  padding-top: clamp(86px, 8vw, 128px);
  padding-bottom: clamp(86px, 8vw, 118px);
}

.theme-hub .section-heading {
  max-width: 860px;
  margin: 0 auto 44px;
  text-align: center;
}

.theme-hub .section-heading p {
  max-width: 720px;
  margin: 16px auto 0;
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
  max-width: 1120px;
  margin: 0 auto;
}

.theme-card {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 8px;
  color: var(--dark-blue);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(0, 41, 95, 0.08);
  backdrop-filter: blur(16px) saturate(150%);
}

.theme-image-card {
  position: relative;
  min-height: 270px;
  padding: 28px;
  overflow: hidden;
  align-content: end;
  color: var(--white);
  background: var(--dark-blue);
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.theme-image-card img,
.theme-landing-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.theme-image-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  border-radius: 0;
  opacity: 0.92;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.theme-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 41, 95, 0.1) 0%, rgba(0, 41, 95, 0.34) 42%, rgba(0, 41, 95, 0.9) 100%),
    linear-gradient(90deg, rgba(0, 41, 95, 0.36), transparent 62%);
}

.theme-image-card strong,
.theme-image-card span {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.theme-image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 54px rgba(0, 41, 95, 0.16);
}

.theme-image-card:hover img {
  opacity: 1;
  transform: scale(1.05);
}

.theme-card strong {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 900;
  text-shadow: 0 3px 14px rgba(0, 41, 95, 0.26);
}

.theme-card span,
.theme-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  line-height: 1.35;
}

.theme-card a {
  width: max-content;
  max-width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--dark-blue);
  background: var(--yellow);
  font-weight: 900;
}

.seo-copy {
  max-width: 980px;
  margin: 28px auto 0;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(0, 41, 95, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px) saturate(150%);
}

.seo-copy p:last-child {
  margin-bottom: 0;
}

.theme-hero {
  display: grid;
  min-height: 430px;
  align-content: center;
  padding: clamp(42px, 8vw, 92px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(120deg, rgba(255, 247, 251, 0.95), rgba(231, 249, 255, 0.88)),
    radial-gradient(circle at 80% 20%, rgba(0, 166, 233, 0.18), transparent 30%);
}

.theme-hero > * {
  max-width: 820px;
}

.theme-landing-card {
  align-content: start;
}

.theme-landing-card img {
  margin-bottom: 8px;
}

.theme-seo-copy {
  max-width: 1120px;
  margin: 40px auto 0;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(0, 41, 95, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(0, 41, 95, 0.08);
}

.theme-seo-copy p {
  margin-bottom: 0;
}

.shop,
.benefits {
  background: var(--light-bg);
}

.shop {
  border-top: 1px solid rgba(0, 41, 95, 0.08);
}

.shop .section-heading,
.shop-tools,
.shop-results,
.product-grid {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.shop-tools {
  display: grid;
  grid-template-columns: minmax(300px, 520px) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
  padding: 18px;
  border: 1px solid rgba(0, 41, 95, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(0, 41, 95, 0.06);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(0, 41, 95, 0.13);
  border-radius: 8px;
  background: var(--white);
}

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

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
}

.filter-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(0, 41, 95, 0.12);
  border-radius: 8px;
  color: var(--dark-blue);
  background: var(--white);
  font-weight: 800;
  cursor: pointer;
}

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

.filter-button.subcategory-filter {
  position: relative;
  padding-left: 28px;
  border-color: rgba(241, 73, 140, 0.2);
  background: rgba(255, 247, 251, 0.9);
  font-size: 0.92rem;
}

.filter-button.subcategory-filter::before {
  content: "";
  position: absolute;
  left: 13px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
}

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

.filter-button.subcategory-filter.active::before {
  background: var(--yellow);
}

.filter-button span {
  display: inline-flex;
  min-width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  padding: 0 7px;
  border-radius: 999px;
  background: rgba(0, 41, 95, 0.08);
  font-size: 0.74rem;
}

.filter-button.active span {
  color: var(--dark-blue);
  background: var(--yellow);
}

.shop-results {
  margin: -4px auto 24px;
  color: #667085;
  font-size: 0.92rem;
  font-weight: 700;
}

.store-page main > section:not(.shop) {
  display: none;
}

.store-page .shop {
  min-height: calc(100vh - 82px);
  padding-top: 58px;
}

.store-page .shop .section-heading {
  display: block;
  max-width: 1040px;
  margin-bottom: 30px;
  text-align: center;
}

.store-page .shop .section-heading::after {
  display: none;
}

.store-page .shop .section-heading .eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
}

.store-page .shop .section-heading h2 {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.35rem, 4.8vw, 4.2rem);
  line-height: 0.98;
}

.store-page .shop .section-heading p {
  max-width: 760px;
  margin: 18px auto 0;
  font-size: 1.06rem;
  line-height: 1.65;
}

.shop-entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 24px;
  border: 1px solid rgba(0, 41, 95, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(0, 41, 95, 0.08);
}

.shop-entry h3 {
  font-size: 1.45rem;
}

.shop-entry p {
  margin: 8px 0 0;
}

.home-page .shop-tools,
.home-page .shop-results,
.home-page .product-grid {
  display: none;
}

.store-page .shop-entry {
  display: none;
}

.product-card {
  display: flex;
  flex-direction: column;
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px) saturate(150%);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 41, 95, 0.12);
}

.product-image {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  aspect-ratio: 4 / 3;
  background: var(--white);
  cursor: pointer;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-image:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

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

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--dark-blue);
  background: var(--yellow);
  font-size: 0.76rem;
  font-weight: 900;
}

.image-detail-cue {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  max-width: calc(100% - 24px);
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  color: var(--dark-blue);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(0, 41, 95, 0.16);
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  opacity: 0.94;
  transform: translateY(0);
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.image-detail-cue svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-image:hover .image-detail-cue,
.product-image:focus-visible .image-detail-cue {
  opacity: 1;
  background: var(--yellow);
  transform: translateY(-2px);
}

.product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
}

.personalization-chip {
  width: max-content;
  max-width: 100%;
  padding: 6px 9px;
  border-radius: 8px;
  color: var(--dark-blue);
  background: rgba(255, 214, 2, 0.92);
  font-size: 0.74rem;
  font-weight: 900;
}

.product-excerpt {
  margin: 0;
  color: #5f6570;
  font-size: 0.92rem;
}

.variant-field {
  display: grid;
  gap: 7px;
  color: var(--dark-blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.variant-field select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(0, 41, 95, 0.16);
  border-radius: 8px;
  color: var(--dark-blue);
  background: var(--white);
  cursor: pointer;
}

.product-category {
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-price {
  color: var(--dark-blue);
  font-size: 1.45rem;
  font-weight: 900;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
}

.whatsapp-consult {
  color: var(--white);
  background: #25d366;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.24);
}

.detail-link {
  width: max-content;
  max-width: 100%;
  padding: 0;
  border: 0;
  color: var(--dark-blue);
  background: transparent;
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.product-share-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.share-button {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(0, 41, 95, 0.12);
  border-radius: 8px;
  color: var(--dark-blue);
  background: var(--light-bg);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.share-button:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 41, 95, 0.22);
  background: var(--white);
}

.share-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.share-facebook {
  color: #1877f2;
}

.share-instagram {
  color: var(--pink);
}

.detail-share-actions {
  margin: -8px 0 18px;
}

.detail-share {
  padding: 10px;
  border: 1px solid rgba(0, 41, 95, 0.1);
  border-radius: 8px;
  background: var(--light-bg);
}

.small-button {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--dark-blue);
  font-weight: 900;
  cursor: pointer;
}

.small-button.whatsapp-consult {
  color: var(--white);
  background: #25d366;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.24);
}

.small-button.whatsapp-consult:hover,
.small-button.whatsapp-consult:focus-visible {
  background: #1ebe5d;
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.32);
}

.outline-button {
  color: var(--dark-blue);
  background: var(--white);
  border: 1px solid rgba(0, 41, 95, 0.16);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 30px;
  border-radius: 8px;
  background: var(--white);
  text-align: center;
  font-weight: 800;
}

.customizer {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, var(--dark-blue), #07448f);
}

.customizer h2,
.customizer p {
  color: var(--white);
}

.steps-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 66px;
  padding: 14px;
  border-radius: 8px;
  color: var(--dark-blue);
  background: var(--white);
  font-weight: 800;
}

.steps-list span {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--yellow);
  font-weight: 900;
}

.benefit-grid article {
  position: relative;
  padding: 26px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 251, 0.78)),
    var(--white);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.benefit-grid article::after {
  content: "";
  position: absolute;
  right: -28px;
  top: -28px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(0, 166, 233, 0.08);
}

.benefit-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 166, 233, 0.28);
  box-shadow: 0 24px 48px rgba(0, 41, 95, 0.11);
}

.benefit-icon {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 58px;
  height: 58px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--pink);
  box-shadow: 0 14px 30px rgba(0, 41, 95, 0.12);
}

.benefit-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-grid h3,
.benefit-grid p {
  position: relative;
  z-index: 1;
}

.icon-pink {
  background: linear-gradient(135deg, var(--pink), #ff73aa);
}

.icon-blue {
  background: linear-gradient(135deg, var(--blue), #4fc8ff);
}

.icon-yellow {
  color: var(--dark-blue);
  background: linear-gradient(135deg, var(--yellow), #ffe86b);
}

.icon-green {
  background: linear-gradient(135deg, #25d366, #10b85a);
}

.benefit-grid p {
  margin-bottom: 0;
}

.promos {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 520px);
  gap: 24px;
  align-items: center;
  background: var(--yellow);
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  min-width: 0;
  flex: 1;
  min-height: 52px;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: stretch;
  background: var(--white);
}

.contact-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

.contact-copy h2,
.contact-copy p {
  margin-bottom: 0;
}

.contact-cards {
  display: grid;
  gap: 12px;
}

.contact-cards article {
  padding: 16px;
  border: 1px solid rgba(0, 41, 95, 0.12);
  border-radius: 8px;
  background: var(--light-bg);
}

.contact-cards span {
  display: block;
  margin-bottom: 6px;
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-cards strong {
  display: block;
  color: var(--dark-blue);
  font-size: 1.1rem;
}

.contact-cards p {
  margin-top: 6px;
}

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

.contact-map {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(0, 41, 95, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0, 41, 95, 0.08);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.site-footer {
  padding: 56px clamp(18px, 5vw, 72px) 26px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--dark-blue);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
}

.footer-brand,
.site-footer h3 {
  color: var(--white);
}

.site-footer a {
  display: block;
  margin: 10px 0;
}

.legal {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  width: min(440px, 100vw);
  height: 100vh;
  max-height: 100dvh;
  padding: 22px;
  background: var(--white);
  box-shadow: -18px 0 54px rgba(0, 41, 95, 0.18);
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateX(105%);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-header {
  position: sticky;
  top: -22px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 0 0 14px;
  background: var(--white);
}

.cart-items {
  flex: 0 0 auto;
  max-height: 30vh;
  overflow-y: auto;
  margin: 18px 0;
  padding-right: 4px;
}

.cart-item {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 41, 95, 0.1);
}

.cart-item img {
  height: 76px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-item h3 {
  font-size: 0.95rem;
}

.cart-item p {
  margin: 5px 0;
  font-size: 0.88rem;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.quantity-controls button,
.remove-item {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 8px;
  background: var(--light-bg);
  color: var(--dark-blue);
  font-weight: 900;
  cursor: pointer;
}

.remove-item {
  color: var(--pink);
}

.cart-empty {
  display: none;
  padding: 18px;
  border-radius: 8px;
  background: var(--light-bg);
  font-weight: 700;
}

.cart-empty.visible {
  display: block;
}

.cart-summary {
  border-top: 1px solid rgba(0, 41, 95, 0.12);
  padding-top: 18px;
  padding-bottom: 14px;
}

.shipping-calculator {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 41, 95, 0.08);
}

.shipping-calculator label {
  display: block;
  margin-bottom: 6px;
  color: var(--dark-blue);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}

.shipping-input-group {
  display: flex;
  gap: 8px;
}

.shipping-input-group input {
  flex: 1;
  min-width: 0;
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid rgba(0, 41, 95, 0.16);
  border-radius: 6px;
  font-size: 0.9rem;
}

.shipping-input-group button {
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.85rem;
}

.shipping-options {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: min(42vh, 360px);
  overflow-y: auto;
  padding-right: 4px;
  overscroll-behavior: contain;
}

.shipping-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(0, 41, 95, 0.12);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.shipping-option:hover {
  background: var(--light-bg);
}

.shipping-option input {
  margin: 0;
  cursor: pointer;
}

.shipping-option-label {
  flex: 1;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}

.shipping-option-price {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--dark-blue);
}

.cart-summary-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 41, 95, 0.08);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #5f6570;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  color: var(--dark-blue);
  font-size: 1.2rem;
}

.checkout-button {
  width: 100%;
}

.payment-options {
  display: grid;
  gap: 10px;
}

.mercado-pago-button {
  width: 100%;
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(0, 166, 233, 0.22);
}

.payment-note {
  margin: 12px 0 0;
  color: #667085;
  font-size: 0.86rem;
  line-height: 1.45;
}

.shipping-info,
.shipping-error {
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
}

.shipping-info {
  color: var(--dark-blue);
  background: #eaf7ff;
}

.shipping-error {
  color: #a64000;
  background: #fff1df;
}

.shipping-address-form {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.shipping-address-form h3 {
  font-size: 1rem;
}

.checkout-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.checkout-fields input,
.checkout-fields textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(0, 41, 95, 0.16);
  border-radius: 8px;
  color: var(--dark-blue);
  background: var(--white);
}

.checkout-fields textarea {
  grid-column: 1 / -1;
  min-height: 70px;
  resize: vertical;
}

.shipping-option-label small {
  display: block;
  margin-top: 2px;
  color: #667085;
  font-size: 0.75rem;
}

.shipping-rate-selected {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(0, 166, 233, 0.16);
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 35;
  background: rgba(0, 41, 95, 0.36);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 41, 95, 0.45);
}

.product-modal.open {
  display: flex;
}

.product-detail {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 26px;
  width: min(1120px, 100%);
  max-height: min(860px, 92vh);
  overflow: auto;
  padding: 22px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 30px 70px rgba(0, 41, 95, 0.25);
}

.close-detail {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  color: var(--dark-blue);
  background: var(--light-bg);
  font-size: 1.5rem;
  cursor: pointer;
}

.detail-main-image {
  aspect-ratio: 1 / 1;
  height: auto;
  border: 1px solid rgba(0, 41, 95, 0.1);
  border-radius: 8px;
  object-fit: contain;
  background: var(--light-bg);
}

.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.detail-thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  overflow: hidden;
}

.detail-thumb.active {
  border-color: var(--pink);
}

.detail-thumb img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.detail-content {
  padding-right: 28px;
}

.detail-summary {
  margin: 14px 0 0;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.detail-description {
  display: grid;
  gap: 16px;
}

.detail-block {
  padding: 16px;
  border: 1px solid rgba(0, 41, 95, 0.1);
  border-radius: 8px;
  background: var(--light-bg);
}

.detail-block h3 {
  margin-bottom: 10px;
}

.detail-block ul {
  margin: 0;
  padding-left: 18px;
  line-height: 1.7;
}

.detail-block p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 12px;
  max-width: min(340px, calc(100vw - 36px));
  padding: 0;
  color: var(--white);
  background: transparent;
  font-weight: 900;
  text-decoration: none;
  filter: drop-shadow(0 18px 34px rgba(0, 41, 95, 0.16));
}

.floating-whatsapp svg {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  padding: 13px;
  border: 3px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #14b85a);
  fill: currentColor;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.34);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.floating-whatsapp span {
  position: relative;
  max-width: 210px;
  padding: 10px 13px;
  border: 1px solid rgba(0, 41, 95, 0.08);
  border-radius: 8px;
  color: var(--dark-blue);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 40px rgba(0, 41, 95, 0.12);
  backdrop-filter: blur(14px);
  line-height: 1.15;
  font-size: 0.82rem;
}

.floating-whatsapp span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -7px;
  width: 12px;
  height: 12px;
  border-top: 1px solid rgba(0, 41, 95, 0.08);
  border-right: 1px solid rgba(0, 41, 95, 0.08);
  background: rgba(255, 255, 255, 0.94);
  transform: translateY(-50%) rotate(45deg);
}

.floating-whatsapp strong {
  display: block;
}

.floating-whatsapp:hover svg {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.42);
}

.payment-result {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background: var(--light-bg);
}

.payment-result-card {
  width: min(620px, 100%);
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid rgba(0, 41, 95, 0.1);
  border-radius: 8px;
  background: var(--white);
  text-align: center;
  box-shadow: 0 18px 48px rgba(0, 41, 95, 0.12);
}

.payment-result-card p {
  margin: 16px 0 24px;
}

.account-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 18%, rgba(241, 73, 140, 0.1), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(0, 166, 233, 0.1), transparent 30%),
    var(--light-bg);
}

.account-shell {
  display: grid;
  gap: 28px;
  min-height: calc(100vh - 86px);
  align-content: start;
  padding: clamp(34px, 5vw, 72px) clamp(16px, 4vw, 48px) 64px;
}

.account-hero {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.account-hero h1 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.02;
}

.account-hero p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.account-grid,
.account-panel {
  width: min(1040px, 100%);
  margin: 0 auto;
}

.admin-page .account-hero {
  display: none;
}

.admin-page .account-shell {
  padding-top: 34px;
}

.admin-page .account-grid,
.admin-page .account-panel {
  width: min(1280px, 100%);
}

.admin-page .account-grid {
  display: block;
}

.account-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(280px, 0.7fr);
  gap: 22px;
  align-items: stretch;
}

.account-card,
.account-panel,
.account-support-card {
  border: 1px solid rgba(0, 41, 95, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(0, 41, 95, 0.08);
}

.auth-card {
  width: 100%;
  padding: clamp(22px, 3vw, 32px);
}

.account-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
}

.account-tab {
  min-height: 44px;
  border: 1px solid rgba(0, 41, 95, 0.12);
  border-radius: 8px;
  color: var(--dark-blue);
  background: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.account-tab.active {
  color: var(--white);
  background: var(--blue);
}

.auth-form {
  display: none;
  gap: 12px;
}

.auth-form.active {
  display: grid;
}

.auth-form h2 {
  margin-bottom: 4px;
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  line-height: 1.04;
}

.auth-form input,
.chat-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 12px 16px;
  border: 1px solid rgba(0, 41, 95, 0.16);
  border-radius: 8px;
  color: var(--dark-blue);
  background: var(--white);
}

.auth-form .primary-button {
  margin-top: 2px;
  min-height: 54px;
}

.account-support-card {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(22px, 3vw, 30px);
  background: linear-gradient(145deg, var(--dark-blue), #06448e);
  color: var(--white);
}

.account-support-card .eyebrow,
.account-support-card h2,
.account-support-card p {
  color: var(--white);
}

.account-support-card h2 {
  margin-bottom: 4px;
  font-size: clamp(1.5rem, 2.3vw, 2.15rem);
  line-height: 1.08;
}

.account-support-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.account-support-card li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
}

.account-support-card li > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: var(--dark-blue);
  background: var(--yellow);
  font-weight: 900;
}

.account-support-card strong {
  display: block;
  font-weight: 900;
}

.admin-panel-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.admin-filter-tabs {
  display: inline-flex;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(0, 41, 95, 0.1);
  border-radius: 8px;
  background: var(--light-bg);
}

.admin-filter {
  min-height: 38px;
  padding: 0 12px;
  border: 0;
  border-radius: 8px;
  color: var(--dark-blue);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.admin-filter.active {
  color: var(--white);
  background: var(--blue);
}

.admin-danger-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin: 0;
  padding: 14px;
}

.tracking-admin-link p {
  margin-bottom: 0;
}

.tracking-admin-link a {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
  color: #344054;
  font-size: 0.95rem;
  line-height: 1.5;
}

.danger-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: #d92d20;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(217, 45, 32, 0.18);
}

.admin-danger-actions .secondary-button,
.admin-danger-actions .danger-button {
  min-height: 42px;
  padding-inline: 14px;
  font-size: 0.9rem;
}

.admin-archive-note {
  margin: 6px 0 0;
  color: #6b7280;
  font-size: 0.92rem;
}

.account-support-card li p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.5;
}

.account-card[hidden] + .account-support-card {
  display: none;
}

.form-message {
  margin-bottom: 0;
  color: var(--dark-blue);
  font-weight: 800;
}

.form-message.error {
  color: #b42318;
}

.account-panel {
  padding: clamp(16px, 2vw, 24px);
}

.panel-header,
.order-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.panel-header {
  align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 41, 95, 0.08);
}

.panel-header h2 {
  font-size: clamp(1.9rem, 2.4vw, 2.65rem);
  line-height: 1;
}

.order-top > div {
  min-width: 0;
}

.order-top h2 {
  overflow-wrap: anywhere;
  font-size: clamp(1.35rem, 2.15vw, 2.35rem);
  line-height: 1.02;
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(230px, 310px) minmax(0, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.orders-list {
  display: grid;
  align-content: start;
  gap: 10px;
  max-height: calc(100vh - 250px);
  overflow-y: auto;
  padding-right: 4px;
}

.order-list-item {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid rgba(0, 41, 95, 0.12);
  border-radius: 8px;
  color: var(--dark-blue);
  background: var(--white);
  text-align: left;
  cursor: pointer;
}

.order-list-item.active {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 166, 233, 0.14);
}

.order-detail {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.order-detail > .order-top,
.order-detail > .admin-danger-actions,
.order-detail > .detail-block,
.order-detail > .admin-status-form,
.order-detail > .chat-box {
  border: 1px solid rgba(0, 41, 95, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(0, 41, 95, 0.05);
}

.order-detail > .order-top,
.order-detail > .detail-block,
.order-detail > .chat-box {
  padding: 18px;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.status-grid div {
  padding: 12px;
  border-radius: 8px;
  background: var(--light-bg);
}

.status-grid span {
  display: block;
  color: #667085;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-grid strong {
  color: var(--dark-blue);
}

.chat-box {
  display: grid;
  gap: 12px;
}

.chat-thread {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: clamp(420px, 52vh, 620px);
  overflow-y: auto;
  padding: 12px;
  border: 1px solid rgba(0, 41, 95, 0.1);
  border-radius: 8px;
  background: #f8fbff;
}

.chat-message {
  max-width: 82%;
  padding: 10px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 18px rgba(0, 41, 95, 0.06);
}

.chat-message.from-client {
  justify-self: end;
  background: #eaf7ff;
}

.chat-message p {
  margin: 5px 0;
}

.chat-message small {
  display: block;
  margin-top: 5px;
  color: #667085;
}

.chat-form {
  display: grid;
  gap: 10px;
}

.chat-form textarea {
  min-height: 92px;
  resize: vertical;
}

.admin-status-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 10px;
  align-items: end;
  padding: 16px;
}

.admin-status-form label {
  display: grid;
  gap: 5px;
  min-width: 0;
  color: var(--dark-blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-status-form input,
.admin-status-form select {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(0, 41, 95, 0.16);
  border-radius: 8px;
  color: var(--dark-blue);
  background: var(--white);
  font: inherit;
  font-weight: 800;
}

.admin-status-form button {
  grid-column: 1 / -1;
  justify-self: end;
}

.file-button {
  display: inline-flex;
  min-height: 44px;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid rgba(0, 41, 95, 0.16);
  border-radius: 8px;
  color: var(--dark-blue);
  background: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.file-button input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.chat-attachment {
  display: block;
  margin-top: 8px;
}

.chat-attachment img {
  display: block;
  width: min(220px, 100%);
  max-height: 180px;
  object-fit: cover;
  border: 1px solid rgba(0, 41, 95, 0.12);
  border-radius: 8px;
}

.file-preview {
  display: grid;
  width: fit-content;
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(0, 41, 95, 0.12);
  border-radius: 8px;
  color: var(--dark-blue);
  background: var(--light-bg);
  font-size: 0.84rem;
  font-weight: 800;
}

.file-preview[hidden] {
  display: none;
}

.file-preview img {
  width: 140px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}

.tracking-panel {
  display: grid;
  gap: 16px;
}

.tracking-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.result-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}

.pending .result-icon {
  color: var(--dark-blue);
  background: var(--yellow);
}

.rejected .result-icon {
  background: var(--pink);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px 22px 20px;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 41, 95, 0.1);
  }

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

  .header-actions {
    justify-content: flex-end;
  }

  .whatsapp-button {
    display: none;
  }

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

  .hero-visual {
    min-height: 500px;
    padding: 30px 48px 46px;
  }

  .hero-visual img {
    width: min(118%, 620px);
    max-height: 570px;
  }

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

  .theme-hub {
    padding-top: 76px;
    padding-bottom: 84px;
  }

  .theme-image-card {
    min-height: 250px;
    padding: 22px;
  }

  .shop-tools,
  .customizer,
  .contact-section,
  .account-grid,
  .promos,
  .product-detail,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 10px;
    padding: 12px;
  }

  .brand span:last-child {
    font-size: 0.9rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .icon-button {
    display: none;
  }

  .hero,
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .store-page .shop {
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 92px;
  }

  .store-page .shop .section-heading {
    display: block;
    text-align: left;
  }

  .store-page .shop .section-heading::after {
    display: none;
  }

  .store-page .shop .section-heading .eyebrow {
    display: block;
    margin-bottom: 8px;
    font-size: 0.78rem;
    line-height: 1.15;
  }

  .store-page .shop .section-heading h2 {
    max-width: 100%;
    font-size: clamp(2rem, 12vw, 3.05rem);
    line-height: 0.98;
    overflow-wrap: normal;
  }

  .store-page .shop .section-heading p {
    max-width: 32rem;
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.58;
  }

  .shop-tools {
    gap: 12px;
    padding: 12px;
  }

  .search-box {
    min-height: 52px;
    padding: 0 12px;
  }

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

  .filter-button {
    justify-content: center;
    min-height: 44px;
    padding: 0 10px;
    font-size: 0.88rem;
  }

  .hero-actions,
  .newsletter-form,
  .product-actions {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .primary-button,
  .secondary-button,
  .small-button {
    width: 100%;
    min-height: 50px;
  }

  .category-grid,
  .product-grid,
  .benefit-grid,
  .theme-grid {
    grid-template-columns: 1fr;
  }

  .theme-hub {
    padding-top: 58px;
    padding-bottom: 66px;
  }

  .theme-hub .section-heading {
    margin-bottom: 26px;
    text-align: left;
  }

  .theme-image-card {
    min-height: 230px;
    padding: 20px;
  }

  .theme-seo-copy {
    margin-top: 28px;
  }

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

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    max-width: calc(100vw - 24px);
  }

  .floating-whatsapp svg {
    flex-basis: 54px;
    width: 54px;
    height: 54px;
  }

  .floating-whatsapp span {
    max-width: 155px;
    padding: 8px 9px;
    font-size: 0.72rem;
  }

  .category-card {
    min-height: 240px;
  }

  .hero-visual {
    min-height: 430px;
    padding: 24px 8px 94px;
  }

  .hero-visual img {
    width: min(118%, 510px);
    max-height: 420px;
  }

  .floating-card {
    min-width: auto;
    padding: 9px 10px;
    font-size: 0.76rem;
    gap: 7px;
  }

  .floating-card svg {
    flex-basis: 28px;
    width: 28px;
    height: 28px;
    padding: 6px;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 320px;
  }

  .card-blue {
    right: 6px;
    top: 48%;
  }

  .card-pink {
    left: 6px;
    top: 30px;
  }

  .card-yellow {
    left: 20px;
    bottom: 28px;
  }

  .cart-drawer {
    padding: 18px;
  }

  .cart-header {
    top: -18px;
  }

  .cart-items {
    max-height: 24vh;
  }

  .shipping-options {
    max-height: 34vh;
  }

  .cart-item {
    grid-template-columns: 66px 1fr auto;
  }

  .detail-content {
    padding-right: 0;
  }

  .detail-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .account-shell {
    padding: 28px 14px 48px;
  }

  .account-hero {
    text-align: left;
  }

  .account-hero h1,
  .account-hero p {
    margin-left: 0;
    margin-right: 0;
  }

  .panel-header,
  .order-top,
  .shop-entry {
    align-items: stretch;
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .order-layout,
  .status-grid,
  .admin-status-form {
    grid-template-columns: 1fr;
  }

  .chat-message {
    max-width: 100%;
  }
}

.testimonials {
  background: var(--white);
}

.text-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.testimonial-card {
  padding: 26px;
  border: 1px solid rgba(0, 41, 95, 0.08);
  border-radius: 12px;
  background: var(--light-bg);
  box-shadow: 0 10px 24px rgba(0, 41, 95, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

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

.testimonial-rating {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.testimonial-text {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4f5662;
  margin: 0 0 18px;
}

.testimonial-author strong {
  display: block;
  color: var(--dark-blue);
  font-size: 0.95rem;
  font-weight: 800;
}

.testimonial-author span {
  display: block;
  font-size: 0.8rem;
  color: #7f8694;
}

@keyframes cart-bounce {
  0% { transform: scale(1); }
  50% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

.cart-count.bump {
  animation: cart-bounce 0.3s ease-out;
}

@media (max-width: 960px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
