:root {
  color-scheme: light;
  --bg: #f2f6fb;
  --bg-alt: #eef4ff;
  --ink: #102238;
  --muted: #516070;
  --accent: #004aad;
  --accent-dark: #00357d;
  --accent-soft: #dbe7ff;
  --leaf: #1f6f8b;
  --gold: #6fa8ff;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 48px rgba(29, 29, 27, 0.12);
  --font-sans: "Space Grotesk", "Trebuchet MS", sans-serif;
  --font-serif: "Fraunces", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: clamp(15px, 1vw + 12px, 18px);
}

body {
  font-family: var(--font-sans);
  background: radial-gradient(circle at top, #f8fbff 0%, var(--bg) 45%, #e6efff 100%);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
  font-size: 1rem;
  padding-bottom: clamp(84px, 12vw, 120px);
}

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

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

.page-glow {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 70% 10%, rgba(0, 74, 173, 0.18), transparent 55%),
    radial-gradient(circle at 10% 80%, rgba(31, 111, 139, 0.18), transparent 55%);
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.page-glow::before,
.page-glow::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 30% 30%, rgba(0, 74, 173, 0.22), transparent 60%),
    radial-gradient(circle at 75% 70%, rgba(31, 111, 139, 0.2), transparent 65%);
  opacity: 0.75;
  animation: glowDrift 28s ease-in-out infinite;
}

.page-glow::after {
  background: radial-gradient(circle at 60% 20%, rgba(111, 168, 255, 0.25), transparent 60%),
    radial-gradient(circle at 20% 85%, rgba(31, 111, 139, 0.18), transparent 65%);
  animation-duration: 38s;
  animation-delay: -8s;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  background: rgba(245, 249, 255, 0.92);
  border-bottom: 1px solid rgba(16, 34, 56, 0.08);
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: auto;
  height: 36px;
  object-fit: contain;
  display: block;
}

.brand-text span {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
}

.brand-text small {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  font-weight: 500;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

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

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 14px 30px rgba(0, 74, 173, 0.3);
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 34px rgba(0, 74, 173, 0.35);
}

.btn::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -30%;
  width: 60%;
  height: 240%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.12));
  opacity: 0;
  transform: translateX(-120%) rotate(20deg);
  pointer-events: none;
}

.btn:hover::after {
  opacity: 0.75;
  animation: shimmer 0.9s ease;
}

.btn.secondary {
  background: var(--leaf);
  box-shadow: 0 14px 30px rgba(31, 111, 139, 0.3);
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(29, 29, 27, 0.2);
  box-shadow: none;
}

.hero {
  padding: 96px 0 72px;
}

.hero-copy > *:not(h1) {
  animation: heroFadeUp 0.9s ease both;
}

.hero-copy .eyebrow {
  animation-delay: 0.05s;
}

.hero-copy h1 {
  animation-delay: 0.15s;
}

.hero-copy .lead {
  animation-delay: 0.25s;
}

.hero-copy .hero-actions {
  animation-delay: 0.35s;
}

.hero-copy .hero-tags {
  animation-delay: 0.45s;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.05rem, 3.1vw, 3rem);
  line-height: 1.1;
  margin-bottom: 18px;
  animation: heroBreath 6s ease-in-out infinite;
}

.hero-copy h1 .hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  animation: wordReveal 0.6s ease forwards;
  animation-delay: calc(var(--word-index) * 0.04s + 0.2s);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--leaf);
  margin-bottom: 16px;
  font-weight: 600;
}

.lead {
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

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

.hero-tags span {
  background: var(--accent-soft);
  color: var(--accent-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
}

.hero-art {
  display: grid;
  gap: 16px;
}

.hero-card {
  background: #fff;
  padding: 16px;
  border-radius: var(--radius-md);
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 16px;
  animation: heroFloat 6s ease-in-out infinite;
}

.hero-card:nth-child(2) img {
  animation-delay: -3s;
}

.section {
  padding: 64px 0;
}

.section-title {
  margin-bottom: 32px;
}

.section-title h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(0, 74, 173, 0.85), rgba(31, 111, 139, 0.85));
  transform: translateX(-120%);
  opacity: 0;
  pointer-events: none;
}

.section-title.aos-animate h2::after {
  opacity: 1;
  animation: titleReveal 1.1s cubic-bezier(0.22, 0.6, 0.2, 1) both;
}

.section-title p {
  color: var(--muted);
}

.product-grid {
  display: grid;
  gap: 36px;
}

.category-block {
  background: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: none;
  border: 1px solid rgba(16, 34, 56, 0.08);
}

.category-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.category-header h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
}

.category-header span {
  background: var(--bg-alt);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.product-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: grid;
  gap: 12px;
  padding-bottom: 16px;
  box-shadow: none;
  border: 1px solid rgba(16, 34, 56, 0.08);
  transition: transform 0.35s ease;
  position: relative;
}

