/* Local Font Declarations — DM Sans */
@font-face {
  font-family: 'DM Sans';
  src: url('./Fonts/DM_Sans/DMSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('./Fonts/DM_Sans/DMSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('./Fonts/DM_Sans/DMSans-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('./Fonts/DM_Sans/DMSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('./Fonts/DM_Sans/DMSans-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('./Fonts/DM_Sans/DMSans-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Local Font Declarations — Gulams Condensed */
@font-face {
  font-family: 'Gulams Condensed';
  src: url('./Fonts/Gulams/GulamsCondensed-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gulams Condensed';
  src: url('./Fonts/Gulams/GulamsCondensed-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gulams Condensed';
  src: url('./Fonts/Gulams/GulamsCondensed-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gulams Condensed';
  src: url('./Fonts/Gulams/GulamsCondensed-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gulams Condensed';
  src: url('./Fonts/Gulams/GulamsCondensed-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gulams Condensed';
  src: url('./Fonts/Gulams/GulamsCondensed-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gulams Condensed';
  src: url('./Fonts/Gulams/GulamsCondensed-ExtraBlack.ttf') format('truetype');
  font-weight: 950;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-red: #E63B38;
  --primary-red-hover: #C92A27;
  --sky-blue: #54A9E2;
  --sky-blue-hover: #3B95D4;
  --light-cream: #FFFFFF; /* GLOBAL WEBSITE BACKGROUND #FFF */
  --white: #FFFFFF;
  --dark-charcoal: #1F1F1F;
  --dark-navy: #1E293B;
  --text-dark: #0F172A;
  --text-muted: #6B7280;
  
  --card-light-bg: #F8FAFC;
  --card-blue-bg: #5BD3FA;
  --card-red-bg: #F05454;
  
  --font-display: 'Gulams Condensed', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  
  /* MASTER DESKTOP GRID — 1920px Viewport (80px margins = 1760px content) */
  --container-max: 1760px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 36px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
}

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

/* SMOOTH SCROLL & SCROLL SNAP MANDATORY TYPE */
html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  font-size: 16px;
  background-color: #FFFFFF;
}

body {
  font-family: var(--font-body);
  background-color: #FFFFFF; /* GLOBAL WEBSITE BACKGROUND #FFF */
  color: var(--text-dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

button {
  font-family: var(--font-display);
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

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

/* MASTER GLOBAL CONTAINER (1760px max-width, 80px side margins at 1920px) */
.container,
.section-simple-container,
.container-section2,
.standards-grid,
.shop-container,
.footer-container {
  width: calc(100% - 160px);
  max-width: 1760px;
  margin-inline: auto;
}

/* Typography Helper Classes */
.text-blue {
  color: var(--sky-blue);
}

.text-red {
  color: var(--primary-red);
}

.heading-display {
  font-family: var(--font-display);
  letter-spacing: 1px;
  line-height: 1;
}

/* Button Component */
.btn-primary {
  background-color: var(--primary-red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: 1px;
  padding: 12px 36px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(230, 59, 56, 0.35);
}

.btn-primary:hover {
  background-color: var(--primary-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 59, 56, 0.45);
}

.btn-secondary {
  background-color: var(--sky-blue);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: 1px;
  padding: 12px 36px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(84, 169, 226, 0.35);
}

.btn-secondary:hover {
  background-color: var(--sky-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(84, 169, 226, 0.45);
}

/* REMOVE BACKGROUND GLOW FROM ADD TO CART BUTTONS AS REQUESTED */
button.btn-primary.btn-add-cart,
.btn-primary.btn-add-cart,
.btn-add-cart,
.pdp-add-btn {
  box-shadow: none !important;
  filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

button.btn-primary.btn-add-cart:hover,
.btn-primary.btn-add-cart:hover,
.btn-add-cart:hover,
.pdp-add-btn:hover,
button.btn-primary.btn-add-cart:focus,
.btn-add-cart:focus {
  box-shadow: none !important;
  filter: none !important;
}

button.btn-primary.btn-add-cart::before,
button.btn-primary.btn-add-cart::after,
.btn-add-cart::before,
.btn-add-cart::after,
.pdp-add-btn::before,
.pdp-add-btn::after {
  display: none !important;
  box-shadow: none !important;
  content: none !important;
}

/* 1. TOP ANNOUNCEMENT BAR TICKER */
.top-bar {
  background-color: var(--primary-red);
  color: var(--white);
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 100;
  overflow: hidden;
  white-space: nowrap;
}

.top-bar-ticker {
  display: inline-flex;
  gap: 48px;
  animation: topBarScroll 22s linear infinite;
  will-change: transform;
}

.top-bar-ticker:hover {
  animation-play-state: paused;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.8px;
}

@keyframes topBarScroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* 2. SECTION 01 — HERO (Full Viewport Height & Transparent Overlay Header) */
.hero-wrapper {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 44px);
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.hero-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-bg-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

/* HERO OVERLAY — DISABLED ON DESKTOP AS REQUESTED, ACTIVE ON MOBILE */
.hero-overlay-layer {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* MAIN HEADER (Transparent Overlayed on Hero Background) */
.main-header {
  position: relative;
  z-index: 10;
  background-color: transparent;
  padding: 24px 0 12px;
  transition: var(--transition);
}

.main-header.inner-header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #F1F5F9;
  position: sticky;
  top: 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 90px;
}

.logo img {
  height: 85px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 90px;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 600;
}

.nav-link {
  font-family: 'Gulams Condensed', var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 1.5px;
  color: var(--dark-navy);
  transition: var(--transition);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-red);
}

.nav-link:hover .lucide-chevron-down,
.nav-item-dropdown:hover .lucide-chevron-down {
  transform: rotate(180deg) !important;
  stroke: var(--primary-red);
}

/* HEADER ABOUT DROPDOWN MENU */
.nav-item-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background-color: #FFFFFF;
  border-radius: 18px;
  padding: 10px 0;
  min-width: 230px;
  border: 1.5px solid #E2E8F0;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
}

.nav-dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--dark-navy);
  text-decoration: none;
  transition: var(--transition);
}

.nav-dropdown-link svg {
  stroke: var(--dark-navy);
  transition: stroke 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.nav-dropdown-link:hover,
.nav-dropdown-link.active {
  background-color: #FFF5F5;
  color: var(--primary-red);
}

.nav-dropdown-link:hover svg,
.nav-dropdown-link.active svg {
  stroke: var(--primary-red);
  transform: scale(1.15);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* MOBILE MENU HAMBURGER & DRAWER STYLES */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: var(--dark-navy);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 340px;
  height: 100vh;
  background: #FFFFFF;
  z-index: 10000;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  padding: 70px 24px 32px;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-nav-drawer.active {
  right: 0;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-login-btn-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background-color: #FFF5F5;
  border: 1.5px solid #FEE2E2;
  border-radius: 16px;
  padding: 14px 18px;
  text-decoration: none;
  transition: var(--transition);
  margin-bottom: 12px;
}

.mobile-login-btn-card:hover {
  background-color: #FEE2E2;
  border-color: var(--primary-red);
}

.mobile-login-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--primary-red);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav-link.active, .mobile-nav-link:hover {
  color: var(--primary-red);
}

/* HEADER USER ICON BUTTON (ICON ONLY AS REQUESTED) */
.header-user-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #F8FAFC;
  transition: var(--transition);
  cursor: pointer;
  border: 1.5px solid #E2E8F0;
  padding: 0;
  font-size: 1.2rem;
  color: var(--dark-navy);
}

.header-user-icon:hover {
  background-color: #EEF2F6;
  color: var(--primary-red);
  border-color: var(--primary-red);
}

.header-user-icon.active {
  background-color: #FFF5F5;
  color: var(--primary-red);
  border-color: var(--primary-red);
}

/* HEADER CART ICON */
.header-cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #F8FAFC;
  transition: var(--transition);
  cursor: pointer;
}

.header-cart-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--dark-navy);
  transition: var(--transition);
}

.header-cart-icon:hover {
  background-color: #EEF2F6;
  transform: translateY(-1px);
}

.header-cart-icon:hover svg {
  fill: var(--primary-red);
}

.header-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--primary-red);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}

/* ACCOUNT AUTH BOX */
.account-card-container {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.account-auth-box {
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 40px;
  width: 100%;
  max-width: 520px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.05);
}

.auth-tabs-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: #F8FAFC;
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 28px;
  border: 1px solid #E2E8F0;
}

.auth-tab-btn {
  padding: 12px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #64748B;
  border: none;
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
}

.auth-tab-btn.active {
  background-color: #FFFFFF;
  color: var(--primary-red);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.auth-form-content {
  display: none;
}

.auth-form-content.active {
  display: block;
}

.auth-error-badge {
  background-color: #FEE2E2;
  color: #991B1B;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
  display: none;
}

/* LOGGED IN USER PROFILE BANNER */
.user-profile-banner {
  background-color: #F8FAFC;
  border-radius: 20px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid #E2E8F0;
}

.user-avatar-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-greeting-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--text-dark);
  line-height: 1;
}

.user-order-card {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 16px;
  transition: var(--transition);
}

.user-order-card:hover {
  box-shadow: var(--shadow-md);
}

/* FLOATING CART BUTTON */
.floating-cart-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background-color: var(--primary-red);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(230, 59, 56, 0.45);
  z-index: 1000;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.floating-cart-btn:hover {
  transform: scale(1.08);
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: var(--sky-blue);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}

/* FLOATING WHATSAPP BUTTON */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 1000;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.floating-whatsapp-btn svg {
  width: 34px;
  height: 34px;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
  position: absolute;
  left: 72px;
  background-color: #1E293B;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transform: translateX(-8px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.floating-whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* HERO CONTENT SECTION */
.hero-section {
  position: relative;
  z-index: 5;
  flex-grow: 1;
  display: flex;
  align-items: center;
  padding: 40px 0 80px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.hero-left-spacer {
  min-height: 440px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-content: center;
  align-items: center;
}

.hero-title-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 680px;
}

.hero-title-svg {
  width: 100%;
  height: auto;
  max-width: 680px;
  display: block;
}

.hero-description {
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--dark-navy);
  max-width: 590px;
  line-height: 1.65;
  font-weight: 500;
  text-align: center;
}

.btn-hero-cta {
  font-size: 1.5rem;
  padding: 14px 48px;
}

/* INNER MULTI-PAGE LAYOUTS */
.page-main {
  min-height: calc(100vh - 400px);
  padding: 40px 0 100px;
  background-color: #FFFFFF;
  scroll-snap-align: start;
}

.page-title-banner {
  text-align: center;
  margin-bottom: 48px;
}

.page-title {
  font-family: var(--font-display);
  font-size: 4.8rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1px;
}

.page-subtitle {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: #4B5563;
  max-width: 680px;
  margin: 14px auto 0;
  line-height: 1.6;
}

/* BREADCRUMB NAVIGATION */
.breadcrumb {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #64748B;
  margin-bottom: 32px;
}

.breadcrumb a {
  color: var(--dark-navy);
  font-weight: 600;
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--primary-red);
}

.breadcrumb span {
  color: #94A3B8;
}

/* PRODUCT DETAIL PAGE (PDP) GRID & STYLING */
.pdp-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: flex-start;
  margin-bottom: 64px;
}

.pdp-media-box {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.pdp-main-img-wrap {
  background-color: #F8FAFC;
  border-radius: var(--radius-lg);
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid #F1F5F9;
  cursor: zoom-in;
}

.pdp-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

.pdp-main-img-wrap:hover .pdp-main-img {
  transform: scale(1.04);
}

.pdp-sale-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--primary-red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
  z-index: 10;
}

.pdp-details {
  display: flex;
  flex-direction: column;
}

.pdp-category {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--sky-blue);
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.pdp-title {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 14px;
}

.pdp-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  margin-bottom: 20px;
}

.pdp-rating .stars {
  color: #F59E0B;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.pdp-rating .rating-score {
  font-weight: 800;
  color: var(--text-dark);
}

.pdp-rating .review-count {
  color: #64748B;
  font-size: 0.95rem;
}

.pdp-pricing {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
}

.pdp-current-price {
  font-family: var(--font-body);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--primary-red);
}

