/* =========================================================
   MALIK DIGITAL TOOLS — DESIGN TOKENS
   ========================================================= */
:root {
  --blue: #2f39a9;
  --blue-dark: #212a82;
  --blue-08: rgba(47, 57, 169, 0.08);
  --blue-12: rgba(47, 57, 169, 0.12);
  --blue-30: rgba(47, 57, 169, 0.3);

  --cream: #fffaf3;
  --cream-dim: #f7f1e6;
  --black: #000000;
  --ink-70: rgba(0, 0, 0, 0.7);
  --ink-55: rgba(0, 0, 0, 0.55);
  --ink-40: rgba(0, 0, 0, 0.4);
  --border: rgba(0, 0, 0, 0.1);
  --border-soft: rgba(0, 0, 0, 0.06);

  --font-heading: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;

  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --radius-btn: 10px;

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 12px 30px rgba(47, 57, 169, 0.12);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);

  --nav-height: 76px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

p {
  margin: 0;
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 760px;
}

.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: var(--radius-btn);
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn .icon {
  width: 18px;
  height: 18px;
}

.btn--primary {
  background: var(--blue);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--blue-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn--secondary {
  background: var(--cream);
  color: var(--blue);
  border-color: var(--blue);
}
.btn--secondary:hover {
  background: var(--blue);
  color: var(--cream);
}

.btn--outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue-30);
}
.btn--outline:hover {
  background: var(--blue-08);
  border-color: var(--blue);
}

.btn--dark {
  background: var(--black);
  color: var(--cream);
}
.btn--dark:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255, 250, 243, 0.5);
}
.btn--ghost:hover {
  background: rgba(255, 250, 243, 0.12);
}

.btn--sm {
  padding: 9px 16px;
  font-size: 13.5px;
}

.btn--lg {
  padding: 15px 30px;
  font-size: 16px;
}

.badge {
  display: inline-block;
  background: var(--blue-08);
  color: var(--blue);
  font-weight: 600;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 243, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.navbar.is-scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-bottom-color: var(--border-soft);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  gap: 24px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.navbar__logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
}

.navbar__logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0 auto;
}

.navbar__link {
  position: relative;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-70);
  padding: 6px 0;
  transition: color 0.2s ease;
}

.navbar__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.2s ease;
}

.navbar__link:hover,
.navbar__link.is-active {
  color: var(--blue);
}

