:root {
  --blue: #1a3a6b;
  --blue-mid: #1e4a8a;
  --blue-light: #2a5fa8;
  --red: #c0202a;
  --red-bright: #e02530;
  --white: #ffffff;
  --off-white: #f8f8f8;
  --grey-light: #f2f2f5;
  --grey-mid: #d8d8e0;
  --grey-dark: #8a8a99;
  --text: #1a1a2e;
  --text-muted: #555566;
  --font-head: "Syne", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --shadow: 0 4px 24px rgba(26, 58, 107, 0.1);
  --shadow-lg: 0 12px 48px rgba(26, 58, 107, 0.16);
  --radius: 12px;
  --radius-lg: 20px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--grey-light);
}
::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 3px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 96px 0;
}
.section--grey {
  background: var(--grey-light);
}
.section--blue {
  background: var(--blue);
  color: var(--white);
}
.tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.tag--white {
  color: rgba(255, 255, 255, 0.75);
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  line-height: 1.15;
}
h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
}
h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 700;
}
p {
  color: var(--text-muted);
}
.white-text p {
  color: rgba(255, 255, 255, 0.78);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after {
  opacity: 1;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 4px 16px rgba(192, 32, 42, 0.3);
}
.btn-primary:hover {
  box-shadow: 0 8px 28px rgba(192, 32, 42, 0.45);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}
.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(26, 58, 107, 0.25);
}
.btn-blue:hover {
  box-shadow: 0 8px 28px rgba(26, 58, 107, 0.38);
}
.btn-white {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* PATTERN ACCENT */
.pattern-bg {
  position: relative;
  overflow: hidden;
}
.pattern-bg::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 320px;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(192, 32, 42, 0.04) 0px,
      rgba(192, 32, 42, 0.04) 2px,
      transparent 2px,
      transparent 14px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(26, 58, 107, 0.04) 0px,
      rgba(26, 58, 107, 0.04) 2px,
      transparent 2px,
      transparent 14px
    );
  pointer-events: none;
}
.pattern-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(192, 32, 42, 0.05) 0px,
    rgba(192, 32, 42, 0.05) 2px,
    transparent 2px,
    transparent 14px
  );
  pointer-events: none;
}

/* NAVBAR */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.35s ease;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(220, 220, 230, 0.5);
}
#navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(26, 58, 107, 0.12);
  border-bottom-color: transparent;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.logo-icon::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
}
.logo-icon span {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  color: var(--white);
  letter-spacing: -0.5px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text strong {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--blue);
}
.logo-text span {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
}
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 6px;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.22s;
  cursor: pointer;
}
.nav-links a:hover {
  background: var(--grey-light);
}
#navbar.scrolled .nav-links a {
  color: var(--text);
}
#navbar.scrolled .nav-links a:hover {
  background: var(--grey-light);
}
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 9px 22px !important;
  box-shadow: 0 3px 12px rgba(192, 32, 42, 0.28);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(192, 32, 42, 0.38) !important;
}
.cart-nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cart-count {
  background: var(--red);
  color: white;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
#navbar.scrolled .nav-hamburger span {
  background: var(--text);
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 74px;
  left: 0;
  right: 0;
  background: var(--white);
  z-index: 999;
  box-shadow: var(--shadow-lg);
  padding: 20px 24px;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 8px;
  transition: background 0.2s;
  cursor: pointer;
}
.mobile-menu a:hover {
  background: var(--grey-light);
}
.mobile-menu a.mobile-cta {
  background: var(--red);
  color: var(--white);
  text-align: center;
  margin-top: 8px;
}