.pdp-old-price {
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: #9CA3AF;
  text-decoration: line-through;
  font-weight: 500;
}

.pdp-short-desc {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: #4B5563;
  line-height: 1.75;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E2E8F0;
}

.pdp-action-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.pdp-qty-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pdp-qty-controls,
.cart-qty-selector,
.qty-selector-custom {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.pdp-qty-btn,
.cart-qty-btn {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: var(--font-body) !important;
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  border: none !important;
  outline: none !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
  line-height: 1 !important;
}

/* Minus (-) Button: Soft light grey circle */
.pdp-qty-btn#pdp-qty-minus,
.cart-qty-btn.qty-minus,
.qty-btn-minus {
  background: #F8FAFC !important;
  color: #334155 !important;
  border: 1px solid #E2E8F0 !important;
}

.pdp-qty-btn#pdp-qty-minus:hover,
.cart-qty-btn.qty-minus:hover,
.qty-btn-minus:hover {
  background: #F1F5F9 !important;
  color: #0F172A !important;
  transform: scale(1.06);
}

/* Plus (+) Button: Filled light grey circle */
.pdp-qty-btn#pdp-qty-plus,
.cart-qty-btn.qty-plus,
.qty-btn-plus {
  background: #E2E8F0 !important;
  color: #0F172A !important;
}

.pdp-qty-btn#pdp-qty-plus:hover,
.cart-qty-btn.qty-plus:hover,
.qty-btn-plus:hover {
  background: #CBD5E1 !important;
  color: #0F172A !important;
  transform: scale(1.06);
}

.pdp-qty-btn:active,
.cart-qty-btn:active {
  transform: scale(0.94);
}

.pdp-qty-controls input,
.cart-qty-input {
  width: 32px !important;
  height: 40px !important;
  text-align: center !important;
  font-family: var(--font-body) !important;
  font-size: 1.2rem !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  box-shadow: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.pdp-btn-group {
  display: flex;
  gap: 16px;
}

.pdp-buy-btn {
  flex: 1.2;
  padding: 16px 24px;
  font-size: 1.4rem;
}

.pdp-add-btn {
  flex: 1;
  padding: 16px 24px;
  font-size: 1.4rem;
}

.pdp-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #F8FAFC;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid #E2E8F0;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.highlight-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.highlight-item strong {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
}

.highlight-item p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #64748B;
  margin-top: 2px;
}