.navbar__link:hover::after,
.navbar__link.is-active::after {
  width: 100%;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.navbar__whatsapp {
  white-space: nowrap;
}

.navbar__burger {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  color: var(--black);
}

.navbar__burger .icon-close {
  display: none;
}

.navbar__burger.is-open .icon-menu {
  display: none;
}
.navbar__burger.is-open .icon-close {
  display: block;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px 24px 22px;
  border-top: 1px solid var(--border-soft);
  background: var(--cream);
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu__link {
  padding: 12px 4px;
  font-weight: 500;
  border-bottom: 1px solid var(--border-soft);
}

.mobile-menu__link.is-active {
  color: var(--blue);
}

.mobile-menu__whatsapp {
  margin-top: 14px;
  width: 100%;
}

@media (max-width: 900px) {
  .navbar__links,
  .navbar__whatsapp {
    display: none;
  }
  .navbar__burger {
    display: block;
  }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding: 72px 0 88px;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero__title {
  font-size: clamp(34px, 4.2vw, 54px);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.text-accent {
  color: var(--blue);
}

.hero__text {
  color: var(--ink-70);
  font-size: 17px;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}

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

.hero__trust li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-70);
}

.hero__trust .icon {
  width: 16px;
  height: 16px;
  color: var(--blue);
}

.hero__visual {
  position: relative;
  height: 440px;
}

.hero-collage {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-collage__ring {
  position: absolute;
  inset: 8%;
  border: 2px dashed var(--blue-30);
  border-radius: 50%;
}

.hero-collage__card {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 128px;
  height: 128px;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--black);
  animation: float 6s ease-in-out infinite;
}

.hero-collage__card .icon {
  width: 30px;
  height: 30px;
  color: var(--blue);
}

.hero-collage__card--1 {
  top: 4%;
  left: 10%;
  animation-delay: 0s;
}
.hero-collage__card--2 {
  top: 38%;
  right: 2%;
  animation-delay: 1.2s;
}
.hero-collage__card--3 {
  bottom: 6%;
  left: 22%;
  animation-delay: 2.4s;
}

.hero-collage__badge {
  position: absolute;
  top: 46%;
  left: 40%;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: var(--cream);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  font-family: var(--font-heading);
}

.hero-collage__badge .icon {
  width: 22px;
  height: 22px;
}

.hero-collage__badge strong {
  display: block;
  font-size: 15px;
}
.hero-collage__badge span {
  display: block;
  font-size: 11px;
  opacity: 0.85;
  font-family: var(--font-body);
}

.hero-collage__dot {
  position: absolute;
  border-radius: 50%;
  background: var(--blue-12);
}
.hero-collage__dot--1 {
  width: 60px;
  height: 60px;
  top: 0;
  right: 18%;
}
.hero-collage__dot--2 {
  width: 40px;
  height: 40px;
  bottom: 2%;
  right: 6%;
}

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

@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__visual {
    height: 340px;
    order: -1;
  }
}

/* =========================================================
   STATS
   ========================================================= */
.stats {
  background: var(--black);
  padding: 48px 0;
}

.stats--on-light {
  background: var(--cream-dim);
}

.stats--on-light .stat-card__value {
  color: var(--blue);
}
.stats--on-light .stat-card__label {
  color: var(--ink-70);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.stat-card__value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 38px);
  color: var(--cream);
}

.stat-card__label {
  font-size: 14px;
  color: rgba(255, 250, 243, 0.65);
}

@media (max-width: 700px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }
}

/* =========================================================
   SECTION LAYOUT
   ========================================================= */
.section {
  padding: 90px 0;
}

.section--muted {
  background: var(--cream-dim);
}

.section__header {
  max-width: 620px;
  margin: 0 auto 48px;
  text-align: center;
}

.section__title {
  font-size: clamp(26px, 3vw, 34px);
  margin-bottom: 12px;
}

.section__subtitle {
  color: var(--ink-55);
  font-size: 16px;
}

.section__footer {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* =========================================================
   CATEGORY GRID
   ========================================================= */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 26px 24px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-30);
}

.category-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--blue-08);
  color: var(--blue);
}

.category-card__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
}

.category-card__desc {
  color: var(--ink-55);
  font-size: 13.5px;
  line-height: 1.5;
  flex-grow: 1;
}

.category-card__arrow {
  display: inline-flex;
  color: var(--blue);
}
.category-card__arrow .icon {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}
.category-card:hover .category-card__arrow .icon {
  transform: translateX(4px);
}

@media (max-width: 980px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   PRODUCT GRID / CARD
   ========================================================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

@media (max-width: 1080px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 760px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.product-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--blue);
  color: var(--cream);
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 100px;
  z-index: 2;
}

.product-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 128px;
  background: var(--blue-08);
}

.product-card__initial {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--blue);
  color: var(--cream);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
}

.product-card__logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 16px;
  background: #fff;
  padding: 8px;
  box-shadow: var(--shadow-sm, 0 2px 8px rgba(0, 0, 0, 0.06));
}

/* Products page: force a 3-per-row grid on desktop */
.product-grid--3col {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 760px) {
  .product-grid--3col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .product-grid--3col {
    grid-template-columns: 1fr;
  }
}

.product-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  flex-grow: 1;
}

.product-card__category {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  text-transform: none;
}

.product-card__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 17px;
}

.product-card__desc {
  color: var(--ink-55);
  font-size: 13.5px;
  line-height: 1.5;
  flex-grow: 1;
}

.product-card__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}

.product-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.product-card__old-price {
  text-decoration: line-through;
  color: var(--ink-40);
  font-size: 13px;
}

