* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --accent-orange: #d7263d;
  --accent-red: #d7263d;
  --accent-dark: #111111;
  --accent-light: #ffffff;
  --body-bg: #f4f7fb;
  --text-primary: #111827;
  --text-secondary: #52606d;
  --surface: rgba(255, 255, 255, 0.92);
  --card-bg: #ffffff;
  --panel-bg: rgba(255, 255, 255, 0.92);
  --topbar-bg: #d7263d;
  --topbar-color: #ffffff;
  --navbar-bg: rgba(255, 255, 255, 0.92);
  --hero-bg: url("../assets/optimized/hero_light.webp") !important;
  --hero-overlay-light:
    radial-gradient(
      circle at top left,
      rgba(215, 38, 61, 0.1),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(17, 17, 17, 0.06),
      transparent 40%
    );
}
body {
  font-family: "Poppins", sans-serif;
  background: var(--body-bg);
  color: var(--text-primary);
}
.top-bar {
  color: var(--topbar-color);
  background-color: var(--topbar-bg);
}
.navbar {
  color: var(--topbar-color);
  background: var(--navbar-bg);
}

.navbar a,
.navbar .nav-link {
  color: #1f2937 !important;
}

.navbar .navbar-brand {
  color: #111827 !important;
}

.add-cart-btn {
  border: solid 1px #0d1b2d !important;
  color: #0d1b2d !important;
}

.top-bar a,
.navbar a,
.search-input,
.nav-link {
  color: #1f2937 !important;
}
.hero-text p,
.products-section .section-heading p,
.products-highlight-card p {
  color: #475569;
}
.bi-list {
  color: #0a1625;
}

#logo {
  width: 200px;
}

/* Top Bar */
.top-bar {
  background: var(--topbar-bg);
  color: var(--topbar-color);
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.top-bar a {
  color: #cbd5e1;
  text-decoration: none;
  transition: 0.3s;
}

.top-bar a:hover {
  color: var(--accent-orange);
}

.top-bar a:hover {
  color: var(--accent-orange);
  font-size: 14px;
  padding: 0px 0;
}
.top-bar a i {
  background: var(--topbar-bg);
  color: white;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}
.top-bar a .bi-cart-plus {
  background: transparent;
  color: white;
  font-size: 25px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.navbar.scrolled {
  background: var(--navbar-bg);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
  font-size: 28px;
  font-weight: 700;
  color: #111827 !important;
  letter-spacing: 1px;
}

.theme-dark .navbar a,
.theme-dark .nav-link {
  color: #e2e8f0 !important;
}

.theme-dark .navbar-brand {
  color: #fff !important;
}

.theme-dark .navbar .login-btn {
  color: #fff !important;
}

.navbar-brand span {
  color: var(--accent-orange);
}

.nav-link {
  color: #1f2937 !important;
  font-weight: 500;
  margin: 0 10px;
  position: relative;
  transition: 0.3s;
}

.active,
.nav-link:hover {
  color: var(--accent-orange) !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--accent-orange);
  transition: 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

/* CTA Button */
.login-btn {
  background: linear-gradient(
    135deg,
    var(--accent-orange),
    var(--accent-orange)
  );
  color: white;
  font-weight: 600;
  border-radius: 50px;
  padding: 10px 22px;
  transition: 0.3s;
  border: none;
  text-decoration: none;
}

.quote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--accent-orange);
}

/* Language Switch */
.language-select {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
  border-radius: 50px;
  padding: 8px 14px;
  outline: none;
  font-size: 14px;
}
.language-select {
  background: #f8fafc;
  border-color: #e2e8f0;
  color: #0f172a;
}
.language-select option {
  color: #000;
}

/* Mobile */
.navbar-toggler {
  border: none;
  box-shadow: none !important;
}

.navbar-toggler i {
  color: #111827;
  font-size: 28px;
}

@media (max-width: 991px) {
  .social-link {
    display: contents;
  }
}

.cart-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(20, 20, 20, 0.95) !important;
  color: #fff !important;
  font-size: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
}

.cart-toast.show {
  animation:
    cartToastIn 0.25s ease forwards,
    cartToastOut 0.25s ease forwards 1.9s;
}