/* PDP TABS SECTION */
.pdp-tabs-wrapper {
  margin-bottom: 72px;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid #E2E8F0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pdp-tabs-header {
  display: flex;
  background-color: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
}

.pdp-tab-btn {
  padding: 20px 36px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #64748B;
  border: none;
  background: none;
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  text-transform: uppercase;
}

.pdp-tab-btn:hover {
  color: var(--primary-red);
}

.pdp-tab-btn.active {
  color: var(--primary-red);
  background-color: #FFFFFF;
  border-bottom-color: var(--primary-red);
}

.pdp-tab-content {
  padding: 36px;
  display: none;
  font-family: var(--font-body);
  color: #334155;
  line-height: 1.8;
}

.pdp-tab-content.active {
  display: block;
}

.pdp-tab-content h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.pdp-tab-content ul, .pdp-tab-content ol {
  padding-left: 24px;
  margin: 16px 0;
}

.pdp-tab-content li {
  margin-bottom: 8px;
}

.pdp-nutrition-table {
  width: 100%;
  max-width: 480px;
  margin-top: 16px;
  border-collapse: collapse;
}

.pdp-nutrition-table td {
  padding: 10px 16px;
  border-bottom: 1px solid #E2E8F0;
  font-size: 0.95rem;
}

.pdp-nutrition-table td:first-child {
  font-weight: 700;
  color: var(--text-dark);
}