.product-card__current-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--blue);
}

.product-card__duration {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--ink-55);
}
.product-card__duration .icon {
  width: 14px;
  height: 14px;
}

.product-card__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.product-card__actions .btn {
  width: 100%;
  white-space: normal;
  text-align: center;
}

/* =========================================================
   BENEFITS
   ========================================================= */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.benefit-card {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.benefit-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blue-08);
  color: var(--blue);
  margin-bottom: 16px;
}
.benefit-card__icon .icon {
  width: 26px;
  height: 26px;
}

.benefit-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.benefit-card p {
  color: var(--ink-55);
  font-size: 13.5px;
}

@media (max-width: 900px) {
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .benefit-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   STEPS
   ========================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.step {
  position: relative;
  text-align: center;
  padding: 10px 12px;
}

.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--cream);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.step p {
  color: var(--ink-55);
  font-size: 13.5px;
}

@media (min-width: 901px) {
  .steps {
    position: relative;
  }
  .steps::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--blue-12);
    z-index: 0;
  }
}

@media (max-width: 900px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   CTA SECTION
   ========================================================= */
.cta {
  background: var(--blue);
  padding: 72px 0;
}

.cta__inner {
  text-align: center;
  max-width: 640px;
}

.cta h2 {
  color: var(--cream);
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 14px;
}

.cta p {
  color: rgba(255, 250, 243, 0.85);
  margin-bottom: 30px;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--black);
  color: rgba(255, 250, 243, 0.75);
  padding: 64px 0 26px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 14px;
}

.footer__logo img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.footer__desc {
  font-size: 13.5px;
  line-height: 1.7;
  max-width: 300px;
}

.footer__heading {
  color: var(--cream);
  font-size: 14px;
  margin-bottom: 18px;
}

.footer__list li {
  margin-bottom: 12px;
  font-size: 13.5px;
}

.footer__list a,
.footer__support {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}

.footer__list a:hover {
  color: var(--cream);
}

.footer__list .icon,
.footer__support .icon {
  width: 16px;
  height: 16px;
  color: var(--blue);
  flex-shrink: 0;
}

.footer__divider {
  height: 1px;
  background: rgba(255, 250, 243, 0.12);
  margin-bottom: 20px;
}

.footer__copyright {
  font-size: 12.5px;
  color: rgba(255, 250, 243, 0.5);
  padding-bottom: 4px;
}

@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   FLOATING WHATSAPP BUTTON
   ========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--cream);
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s ease;
}

.whatsapp-float .icon {
  width: 26px;
  height: 26px;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float__tooltip {
  position: absolute;
  right: 68px;
  background: var(--black);
  color: var(--cream);
  font-size: 12.5px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 600px) {
  .whatsapp-float__tooltip {
    display: none;
  }
}

/* =========================================================
   PAGE HERO (Products / Offers / FAQ / About / Contact)
   ========================================================= */
.page-hero {
  padding: 64px 0 48px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(28px, 3.6vw, 42px);
  margin-bottom: 14px;
}

.page-hero p {
  color: var(--ink-55);
  max-width: 560px;
  margin: 0 auto;
}

.page-hero--accent {
  background: var(--blue-08);
}

/* =========================================================
   PRODUCTS TOOLBAR / FILTERS
   ========================================================= */
.products-toolbar {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 24px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 220px;
  max-width: 420px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 11px 16px;
  color: var(--ink-55);
}

.search-box .icon {
  width: 18px;
  height: 18px;
}

.search-box input {
  border: none;
  outline: none;
  flex: 1;
  font-family: var(--font-body);
  font-size: 14.5px;
  background: transparent;
  color: var(--black);
}

.sort-select {
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 11px 16px;
  font-family: var(--font-body);
  font-size: 14.5px;
  background: #ffffff;
  color: var(--black);
}

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.filter-chip {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 9px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-70);
  transition: all 0.2s ease;
}

.filter-chip:hover {
  border-color: var(--blue-30);
}

.filter-chip.is-active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--cream);
}