body.has-cascade .product-card {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  filter: blur(2px);
  transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
  transition-delay: var(--cascade-delay, 0ms);
}

body.has-cascade .product-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.product-card::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -30%;
  width: 60%;
  height: 180%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.08));
  opacity: 0;
  transform: translateX(-120%) rotate(20deg);
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-card:hover::before {
  opacity: 0.45;
}

.product-card:hover::after {
  opacity: 0.75;
  animation: shimmer 1s ease;
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.product-card .content {
  padding: 0 16px;
  display: grid;
  gap: 8px;
}

.product-card h4 {
  font-size: 1rem;
  font-weight: 600;
}

.product-card p {
  font-size: 0.85rem;
  color: var(--muted);
}

.product-card .tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--accent-soft);
  color: var(--accent-dark);
  padding: 4px 8px;
  border-radius: 999px;
  width: fit-content;
}

.product-card .actions {
  display: flex;
  gap: 10px;
  padding: 0 16px;
}

.product-card .btn {
  flex: 1;
  text-align: center;
  padding: 10px 14px;
  font-size: 0.85rem;
}

.product-card .btn.secondary {
  background: var(--ink);
}

.wholesale {
  background: linear-gradient(120deg, rgba(31, 111, 139, 0.18), rgba(0, 74, 173, 0.14));
}

.wholesale-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.wholesale-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}

.wholesale-copy ul {
  margin: 18px 0 24px;
  list-style: none;
  display: grid;
  gap: 10px;
}

.wholesale-copy li {
  padding-left: 26px;
  position: relative;
}

.wholesale-copy li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.wholesale-cards {
  display: grid;
  gap: 16px;
}

.info-card {
  background: #fff;
  padding: 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.site-footer {
  background: #0f2240;
  color: #f6f2ea;
  padding: 48px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 20px;
}

.footer-grid h3,
.footer-grid h4 {
  font-family: var(--font-serif);
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #25d366;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease;
  z-index: 20;
  animation: whatsappPulse 2.8s ease-out infinite;
}

main {
  padding-bottom: clamp(24px, 6vw, 48px);
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.02);
}

@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes wordReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroBreath {
  0%,
  100% {
    transform: translateY(0);
    text-shadow: 0 0 0 rgba(0, 74, 173, 0);
  }
  50% {
    transform: translateY(-4px);
    text-shadow: 0 16px 30px rgba(0, 74, 173, 0.15);
  }
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-120%) rotate(20deg);
  }
  100% {
    transform: translateX(240%) rotate(20deg);
  }
}

@keyframes titleReveal {
  0% {
    transform: translateX(-120%);
  }
  60% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(120%);
  }
}

@keyframes glowDrift {
  0%,
  100% {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }
  50% {
    transform: translate3d(2%, 3%, 0) scale(1.05);
  }
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(37, 211, 102, 0.35);
  }
  70% {
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2), 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.blog-hero {
  padding: 84px 0 40px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.breadcrumbs a {
  color: var(--leaf);
  font-weight: 600;
}

.blog-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 3.6vw, 3.1rem);
  line-height: 1.15;
  margin-bottom: 12px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.blog-article {
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(29, 29, 27, 0.05);
}

.blog-article h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  margin: 20px 0 10px;
}

.blog-article h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin: 18px 0 8px;
}

.blog-article p {
  color: var(--ink);
  margin-bottom: 14px;
}

.blog-article ul {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 12px 0 18px;
}

.blog-article li {
  padding-left: 22px;
  position: relative;
  color: var(--muted);
}

.blog-article li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.blog-cta {
  margin-top: 26px;
  background: linear-gradient(120deg, rgba(0, 74, 173, 0.18), rgba(31, 111, 139, 0.14));
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.blog-cta p {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

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

@media (max-width: 720px) {
  .container {
    width: min(1140px, 90%);
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    padding: 14px 0;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .brand-logo {
    height: 32px;
  }

  .btn.ghost {
    width: 100%;
  }

  .hero {
    padding: 72px 0 48px;
  }

  .hero-card {
    flex-direction: column;
    text-align: center;
  }

  .hero-card img {
    width: 100%;
    height: 160px;
  }

  .category-block {
    padding: 20px;
  }

  .blog-article {
    padding: 24px;
  }

  .section {
    padding: 52px 0;
  }

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

  .product-card img {
    height: 160px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: max(16px, env(safe-area-inset-bottom));
    padding: 10px 14px;
    font-size: 0.85rem;
  }
}

@media (min-width: 901px) and (max-width: 1200px) {
  .cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1201px) {
  .cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 64px 0 40px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .category-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-article {
    padding: 20px;
  }
}