/* PDP RELATED PRODUCTS */
.pdp-related-section {
  padding-top: 40px;
  border-top: 1px solid #E2E8F0;
}

.pdp-related-title {
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1;
}

/* LIGHTBOX IMAGE VIEWER MODAL */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: zoom-out;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: #FFFFFF;
  padding: 16px;
}

.lightbox-modal.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close-btn {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: var(--transition);
  z-index: 10000;
}

.lightbox-close-btn:hover {
  background: var(--primary-red);
  transform: scale(1.1);
}

/* 3. SECTION 02 — SIMPLE. DELICIOUS. (100vh & 1760px Container) */
.section-simple {
  min-height: 100vh;
  width: 100%;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
  box-sizing: border-box;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.section-simple-container {
  width: calc(100% - 160px);
  max-width: 1760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* TOP CONTENT ROW */
.simple-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

.simple-single-line-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.4rem, 7.2vw, 9.2rem);
  line-height: 1;
  letter-spacing: 2px;
  white-space: nowrap;
  margin: 0;
  text-align: left;
}

.title-blue {
  color: var(--sky-blue);
}

.title-red {
  color: var(--primary-red);
}

.simple-body-wrapper {
  max-width: 460px;
  flex-shrink: 0;
}

.simple-three-line-text {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.5;
  color: #374151;
  text-align: left;
  font-weight: 400;
  margin: 0;
}

/* IMAGE ROW */
.simple-image-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  width: 100%;
}

.simple-image-row img,
.simple-image-row .refinement-img {
  cursor: default !important;
  pointer-events: none;
}

.refinement-img {
  height: 500px;
  width: auto;
  border-radius: 36px;
  object-fit: contain;
  box-shadow: none !important;
  border: none;
  display: block;
}

/* 4. SECTION 03 — SHOP NOW (100vh & 1760px Container) */
.section-shop {
  min-height: 100vh;
  width: 100%;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* SHOP HEADER: 3 Items aligned horizontally, vertically centred, spaces between, gaps auto-fit width */
.shop-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 48px;
  gap: 32px;
}

.shop-title-container {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-shrink: 0;
}

.shop-title-container .title-blue,
.shop-title-container .title-red {
  font-size: 5.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.9;
}

.shop-subtext {
  max-width: 920px;
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: #4B5563;
  line-height: 1.6;
  text-align: left;
  margin: 0;
}

.shop-header .btn-order-now {
  flex-shrink: 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  width: 100%;
}

.product-card {
  background-color: #FFFFFF;
  border-radius: 28px;
  border: 1.5px solid #E2E8F0 !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  text-align: left;
  padding: 0;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  border-color: #CBD5E1 !important;
}

