/* ============================================
   SUNRISE - Metal Home Storage Website
   ============================================ */

/* --- CSS Variables / Design Tokens --- */
:root {
  /* Colors - Industrial meets warm */
  --color-primary: #1a1a2e;
  --color-primary-light: #2d2d44;
  --color-accent: #c19a4b;
  --color-accent-hover: #a8833a;
  --color-accent-light: #f5edd6;
  --color-bg: #ffffff;
  --color-bg-alt: #f7f7f7;
  --color-bg-dark: #1a1a2e;
  --color-text: #222222;
  --color-text-light: #666666;
  --color-text-muted: #999999;
  --color-border: #e5e5e5;
  --color-border-light: #f0f0f0;
  --color-success: #2e7d32;
  --color-warning: #f9a825;
  --color-error: #d32f2f;
  --color-white: #ffffff;
  --color-black: #000000;

  /* Typography */
  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'SF Mono', 'Monaco', 'Consolas', monospace;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-3xl: 8rem;

  /* Layout */
  --container-max: 1280px;
  --container-narrow: 960px;
  --header-height: 80px;

  /* Effects */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ============================================
   COMPANY PROFILE — AUTHENTIC B2B MANUFACTURING
   ============================================ */
.company-profile-page {
  --profile-ink: #171b1f;
  --profile-slate: #566168;
  --profile-soft: #f4f5f2;
  --profile-line: #dfe2de;
  --profile-gold: #b99046;
  color: var(--profile-ink);
}

.company-profile-page main {
  overflow: clip;
}

.profile-section {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.profile-section--soft {
  background: var(--profile-soft);
}

.profile-section--dark {
  background:
    linear-gradient(115deg, rgba(255,255,255,0.035) 1px, transparent 1px) 0 0 / 46px 46px,
    #171c20;
  color: #fff;
}

.factory-overview {
  padding-top: 88px;
}

.factory-overview__media {
  position: relative;
  overflow: hidden;
  margin: 38px 0 0;
  border-radius: 24px;
  background: #dce4ea;
  box-shadow: 0 24px 60px rgba(18, 35, 47, 0.16);
}

.factory-overview__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 58%;
  transition: transform 0.55s ease;
}

.factory-overview__media:hover img {
  transform: scale(1.018);
}

.factory-overview__media figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  min-width: 250px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  background: rgba(15, 37, 52, 0.84);
  color: #fff;
  backdrop-filter: blur(12px);
}

.factory-overview__media figcaption strong {
  font-size: 1.08rem;
}

.factory-overview__media figcaption span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.production-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}

.production-photo-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 38px rgba(5, 18, 27, 0.2);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.production-photo-card:first-child {
  grid-column: span 2;
}

.production-photo-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 183, 77, 0.46);
  box-shadow: 0 24px 50px rgba(5, 18, 27, 0.32);
}

.production-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.production-photo-card:hover img {
  transform: scale(1.025);
}

.production-photo-card > div {
  position: relative;
  min-height: 154px;
  padding: 24px 26px 26px 74px;
}

.production-photo-card span {
  position: absolute;
  top: 23px;
  left: 24px;
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.production-photo-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.14rem;
}

.production-photo-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.65;
}

.not-found-page {
  display: grid;
  min-height: 100vh;
  padding: 140px 24px 72px;
  place-items: center;
  background:
    radial-gradient(circle at 85% 15%, rgba(185, 144, 70, 0.16), transparent 32%),
    var(--profile-soft);
}