/* HERO */
#hero {
  min-height: 100vh;
  background: #f7f8fc;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
}
.hero-bg-shape {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 52%;
  background: linear-gradient(160deg, #eef2fb 0%, #e6ecf8 100%);
  border-radius: 0 0 0 80px;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--grey-mid);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  opacity: 0;
  box-shadow: 0 2px 12px rgba(26, 58, 107, 0.08);
}
.hero-badge span {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.3px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: #22a855;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(34, 168, 85, 0.7);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}
.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.06;
  margin-bottom: 22px;
  opacity: 0;
}
.hero h1 .blue {
  color: var(--blue);
}
.hero h1 .red {
  color: var(--red);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 480px;
  opacity: 0;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  margin-bottom: 40px;
}
.btn-hero-primary {
  background: var(--blue);
  color: var(--white);
  border: 2px solid var(--blue);
  padding: 15px 36px;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 18px rgba(26, 58, 107, 0.28);
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26, 58, 107, 0.38);
}
.btn-hero-outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
  padding: 15px 36px;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-hero-outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  opacity: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.trust-item .ti {
  font-size: 16px;
}
/* RIGHT SIDE IMAGE */
.hero-img-col {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
}
.hero-product-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(26, 58, 107, 0.18);
  opacity: 0;
  transform: scale(0.96);
}
.hero-img-placeholder {
  width: 100%;
  height: 520px;
  border-radius: 24px;
  background: linear-gradient(145deg, #dce8ff, #c8d8f8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 90px;
  box-shadow: 0 20px 60px rgba(26, 58, 107, 0.18);
  opacity: 0;
  transform: scale(0.96);
  position: relative;
  overflow: hidden;
}
.hero-img-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.06) 0,
    rgba(255, 255, 255, 0.06) 2px,
    transparent 2px,
    transparent 20px
  );
}
.hero-float-card {
  position: absolute;
  bottom: 28px;
  left: -20px;
  background: var(--white);
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(26, 58, 107, 0.18);
  opacity: 0;
  transform: translateX(-16px);
}
.hero-float-card .fc-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #e8f0fe, #c5d8f8);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.hero-float-card .fc-label {
  font-size: 10px;
  color: var(--grey-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: block;
  margin-bottom: 2px;
}
.hero-float-card .fc-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  display: block;
}

/* MARQUEE */
.marquee-section {
  background: var(--red);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.92);
  text-transform: uppercase;
}
.marquee-dot {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ABOUT */
.about-img-box {
  width: 100%;
  height: 440px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
  overflow: hidden;
}
.about-img-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.03) 0,
    rgba(255, 255, 255, 0.03) 2px,
    transparent 2px,
    transparent 24px
  );
}
.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge-float strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.about-badge-float span {
  font-size: 11px;
  letter-spacing: 1px;
  opacity: 0.85;
}
.about-visual {
  position: relative;
}
.about-text {
  padding-left: 20px;
}
.values-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.value-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--grey-light);
  border: 1px solid var(--grey-mid);
  border-radius: 100px;
  padding: 8px 18px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
}

/* CATEGORIES */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cat-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow);
  position: relative;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
}
.cat-card-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  position: relative;
  overflow: hidden;
}
.cat-card:nth-child(1) .cat-card-img {
  background: linear-gradient(135deg, #e8f0fe, #c5d8f8);
}
.cat-card:nth-child(2) .cat-card-img {
  background: linear-gradient(135deg, #fde8ea, #f8c5c8);
}
.cat-card:nth-child(3) .cat-card-img {
  background: linear-gradient(135deg, #e8fef0, #c5f8d8);
}
.cat-card:nth-child(4) .cat-card-img {
  background: linear-gradient(135deg, #fef8e8, #f8ecc5);
}
.cat-card:nth-child(5) .cat-card-img {
  background: linear-gradient(135deg, #f0e8fe, #d8c5f8);
}
.cat-card:nth-child(6) .cat-card-img {
  background: linear-gradient(135deg, #e8fefe, #c5f0f8);
}
.cat-card-body {
  padding: 20px 22px 22px;
}
.cat-card-body h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.cat-card-body p {
  font-size: 13px;
  color: var(--grey-dark);
  margin: 0;
}
.cat-card-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 100px;
}

/* PRODUCTS */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 12px rgba(26, 58, 107, 0.06);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
}
.product-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  background: var(--grey-light);
  position: relative;
}
.product-badge-new {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--red);
  color: white;
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 3px 9px;
  border-radius: 100px;
}
.product-info {
  padding: 16px;
}
.product-info h5 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.product-cat {
  font-size: 11px;
  color: var(--grey-dark);
  margin-bottom: 10px;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  color: var(--blue);
}
.price-from {
  font-size: 10px;
  font-weight: 500;
  color: var(--grey-dark);
  display: block;
}
.btn-cart {
  width: 36px;
  height: 36px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.22s;
  flex-shrink: 0;
}
.btn-cart:hover {
  background: var(--red);
  transform: scale(1.08);
}
.stock-dot {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: #22a855;
  margin-bottom: 8px;
}
.stock-dot::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #22a855;
  border-radius: 50%;
  display: block;
}

/* WHY */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.why-card:hover::before {
  transform: scaleX(1);
}
.why-card:hover {
  box-shadow: var(--shadow-lg);
}
.why-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    rgba(26, 58, 107, 0.08),
    rgba(192, 32, 42, 0.08)
  );
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.why-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* DELIVERY */
.delivery-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.delivery-map {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
  overflow: hidden;
}
.delivery-map::after {
  content: "UK-WIDE DELIVERY";
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}
.delivery-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}
.delivery-points li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}
.dp-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