.product-img-box {
  background-color: transparent;
  width: 100%;
  height: 320px;
  border-radius: 26px 26px 0 0;
  display: block;
  padding: 0 !important;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.product-img-box img {
  width: 100% !important;
  height: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}

.product-card-body {
  padding: 22px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.product-title-group {
  flex: 1;
}

.product-card-title {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.25;
  margin: 0 0 4px 0;
}

.product-card-title a {
  color: inherit;
  text-decoration: none;
}

.product-card-title a:hover {
  color: var(--primary-red);
}

.product-card-sub {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: #64748B;
  line-height: 1.4;
  margin: 0;
}

.product-cart-circle-btn {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background-color: var(--sky-blue);
  color: #FFFFFF;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(84, 169, 226, 0.35);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.product-cart-circle-btn:hover {
  background-color: var(--sky-blue-hover);
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(84, 169, 226, 0.45);
}

.product-price-block {
  margin-top: 14px;
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.product-price-current {
  font-family: var(--font-body);
  font-size: 1.45rem;
  font-weight: 800;
  color: #0F172A;
}

.product-price-old {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #94A3B8;
  text-decoration: line-through;
  font-weight: 500;
}

.product-card-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  margin-top: auto;
}

.product-card .btn-primary,
.product-card-actions .btn-primary {
  width: 100%;
  padding: 11px 16px;
  font-size: 1.2rem;
}

/* CART PAGE SPECIFIC STYLES */
.cart-page-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.cart-table-container {
  background-color: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid #E2E8F0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
}

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

.cart-table th {
  background-color: #F8FAFC;
  padding: 18px 24px;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #E2E8F0;
}

.cart-table td {
  padding: 20px 24px;
  border-bottom: 1px solid #F1F5F9;
  vertical-align: middle;
}

.cart-table tr:last-child td {
  border-bottom: none;
}

.cart-item-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-page-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background-color: #F8FAFC;
  border-radius: var(--radius-sm);
  padding: 6px;
}

.cart-page-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.cart-page-price {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-dark);
}

/* HIGH UX SHOPPING CART QUANTITY SELECTOR */
.cart-qty-selector {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #CBD5E1;
  border-radius: 9999px;
  background-color: #FFFFFF;
  padding: 2px 6px;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cart-qty-selector:focus-within,
.cart-qty-selector:hover {
  border-color: var(--sky-blue);
  box-shadow: 0 4px 14px rgba(84, 169, 226, 0.2);
}

.cart-qty-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1;
}

.cart-qty-btn:hover {
  background-color: #F1F5F9;
  color: var(--primary-red);
  transform: scale(1.08);
}

.cart-qty-btn:active {
  transform: scale(0.92);
  background-color: #E2E8F0;
}

.cart-qty-input {
  width: 44px;
  height: 34px;
  border: none;
  background: transparent;
  text-align: center;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  outline: none;
  -moz-appearance: textfield;
}

.cart-qty-input::-webkit-outer-spin-button,
.cart-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-remove-btn {
  color: #EF4444;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 6px 12px;
  border-radius: 8px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.cart-remove-btn svg {
  width: 18px;
  height: 18px;
  stroke: #EF4444;
  transition: transform 0.2s ease, stroke 0.2s ease;
}

.cart-remove-btn:hover {
  background-color: #FEE2E2;
  color: #DC2626;
}

.cart-remove-btn:hover svg {
  stroke: #DC2626;
  transform: scale(1.12);
}

.cart-page-summary {
  background-color: #F8FAFC;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid #E2E8F0;
  max-width: 480px;
  margin-left: auto;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 1.1rem;
  margin-bottom: 14px;
  color: #4B5563;
}

.summary-row-total {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  border-top: 1px solid #E2E8F0;
  padding-top: 14px;
  margin-top: 14px;
}

.cart-actions-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}

.empty-cart-view {
  text-align: center;
  padding: 80px 20px;
  background-color: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px dashed #CBD5E1;
}

/* ORDER INFORMATION PAGE GRID & DELIVERY DETAILS FORM UX */
.checkout-page-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
}

.checkout-form-box {
  background-color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.order-summary-box {
  background-color: #F8FAFC;
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid #E2E8F0;
  height: fit-content;
  box-shadow: var(--shadow-sm);
}

.checkout-section-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1;
}

.form-section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #F1F5F9;
}

.form-section-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #E0F2FE;
  color: var(--sky-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
}

.form-section-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}

.form-group {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.form-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-label .required-star {
  color: var(--primary-red);
}

.form-input, .form-select {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1.5px solid #CBD5E1;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background-color: #FFFFFF;
  outline: none;
  transition: var(--transition);
}

.form-input:focus, .form-select:focus {
  border-color: var(--sky-blue);
  box-shadow: 0 0 0 4px rgba(84, 169, 226, 0.15);
  background-color: #FFFFFF;
}

.form-input::placeholder {
  color: #94A3B8;
}

/* CUSTOM PAYMENT METHOD SELECTION CARDS */
.payment-methods-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}

.payment-card-option {
  border: 2px solid #E2E8F0;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  transition: var(--transition);
  background-color: #F8FAFC;
  position: relative;
}

.payment-card-option:hover {
  border-color: var(--sky-blue);
  background-color: #FFFFFF;
}

.payment-card-option.active {
  border-color: var(--primary-red);
  background-color: #FFF5F5;
  box-shadow: 0 4px 14px rgba(230, 59, 56, 0.12);
}

.payment-radio-custom {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #CBD5E1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  flex-shrink: 0;
  transition: var(--transition);
}

.payment-card-option.active .payment-radio-custom {
  border-color: var(--primary-red);
  background-color: var(--primary-red);
}

.payment-card-option.active .payment-radio-custom::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #FFFFFF;
}