@keyframes cartToastIn {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes cartToastOut {
  to {
    transform: translateY(20px);
    opacity: 0;
  }
}

.hero {
  position: relative;
  min-height: 80vh;
  background-image:
    linear-gradient(135deg, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.88)),
    var(--hero-bg, url("../assets/optimized/hero.webp"));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--text-primary);
  padding: 0px 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top left,
      rgba(250, 204, 21, 0.12),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(56, 189, 248, 0.1),
      transparent 40%
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.12);
  border: 1px solid rgba(250, 204, 21, 0.25);
  color: var(--accent-orange);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 18px;
  backdrop-filter: blur(10px);
}

.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.hero-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 620px;
  color: #cbd5e1;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
}

.hero-btn,
.hero-btn-outline {
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.hero-btn {
  background: linear-gradient(135deg, var(--accent-orange), #fff);
  border: none;
  color: #111827;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(250, 204, 21, 0.25);
  color: #111827;
}

.hero-btn-outline {
  border: 1px solid rgba(148, 163, 184, 0.45);
  color: #0f172a;
  background: rgba(248, 250, 252, 0.92);
}

.hero-btn-outline:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #0f172a;
  transform: translateY(-2px);
}
.hero {
  background-image:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.82),
      rgba(248, 250, 252, 0.88)
    ),
    var(--hero-bg, url("../assets/optimized/hero_light.webp"));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  background:
    radial-gradient(
      circle at top left,
      rgba(13, 110, 253, 0.1),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(14, 165, 233, 0.08),
      transparent 40%
    );
}
.hero-text h1 {
  color: #0f172a;
}
.hero-text p {
  color: #475569;
}
.hero-btn {
  box-shadow: 0 10px 28px rgba(14, 165, 233, 0.16);
}
.hero-btn-outline {
  border-color: rgba(148, 163, 184, 0.45);
  color: #0f172a;
  background: rgba(255, 255, 255, 0.88);
}
.hero-btn-outline:hover {
  background: rgba(255, 255, 255, 0.95);
}

.hero-image-wrap {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
  padding: 18px;
  border-radius: 28px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  /* backdrop-filter: blur(14px); */
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}

@media (max-width: 991px) {
  .hero {
    min-height: auto;
    padding: 70px 10px;
    background-position: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }
}

/* =========================== Search style */
.search-icon-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}
.search-icon-btn {
  background: #eef2ff;
  color: #0f172a;
  border-color: #cbd5e1;
}

.search-icon-btn:hover {
  background: rgba(250, 204, 21, 0.14);
  border-color: rgba(250, 204, 21, 0.35);
  color: var(--accent-orange);
  transform: translateY(-1px);
}

.navbar {
  position: relative;
}

.search-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  width: 100%;
  padding: 14px 0 18px;
  background: rgba(2, 6, 23, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  z-index: 1050;

  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: block;
  transition: all 0.3s ease;
}

.search-panel.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.search-form {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 10px 14px 10px 46px;
  backdrop-filter: blur(12px);
}

.search-form-icon {
  position: absolute;
  left: 18px;
  color: #cbd5e1;
  font-size: 1rem;
}

.search-input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  padding: 6px 0;
}

.search-input::placeholder {
  color: #94a3b8;
}

.search-close-btn {
  width: 38px;
  height: 38px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.search-close-btn:hover {
  background: rgba(250, 204, 21, 0.16);
  color: var(--accent-orange);
}

.search-results {
  max-height: 420px;
  overflow: auto;
  margin-top: 12px;
}

.search-result-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: inherit !important;
  margin-bottom: 8px;
}

.search-empty {
  padding: 12px 0;
  opacity: 0.75;
}

@media (max-width: 576px) {
  .search-form {
    border-radius: 22px;
    padding-left: 44px;
  }

  .search-input {
    font-size: 0.95rem;
  }
}

/* ===================== Products Section ===================== */
.products-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at top left,
      rgba(125, 211, 252, 0.12),
      transparent 24%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(52, 211, 153, 0.1),
      transparent 26%
    ),
    linear-gradient(180deg, #07111d 0%, #0a1625 52%, #0d1b2d 100%);
  color: #e5eefc;
}
.products-section {
  background: #eff4fb;
  color: #111827;
}
.products-section::before {
  background:
    linear-gradient(120deg, rgba(15, 23, 42, 0.02), transparent 36%),
    linear-gradient(45deg, rgba(15, 23, 42, 0.02), transparent 55%);
}
.products-highlight-card {
  background: #ffffff;
  border-color: rgba(148, 163, 184, 0.18);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}