/* TESTIMONIALS */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}
.testi-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.stars {
  color: #f5a623;
  font-size: 14px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testi-card blockquote {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--white);
  flex-shrink: 0;
}
.testi-author strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  display: block;
}
.testi-author span {
  font-size: 12px;
  color: var(--grey-dark);
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--red) 0%, #9b1a22 100%);
  border-radius: var(--radius-lg);
  padding: 72px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.04) 0,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px,
    transparent 32px
  );
  pointer-events: none;
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 14px;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  margin-bottom: 36px;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* WHOLESALE */
.wholesale-card {
  background: linear-gradient(135deg, var(--blue) 0%, #0d2247 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.wholesale-card::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 32, 42, 0.2), transparent 70%);
  pointer-events: none;
}
.wholesale-form {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group.full {
  grid-column: 1/-1;
}
.form-group label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.22s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.form-group select {
  cursor: pointer;
}
.form-group select option {
  background: var(--blue);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
}
.contact-info-card {
  background: var(--blue);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
}
.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 28px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-item-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-head);
  font-weight: 600;
  margin-bottom: 3px;
}
.contact-item a,
.contact-item p {
  font-size: 15px;
  color: var(--white);
  text-decoration: none;
  margin: 0;
}
.contact-item a:hover {
  color: var(--red-bright);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.hours-row span {
  color: rgba(255, 255, 255, 0.65);
}
.hours-row strong {
  color: var(--white);
  font-weight: 600;
}
.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  border-radius: 10px;
  padding: 14px 20px;
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  margin-top: 24px;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}
.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form-card h3 {
  margin-bottom: 8px;
}
.cform-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.cform-group label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.cform-group input,
.cform-group select,
.cform-group textarea {
  background: var(--grey-light);
  border: 1.5px solid var(--grey-mid);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition:
    border-color 0.22s,
    background 0.22s;
}
.cform-group input:focus,
.cform-group select:focus,
.cform-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
}
.cform-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.map-placeholder {
  background: var(--grey-light);
  border-radius: var(--radius);
  border: 1px solid var(--grey-mid);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--grey-dark);
  font-size: 14px;
  margin-top: 24px;
}
.map-placeholder span {
  font-size: 36px;
}

/* PAGE HERO */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: var(--white);
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: 14px;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
}

/* SHOP HEADER */
.shop-header {
  padding: 120px 0 56px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
}
.shop-header h1 {
  color: var(--white);
  margin-bottom: 10px;
}
.shop-header p {
  color: rgba(255, 255, 255, 0.72);
}
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-btn {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 100px;
  border: 1.5px solid var(--grey-mid);
  background: var(--white);
  color: var(--text);
  cursor: pointer;
  transition: all 0.22s;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.shop-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* MISSION */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mission-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s;
}
.mission-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.mission-icon {
  font-size: 40px;
  margin-bottom: 18px;
}
.mission-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--blue);
}
.mission-card p {
  font-size: 14px;
  color: var(--text-muted);
}

/* FOOTER */
footer {
  background: #0d1f3c;
  color: var(--white);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 16px 0 24px;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.22s;
  cursor: pointer;
  text-decoration: none;
}
.social-btn:hover {
  background: var(--red);
  transform: translateY(-2px);
}
footer h5 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 18px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}
.footer-links a:hover {
  color: var(--white);
}
.fci {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.fci .fi {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.fci a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.fci a:hover {
  color: var(--white);
}
.footer-bottom {
  margin-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}
.footer-badges {
  display: flex;
  gap: 8px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* TOAST */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 22px;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* PAGE SECTIONS */
.page-section {
  display: none;
}
.page-section.active {
  display: block;
}

/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(30px);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
}
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .product-grid,
  .shop-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 900px) {
  .grid-2,
  .delivery-row,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-text {
    padding-left: 0;
  }
  .hero-img-col {
    display: none;
  }
  .hero-bg-shape {
    display: none;
  }
  .cat-grid,
  .why-grid,
  .testi-grid,
  .mission-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-grid,
  .shop-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wholesale-card {
    padding: 36px 24px;
  }
  .wholesale-form {
    grid-template-columns: 1fr;
  }
  .cta-banner {
    padding: 48px 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .section {
    padding: 64px 0;
  }
  .cat-grid,
  .why-grid,
  .testi-grid,
  .mission-grid {
    grid-template-columns: 1fr;
  }
  .product-grid,
  .shop-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-stats {
    gap: 24px;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
@media (max-width: 400px) {
  .product-grid,
  .shop-product-grid {
    grid-template-columns: 1fr;
  }
}