.payment-option-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.payment-option-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #64748B;
  margin-top: 4px;
  line-height: 1.45;
}

/* QATAR DELIVERY GUARANTEE BADGE */
.delivery-guarantee-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background-color: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 24px;
}

.delivery-guarantee-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.delivery-guarantee-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #166534;
  font-weight: 600;
}

/* 5. SECTION 04 — MADE FOR SMILES. BACKED BY STANDARDS. (100vh & 1760px Container) */
.section-standards {
  min-height: 80vh;
  width: 100%;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.standards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.standards-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.standards-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.standards-title .title-blue,
.standards-title .title-red {
  font-size: 5.2rem;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.9;
}

.standards-subtext {
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: #4B5563;
  line-height: 1.65;
  max-width: 540px;
}

.standards-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.badge-card {
  background-color: var(--white);
  border: 1.5px solid #E2E8F0;
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.02);
  transition: var(--transition);
}

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

.badge-icon {
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 6. FOOTER SECTION (1760px Container & quickmilk.pk Layout) */
.main-footer {
  background-color: var(--dark-charcoal);
  color: var(--white);
  padding: 90px 0 40px;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.footer-hashtag {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 8.5rem;
  color: var(--white);
  line-height: 0.9;
  letter-spacing: 2px;
  margin-bottom: 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.3fr 1.2fr;
  gap: 48px;
  align-items: flex-start;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-col-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-link {
  font-family: var(--font-body);
  color: #D1D5DB;
  font-size: 1.05rem;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--white);
  padding-left: 4px;
}

.newsletter-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.newsletter-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #D1D5DB;
  line-height: 1.55;
  margin-bottom: 14px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.newsletter-input {
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid #374151;
  background-color: #262626;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.newsletter-input:focus {
  border-color: var(--sky-blue);
}

.newsletter-btn {
  background-color: var(--primary-red);
  color: var(--white);
  border-radius: var(--radius-pill);
  padding: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}

.newsletter-btn:hover {
  background-color: var(--primary-red-hover);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 36px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #9CA3AF;
}

.footer-bottom-links {
  display: flex;
  gap: 28px;
}

/* COMPREHENSIVE MOBILE RESPONSIVE MEDIA QUERIES */
@media (max-width: 1760px) {
  .container,
  .section-simple-container,
  .container-section2,
  .standards-grid,
  .shop-container,
  .footer-container {
    width: calc(100% - 80px);
  }
}

@media (max-width: 1380px) {
  .simple-single-line-heading { font-size: clamp(2.8rem, 5.5vw, 6.5rem); }
  .refinement-img { height: 420px; }
  .hero-title-svg { max-width: 520px; }
  .shop-title-container .title-blue, .shop-title-container .title-red { font-size: 4.2rem; }
  .header-right { gap: 48px; }
  .nav-links { gap: 48px; }
}

@media (max-width: 1200px) {
  .container,
  .section-simple-container,
  .container-section2,
  .standards-grid,
  .shop-container,
  .footer-container {
    width: calc(100% - 48px);
  }

  .header-right { gap: 36px; }
  .nav-links { gap: 36px; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 992px) {
  .nav-links { display: none !important; }
  .mobile-menu-btn { display: block !important; }
  .header-actions { gap: 12px; }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 20px;
  }
  .hero-left-spacer { display: none; }
  .hero-content { align-items: center; text-align: center; }

  .pdp-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .checkout-page-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .standards-grid { grid-template-columns: 1fr; gap: 40px; }
  .badges-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-hashtag { font-size: 5rem; }
}

@media (max-width: 768px) {
  html {
    scroll-snap-type: none !important; /* Disable strict scroll snap on mobile for natural smooth scrolling */
  }

  .container,
  .section-simple-container,
  .container-section2,
  .standards-grid,
  .shop-container,
  .footer-container {
    width: calc(100% - 32px);
  }

  /* HERO SECTION MOBILE OVERLAY (MOBILE ONLY — HIDDEN ON DESKTOP) */
  .hero-overlay-layer {
    display: block !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.55) 45%, rgba(255, 255, 255, 0.82) 100%) !important;
  }

  .top-bar { font-size: 0.85rem; padding: 8px 0; }
  .logo img { height: 60px; }

  .page-title { font-size: 3.2rem; }
  .page-subtitle { font-size: 1.05rem; }

  /* SIMPLE DELICIOUS SECTION MOBILE LEFT ALIGNMENT & NATURAL IMAGE HEIGHT */
  .simple-top-row {
    flex-direction: column;
    align-items: flex-start !important;
    text-align: left !important;
    gap: 16px;
  }

  .simple-single-line-heading {
    font-size: clamp(2.4rem, 9vw, 4.2rem);
    text-align: left !important;
    align-self: flex-start !important;
  }

  .simple-three-line-text {
    font-size: 1rem;
    text-align: left !important;
  }

  .simple-image-row {
    flex-direction: column;
    width: 100%;
    gap: 20px;
  }

  .refinement-img {
    height: auto !important; /* Preserves natural original height */
    max-height: none !important;
    width: 100% !important;
    object-fit: contain !important;
    border-radius: 24px !important;
  }

  /* SHOP NOW SECTION MOBILE VERTICAL LEFT ALIGNMENT */
  .shop-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    gap: 16px !important;
  }

  .shop-title-container {
    display: flex !important;
    flex-direction: row !important;
    align-items: baseline !important;
    gap: 12px !important;
    text-align: left !important;
  }

  .shop-title-container .title-blue,
  .shop-title-container .title-red {
    font-size: 3.6rem !important;
    text-align: left !important;
  }

  .shop-subtext {
    text-align: left !important;
    max-width: 100% !important;
  }

  .shop-header .btn-order-now {
    align-self: flex-start !important;
    margin-top: 8px !important;
  }

  .standards-title .title-blue,
  .standards-title .title-red {
    font-size: 3.4rem;
  }

  /* STANDARDS SECTION MOBILE VERTICAL LEFT ALIGNMENT */
  .standards-content {
    align-items: flex-start !important;
    text-align: left !important;
  }

  .standards-title {
    align-items: flex-start !important;
    text-align: left !important;
  }

  .standards-subtext {
    text-align: left !important;
  }

  .standards-actions {
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 16px !important;
    width: 100% !important;
  }

  .standards-actions .btn-primary,
  .standards-actions .btn-secondary {
    width: auto !important;
    max-width: 100% !important;
    align-self: flex-start !important;
  }

  /* MOBILE PRODUCT TILES: SINGLE PRODUCT COLUMN */
  .products-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .product-card {
    background-color: #FFFFFF !important;
    border-radius: 20px !important;
    padding: 14px !important;
    border: 1px solid #E2E8F0 !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .product-img-box {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 14px !important;
    margin-bottom: 12px !important;
    overflow: hidden !important;
    background-color: #F8FAFC !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .product-img-box img {
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: cover !important; /* Covers the 1:1 container completely */
    display: block !important;
  }

  .product-category {
    font-size: 0.8rem !important;
    margin-bottom: 4px !important;
  }

  .product-name {
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    min-height: 2.8rem !important;
    margin-bottom: 8px !important;
    line-height: 1.25 !important;
  }

  .product-pricing {
    margin-bottom: 12px !important;
    gap: 8px !important;
  }

  .current-price {
    font-size: 1.3rem !important;
    font-weight: 800 !important;
  }

  .old-price {
    font-size: 1rem !important;
  }

  .product-card .btn-primary {
    width: 100% !important;
    padding: 10px 12px !important;
    font-size: 1.15rem !important;
    border-radius: 9999px !important;
  }
  .product-pricing { margin-bottom: 14px; }
  .product-card .btn-primary { font-size: 1.15rem; padding: 10px 12px; }

  .pdp-title { font-size: 2.8rem; }
  .pdp-current-price { font-size: 2.2rem; }
  .pdp-tabs-header { overflow-x: auto; white-space: nowrap; }
  .pdp-tab-btn { padding: 14px 20px; font-size: 1.15rem; }

  .cart-table-container { overflow-x: auto; }
  .cart-table th, .cart-table td { padding: 12px 14px; }

  .checkout-form-box { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; }
  .payment-methods-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-hashtag { font-size: 3.8rem; margin-bottom: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  .floating-whatsapp-btn {
    bottom: 20px;
    left: 20px;
    width: 52px;
    height: 52px;
  }

  .floating-cart-btn {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }

  .hero-overlay-layer {
    background: rgba(255, 255, 255, 0.82) !important; /* Mobile contrast boost */
  }
}