.products-highlight-card i {
  color: #d7263d;
}
.products-highlight-card h3,
.products-highlight-card p {
  color: #020617;
}
.product-card,
.product-media {
  background: #ffffff;
}
.product-chip {
  background: rgba(15, 23, 42, 0.06);
  color: #1f2937;
  border-color: rgba(15, 23, 42, 0.12);
}
.view-product-btn {
  background: rgba(15, 23, 42, 0.06);
  color: #1f2937;
  border-color: rgba(15, 23, 42, 0.12);
}
.view-product-btn:hover {
  background: rgba(15, 23, 42, 0.08);
}
.product-price {
  color: #0d1b2d !important;
}
.product-title,
.product-card h3,
.products-section .section-heading h2 {
  color: #0f172a !important;
}

.products-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 36%),
    linear-gradient(45deg, rgba(255, 255, 255, 0.025), transparent 55%);
  pointer-events: none;
}

.products-shell {
  position: relative;
  z-index: 2;
}

.products-heading {
  max-width: 820px;
  margin: 0 auto 28px;
}

.products-section .section-badge {
  background: rgba(125, 211, 252, 0.12);
  border: 1px solid rgba(125, 211, 252, 0.22);
  color: #0f172a;
}

.products-section .section-heading h2 {
  color: #0f172a;
}

.products-section .section-heading p {
  color: #475569;
}

.products-highlight-row {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.products-highlight-card {
  display: flex;
  /* flex-wrap: wrap; */
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
}

.products-highlight-card i {
  flex: 0 0 auto;
  font-size: 1.35rem;
  color: #7dd3fc;
  margin-top: 3px;
}

.products-highlight-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.products-highlight-card p {
  font-size: 0.93rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 0;
}

/* Grid: 2 mobile, 3 tablet, 4 desktop */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .products-highlight-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 28px;
  }
}

@media (min-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.product-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  cursor: default;
  min-height: 420px;
}

.product-card:hover,
.product-card.active {
  transform: translateY(-6px);
  border-color: rgba(215, 38, 61, 0.2);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.12);
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #f8fbff;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.product-card:hover .product-media img,
.product-card.active .product-media img {
  transform: scale(1.04);
}

.product-chip {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #0d1b2d;
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}
@media screen and (max-width: 500px) {
  .product-chip {
    display: none;
  }
}
.view-product-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 46px;
  height: 46px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(15, 23, 42, 0.06);
  color: #0f172a;
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.25s ease;
}

.view-product-btn i {
  font-size: 1rem;
}

.view-product-btn .view-text {
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition:
    opacity 0.2s ease,
    max-width 0.2s ease;
}

.view-product-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  min-width: 132px;
}

.view-product-btn:hover .view-text {
  opacity: 1;
  max-width: 120px;
}

.product-body {
  padding: 20px;
  display: grid;
  gap: 16px;
}

.product-title {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--text-primary);
  margin: 0;
  min-height: 56px;
}

.product-rating-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.product-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--accent-orange) !important;
  white-space: nowrap;
}

.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 119, 70, 0.16);
  color: var(--accent-orange);
  font-size: 0.95rem;
  font-weight: 700;
}

.rating-pill i {
  color: var(--accent-orange);
}

.rating-count {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.add-cart-btn {
  display: block;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  border: solid 0.5px var(--accent-orange);
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 700;
  color: var(--accent-orange);
  background: transparent;
  /* box-shadow: 0 12px 22px rgba(255, 119, 70, 0.18); */
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.add-cart-btn i {
  margin-right: 0.55rem;
}

.add-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(255, 119, 70, 0.22);
}

@media (max-width: 991px) {
  .product-card {
    min-height: auto;
  }

  .product-body {
    padding: 18px;
  }
}

@media (max-width: 575.98px) {
  .product-body {
    padding: 16px;
  }

  .product-header-row,
  .product-rating-row {
    flex-direction: column;
    align-items: stretch;
  }

  .product-footer-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .add-cart-btn {
    min-width: 60px;
    padding: 4px 6px;
  }

  .add-cart-btn i {
    margin-right: 0;
  }

  .add-cart-btn .cart-text {
    display: none;
  }

  .view-product-btn {
    top: 12px;
    right: 12px;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
  }
}

@media (max-width: 575.98px) {
  .products-section {
    padding: 70px 0;
  }

  .product-card {
    min-height: 330px;
  }

  .product-body {
    padding: 14px;
  }

  .product-title {
    font-size: 0.95rem;
  }

  .product-price {
    font-size: 1.18rem;
  }
}

/* ===================== Collection Section ===================== */
.collection-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(250, 204, 21, 0.12),
      transparent 30%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(56, 189, 248, 0.08),
      transparent 30%
    ),
    linear-gradient(180deg, #020617 0%, #0f172a 100%);
  color: #fff;
}