.products-count {
  color: var(--ink-55);
  font-size: 13.5px;
  margin-bottom: 18px;
}

.products-empty {
  text-align: center;
  color: var(--ink-55);
  padding: 60px 0;
}

/* =========================================================
   ACCORDION (FAQ)
   ========================================================= */
.accordion__item {
  border-bottom: 1px solid var(--border-soft);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 4px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--black);
}

.accordion__chevron {
  color: var(--blue);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.accordion__trigger[aria-expanded="true"] .accordion__chevron {
  transform: rotate(180deg);
}

.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion__panel p {
  color: var(--ink-55);
  padding: 0 4px 22px;
  font-size: 14.5px;
  line-height: 1.7;
}

/* =========================================================
   ABOUT — MISSION/VISION
   ========================================================= */
.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mission-vision__card {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 34px;
}

.mission-vision__card h2 {
  color: var(--blue);
  font-size: 20px;
  margin-bottom: 12px;
}

.mission-vision__card p {
  color: var(--ink-70);
  font-size: 14.5px;
  line-height: 1.7;
}

@media (max-width: 760px) {
  .mission-vision {
    grid-template-columns: 1fr;
  }
}

.related-header {
  margin-top: 30px;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.contact-card {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--blue-08);
  color: var(--blue);
  margin-bottom: 8px;
}

.contact-card h3 {
  font-size: 15px;
}

.contact-card p {
  color: var(--ink-55);
  font-size: 13.5px;
  margin-bottom: 8px;
  word-break: break-word;
}

@media (max-width: 900px) {
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

.form-card {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-card h2 {
  font-size: 22px;
  margin-bottom: 24px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--blue-08);
  color: var(--blue-dark);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-bottom: 24px;
  font-size: 14px;
}

.form-success .icon {
  color: var(--blue);
  flex-shrink: 0;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 13.5px;
  font-weight: 600;
}

.form-field input,
.form-field textarea {
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14.5px;
  background: var(--cream);
  color: var(--black);
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  outline: none;
}

.form-error {
  color: #b3261e;
  font-size: 12.5px;
}

@media (max-width: 600px) {
  .form-card {
    padding: 26px;
  }
}

/* =========================================================
   PRODUCT DETAIL
   ========================================================= */
.back-link {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--blue);
  font-weight: 500;
  font-size: 14px;
}

.product-detail__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  margin-bottom: 70px;
}

.product-detail__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 340px;
  background: var(--blue-08);
  border-radius: var(--radius-lg);
}

.product-detail__initial {
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 26px;
  background: var(--blue);
  color: var(--cream);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 44px;
}

.product-detail__logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
  border-radius: 26px;
  background: #fff;
  padding: 16px;
  box-shadow: var(--shadow-sm, 0 2px 8px rgba(0, 0, 0, 0.06));
}

.product-detail__info h1 {
  font-size: clamp(26px, 3vw, 34px);
  margin: 8px 0 16px;
}

.product-detail__desc {
  color: var(--ink-70);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.product-detail__price-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.product-detail__price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  color: var(--blue);
}

.product-detail__actions {
  margin-bottom: 34px;
}

.product-detail__features h2 {
  font-size: 18px;
  margin-bottom: 16px;
}

.product-detail__features ul {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

.product-detail__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-70);
}

.product-detail__features li .icon {
  color: var(--blue);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.product-detail__notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.product-detail__note {
  background: var(--cream-dim);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}

.product-detail__note h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 6px;
}

.product-detail__note h3 .icon {
  color: var(--blue);
  width: 18px;
  height: 18px;
}

.product-detail__note p {
  color: var(--ink-55);
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .product-detail__grid {
    grid-template-columns: 1fr;
  }
  .product-detail__notes {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   404
   ========================================================= */
.not-found {
  text-align: center;
  padding: 140px 0;
}

.not-found h1 {
  font-size: 64px;
  color: var(--blue);
  margin-bottom: 12px;
}

.not-found p {
  color: var(--ink-55);
  margin-bottom: 28px;
}