@media (max-width: 480px) {
  .container,
  .section-simple-container,
  .container-section2,
  .standards-grid,
  .shop-container,
  .footer-container {
    width: calc(100% - 24px);
  }

  .logo img { height: 50px; }
  .header-actions .btn-primary { display: none; } /* Hide header ORDER NOW on ultra-small screens to preserve cart & account icons */

  .products-grid { grid-template-columns: 1fr; gap: 18px; }
  .badges-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .page-title { font-size: 2.6rem; }
  .btn-primary, .btn-secondary { font-size: 1.25rem; padding: 10px 24px; }
}

/* ==========================================================================
   SPYLT-INSPIRED DESIGN SYSTEM EXTENSIONS (Preserving Brand Colors & Fonts)
   ========================================================================== */

/* 1. TACTILE CARD STYLING & HOVER ELEVATIONS */
.spylt-card,
.product-card,
.badge-card,
.account-auth-box,
.pdp-highlights {
  border: 2px solid #E2E8F0;
  border-radius: 28px;
  background-color: #FFFFFF;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.spylt-card:hover,
.product-card:hover,
.badge-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  border-color: var(--sky-blue);
}

/* 2. PLAYFUL BADGE STICKERS & PILL TAGS */
.spylt-sticker-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #FFFFFF;
  color: var(--dark-navy);
  border: 2px solid var(--dark-navy);
  padding: 8px 18px;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow: 3px 3px 0px var(--dark-navy);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.spylt-sticker-badge:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px var(--dark-navy);
}