.collection-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.03) 0%,
    transparent 35%,
    rgba(255, 255, 255, 0.02) 100%
  );
  pointer-events: none;
}

.collection-header {
  max-width: 760px;
  margin: 0 auto 44px;
  position: relative;
  z-index: 2;
}

.collection-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.12);
  border: 1px solid rgba(250, 204, 21, 0.22);
  color: var(--accent-orange);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  backdrop-filter: blur(12px);
}

.collection-header h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.collection-header p {
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 0;
}

/* Main cinematic card */
.collection-feature-card {
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
  transform: translateY(20px);
  opacity: 0;
  animation: fadeUp 0.9s ease forwards;
  position: relative;
}

.collection-image-wrap {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
}

.collection-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.8s ease;
}

.collection-feature-card:hover .collection-image {
  transform: scale(1.08);
}

.collection-glow {
  position: absolute;
  inset: auto -10% -20% -10%;
  height: 220px;
  background: radial-gradient(
    circle,
    rgba(250, 204, 21, 0.24),
    transparent 60%
  );
  filter: blur(20px);
  pointer-events: none;
}

.collection-content {
  padding: 28px;
}

.collection-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-orange);
  background: rgba(250, 204, 21, 0.1);
  border: 1px solid rgba(250, 204, 21, 0.2);
  padding: 7px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.collection-content h3 {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
}

.collection-content p {
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 22px;
}

.collection-points {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.collection-section {
  background: #eff4fb;
  color: #0f172a;
}
.collection-section::before {
  background:
    linear-gradient(120deg, rgba(15, 23, 42, 0.03), transparent 36%),
    linear-gradient(45deg, rgba(15, 23, 42, 0.02), transparent 55%);
}
.collection-header h2,
.collection-content h3,
.section-heading h2,
.products-section .section-heading h2 {
  color: #0f172a;
}
.collection-header p,
.collection-content p {
  color: #475569;
}
.collection-feature-card {
  background: #ffffff;
  border-color: rgba(148, 163, 184, 0.2);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}
.collection-point {
  color: #334155;
  background: rgba(226, 232, 240, 0.65);
  border-color: rgba(148, 163, 184, 0.35);
}
.collection-badge,
.collection-tag {
  background: rgba(13, 110, 253, 0.08);
  border-color: rgba(13, 110, 253, 0.18);
  color: #0d4efc;
}
.collection-image-wrap {
  background: #f8fafc;
}
.collection-image-wrap .collection-glow {
  background: radial-gradient(circle, rgba(13, 110, 253, 0.2), transparent 60%);
}
.collection-mini-card {
  background: #ffffff;
  border-color: rgba(148, 163, 184, 0.2);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}
.collection-mini-card:hover {
  box-shadow: 0 24px 65px rgba(15, 23, 42, 0.08);
}
.mini-content p {
  color: #475569;
}
.mini-label {
  background: rgba(13, 110, 253, 0.08);
  color: #0d4efc;
  border-color: rgba(13, 110, 253, 0.18);
}

.collection-point {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #e2e8f0;
}

.collection-point i {
  color: var(--accent-orange);
  font-size: 1.05rem;
}

.collection-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    var(--accent-orange),
    var(--accent-orange)
  );
  color: #111827;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.collection-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(250, 204, 21, 0.22);
  color: #111827;
}

/* Mini cards */
.collection-mini-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 0;
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  transform: translateY(20px);
  opacity: 0;
  animation: fadeUp 0.9s ease forwards;
}

.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.3s;
}

.mini-image {
  position: relative;
  min-height: 220px;
  overflow: hidden;
}

.mini-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.collection-mini-card:hover .mini-image img {
  transform: scale(1.08);
}

.mini-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mini-label {
  display: inline-block;
  width: fit-content;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-orange);
  background: rgba(250, 204, 21, 0.1);
  border: 1px solid rgba(250, 204, 21, 0.18);
  border-radius: 999px;
  padding: 7px 12px;
  margin-bottom: 14px;
}

.mini-content h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.mini-content p {
  color: #cbd5e1;
  line-height: 1.75;
  margin-bottom: 0;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .collection-mini-card {
    grid-template-columns: 1fr;
  }

  .mini-image {
    min-height: 260px;
  }
}