.not-found-card {
  width: min(720px, 100%);
  padding: clamp(2.5rem, 7vw, 5rem);
  border: 1px solid var(--profile-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(18, 35, 47, 0.12);
  text-align: center;
}

.not-found-card h1 {
  margin: 0 0 1.25rem;
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.not-found-card > p:not(.profile-kicker) {
  max-width: 560px;
  margin: 0 auto;
  color: var(--profile-muted);
  line-height: 1.75;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 2rem;
}

.profile-kicker {
  margin-bottom: 0.8rem;
  color: var(--profile-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.profile-heading h2,
.profile-hero h1,
.compliance-band h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.profile-heading h2 {
  max-width: 820px;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.profile-heading > p,
.profile-heading--split > p,
.profile-copy,
.market-layout .profile-heading > p {
  color: var(--profile-slate);
  line-height: 1.8;
}

.profile-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 7rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.profile-heading--light h2,
.profile-heading--light > p {
  color: #fff;
}

.profile-heading--light > p {
  color: rgba(255,255,255,0.68);
}

.profile-text-link {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  min-height: 44px;
  margin-top: 0.85rem;
  border-bottom: 1px solid var(--profile-gold);
  color: var(--profile-ink);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.profile-text-link:hover {
  color: var(--profile-gold);
}

.hero--manufacturer {
  min-height: min(780px, calc(100svh - var(--header-height)));
  isolation: isolate;
  background: #151b20;
}

.hero--manufacturer::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -12vw;
  bottom: -32vw;
  width: min(68vw, 900px);
  aspect-ratio: 1;
  border: 1px solid rgba(185,144,70,0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 7vw rgba(185,144,70,0.035), 0 0 0 14vw rgba(185,144,70,0.025);
}

.hero__pattern,
.profile-hero__pattern {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255,255,255,0.035) 1px, transparent 1px) 0 0 / 52px 52px,
    radial-gradient(circle at 78% 30%, rgba(185,144,70,0.2), transparent 30rem);
}

.hero--manufacturer .hero__content {
  max-width: var(--container-max);
  width: 100%;
}

.hero--manufacturer .hero__title {
  max-width: 960px;
  font-size: clamp(2.55rem, 5vw, 5.1rem);
  letter-spacing: -0.04em;
}

.hero--manufacturer .hero__description {
  max-width: 720px;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.company-strength {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid var(--profile-line);
  background: #fff;
}

.company-strength__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.company-strength article {
  min-width: 0;
  padding: 1.8rem 1.25rem;
  border-right: 1px solid var(--profile-line);
}

.company-strength article:first-child {
  border-left: 1px solid var(--profile-line);
}

.company-strength strong,
.company-strength span {
  display: block;
}

.company-strength strong {
  margin-bottom: 0.35rem;
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  font-weight: 500;
}

.company-strength span {
  color: var(--profile-slate);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-transform: uppercase;
}

.profile-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.profile-copy p {
  margin-bottom: 1rem;
}

.profile-copy--columns {
  max-width: 980px;
  margin-top: 2rem;
  columns: 2;
  column-gap: clamp(2rem, 5vw, 5rem);
}

.profile-copy--columns p {
  break-inside: avoid;
}

.profile-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 3rem;
  border: 1px solid var(--profile-line);
  background: var(--profile-line);
}

.profile-feature {
  min-height: 230px;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  background: #fff;
}

.profile-feature > span,
.process-grid > li > span {
  color: var(--profile-gold);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.profile-feature h3 {
  margin: 2.5rem 0 0.65rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
}

.profile-feature p {
  color: var(--profile-slate);
  font-size: 0.87rem;
  line-height: 1.65;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 3rem;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.16);
}

.process-grid li {
  min-width: 0;
  min-height: 150px;
  padding: 1.4rem;
  background: #1c2328;
}

.process-grid h3 {
  margin-top: 2.2rem;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.3;
}

.process-grid p {
  margin-top: 0.7rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  line-height: 1.6;
}

.process-grid--detailed li {
  min-height: 240px;
}

.process-note {
  margin-top: 1.4rem;
  color: rgba(255,255,255,0.58);
  font-size: 0.82rem;
  line-height: 1.6;
}

.market-layout,
.quality-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.market-layout .profile-heading > p,
.quality-layout .profile-heading > p {
  margin-top: 1.5rem;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--profile-line);
}

.market-grid li {
  min-height: 90px;
  padding: 1.5rem 1rem;
  border-right: 1px solid var(--profile-line);
  border-bottom: 1px solid var(--profile-line);
  display: flex;
  align-items: center;
  color: var(--profile-ink);
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.market-grid li:nth-child(2n) {
  border-right: 0;
}

.profile-cta {
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.profile-cta .banner__text {
  max-width: 760px;
}

.profile-hero {
  position: relative;
  min-height: 570px;
  margin-top: var(--header-height);
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #171c20;
  color: #fff;
}

.profile-hero::after {
  content: "";
  position: absolute;
  right: -10vw;
  bottom: -22vw;
  width: min(62vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(185,144,70,0.28);
  border-radius: 50%;
}

.profile-hero__content {
  position: relative;
  z-index: 1;
}

.profile-hero h1 {
  max-width: 900px;
  font-size: clamp(3.3rem, 7vw, 6.5rem);
}

.profile-hero__content > p:not(.profile-kicker) {
  max-width: 720px;
  margin-top: 1rem;
  color: rgba(255,255,255,0.72);
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.profile-overview > .profile-heading {
  max-width: 920px;
}

.company-facts {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 3.5rem;
  border-top: 1px solid var(--profile-line);
  border-bottom: 1px solid var(--profile-line);
}

.company-facts div {
  min-width: 0;
  padding: 1.5rem 1.1rem;
  border-right: 1px solid var(--profile-line);
}

.company-facts div:last-child {
  border-right: 0;
}

.company-facts dt {
  margin-bottom: 0.8rem;
  color: var(--profile-slate);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.company-facts dd {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  line-height: 1.35;
}

.story-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--profile-line);
}

.story-line li {
  min-height: 250px;
  padding: 1.8rem 1.5rem;
  border-right: 1px solid var(--profile-line);
  border-bottom: 1px solid var(--profile-line);
}

.story-line li:last-child {
  border-right: 0;
}

.story-line > li > span {
  color: var(--profile-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-line h3 {
  margin: 3rem 0 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
}

.story-line p {
  color: var(--profile-slate);
  font-size: 0.86rem;
  line-height: 1.65;
}

.manufacture-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.3rem;
}

.manufacture-card {
  min-width: 0;
  border: 1px solid var(--profile-line);
  overflow: hidden;
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.manufacture-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.manufacture-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--profile-soft);
}

.manufacture-card > div {
  padding: 1.1rem;
}

.manufacture-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
}

.manufacture-card span {
  display: inline-block;
  margin-top: 0.4rem;
  color: var(--profile-slate);
  font-size: 0.76rem;
}

.quality-list {
  border-top: 1px solid #cfd3cf;
}

.quality-list li {
  min-height: 72px;
  padding: 1rem 0;
  border-bottom: 1px solid #cfd3cf;
  display: flex;
  align-items: center;
  gap: 1.3rem;
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.quality-list span {
  min-width: 28px;
  color: var(--profile-gold);
  font-family: var(--font-mono);
  font-size: 0.7rem;
}

.compliance-band {
  padding: 3rem 0;
  background: #b99046;
  color: #171b1f;
}

.compliance-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 3rem;
  align-items: center;
}

.compliance-band .profile-kicker {
  color: #171b1f;
  opacity: 0.7;
}

.compliance-band h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.compliance-band p:last-child {
  max-width: 700px;
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-grid article {
  min-height: 180px;
  padding: 1.5rem;
  border: 1px solid var(--profile-line);
  background: #fff;
}

.service-grid h3 {
  margin-bottom: 1.8rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
}

.service-grid p {
  color: var(--profile-slate);
  font-size: 0.84rem;
  line-height: 1.6;
}

.choose-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid var(--profile-line);
  border-left: 1px solid var(--profile-line);
}

.choose-list li {
  min-height: 88px;
  padding: 1.25rem;
  border-right: 1px solid var(--profile-line);
  border-bottom: 1px solid var(--profile-line);
  display: flex;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .company-strength__grid,
  .company-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .company-strength article,
  .company-strength article:first-child,
  .company-facts div {
    border: 1px solid var(--profile-line);
    border-top: 0;
    border-left: 0;
  }

  .profile-feature-grid,
  .manufacture-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 768px) {
  .factory-overview {
    padding-top: 64px;
  }

  .factory-overview__media {
    margin-top: 28px;
    border-radius: 18px;
  }

  .factory-overview__media img {
    aspect-ratio: 4 / 3;
  }

  .factory-overview__media figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    min-width: 0;
    padding: 14px 16px;
  }

  .production-photo-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 32px;
  }

  .production-photo-card:first-child {
    grid-column: auto;
  }

  .production-photo-card > div {
    min-height: 0;
    padding: 22px 22px 24px 66px;
  }

  .production-photo-card span {
    left: 21px;
  }

  .hero--manufacturer {
    min-height: 680px;
  }

  .hero--manufacturer .hero__content {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .hero--manufacturer .hero__title {
    font-size: clamp(2.15rem, 10vw, 3.5rem);
  }

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

  .profile-intro__grid,
  .profile-heading--split,
  .market-layout,
  .quality-layout,
  .compliance-band__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .profile-copy--columns {
    columns: 1;
  }

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

  .profile-hero {
    min-height: 500px;
  }

  .profile-hero h1 {
    font-size: clamp(2.8rem, 15vw, 4.5rem);
  }

  .profile-hero__content {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

@media (max-width: 520px) {
  .not-found-page {
    padding: 112px 16px 48px;
  }

  .not-found-card {
    padding: 2.5rem 1.35rem;
    border-radius: 18px;
  }

  .not-found-actions .btn {
    width: 100%;
  }

  .profile-section {
    padding: 4rem 0;
  }

  .company-strength__grid,
  .company-facts,
  .profile-feature-grid,
  .manufacture-grid,
  .service-grid,
  .process-grid,
  .story-line,
  .choose-list {
    grid-template-columns: 1fr;
  }

  .company-strength article,
  .company-strength article:first-child {
    padding: 1.2rem 0;
    border-right: 0;
    border-left: 0;
  }

  .profile-feature,
  .process-grid--detailed li,
  .story-line li,
  .service-grid article {
    min-height: auto;
  }

  .profile-feature h3,
  .process-grid h3,
  .story-line h3 {
    margin-top: 1.5rem;
  }

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

  .market-grid li,
  .market-grid li:nth-child(2n) {
    border-right: 0;
  }

  .hero--manufacturer .btn,
  .profile-hero .btn,
  .profile-cta .btn {
    width: 100%;
  }
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* --- Utility Classes --- */
.section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
  max-width: 600px;
}

.text-center {
  text-align: center;
}

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

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  text-transform: uppercase;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
  border: 2px solid var(--color-accent);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
}

.btn--whatsapp {
  background: #128c4a;
  color: var(--color-white);
  border: 2px solid #128c4a;
  gap: 0.6rem;
}

.btn--whatsapp:hover,
.btn--whatsapp:focus-visible {
  background: #0d743d;
  border-color: #0d743d;
}

.whatsapp-button-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  flex: 0 0 20px;
}

.whatsapp-button-icon svg {
  width: 100%;
  height: 100%;
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-text);
}

.btn--outline:hover {
  background: var(--color-text);
  color: var(--color-white);
}

.btn--outline-light {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn--outline-light:hover {
  background: var(--color-white);
  color: var(--color-text);
}

.btn--white {
  background: var(--color-white);
  color: var(--color-text);
  border: 2px solid var(--color-white);
}

.btn--white:hover {
  background: transparent;
  color: var(--color-white);
}

.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border-light);
  height: var(--header-height);
  transition: all var(--transition-base);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo__icon {
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo__text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.02em;
}

.logo__text span {
  color: var(--color-accent);
}

.logo__sub {
  font-size: 0.65rem;
  color: var(--color-text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-top: -2px;
}

.logo__dark {
  color: var(--color-text);
}

.logo__subtitle {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 1px 0;
}

.logo__subtitle-line {
  flex: 1;
  height: 1px;
  background: var(--color-accent);
  min-width: 8px;
}

.logo__subtitle-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.logo__tagline {
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: block;
  line-height: 1.2;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-accent);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

/* Header Actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.header-whatsapp-link {
  min-height: 40px;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #128c4a;
  color: var(--color-white);
  font-size: 0.78rem;
  font-weight: 600;
}

.header-whatsapp-link .whatsapp-button-icon {
  width: 17px;
  height: 17px;
  flex-basis: 17px;
}

.header__action-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition-fast);
  position: relative;
  font-size: 1.1rem;
}

.header__action-btn:hover {
  background: var(--color-bg-alt);
}

.header__action-btn .badge {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all var(--transition-base);
  border-radius: 2px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  margin-top: var(--header-height);
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: var(--color-primary);
  overflow: hidden;
}

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

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.95) 0%, rgba(26,26,46,0.7) 50%, rgba(26,26,46,0.4) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: var(--space-2xl) var(--space-lg);
}

.hero__tag {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-lg);
  font-weight: 500;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

.hero__title span {
  color: var(--color-accent);
}

.hero__description {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 540px;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Hero Stats */
.hero__stats {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero__stat-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-accent);
  font-weight: 700;
}

.hero__stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: var(--space-xs);
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */
.categories {
  padding: var(--space-2xl) 0;
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.category-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-bg-alt);
  cursor: pointer;
  transition: all var(--transition-base);
  aspect-ratio: 1;
  display: flex;
  align-items: flex-end;
}

.category-card--text-only {
  background: linear-gradient(135deg, var(--color-primary), #2d2d44);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.category-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.category-card:hover .category-card__image img {
  transform: scale(1.08);
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  z-index: 1;
}

.category-card__info {
  position: relative;
  z-index: 2;
  padding: var(--space-lg);
  color: var(--color-white);
  width: 100%;
}

.category-card__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.category-card__count {
  font-size: 0.75rem;
  opacity: 0.7;
  letter-spacing: 0.05em;
}

/* ============================================
   FEATURED PRODUCTS
   ============================================ */
.featured {
  padding: var(--space-2xl) 0;
  background: var(--color-bg-alt);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.section-header .view-all {
  font-size: 0.85rem;
  color: var(--color-text-light);
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.section-header .view-all:hover {
  color: var(--color-accent);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
  border: 1px solid var(--color-border-light);
  position: relative;
}

.product-card:hover {
  border-color: var(--color-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.product-card__image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-bg-alt);
  display: block;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card__image-missing {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  background: var(--color-bg-light);
  color: var(--color-text-light);
  font-size: 0.85rem;
}

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

.product-card__badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-card__badge--new {
  background: var(--color-success);
}

.product-card__badge--sale {
  background: var(--color-error);
}

.product-card__actions {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-base);
}

.product-card:hover .product-card__actions {
  opacity: 1;
  transform: translateX(0);
}

.product-card__action-btn {
  width: 36px;
  height: 36px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.product-card__action-btn:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

.product-card__body {
  padding: var(--space-md);
}

.product-card__category {
  font-size: 0.65rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xs);
}

.product-card__name {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: var(--space-sm);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5em;
}

.product-card__name-link {
  color: inherit;
  display: block;
}

.product-card__name-link:hover .product-card__name,
.product-card__name-link:focus-visible .product-card__name {
  color: var(--color-accent);
}

.product-card__image:focus-visible,
.product-card__name-link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.product-card__price {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.product-card__price-current {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
}

.product-card__price-original {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.product-card__footer {
  padding: 0 var(--space-md) var(--space-md);
  display: grid;
  gap: var(--space-sm);
}

.product-card__rating {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.product-card__stars {
  color: var(--color-warning);
  font-size: 0.75rem;
  letter-spacing: 2px;
}

.product-card__reviews {
  font-size: 0.7rem;
  color: var(--color-text-muted);
}

.product-card__moq {
  font-size: 0.7rem;
  color: var(--color-text-light);
}

.product-card__add-cart {
  width: 100%;
  min-height: 44px;
  padding: 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid var(--color-text);
  background: transparent;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__add-cart:hover {
  background: var(--color-text);
  color: var(--color-white);
}

.product-card__add-cart:not([href]),
[data-whatsapp-entry]:not([href]),
[data-email-inquiry]:not([href]) {
  display: none;
}

.whatsapp-product-link {
  background: #128c4a;
  border-color: #128c4a;
  color: var(--color-white);
  gap: 0.45rem;
}

.whatsapp-product-link:hover,
.whatsapp-product-link:focus-visible {
  background: #0d743d;
  border-color: #0d743d;
}

.product-card__email-link {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}

/* ============================================
   BANNER / CTA SECTION
   ============================================ */
.banner {
  padding: var(--space-2xl) 0;
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
}

.banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="rgba(255,255,255,0.02)" width="100" height="100"/></svg>');
  background-size: 20px 20px;
}

.banner__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
}

.banner__tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.banner__title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  font-weight: 400;
}

.banner__text {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.banner__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ============================================
   ADVANTAGES SECTION
   ============================================ */
.advantages {
  padding: var(--space-2xl) 0;
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.advantage-card {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.advantage-card:hover {
  background: var(--color-bg-alt);
}

.advantage-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-md);
  background: var(--color-accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-accent);
  transition: all var(--transition-base);
}

.advantage-card:hover .advantage-card__icon {
  background: var(--color-accent);
  color: var(--color-white);
}

.advantage-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.advantage-card__desc {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter {
  padding: var(--space-xl) 0;
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.newsletter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.newsletter__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
}

.newsletter__text {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-top: var(--space-xs);
}

.newsletter__form {
  display: flex;
  gap: var(--space-sm);
  min-width: 400px;
}

.newsletter__input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.newsletter__input:focus {
  border-color: var(--color-accent);
}

.newsletter__submit {
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.newsletter__submit:hover {
  background: var(--color-primary-light);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.7);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer__grid--clean {
  grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(150px, 1fr));
}

.footer__grid--clean.footer__grid--no-contact {
  grid-template-columns: minmax(240px, 1.4fr) repeat(2, minmax(150px, 1fr));
}

.footer__brand .logo__text {
  color: var(--color-white);
}

.footer__brand .logo__text span {
  color: var(--color-accent);
}

.footer__brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-top: var(--space-md);
  color: rgba(255,255,255,0.5);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
  color: rgba(255,255,255,0.5);
}

.footer__social-link:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(193,154,75,0.1);
}

.footer__heading {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.footer__links li {
  margin-bottom: var(--space-sm);
}

.footer__links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--color-accent);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer__payment {
  display: flex;
  gap: var(--space-sm);
  font-size: 1.5rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================
   PRODUCTS PAGE
   ============================================ */
.page-hero {
  margin-top: var(--header-height);
  padding: var(--space-2xl) 0;
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border-light);
}

.page-hero__title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: var(--space-sm);
}

.page-hero__breadcrumb {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.page-hero__breadcrumb a:hover {
  color: var(--color-accent);
}

/* Filter Bar */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border-light);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.filter-bar__left {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.filter-bar__result-count {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.filter-bar__filters {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: var(--color-bg);
  color: var(--color-text-light);
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: var(--color-accent-light);
}

.filter-bar__right {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.filter-bar__sort {
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--color-text-light);
  background: var(--color-white);
  outline: none;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.pagination__btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.pagination__btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.pagination__btn.active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-detail {
  margin-top: var(--header-height);
  padding: var(--space-xl) 0;
}

.product-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

/* Gallery */
.product-gallery {
  position: sticky;
  top: calc(var(--header-height) + var(--space-lg));
}

.product-gallery__main {
  aspect-ratio: 1;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}

.product-gallery__thumb {
  aspect-ratio: 1;
  border: 2px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition-fast);
}

.product-gallery__thumb:hover,
.product-gallery__thumb.active {
  border-color: var(--color-accent);
}

.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Info */
.product-info__brand {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.product-info__name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: var(--space-md);
}

.product-info__rating {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.product-info__stars {
  color: var(--color-warning);
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.product-info__review-count {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.product-info__price {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border-light);
}

.product-info__price-current {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
}

.product-info__price-original {
  font-size: 1rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.product-info__price-discount {
  font-size: 0.7rem;
  background: var(--color-error);
  color: var(--color-white);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.product-info__moq {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.product-info__moq strong {
  color: var(--color-text);
}

/* Variants */
.product-info__variants {
  margin-bottom: var(--space-md);
}

.variant-label {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  display: block;
}

.variant-options {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.variant-btn {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  transition: all var(--transition-fast);
}

.variant-btn:hover {
  border-color: var(--color-text);
}

.variant-btn.active {
  border-color: var(--color-text);
  background: var(--color-text);
  color: var(--color-white);
}

/* Quantity */
.product-info__quantity {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.qty-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.qty-btn:hover {
  border-color: var(--color-text);
}

.qty-input {
  width: 60px;
  height: 36px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.9rem;
  outline: none;
}

/* Product Actions */
.product-info__actions {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.product-info__actions .btn {
  flex: 1;
}

/* Product Meta */
.product-info__meta {
  border-top: 1px solid var(--color-border-light);
  padding-top: var(--space-md);
}

.product-meta__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}

.product-meta__item strong {
  color: var(--color-text);
  min-width: 80px;
}

/* Tabs */
.product-tabs {
  margin-bottom: var(--space-2xl);
}

.tabs-nav {
  display: flex;
  border-bottom: 1px solid var(--color-border-light);
  gap: 0;
}

.tab-btn {
  padding: var(--space-md) var(--space-lg);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  border-bottom: 2px solid transparent;
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tab-btn:hover {
  color: var(--color-text);
}

.tab-btn.active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

.tab-panel {
  display: none;
  padding: var(--space-xl) 0;
}

.tab-panel.active {
  display: block;
}

.tab-panel p {
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.tab-panel h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: var(--space-md);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid var(--color-border-light);
}

.specs-table td {
  padding: var(--space-sm) var(--space-md);
  font-size: 0.85rem;
}

.specs-table td:first-child {
  font-weight: 600;
  color: var(--color-text);
  width: 200px;
}

.specs-table td:last-child {
  color: var(--color-text-light);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  margin-top: var(--header-height);
  padding: var(--space-2xl) 0;
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
}

.about-hero__title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: var(--space-md);
}

.about-hero__text {
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.7;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  padding: var(--space-2xl) 0;
}

.about-stat {
  text-align: center;
  padding: var(--space-xl);
}

.about-stat__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.about-stat__label {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.about-story {
  padding: var(--space-2xl) 0;
  background: var(--color-bg-alt);
}

.about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-story__image {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-border-light);
}

.about-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story__content h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: var(--space-md);
}

.about-story__content p {
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  padding: var(--space-2xl) 0;
}

.values-grid--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-story__content--centered {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.section-intro {
  padding-top: var(--space-2xl);
}

.about-cta {
  padding: var(--space-xl) 0;
}

.form-submit-button {
  width: 100%;
}

.form-status,
.contact-unavailable,
.product-layout-notice {
  margin-top: var(--space-md);
  padding: var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg-alt);
  color: var(--color-text-light);
  line-height: 1.6;
}

.value-card {
  padding: var(--space-xl);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.value-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.value-card__icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.value-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.value-card__desc {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  padding: var(--space-2xl) 0;
}

.contact-grid--whatsapp {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.contact-whatsapp-panel {
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  background: var(--color-bg-alt);
  text-align: center;
}

.contact-whatsapp-panel h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: var(--space-sm);
}

.contact-whatsapp-panel > p {
  color: var(--color-text-light);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.contact-primary-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

.contact-company-details {
  padding: var(--space-xl);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  background: var(--color-white);
}

.contact-company-details h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: var(--space-lg);
}

.contact-company-details dl {
  display: grid;
  gap: var(--space-md);
}

.contact-company-details dl > div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border-light);
}

.contact-company-details dl > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-company-details dt {
  font-weight: 700;
  color: var(--color-text);
}

.contact-company-details dd {
  color: var(--color-text-light);
  overflow-wrap: anywhere;
}

.contact-company-details a {
  color: #0d743d;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.product-whatsapp-help {
  margin: var(--space-md) 0;
  color: var(--color-text-light);
}

.mobile-whatsapp-link {
  color: #0d743d;
  font-weight: 700;
}

.whatsapp-floating {
  position: fixed;
  right: 24px;
  bottom: calc(24px + env(safe-area-inset-bottom));
  z-index: 900;
  min-height: 48px;
  padding: 0.75rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  background: #128c4a;
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
  font-size: 0.85rem;
  font-weight: 700;
}

.whatsapp-floating:hover,
.whatsapp-floating:focus-visible {
  background: #0d743d;
  color: var(--color-white);
}

.whatsapp-floating__mobile {
  display: none;
}

.contact-form {
  background: var(--color-bg-alt);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
}

.contact-form h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: var(--space-xs);
}

.contact-form .section-subtitle {
  margin-bottom: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  outline: none;
  background: var(--color-white);
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-accent);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-info-card {
  padding: var(--space-lg);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-info-card__icon {
  font-size: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}

.contact-info-card__title {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: var(--space-xs);
}

.contact-info-card__text {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ============================================
   MOBILE NAV
   ============================================ */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  z-index: 999;
  padding: var(--space-lg);
  transform: translateX(100%);
  transition: transform var(--transition-base);
  overflow-y: auto;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav__list li {
  border-bottom: 1px solid var(--color-border-light);
}

.mobile-nav__link {
  display: block;
  padding: var(--space-md) 0;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

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

  .product-gallery {
    position: static;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .nav__list {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-whatsapp-link {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero {
    min-height: 60vh;
  }

  .hero__stats {
    flex-direction: column;
    gap: var(--space-md);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .categories__grid {
    gap: var(--space-md);
  }

  .banner__title {
    font-size: 1.6rem;
  }

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

  .newsletter__form {
    min-width: 100%;
  }

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

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

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

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

  .footer__grid--clean,
  .footer__grid--clean.footer__grid--no-contact,
  .values-grid--compact {
    grid-template-columns: 1fr;
  }

  .about-story__grid {
    grid-template-columns: 1fr;
  }

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

  .product-info__actions {
    flex-direction: column;
  }

  .contact-primary-actions {
    flex-direction: column;
  }

  .contact-primary-actions .btn {
    width: 100%;
  }

  .contact-info-card {
    flex-direction: column;
  }

  .tabs-nav {
    overflow-x: auto;
  }

  .tab-btn {
    padding: var(--space-md);
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .container {
    padding: 0 var(--space-md);
  }

  .hero__title {
    font-size: 1.6rem;
  }

  .page-hero__title {
    font-size: 1.8rem;
  }

  .product-card__body {
    padding: var(--space-sm);
  }

  .product-card__name {
    font-size: 0.95rem;
  }

  .filter-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .filter-bar__left {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .filter-btn,
  .product-card__add-cart,
  .qty-btn,
  .variant-btn,
  .hamburger {
    min-height: 44px;
  }

  .contact-company-details dl > div {
    grid-template-columns: 1fr;
    gap: var(--space-xs);
  }

  .hamburger {
    min-width: 44px;
    align-items: center;
    justify-content: center;
  }

  .whatsapp-floating {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    min-height: 46px;
    padding: 0.7rem 0.9rem;
  }

  .whatsapp-floating__desktop {
    display: none;
  }

  .whatsapp-floating__mobile {
    display: inline;
  }
}