.spylt-sticker-badge.badge-red {
  background-color: var(--primary-red);
  color: #FFFFFF;
  border-color: var(--dark-navy);
}

.spylt-sticker-badge.badge-blue {
  background-color: var(--sky-blue);
  color: #FFFFFF;
  border-color: var(--dark-navy);
}

.product-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 10;
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: 9999px;
  font-weight: 800;
}

/* 3. SPYLT-STYLE HIGH-ENERGY MARQUEE TICKER */
.spylt-marquee-section {
  background-color: var(--sky-blue);
  color: #FFFFFF;
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 10;
  border-top: 2px solid rgba(255,255,255,0.2);
  border-bottom: 2px solid rgba(255,255,255,0.2);
}

.spylt-marquee-ticker {
  display: inline-flex;
  gap: 40px;
  animation: spyltMarqueeScroll 28s linear infinite;
  will-change: transform;
}

.spylt-marquee-item {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.spylt-marquee-item .bullet {
  color: #FFFFFF;
  font-size: 1.4rem;
}

@keyframes spyltMarqueeScroll {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

/* 4. SPYLT-STYLE STORY / BENEFIT CARDS GRID ("WHY KIDS & PARENTS LOVE QUICK MILK") */
.spylt-features-section {
  padding: 90px 0;
  background-color: #F8FAFC;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}

.spylt-features-header {
  text-align: center;
  margin-bottom: 56px;
}

.spylt-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.spylt-feature-card {
  background-color: #FFFFFF;
  border: 2px solid #E2E8F0;
  border-radius: 28px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.spylt-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
  border-color: var(--primary-red);
}

.spylt-feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background-color: #FFF5F5;
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 24px;
  border: 1.5px solid #FEE2E2;
}

.spylt-feature-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 12px;
}

.spylt-feature-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #4B5563;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .spylt-features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ==========================================================================
   UGC (USER GENERATED CONTENT) VIDEO CAROUSEL SECTION
   ========================================================================== */
.ugc-section {
  padding: 90px 0;
  background-color: #FFFFFF;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.ugc-header {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ugc-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--text-dark);
  margin-top: 16px;
  letter-spacing: 1px;
}

.ugc-subtext {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: #4B5563;
  max-width: 680px;
  margin-top: 14px;
  line-height: 1.6;
}

.ugc-carousel-wrapper {
  position: relative;
  width: 100%;
}

.ugc-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 24px;
  padding: 10px 4px 24px 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Hide scrollbar for clean carousel look */
}

.ugc-carousel::-webkit-scrollbar {
  display: none;
}

/* NO BORDERS, NO BACKGROUND, NO SHADOWS ON CARDS AS REQUESTED */
.ugc-card {
  flex: 0 0 310px;
  scroll-snap-align: start;
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.ugc-card:hover {
  transform: translateY(-6px);
}

.ugc-video-box {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 24px;
  overflow: hidden;
  background-color: #0F172A;
  margin-bottom: 14px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.ugc-video-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.ugc-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  padding: 0 4px;
}

.ugc-stars {
  color: #F59E0B;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.ugc-badge-verified {
  font-size: 0.78rem;
  font-weight: 700;
  color: #15803D;
  background-color: #F0FDF4;
  border: 1px solid #BBF7D0;
  padding: 3px 10px;
  border-radius: 9999px;
}

.ugc-caption {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 4px;
  padding: 0 4px;
}

.ugc-author {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: #64748B;
  padding: 0 4px;
}

/* CAROUSEL NAVIGATION BUTTONS */
.ugc-nav-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  color: var(--text-dark);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  z-index: 10;
  transition: all 0.2s ease;
}

.ugc-nav-btn:hover {
  background-color: var(--primary-red);
  color: #FFFFFF;
  border-color: var(--primary-red);
  transform: translateY(-50%) scale(1.1);
}

.ugc-nav-btn.prev {
  left: -20px;
}

.ugc-nav-btn.next {
  right: -20px;
}

@media (max-width: 768px) {
  .ugc-card {
    flex: 0 0 280px;
  }

  .ugc-nav-btn {
    display: none; /* Swipe natively on mobile */
  }
}

/* ABOUT PAGE STEPS & BENEFITS GRID */
.about-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.about-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 72px;
}

@media (max-width: 768px) {
  .about-steps-card-wrapper {
    padding: 32px 20px !important;
    margin-bottom: 40px !important;
  }

  .about-steps-card-wrapper h2 {
    font-size: 2.2rem !important;
  }

  .about-steps-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .about-benefits-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin-bottom: 40px !important;
  }
}