@media (max-width: 575.98px) {
  .collection-section {
    padding: 75px 0;
  }

  .collection-content {
    padding: 22px;
  }

  .collection-content h3 {
    font-size: 1.45rem;
  }

  .mini-content {
    padding: 20px;
  }
}

/* ===================== Analytics Section ===================== */
.analytics-section {
  padding: 95px 0;
  background:
    radial-gradient(
      circle at top left,
      rgba(250, 204, 21, 0.09),
      transparent 28%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(56, 189, 248, 0.08),
      transparent 30%
    ),
    linear-gradient(180deg, #0f172a 0%, #020617 100%);
  color: #fff;
  overflow: hidden;
}

.analytics-header {
  max-width: 780px;
  margin: 0 auto 42px;
}

.analytics-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.12);
  border: 1px solid rgba(250, 204, 21, 0.22);
  color: var(--accent-orange);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 14px;
  backdrop-filter: blur(10px);
}

.analytics-header h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 14px;
}

.analytics-header p {
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 0;
}

.analytics-section {
  background:
    radial-gradient(
      circle at top left,
      rgba(59, 130, 246, 0.08),
      transparent 28%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(56, 189, 248, 0.06),
      transparent 30%
    ),
    linear-gradient(180deg, #f8fafc 0%, #eef2f6 100%);
  color: #0f172a;
}

.analytics-badge {
  background: rgba(215, 38, 61, 0.08);
  border-color: rgba(215, 38, 61, 0.18);
  color: #a61b2d;
}

.analytics-header p,
.chart-header p,
.chart-legend {
  color: #475569;
}

.analytics-summary-card,
.analytics-chart-card {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(148, 163, 184, 0.24);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.summary-item {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(148, 163, 184, 0.2);
}

.summary-item p,
.summary-item h3,
.chart-header h3,
.analytics-header h2 {
  color: #0f172a;
}

.chart-grid line {
  stroke: rgba(15, 23, 42, 0.08);
}

.chart-labels text {
  fill: #64748b;
}

.legend-dot.sales {
  background: #d7263d;
}

.legend-dot.reach {
  background: #111111;
}

.summary-item {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.summary-label {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-orange);
  font-weight: 700;
  margin-bottom: 10px;
}

.summary-item h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 8px;
}

.summary-item p {
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Chart card */
.analytics-chart-card {
  padding: 24px;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.chart-header h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.chart-header p {
  color: #cbd5e1;
  margin-bottom: 0;
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #e2e8f0;
  font-size: 0.92rem;
}

.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.legend-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}

.legend-dot.sales {
  background: var(--accent-orange);
}

.legend-dot.reach {
  background: #111111;
}

.chart-wrap {
  width: 100%;
  overflow-x: auto;
}

.analytics-svg {
  width: 100%;
  min-width: 760px;
  height: auto;
  display: block;
}

.chart-grid line {
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
}

.chart-labels text {
  fill: #94a3b8;
  font-size: 16px;
  font-weight: 500;
}

.chart-area {
  fill: none;
  opacity: 0.95;
}

.sales-area {
  fill: url(#salesGradient);
}

.reach-area {
  fill: url(#reachGradient);
}

.chart-line {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  transition: stroke-dashoffset 1.7s ease;
}

.sales-line {
  stroke: var(--accent-orange);
}

.reach-line {
  stroke: #111111;
}

.chart-points circle {
  opacity: 0;
  transform: scale(0.6);
  transform-origin: center;
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.chart-points circle.sales-point {
  fill: var(--accent-orange);
}

.chart-points circle.reach-point {
  fill: #111111;
}

.analytics-section.in-view .chart-line {
  stroke-dashoffset: 0;
}

.analytics-section.in-view .chart-points circle {
  opacity: 1;
  transform: scale(1);
}

.analytics-section.in-view .chart-points circle:nth-child(1) {
  transition-delay: 0.15s;
}
.analytics-section.in-view .chart-points circle:nth-child(2) {
  transition-delay: 0.22s;
}
.analytics-section.in-view .chart-points circle:nth-child(3) {
  transition-delay: 0.29s;
}
.analytics-section.in-view .chart-points circle:nth-child(4) {
  transition-delay: 0.36s;
}
.analytics-section.in-view .chart-points circle:nth-child(5) {
  transition-delay: 0.43s;
}
.analytics-section.in-view .chart-points circle:nth-child(6) {
  transition-delay: 0.5s;
}
.analytics-section.in-view .chart-points circle:nth-child(7) {
  transition-delay: 0.57s;
}
.analytics-section.in-view .chart-points circle:nth-child(8) {
  transition-delay: 0.64s;
}
.analytics-section.in-view .chart-points circle:nth-child(9) {
  transition-delay: 0.71s;
}
.analytics-section.in-view .chart-points circle:nth-child(10) {
  transition-delay: 0.78s;
}
.analytics-section.in-view .chart-points circle:nth-child(11) {
  transition-delay: 0.85s;
}
.analytics-section.in-view .chart-points circle:nth-child(12) {
  transition-delay: 0.92s;
}

@media (max-width: 991px) {
  .analytics-summary-card {
    gap: 14px;
  }

  .analytics-chart-card {
    padding: 20px;
  }
}

@media (max-width: 575.98px) {
  .analytics-section {
    padding: 75px 0;
  }

  .analytics-summary-card,
  .analytics-chart-card {
    border-radius: 22px;
  }

  .analytics-summary-card {
    padding: 20px;
  }

  .summary-item {
    padding: 16px;
  }

  .analytics-chart-card {
    padding: 16px;
  }

  .chart-header h3 {
    font-size: 1.2rem;
  }
}
/* ===================== Trust / Contact Section ===================== */
.trust-section {
  background: #ffffff;
  padding: 100px 0;
  color: #0f172a;
}

.trust-header {
  max-width: 820px;
  margin: 0 auto 45px;
}

.trust-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.14);
  color: var(--accent-orange);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.trust-header h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 14px;
}

.trust-header p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 0;
}

.trust-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  padding: 28px;
  height: 100%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.section-title-block {
  margin-bottom: 22px;
}

.section-title-block h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #0f172a;
}

.section-title-block p {
  color: #64748b;
  margin-bottom: 0;
  line-height: 1.7;
}

/* Testimonials */
.testimonial-list {
  display: grid;
  gap: 16px;
}

.testimonial-item {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--accent-orange);
  margin-bottom: 12px;
}

.testimonial-item p {
  color: #334155;
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: 0.98rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    Var(--accent-orange),
    var(--accent-orange)
  );
  color: #111827;
  font-weight: 800;
  flex-shrink: 0;
}

.testimonial-author h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  color: #0f172a;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: #64748b;
}

/* Contact Form */
.modern-form .form-floating > label {
  color: #64748b;
}

.modern-input {
  border-radius: 18px !important;
  border: 1px solid rgba(15, 23, 42, 0.12) !important;
  background: #ffffff !important;
  color: #0f172a !important;
  box-shadow: none !important;
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}

.modern-input:focus {
  border-color: rgba(250, 120, 21, 0.75) !important;
  box-shadow: 0 0 0 0.18rem rgba(250, 204, 21, 0.15) !important;
}

.submit-btn {
  border: none;
  border-radius: 999px;
  padding: 14px 18px;
  font-weight: 700;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.18);
  background: linear-gradient(135deg, #111827, #0f172a);
}

/* Location */
.location-info {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 20px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.06);
  margin-bottom: 18px;
}

.location-info i {
  font-size: 1.5rem;
  color: var(--accent-orange);
  margin-top: 2px;
}

.location-info h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #0f172a;
}

.location-info p {
  color: #475569;
  margin-bottom: 0;
  line-height: 1.7;
}

.map-frame-wrap {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  min-height: 260px;
}

.map-frame-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
  display: block;
}

/* Newsletter */
.newsletter-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.newsletter-input-wrap {
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  min-height: 52px;
}

.newsletter-input-wrap i {
  color: #64748b;
}

.newsletter-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: #0f172a;
  font-size: 0.96rem;
  min-width: 0;
}

.newsletter-input-wrap input::placeholder {
  color: #94a3b8;
}

.newsletter-btn {
  border: none;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--accent-orange),
    var(--accent-orange)
  );
  color: #111827;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(250, 204, 21, 0.22);
}

/* Responsive */
@media (max-width: 991px) {
  .trust-section {
    padding: 80px 0;
  }

  .trust-card {
    padding: 24px;
  }
}

@media (max-width: 575.98px) {
  .trust-section {
    padding: 70px 0;
  }

  .trust-card {
    padding: 20px;
    border-radius: 22px;
  }

  .testimonial-item,
  .location-info {
    padding: 16px;
  }

  .newsletter-form {
    gap: 10px;
  }

  .newsletter-btn,
  .submit-btn {
    width: 100%;
  }
}

/* ===================== Network Section ===================== */
.network-section {
  background: #ffffff;
  padding: 100px 0;
  color: #0f172a;
  overflow: hidden;
}

.network-header {
  max-width: 820px;
  margin: 0 auto 45px;
}

.network-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.14);
  color: var(--accent-orange);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.network-header h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 14px;
}

.network-header p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 0;
}

/* Visual card */
.network-visual-card {
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  padding: 20px;
}

.network-visual {
  position: relative;
  min-height: 560px;
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at center,
      rgba(250, 204, 21, 0.16),
      transparent 25%
    ),
    radial-gradient(circle at center, rgba(15, 23, 42, 0.05), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #99c5f0 100%);
}

.network-globe {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 340px;
  height: 340px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 35% 30%,
      rgba(250, 135, 21, 0.64),
      transparent 22%
    ),
    radial-gradient(
      circle at 65% 68%,
      rgba(59, 130, 246, 0.7),
      transparent 22%
    ),
    linear-gradient(180deg, rgba(15, 23, 42, 0.13), rgba(15, 23, 42, 0.38));
  border: 1px solid rgba(15, 23, 42, 0.48);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  animation: globePulse 6s ease-in-out infinite;
}

.network-globe::before,
.network-globe::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.2);
}

.network-globe::after {
  inset: 42px;
}

.network-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.network-lines path {
  fill: none;
  stroke: rgba(32, 21, 2, 0.58);
  stroke-width: 3;
  stroke-dasharray: 10 10;
  animation: lineFlow 7s linear infinite;
}

.network-point {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #111827;
  font-size: 0.8rem;
  font-weight: 700;
}

.network-point span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-orange), #000000);
  box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.16);
  animation: pointPulse 2.8s ease-in-out infinite;
}

.point-1 {
  top: 22%;
  left: 18%;
}
.point-2 {
  top: 18%;
  right: 18%;
}
.point-3 {
  top: 44%;
  right: 10%;
}
.point-4 {
  bottom: 22%;
  right: 24%;
}
.point-5 {
  bottom: 16%;
  left: 22%;
}

.network-center-card {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: min(84%, 360px);
  padding: 18px 20px;
  text-align: center;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.network-center-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: #0f172a;
}

.network-center-card p {
  color: #475569;
  margin-bottom: 0;
  line-height: 1.65;
}

/* Content */
.network-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.network-pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 22px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.06);
  margin-bottom: 14px;
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    var(--accent-orange),
    var(--accent-orange)
  );
  color: #111827;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.network-pillar h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #0f172a;
}

.network-pillar p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Stats */
.network-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.network-stat {
  padding: 18px 16px;
  border-radius: 22px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.network-stat h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 900;
  margin-bottom: 6px;
  color: #0f172a;
}

.network-stat p {
  margin-bottom: 0;
  color: #64748b;
  font-size: 0.92rem;
}

.network-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding: 18px 0 0;
}

.network-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.network-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.16);
  color: #fff;
}

.network-cta p {
  margin: 0;
  color: #64748b;
  line-height: 1.6;
}

/* Animations */
@keyframes globePulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.03);
  }
}

@keyframes pointPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(250, 204, 21, 0.14);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 14px rgba(250, 204, 21, 0.08);
  }
}

@keyframes lineFlow {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -200;
  }
}

/* Responsive */
@media (max-width: 991px) {
  .network-section {
    padding: 80px 0;
  }

  .network-visual {
    min-height: 500px;
  }

  .network-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .network-visual {
    min-height: 440px;
  }

  .network-globe {
    width: 260px;
    height: 260px;
  }

  .point-1 {
    top: 18%;
    left: 12%;
  }
  .point-2 {
    top: 14%;
    right: 12%;
  }
  .point-3 {
    top: 40%;
    right: 6%;
  }
  .point-4 {
    bottom: 22%;
    right: 18%;
  }
  .point-5 {
    bottom: 14%;
    left: 16%;
  }
}

@media (max-width: 575.98px) {
  .network-section {
    padding: 70px 0;
  }

  .network-visual-card {
    padding: 14px;
    border-radius: 22px;
  }

  .network-visual {
    min-height: 390px;
    border-radius: 18px;
  }

  .network-pillar,
  .network-stat,
  .network-center-card {
    border-radius: 18px;
  }

  .network-pillar {
    padding: 16px;
  }

  .network-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .network-btn {
    width: 100%;
  }
}

footer,
.site-footer {
  background:
    radial-gradient(
      circle at top left,
      rgba(250, 204, 21, 0.08),
      transparent 25%
    ),
    linear-gradient(180deg, #020617 0%, #0f172a 100%);
  color: #e2e8f0;
  padding: 80px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 18px;
}

.footer-logo {
  width: 230px;
  max-width: 100%;
  height: auto;
  display: block;
}

.footer-text {
  color: #cbd5e1;
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 22px;
}

.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.3s ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  background: rgba(250, 204, 21, 0.14);
  border-color: rgba(250, 204, 21, 0.25);
  color: var(--accent-orange);
}

.footer-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 2px;
  background: linear-gradient(135deg, var(--accent-orange), #eab308);
  border-radius: 999px;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #cbd5e1;
  transition: 0.25s ease;
}

.footer-links a:hover {
  color: var(--accent-orange);
  padding-left: 4px;
}

footer,
.site-footer {
  background: #f8fafc;
  color: #334155;
  border-top-color: rgba(148, 163, 184, 0.22);
}
.footer-text,
.footer-about p {
  color: #475569;
}
.footer-social a {
  background: #ffffff;
  border-color: rgba(148, 163, 184, 0.3);
  color: #0f172a;
}
.footer-social a:hover {
  background: rgba(215, 38, 61, 0.1);
  color: #a61b2d;
}
.footer-title {
  color: #0f172a;
}
.footer-links a {
  color: #475569;
}
.footer-links a:hover {
  color: #d7263d;
}
.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}
.footer-bottom p,
.footer-bottom-links a {
  color: #64748b;
}
.footer-bottom-links a:hover {
  color: #d7263d;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  color: #cbd5e1;
  line-height: 1.7;
}

.footer-contact i {
  color: var(--accent-orange);
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-contact a {
  color: #cbd5e1;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--accent-orange);
}

.footer-newsletter {
  margin-top: 24px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-newsletter h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.footer-newsletter p {
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.footer-newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-newsletter-form input {
  flex: 1 1 180px;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 999px;
  padding: 12px 16px;
  outline: none;
}

.footer-newsletter-form input::placeholder {
  color: #94a3b8;
}

.footer-newsletter-form button {
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--accent-orange),
    var(--accent-orange)
  );
  color: #111827;
  transition: 0.25s ease;
}

.footer-newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(250, 204, 21, 0.22);
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: #94a3b8;
  font-size: 0.95rem;
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.25s ease;
}

.footer-bottom-links a:hover {
  color: var(--accent-orange);
}

@media (max-width: 991px) {
  .site-footer {
    padding-top: 70px;
  }
}

@media (max-width: 575.98px) {
  .site-footer {
    padding: 60px 0 22px;
  }

  .footer-logo {
    width: 200px;
  }

  .footer-newsletter-form button,
  .footer-newsletter-form input {
    width: 100%;
  }

  .footer-bottom {
    text-align: center;
    justify-content: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}

.profile-icon-btn {
  width: 42px;
  height: 42px;
  padding: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.search-results {
  max-height: 420px;
  overflow: auto;
}

.search-results-group {
  margin-top: 12px;
}

.search-results-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
  opacity: 0.8;
}

.search-result-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  margin-bottom: 8px;
}

.search-product-item {
  text-align: left;
  cursor: pointer;
  appearance: none;
}

.search-empty {
  padding: 12px 0;
  opacity: 0.75;
}

.search-results {
  max-height: 420px;
  overflow: auto;
}

.search-results-group {
  margin-top: 12px;
}

.search-results-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
  opacity: 0.8;
}

.search-result-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: inherit !important;
  margin-bottom: 8px;
}

.search-product-item {
  text-align: left;
  cursor: pointer;
  appearance: none;
}

.search-empty {
  padding: 12px 0;
  opacity: 0.75;
}

@media screen and (max-width: 360px) {
  #nav-contact {
    display: none;
  }
}

.cart-nav-btn,
#cartAction {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(239, 68, 68, 0.35);
}

.product-skeleton .product-media,
.skeleton-box {
  background: linear-gradient(90deg, #e9ecef 25%, #f7f7f7 37%, #e9ecef 63%);
  background-size: 400% 100%;
  animation: skeletonPulse 1.2s ease infinite;
}

.skeleton-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
}

.skeleton-line {
  height: 14px;
  border-radius: 999px;
  margin-top: 12px;
}

.skeleton-line.short {
  width: 60%;
}

@keyframes skeletonPulse {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}
