/* ================================
   DESIGN SYSTEM - Maliha's Miracle
   ================================ */

:root {
  /* Colors - Fresh Green & Navy Palette */
  --primary: #6BBA62;
  --primary-light: #9AE17B;
  --primary-dark: #307470;
  --primary-pale: #edf8ea;

  /* Neutral Colors */
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --gray-50: #F5F5F5;
  --gray-100: #EEEEEE;
  --gray-200: #E0E0E0;
  --gray-300: #BDBDBD;
  --gray-600: #6b7285;
  --gray-800: #4a4f72;
  --gray-900: #42476D;

  /* Semantic Colors */
  --text-primary: #42476D;
  --text-secondary: #6b7285;
  --border: #E0E0E0;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);

  /* Spacing System (8px base) */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-8: 64px;
  --space-10: 80px;

  /* Typography */
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-heading: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;

  /* Header Height */
  --header-height: 60px;
  --info-bar-height: 36px;
}

/* ================================
   RESET & BASE STYLES
   ================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-primary);
  background-color: var(--white);
  overflow-x: hidden;
}

/* ================================
   AMBIENT BACKGROUND
   ================================ */

.ambient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.ambient-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0;
  animation: ambientFadeIn 1.5s ease forwards;
}

@keyframes ambientFadeIn {
  to { opacity: 1; }
}

.ambient-shape-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(107, 186, 98, 0.18) 0%, transparent 70%);
  top: -250px;
  right: -200px;
  animation-delay: 0s;
}

.ambient-shape-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(154, 225, 123, 0.15) 0%, transparent 70%);
  top: 35%;
  left: -180px;
  animation-delay: 0.3s;
}

.ambient-shape-3 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(107, 186, 98, 0.14) 0%, transparent 70%);
  bottom: 5%;
  right: -120px;
  animation-delay: 0.6s;
}

.ambient-shape-4 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(154, 225, 123, 0.12) 0%, transparent 70%);
  top: 65%;
  left: 15%;
  animation-delay: 0.9s;
}

.ambient-shape-5 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(107, 186, 98, 0.1) 0%, transparent 70%);
  top: 15%;
  left: 45%;
  animation-delay: 0.4s;
}

@media (max-width: 768px) {
  .ambient-shape {
    filter: blur(45px);
  }

  .ambient-shape-1 {
    width: 450px;
    height: 450px;
    top: -150px;
    right: -150px;
  }

  .ambient-shape-2 {
    width: 400px;
    height: 400px;
    left: -120px;
  }

  .ambient-shape-3 {
    width: 350px;
    height: 350px;
  }

  .ambient-shape-4 {
    width: 300px;
    height: 300px;
  }

  .ambient-shape-5 {
    width: 320px;
    height: 320px;
  }
}

main {
  position: relative;
  z-index: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 600;
  margin: 0;
}

h1 { font-size: 28px; }
h2 { font-size: 24px; }
h3 { font-size: 18px; }
h4 { font-size: 16px; }

p { margin: 0; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover { color: var(--primary); }

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

/* ================================
   LAYOUT UTILITIES
   ================================ */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-2);
}

/* ================================
   INFO BAR
   ================================ */

.info-bar {
  background-color: var(--primary-pale);
  height: var(--info-bar-height);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-primary);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.info-bar-content {
  display: flex;
  gap: var(--space-2);
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 var(--space-2);
  text-align: center;
}

.info-bar-content span:not(.separator) {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.info-bar-content span:not(.separator)::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17L4 12' stroke='%234CAF50' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.separator {
  color: var(--gray-300);
}

@media (max-width: 640px) {
  .info-bar {
    font-size: 11px;
    height: 44px;
    padding: 8px 0;
  }
  .info-bar-content {
    gap: 12px;
  }
  .info-bar-content span:not(.separator) {
    gap: 5px;
  }
  .info-bar-content span:not(.separator):nth-child(5) {
    display: none;
  }
  .info-bar-content span:not(.separator)::before {
    width: 11px;
    height: 11px;
  }
  .separator { display: none; }
  .separator:nth-child(4) { display: none; }
}

/* ================================
   HEADER (STICKY)
   ================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--white);
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-2);
  box-shadow: var(--shadow-sm);
}

.logo {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.menu-btn, .cart-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  border-radius: var(--radius-md);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-tap-highlight-color: transparent;
}

.menu-btn:active, .cart-btn:active {
  transform: scale(0.94);
  background-color: var(--gray-100);
}

@media (min-width: 1024px) {
  .menu-btn:hover, .cart-btn:hover {
    background-color: var(--gray-50);
  }
}

.cart-btn {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.desktop-cart-btn {
  display: flex;
  position: relative;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  border-radius: var(--radius-md);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-tap-highlight-color: transparent;
  margin-left: auto;
}

.desktop-cart-count {
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .desktop-cart-btn:hover {
    background-color: var(--gray-50);
  }

  .desktop-cart-btn:active {
    transform: scale(0.94);
    background-color: var(--gray-100);
  }
}

/* ================================
   DESKTOP NAVIGATION
   ================================ */

.desktop-nav {
  display: none;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: block;
    position: sticky;
    top: var(--header-height);
    z-index: 99;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
  }

  .desktop-nav-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0 var(--space-3);
    max-width: 720px;
    margin: 0 auto;
  }

  .desktop-nav-link {
    position: relative;
    display: flex;
    align-items: center;
    padding: 14px 18px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
    letter-spacing: 0.01em;
  }

  .desktop-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: calc(100% - 24px);
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px 2px 0 0;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .desktop-nav-link:hover {
    color: var(--text-primary);
  }

  .desktop-nav-link:hover::after {
    transform: translateX(-50%) scaleX(0.5);
  }

  .desktop-nav-link.active {
    color: var(--primary-dark);
    font-weight: 600;
  }

  .desktop-nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
    background: var(--primary);
  }

  .menu-btn {
    display: none;
  }

  .header {
    box-shadow: none;
    border-bottom: 1px solid var(--gray-100);
  }

  .logo {
    font-size: 20px;
  }
}

@media (min-width: 1024px) {
  .desktop-nav-inner {
    gap: 8px;
    max-width: 800px;
  }

  .desktop-nav-link {
    font-size: 14px;
    padding: 15px 22px;
  }

  .logo {
    font-size: 22px;
  }
}

/* ================================
   MOBILE MENU
   ================================ */

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.12);
}

.mobile-menu.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid #EEEEEE;
}

.mobile-menu-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-menu-logo {
  font-size: 18px;
  font-weight: 700;
  color: #42476D;
  letter-spacing: -0.02em;
}

.close-menu-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #f5f5f5;
  color: #6b7285;
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.close-menu-btn:active {
  transform: scale(0.92);
  background: #EEEEEE;
}

@media (min-width: 1024px) {
  .close-menu-btn:hover {
    background: #EEEEEE;
    color: #42476D;
  }
}

.mobile-menu-nav {
  flex: 1;
  padding: 16px 12px;
  overflow-y: auto;
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-list li {
  position: relative;
}

.menu-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #42476D;
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.menu-list a svg {
  color: #6b7285;
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.menu-list a span {
  flex: 1;
}

.menu-list a:active {
  transform: scale(0.98);
}

@media (min-width: 1024px) {
  .menu-list a:hover {
    background: #f4f8f3;
    color: #307470;
  }

  .menu-list a:hover svg {
    color: #307470;
  }
}

.menu-list a.active {
  background: linear-gradient(135deg, #edf8ea 0%, #e0f5dc 100%);
  color: #307470;
}

.menu-list a.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 28px;
  background: linear-gradient(180deg, #6BBA62 0%, #307470 100%);
  border-radius: 0 4px 4px 0;
}

.menu-list a.active svg {
  color: #307470;
}

.mobile-menu-footer {
  padding: 16px 20px;
  border-top: 1px solid #EEEEEE;
  background: #fafafa;
}

.mobile-menu-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  background: linear-gradient(135deg, #6BBA62 0%, #307470 100%);
  color: #fff;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu-contact:active {
  transform: scale(0.97);
}

@media (min-width: 1024px) {
  .mobile-menu-contact:hover {
    box-shadow: 0 4px 12px rgba(107, 186, 98, 0.3);
    transform: translateY(-1px);
  }
}

/* ================================
   SECTIONS
   ================================ */

.section {
  padding: var(--space-4) 0;
  background-color: var(--white);
}

.section-alt {
  background-color: var(--gray-50);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3);
  position: relative;
}

.section-title {
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 14px;
}

.swipe-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--primary-dark);
  background: var(--primary-pale);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-top: var(--space-2);
  font-weight: 600;
  border: 1px solid rgba(107, 186, 98, 0.2);
  animation: swipeHint 2s ease-in-out infinite;
}

.swipe-indicator svg {
  width: 16px;
  height: 16px;
  animation: swipeArrow 2s ease-in-out infinite;
}

@keyframes swipeHint {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
}

@keyframes swipeArrow {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(6px);
  }
}

.swipe-indicator-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: var(--space-3) auto 0 auto;
  width: fit-content;
}

@media (min-width: 640px) {
  .swipe-indicator-mobile {
    display: none;
  }
}

/* ================================
   HERO BANNER
   ================================ */

.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--gray-100);
}

.hero-banner-slider {
  position: relative;
  width: 100%;
}

.hero-banner-slide {
  display: none;
  width: 100%;
  animation: heroBannerFade 0.6s ease-out;
}

.hero-banner-slide.active {
  display: block;
}

@keyframes heroBannerFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-banner-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ================================
   PRODUCT CARD (REUSABLE COMPONENT)
   ================================ */

.product-card {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.product-card:active {
  transform: scale(0.98);
}

@media (min-width: 1024px) {
  .product-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
  }
}

.product-image-slider {
  width: 100%;
  aspect-ratio: 1;
  background: #fafafa;
  position: relative;
  overflow: hidden;
}

.product-slider-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  pointer-events: none;
}

.product-slider-image.active {
  opacity: 1;
  pointer-events: auto;
}

.product-emoji-display {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.96);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 3;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;
}

.product-card:hover .slider-arrow {
  opacity: 1;
  pointer-events: auto;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.slider-arrow:active {
  transform: translateY(-50%) scale(0.92);
}

.slider-arrow.prev {
  left: 12px;
}

.slider-arrow.next {
  right: 12px;
}

.slider-arrow svg {
  width: 18px;
  height: 18px;
  color: var(--primary-dark);
}

@media (max-width: 1023px) {
  .slider-arrow {
    opacity: 0.85;
    pointer-events: auto;
    width: 32px;
    height: 32px;
  }

  .slider-arrow.prev {
    left: 8px;
  }

  .slider-arrow.next {
    right: 8px;
  }
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #42476D 0%, #4d527a 100%);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border: none;
  z-index: 2;
}

.product-badge.best-seller {
  background: linear-gradient(135deg, #307470 0%, #42476D 100%);
}

.product-badge.new-arrival {
  background: linear-gradient(135deg, #307470 0%, #42476D 100%);
}

.product-badge.limited-edition {
  background: linear-gradient(135deg, #307470 0%, #42476D 100%);
  animation: limitedEditionGlow 2s ease-in-out infinite;
}

.product-badge.offer,
.product-badge.sale {
  background: linear-gradient(135deg, #42476D 0%, #42476D 100%);
}

@keyframes limitedEditionGlow {
  0%, 100% {
    box-shadow: 0 2px 8px rgba(48, 116, 112, 0.3);
  }
  50% {
    box-shadow: 0 2px 12px rgba(48, 116, 112, 0.5), 0 0 20px rgba(48, 116, 112, 0.2);
  }
}

.product-content {
  padding: 10px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.product-name {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.35;
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 38px;
  margin: 0 0 3px 0;
}

.product-category {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  background: transparent;
  padding: 0;
  border-radius: 0;
  margin-bottom: 6px;
  width: fit-content;
  border: none;
}

.product-size-selector {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: nowrap;
  margin-top: 2px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.product-size-selector::-webkit-scrollbar {
  display: none;
}

.size-option {
  padding: 6px 11px;
  border-radius: 50px;
  background-color: #f5f5f5;
  color: #6b7285;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid #E0E0E0;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  min-width: 38px;
  text-align: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.size-option:active {
  transform: scale(0.92);
}

.size-option.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 2px 6px rgba(107, 186, 98, 0.3);
}

@media (min-width: 1024px) {
  .size-option:hover:not(.active) {
    border-color: var(--primary);
    background-color: var(--primary-pale);
    color: var(--primary-dark);
  }
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
}

@media (max-width: 640px) {
  .product-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
}

.product-price-container {
  display: flex;
  align-items: center;
  gap: 5px;
}

.product-price {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  transition: all 0.2s ease;
}

.product-price.price-update {
  transform: scale(1.05);
  color: var(--primary-dark);
}

.product-price-original {
  font-size: 13px;
  font-weight: 500;
  color: #6b7285;
  text-decoration: line-through;
  letter-spacing: -0.01em;
}

.add-to-cart-btn {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border: none;
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 8px rgba(107, 186, 98, 0.25);
  width: 100%;
}

.add-to-cart-btn:active {
  transform: scale(0.95);
}

@media (min-width: 1024px) {
  .add-to-cart-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(107, 186, 98, 0.4);
  }
}

.add-to-cart-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.add-to-cart-btn-text {
  display: inline;
}

@media (max-width: 640px) {
  .add-to-cart-btn {
    padding: 10px 14px;
    font-size: 12px;
  }

  .add-to-cart-btn-text {
    display: inline;
  }
}

/* ================================
   HORIZONTAL SCROLL
   ================================ */

.horizontal-scroll {
  display: flex;
  gap: var(--space-2);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: var(--space-1);
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  scroll-padding: var(--space-2);
}

.horizontal-scroll::-webkit-scrollbar {
  display: none;
}

.horizontal-scroll > * {
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

.horizontal-scroll > .product-card {
  flex: 0 0 auto;
  width: 170px;
}

@media (min-width: 480px) {
  .horizontal-scroll > .product-card {
    width: 200px;
  }
}

/* ================================
   CATEGORY PILLS
   ================================ */

.category-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-1);
}

.category-pill {
  padding: 10px var(--space-3);
  border-radius: var(--radius-full);
  background-color: var(--white);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}

.category-pill:active {
  transform: scale(0.98);
}

@media (min-width: 1024px) {
  .category-pill:hover {
    border-color: var(--primary);
    background-color: var(--primary-pale);
  }
}

.category-pill.active {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(107, 186, 98, 0.25);
}

/* ================================
   PRODUCTS GRID
   ================================ */

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Category Products - Vertical Grid Layout */
#categoryProducts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 640px) {
  #categoryProducts {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  #categoryProducts {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Category Section Headers (Explore All view) */
.category-section-header {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 8px;
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 4px;
}

.category-section-header:first-child {
  padding-top: 0;
}

.category-section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.3px;
  margin: 0;
}

.category-section-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.category-section-link:hover {
  gap: 8px;
}

.category-section-count {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-400);
}

@media (min-width: 640px) {
  .category-section-title {
    font-size: 20px;
  }

  .category-section-header {
    padding: 28px 0 12px;
    margin-bottom: 4px;
  }
}

@media (min-width: 1024px) {
  .category-section-title {
    font-size: 22px;
  }

  .category-section-header {
    padding: 36px 0 14px;
  }
}

/* ================================
   LOADING & EMPTY STATES
   ================================ */

.skeleton {
  background: linear-gradient(
    90deg,
    var(--gray-50) 0%,
    var(--gray-100) 50%,
    var(--gray-50) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-card {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  min-width: 160px;
}

.skeleton-image {
  width: 100%;
  aspect-ratio: 1.1;
}

.skeleton-text {
  height: 16px;
  border-radius: var(--radius-md);
  margin: var(--space-2);
}

.skeleton-text-short {
  width: 60%;
  margin-top: var(--space-1);
}

.empty-state {
  text-align: center;
  padding: var(--space-8) var(--space-2);
  grid-column: 1 / -1;
}

#categoryProducts > .empty-state {
  grid-column: 1 / -1;
}

.empty-state-icon {
  font-size: 64px;
  color: var(--gray-200);
  margin-bottom: var(--space-2);
  opacity: 0.6;
}

.empty-state h3 {
  color: var(--text-primary);
  margin-bottom: var(--space-1);
  font-size: 18px;
  font-weight: 500;
}

.empty-state p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto;
}

/* ================================
   WHY CHOOSE US SECTION
   ================================ */

.why-choose-section {
  padding: var(--space-6) 0;
  background: #fff;
}

.why-choose-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: linear-gradient(135deg, #f4f8f3 0%, #edf8ea 100%);
  border-radius: 16px;
  padding: 16px 12px;
  border: 1px solid rgba(107, 186, 98, 0.12);
}

.why-choose-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  min-width: 0;
}

.why-choose-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  color: #307470;
  box-shadow: 0 2px 8px rgba(107, 186, 98, 0.15);
  flex-shrink: 0;
}

.why-choose-icon svg {
  width: 18px;
  height: 18px;
}

.why-choose-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  overflow: hidden;
}

.why-choose-title {
  font-size: 11.5px;
  font-weight: 600;
  color: #42476D;
  letter-spacing: -0.01em;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.why-choose-desc {
  font-size: 10px;
  color: #6b7285;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.why-choose-divider {
  display: none;
}

@media (min-width: 480px) {
  .why-choose-wrapper {
    padding: 18px 14px;
    gap: 12px;
  }

  .why-choose-item {
    padding: 12px 10px;
    gap: 10px;
  }

  .why-choose-icon {
    width: 40px;
    height: 40px;
  }

  .why-choose-icon svg {
    width: 20px;
    height: 20px;
  }

  .why-choose-title {
    font-size: 12.5px;
  }

  .why-choose-desc {
    font-size: 10.5px;
  }
}

@media (min-width: 640px) {
  .why-choose-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 20px 32px;
    gap: 0;
  }

  .why-choose-item {
    flex: 1;
    max-width: none;
    padding: 12px 16px;
    background: transparent;
    border-radius: 0;
  }

  .why-choose-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .why-choose-icon svg {
    width: 24px;
    height: 24px;
  }

  .why-choose-content {
    overflow: visible;
  }

  .why-choose-title {
    font-size: 14px;
    white-space: nowrap;
    overflow: visible;
    text-overflow: unset;
    -webkit-line-clamp: unset;
    display: block;
  }

  .why-choose-desc {
    font-size: 12px;
    overflow: visible;
    text-overflow: unset;
  }

  .why-choose-divider {
    display: block;
    width: 1px;
    height: 48px;
    background: rgba(107, 186, 98, 0.2);
    margin: 0 8px;
    flex-shrink: 0;
  }
}

@media (min-width: 1024px) {
  .why-choose-wrapper {
    padding: 24px 48px;
  }

  .why-choose-item {
    padding: 12px 20px;
  }

  .why-choose-divider {
    margin: 0 16px;
  }

  .why-choose-title {
    font-size: 15px;
  }

  .why-choose-desc {
    font-size: 13px;
  }
}

/* ================================
   CONTACT CTA SECTION
   ================================ */

.contact-cta-section {
  padding: var(--space-6) 0;
  background: #fff;
}

.contact-cta-wrapper {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.contact-cta-header {
  margin-bottom: 24px;
}

.contact-cta-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #307470;
  background: rgba(107, 186, 98, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.contact-cta-title {
  font-size: 26px;
  font-weight: 700;
  color: #42476D;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.contact-cta-subtitle {
  font-size: 15px;
  color: #6b7285;
  margin: 0;
  line-height: 1.5;
}

.contact-cta-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #fafafa;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.contact-option:hover {
  background: #fff;
  border-color: #E0E0E0;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.contact-option-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}

.contact-option-call .contact-option-icon {
  background: linear-gradient(135deg, #6BBA62 0%, #307470 100%);
  color: #fff;
}

.contact-option-whatsapp .contact-option-icon {
  background: linear-gradient(135deg, #6BBA62 0%, #307470 100%);
  color: #fff;
}

.contact-option-content {
  flex: 1;
  text-align: left;
}

.contact-option-title {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #42476D;
  margin-bottom: 2px;
}

.contact-option-desc {
  display: block;
  font-size: 13px;
  color: #6b7285;
}

.contact-option-arrow {
  color: #ccc;
  transition: transform 0.2s ease, color 0.2s ease;
}

.contact-option:hover .contact-option-arrow {
  color: #6b7285;
  transform: translateX(4px);
}

@media (min-width: 640px) {
  .contact-cta-options {
    flex-direction: row;
    gap: 16px;
  }

  .contact-option {
    flex: 1;
    padding: 20px 24px;
  }

  .contact-cta-title {
    font-size: 30px;
  }
}

/* ================================
   BUTTONS
   ================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(107, 186, 98, 0.2);
}

@media (min-width: 1024px) {
  .btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 186, 98, 0.3);
  }
}

.btn-secondary {
  background-color: var(--white);
  color: var(--primary-dark);
  border: 1px solid var(--primary);
}

@media (min-width: 1024px) {
  .btn-secondary:hover {
    background-color: var(--primary-pale);
    transform: translateY(-2px);
  }
}

/* ================================
   FOOTER
   ================================ */

.footer {
  background: linear-gradient(180deg, #1a1a1a 0%, #111 100%);
  color: #a0a0a0;
  padding: 48px 0 0;
  position: relative;
  z-index: 1;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand {
  text-align: center;
}

.footer-logo {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 13px;
  color: #6BBA62;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #6b7285;
  max-width: 280px;
  margin: 0 auto 20px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.social-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  transition: all 0.3s ease;
}

.social-btn[aria-label="Facebook"] {
  background: #1877F2;
}

.social-btn[aria-label="Instagram"] {
  background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF);
}

.social-btn[aria-label="WhatsApp"] {
  background: #25D366;
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  filter: brightness(1.15);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.footer-col h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: #6b7285;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-col a:hover {
  color: #6BBA62;
  transform: translateX(3px);
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6b7285;
  font-size: 14px;
}

.footer-contact svg {
  color: #6b7285;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid #4d527a;
}

.footer-bottom p {
  font-size: 13px;
  color: #5a5f87;
}

.footer-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-badges .badge {
  font-size: 11px;
  padding: 6px 12px;
  background: #3b4065;
  border: 1px solid #4d527a;
  border-radius: 20px;
  color: #6b7285;
  font-weight: 500;
}

@media (min-width: 640px) {
  .footer-main {
    grid-template-columns: 1fr 1.5fr;
    text-align: left;
    gap: 48px;
  }

  .footer-brand {
    text-align: left;
  }

  .footer-desc {
    margin: 0 0 20px;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .footer {
    padding: 56px 0 0;
  }

  .footer-main {
    gap: 80px;
  }

  .footer-logo {
    font-size: 24px;
  }

  .footer-desc {
    max-width: 300px;
  }
}

/* ================================
   SHOP PAGE - REDESIGNED
   ================================ */

/* Shop Hero Section */
.shop-hero {
  position: relative;
  padding: var(--space-6) var(--space-2) var(--space-5);
  background: linear-gradient(135deg, var(--primary-pale) 0%, var(--white) 50%, rgba(154, 225, 123, 0.15) 100%);
  overflow: hidden;
  text-align: center;
}

.shop-hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  animation: shopHeroFadeIn 0.6s ease-out;
}

@keyframes shopHeroFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.shop-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--white);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: var(--space-2);
  box-shadow: 0 2px 12px rgba(107, 186, 98, 0.15);
  animation: shopBadgePop 0.5s ease-out 0.2s both;
}

@keyframes shopBadgePop {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.shop-hero-badge svg {
  color: var(--primary);
}

.shop-hero-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.shop-hero-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}

.shop-hero-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.shop-hero-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
}

.shop-hero-circle-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(107, 186, 98, 0.2) 0%, transparent 70%);
  top: -100px;
  right: -80px;
  animation: floatSlow 8s ease-in-out infinite;
}

.shop-hero-circle-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(154, 225, 123, 0.25) 0%, transparent 70%);
  bottom: -50px;
  left: -50px;
  animation: floatSlow 10s ease-in-out infinite reverse;
}

.shop-hero-circle-3 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(107, 186, 98, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 20%;
  animation: floatSlow 6s ease-in-out infinite;
}

@keyframes floatSlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10px, -10px); }
}

/* Shop Filter Section */
.shop-filter-section {
  background: var(--white);
  padding: var(--space-3) 0;
}

.shop-filter-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

/* Category Container */
.shop-category-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.shop-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
}

.shop-category-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.shop-category-scroll {
  padding: 4px 0;
}

.shop-category-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.shop-category-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-tap-highlight-color: transparent;
  min-height: 44px;
}

.shop-pill-icon {
  display: none;
}

.shop-pill-text {
  transition: color 0.2s ease;
}

.shop-category-pill:hover {
  border-color: var(--primary);
  background: var(--primary-pale);
}

.shop-category-pill:active {
  transform: scale(0.98);
}

.shop-category-pill.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(107, 186, 98, 0.25);
}

.shop-category-pill.active .shop-pill-text {
  color: var(--white);
}

/* Shop Toolbar */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-1) 0;
  border-top: 1px solid var(--gray-100);
  margin-top: var(--space-1);
}

.shop-results-info {
  display: flex;
  align-items: center;
}

.shop-results-count {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  white-space: nowrap;
}

.shop-sort-dropdown {
  position: relative;
}

.shop-sort-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.shop-sort-trigger:hover {
  border-color: var(--primary);
  background: var(--primary-pale);
}

.shop-sort-trigger.open {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(107, 186, 98, 0.12);
}

.shop-sort-trigger-icon {
  color: var(--primary);
  flex-shrink: 0;
}

.shop-sort-trigger-text {
  color: var(--text-primary);
}

.shop-sort-chevron {
  color: var(--gray-400);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.shop-sort-trigger.open .shop-sort-chevron {
  transform: rotate(180deg);
}

.shop-sort-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 6px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1),
              0 4px 12px rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.97);
  transform-origin: top right;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 50;
}

.shop-sort-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.shop-sort-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.15s ease;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
}

.shop-sort-option span {
  flex: 1;
}

.shop-sort-option svg:first-child {
  flex-shrink: 0;
  opacity: 0.5;
}

.shop-sort-check {
  flex-shrink: 0;
  opacity: 0;
  color: var(--primary);
  transition: opacity 0.15s ease;
}

.shop-sort-option:hover {
  background: var(--gray-50);
  color: var(--text-primary);
}

.shop-sort-option.active {
  background: var(--primary-pale);
  color: var(--primary-dark);
}

.shop-sort-option.active svg:first-child {
  color: var(--primary);
  opacity: 1;
}

.shop-sort-option.active .shop-sort-check {
  opacity: 1;
}

/* Shop Products Section */
.shop-products-section {
  padding: var(--space-4) 0 var(--space-6);
  min-height: 50vh;
}

.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2);
  animation: productsGridFadeIn 0.4s ease-out;
}

@keyframes productsGridFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Tablet Breakpoint */
@media (min-width: 640px) {
  .shop-hero-title {
    font-size: 38px;
  }

  .shop-hero-subtitle {
    font-size: 17px;
  }

  .shop-products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
  }
}

/* Desktop Breakpoint */
@media (min-width: 768px) {
  .shop-hero {
    padding: var(--space-8) var(--space-2) var(--space-6);
  }

  .shop-hero-title {
    font-size: 44px;
  }

  .shop-hero-subtitle {
    font-size: 18px;
  }

  .shop-hero-circle-1 {
    width: 450px;
    height: 450px;
    top: -150px;
    right: -100px;
  }

  .shop-hero-circle-2 {
    width: 300px;
    height: 300px;
  }

  .shop-filter-section {
    padding: var(--space-2) 0;
  }

  .shop-filter-wrapper {
    flex-direction: column;
    gap: var(--space-2);
  }

  .shop-category-container {
    width: 100%;
  }

  .shop-category-header {
    display: none;
  }

  .shop-toolbar {
    border-top: none;
    margin-top: 0;
    padding: 0;
    justify-content: space-between;
    gap: var(--space-2);
  }

  .shop-results-count {
    font-size: 14px;
  }

  .shop-sort-trigger {
    font-size: 14px;
  }
}

/* Large Desktop Breakpoint */
@media (min-width: 1024px) {
  .shop-products-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .shop-category-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
}

/* Extra Large Desktop */
@media (min-width: 1280px) {
  .shop-hero {
    padding: var(--space-10) var(--space-2) var(--space-8);
  }

  .shop-hero-title {
    font-size: 52px;
  }
}

/* ================================
   PRODUCT PAGE
   ================================ */

.product-section {
  padding: var(--space-4) 0;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

.product-main-image {
  width: 100%;
}

.product-image-wrapper {
  background-color: var(--gray-50);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-large {
  font-size: 120px;
  line-height: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-emoji-large {
  font-size: 120px;
  line-height: 1;
}

.product-main-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-badge-tag {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-full);
  width: fit-content;
  text-transform: capitalize;
}

.product-category-label {
  font-size: 14px;
  color: var(--text-secondary);
  text-transform: capitalize;
  font-weight: 500;
}

.product-main-title {
  font-size: 28px;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.3;
  font-weight: 600;
}

.product-stock-info {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
}

.product-stock-info svg {
  flex-shrink: 0;
}

.product-pricing {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin: 0;
}

.price-current {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.price-original {
  font-size: 18px;
  color: var(--text-secondary);
  text-decoration: line-through;
  line-height: 1;
}

.price-save {
  font-size: 14px;
  color: #42476D;
  font-weight: 600;
  line-height: 1;
}

.size-selection-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.size-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.size-options-list {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.size-option-btn {
  padding: 10px 20px;
  background-color: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 60px;
  -webkit-tap-highlight-color: transparent;
}

.size-option-btn:hover {
  border-color: var(--primary);
}

.size-option-btn.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.quantity-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quantity-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0;
  width: fit-content;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.quantity-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.quantity-btn:hover {
  background-color: var(--gray-50);
}

.quantity-btn:active {
  background-color: var(--gray-100);
}

.quantity-btn svg {
  color: var(--text-primary);
}

.quantity-input {
  width: 60px;
  height: 40px;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  background-color: var(--white);
  -moz-appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.btn-full-width {
  width: 100%;
  justify-content: center;
  padding: 16px var(--space-3);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  min-height: 52px;
  -webkit-tap-highlight-color: transparent;
}

.btn-add-to-cart {
  background-color: #307470;
  color: var(--white);
  margin-top: 12px;
}

.btn-add-to-cart:hover {
  background-color: #42476D;
}

.btn-add-to-cart:active {
  transform: scale(0.98);
}

.btn-buy-now {
  background-color: #6BBA62;
  color: var(--white);
}

.btn-buy-now:hover {
  background-color: #307470;
}

.btn-buy-now:active {
  transform: scale(0.98);
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-image-placeholder {
  font-size: 120px;
  line-height: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-price-section {
  padding: var(--space-3) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.product-main-price {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-main-price.price-update {
  transform: scale(1.05);
}

.variant-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.variant-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.variant-btn {
  padding: 12px 24px;
  background-color: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 48px;
  min-width: 80px;
  -webkit-tap-highlight-color: transparent;
}

.variant-btn:hover {
  border-color: var(--primary);
  background-color: var(--primary-pale);
}

.variant-btn.active {
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--white);
}

.variant-btn:active {
  transform: scale(0.97);
}

.size-price-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-3) 0;
  border-top: 1px solid var(--border);
}

.size-price-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.size-price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
}

.size-price-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3);
  background-color: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-tap-highlight-color: transparent;
}

.size-price-option:hover {
  border-color: var(--primary);
  background-color: var(--primary-pale);
}

.size-price-option.active {
  border-color: var(--primary);
  background-color: var(--primary);
}

.size-price-option.active .size-price-label,
.size-price-option.active .size-price-value {
  color: var(--white);
}

.size-price-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.size-price-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.size-price-option.active .size-price-value {
  color: var(--white);
}

.product-action-buttons {
  display: flex;
  gap: var(--space-2);
  padding: var(--space-3) 0;
  border-top: 1px solid var(--border);
}

.btn-large {
  padding: 16px var(--space-4);
  font-size: 16px;
  min-height: 56px;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.btn-success {
  background-color: var(--success);
  border-color: var(--success);
}

.btn-success:hover {
  background-color: var(--success);
  border-color: var(--success);
}

.product-trust-badges {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-3);
  background-color: var(--gray-50);
  border-radius: var(--radius-md);
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
}

.trust-badge-item svg {
  flex-shrink: 0;
  color: var(--primary);
}

.product-description-section {
  padding: var(--space-6) 0;
  background-color: var(--gray-50);
}

.product-description-content {
  display: block;
}

.product-details-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  max-width: 900px;
}

.product-detail-section h2 {
  margin-bottom: var(--space-3);
  color: var(--text-primary);
}

.product-detail-section p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-3);
}

.product-detail-section p:last-child {
  margin-bottom: 0;
}

.usage-list,
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.usage-list li,
.benefits-list li {
  color: var(--text-secondary);
  line-height: 1.6;
  padding-left: var(--space-4);
  position: relative;
}

.usage-list li::before,
.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

@media (min-width: 768px) {
  .product-layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }

  .product-main-title {
    font-size: 32px;
  }

  .product-main-info {
    gap: var(--space-2);
  }

  .size-selection-section,
  .quantity-section {
    gap: var(--space-2);
  }

  .btn-add-to-cart {
    margin-top: var(--space-2);
  }

  .product-details-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .product-layout {
    grid-template-columns: 1.2fr 1fr;
  }

  .product-main-title {
    font-size: 36px;
  }
}

/* ================================
   PAGE HEADER (ABOUT, FAQ)
   ================================ */

.page-header {
  padding: var(--space-6) 0 var(--space-5) 0;
  background-color: var(--white);
  text-align: center;
}

.page-header h1 {
  margin: 0 0 var(--space-2) 0;
  color: var(--text-primary);
}

.page-header-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* ================================
   ABOUT PAGE
   ================================ */

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.content-wrapper-narrow {
  max-width: 700px;
  margin: 0 auto;
}

.content-section h2 {
  margin-bottom: var(--space-4);
  color: var(--text-primary);
}

.content-section p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-3);
  font-size: 16px;
}

.content-section p:last-child {
  margin-bottom: 0;
}

.section-header-centered {
  text-align: center;
  margin-bottom: var(--space-5);
}

.section-header-centered h2 {
  margin-bottom: var(--space-2);
  color: var(--text-primary);
}

.section-header-centered p {
  color: var(--text-secondary);
  font-size: 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.feature-card {
  text-align: center;
  padding: var(--space-4);
  background-color: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-3) auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-pale);
  border-radius: var(--radius-full);
  color: var(--primary);
}

.feature-card h3 {
  margin-bottom: var(--space-2);
  color: var(--text-primary);
  font-size: 18px;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  font-size: 15px;
}

.commitment-section {
  background-color: var(--primary-pale);
}

.commitment-content h2 {
  margin-bottom: var(--space-5);
  color: var(--text-primary);
  text-align: center;
}

.commitment-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.commitment-item {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}

.commitment-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.commitment-item h3 {
  margin-bottom: var(--space-1);
  color: var(--text-primary);
  font-size: 18px;
}

.commitment-item p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  font-size: 15px;
}

.cta-card {
  text-align: center;
  padding: var(--space-6) var(--space-4);
  background: linear-gradient(135deg, var(--primary-pale) 0%, var(--white) 100%);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
}

.cta-card h2 {
  margin-bottom: var(--space-2);
  color: var(--text-primary);
}

.cta-card p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: var(--space-4);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ================================
   COMBO PAGE
   ================================ */
/* Combo page uses shared shop-* classes for consistent styling */

/* ================================
   ABOUT PAGE
   ================================ */

.about-page {
  overflow-x: hidden;
}

.about-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: var(--space-8) var(--space-2);
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f2f9f0 0%, #edf8ea 30%, #e0f5dc 60%, #edf8ea 100%);
}

.about-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%237CB342' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  box-shadow: 0 4px 20px rgba(107, 186, 98, 0.15);
  margin-bottom: var(--space-4);
}

.about-hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.2); }
}

.about-hero-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: var(--space-4);
}

.about-hero-title-line {
  display: block;
}

.about-hero-title-accent {
  color: var(--primary);
  position: relative;
}

.about-hero-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-5);
  max-width: 560px;
}

.about-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gray-200);
  color: var(--text-primary);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-pale);
}

.about-hero-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.about-hero-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(107, 186, 98, 0.1) 0%, rgba(107, 186, 98, 0.03) 100%);
}

.about-hero-circle-1 {
  width: 500px;
  height: 500px;
  top: -150px;
  right: -100px;
  animation: float 12s ease-in-out infinite;
}

.about-hero-circle-2 {
  width: 350px;
  height: 350px;
  bottom: -100px;
  left: -50px;
  animation: float 15s ease-in-out infinite reverse;
}

.about-hero-circle-3 {
  width: 200px;
  height: 200px;
  top: 40%;
  right: 20%;
  animation: float 10s ease-in-out infinite;
}

.about-hero-leaf {
  position: absolute;
  opacity: 0.15;
  color: var(--primary);
}

.about-hero-leaf svg {
  width: 100%;
  height: 100%;
}

.about-hero-leaf-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  right: 10%;
  animation: floatRotate 8s ease-in-out infinite;
}

.about-hero-leaf-2 {
  width: 60px;
  height: 60px;
  bottom: 25%;
  right: 25%;
  animation: floatRotate 10s ease-in-out infinite reverse;
}

@keyframes floatRotate {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

.about-stats {
  background: var(--white);
  padding: var(--space-6) 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

.about-stat-card {
  text-align: center;
  padding: var(--space-4);
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
}

.about-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(107, 186, 98, 0.12);
  background: var(--white);
}

.about-stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--primary-pale);
  color: var(--primary);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-3);
}

.about-stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.about-stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.about-stat-sublabel {
  font-size: 12px;
  color: var(--text-muted);
}

.about-section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  background: var(--primary-pale);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
}

.about-section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-6);
}

.about-section-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
  line-height: 1.2;
}

.about-section-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.about-story {
  padding: var(--space-8) 0;
  background: var(--white);
}

.about-story-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.about-story-visual {
  position: relative;
}

.about-story-image-stack {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.about-story-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.about-story-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.about-story-image-1 {
  position: relative;
  z-index: 2;
}

.about-story-image-2 {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 55%;
  z-index: 3;
  border: 4px solid var(--white);
}

.about-story-image-2 img {
  height: 180px;
}

.about-story-badge-floating {
  position: absolute;
  top: -15px;
  left: -10px;
  background: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  z-index: 4;
  animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.about-story-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary-pale);
  border-radius: var(--radius-md);
  color: var(--primary);
}

.about-story-content {
  max-width: 100%;
}

.about-story-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: var(--space-4);
}

.about-story-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.about-story-text p {
  margin-bottom: var(--space-3);
}

.about-story-text p:last-child {
  margin-bottom: 0;
}

.about-story-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.about-story-text em {
  color: var(--primary-dark);
  font-style: normal;
  font-weight: 500;
}

.about-story-text .about-story-highlight {
  margin-top: var(--space-4);
  padding: var(--space-3);
  background: var(--bg-secondary);
  border-left: 3px solid var(--primary);
  border-radius: 4px;
  color: var(--text-primary);
  font-weight: 500;
  font-style: italic;
  font-size: 16px;
}

.about-story-signature {
  margin-top: var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.about-story-signature-line {
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.about-story-signature-text {
  display: flex;
  flex-direction: column;
}

.about-story-signature-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  font-style: italic;
}

.about-story-signature-title {
  font-size: 13px;
  color: var(--text-muted);
}

.about-values {
  padding: var(--space-8) 0;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.about-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

.about-value-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  border: 1px solid var(--gray-100);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.about-value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.about-value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(107, 186, 98, 0.15);
  border-color: var(--primary-light);
}

.about-value-card:hover::before {
  transform: scaleX(1);
}

.about-value-icon-wrapper {
  margin-bottom: var(--space-4);
}

.about-value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-pale) 0%, #e0f5dc 100%);
  border-radius: var(--radius-lg);
  color: var(--primary);
  transition: all 0.3s ease;
}

.about-value-card:hover .about-value-icon {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
}

.about-value-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.about-value-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-3);
}

.about-value-highlight {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  background: var(--primary-pale);
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.about-process {
  padding: var(--space-8) 0;
  background: var(--white);
}

.about-process-timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.about-process-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 60px;
  bottom: 60px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
}

.about-process-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  padding-left: 70px;
}

.about-process-step-number {
  position: absolute;
  left: 0;
  top: var(--space-4);
  width: 50px;
  height: 50px;
  background: var(--white);
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
  z-index: 2;
  transition: all 0.3s ease;
}

.about-process-step:hover .about-process-step-number {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.about-process-step-content {
  flex: 1;
  background: var(--gray-50);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.about-process-step:hover .about-process-step-content {
  background: var(--white);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.about-process-step-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.about-process-step-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.about-process-step-icon {
  display: none;
}

.about-testimonials {
  padding: var(--space-8) 0;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  overflow: hidden;
}

.about-testimonials-scroll {
  display: flex;
  gap: var(--space-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: var(--space-4) calc(50vw - 180px);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.about-testimonials-scroll::-webkit-scrollbar {
  display: none;
}

.about-testimonials-grid {
  display: flex;
  gap: var(--space-4);
}

.about-testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
  position: relative;
  flex: 0 0 340px;
  scroll-snap-align: center;
}

.about-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.about-testimonial-featured {
  border-color: var(--primary-light);
  background: linear-gradient(135deg, var(--white) 0%, var(--primary-pale) 100%);
  flex: 0 0 380px;
}

.about-testimonial-featured-badge {
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-testimonial-stars {
  display: flex;
  gap: 3px;
  color: #9AE17B;
  margin-bottom: var(--space-3);
}

.about-testimonial-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-4);
  font-style: italic;
}

.about-testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.about-testimonial-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.about-testimonial-info {
  display: flex;
  flex-direction: column;
}

.about-testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.about-testimonial-location {
  font-size: 12px;
  color: var(--text-muted);
}

.testimonials-scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
  color: var(--text-muted);
  font-size: 14px;
  animation: slideHint 1.5s ease-in-out infinite;
}

.testimonials-scroll-hint svg {
  animation: arrowSlide 1.5s ease-in-out infinite;
}

@keyframes slideHint {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes arrowSlide {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

.about-trust {
  padding: var(--space-6) 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}

.about-trust-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

.about-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2);
  padding: var(--space-4);
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.about-trust-item:hover {
  background: var(--white);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.about-trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--primary-pale);
  color: var(--primary);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.about-trust-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-trust-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.about-trust-desc {
  font-size: 13px;
  color: var(--text-muted);
}

.about-cta {
  position: relative;
  padding: var(--space-8) 0;
  background: linear-gradient(135deg, var(--primary) 0%, #307470 100%);
  overflow: hidden;
}

.about-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-cta-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.about-cta-circle-1 {
  width: 400px;
  height: 400px;
  top: -150px;
  right: -100px;
  animation: float 12s ease-in-out infinite;
}

.about-cta-circle-2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: -50px;
  animation: float 15s ease-in-out infinite reverse;
}

.about-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.about-cta-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-3);
  line-height: 1.2;
}

.about-cta-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-5);
  line-height: 1.6;
}

.about-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2);
}

.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

.animate-fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="fade-right"] {
  transform: translateX(-50px);
}

[data-animate="fade-right"].animated {
  transform: translateX(0);
}

[data-animate="fade-left"] {
  transform: translateX(50px);
}

[data-animate="fade-left"].animated {
  transform: translateX(0);
}

@media (max-width: 639px) {
  .about-testimonials-scroll {
    padding: var(--space-4) calc(50vw - 160px);
  }

  .about-testimonial-card {
    flex: 0 0 300px;
  }

  .about-testimonial-featured {
    flex: 0 0 320px;
  }
}

@media (min-width: 1024px) {
  .testimonials-scroll-hint {
    display: none;
  }
}

@media (min-width: 640px) {
  .about-hero {
    min-height: 75vh;
    padding: var(--space-10) var(--space-2);
  }

  .about-hero-title {
    font-size: 44px;
  }

  .about-hero-subtitle {
    font-size: 18px;
  }

  .about-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-stat-number {
    font-size: 42px;
  }

  .about-section-title {
    font-size: 34px;
  }

  .about-story-wrapper {
    flex-direction: row;
    align-items: center;
    gap: var(--space-8);
  }

  .about-story-visual {
    flex: 0 0 45%;
  }

  .about-story-image-stack {
    max-width: none;
  }

  .about-story-image img {
    height: 380px;
  }

  .about-story-image-2 img {
    height: 220px;
  }

  .about-story-title {
    font-size: 32px;
  }

  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }

  .about-testimonials-scroll {
    padding: var(--space-4) calc(50vw - 200px);
  }

  .about-testimonial-card {
    flex: 0 0 380px;
  }

  .about-testimonial-featured {
    flex: 0 0 400px;
  }

  .about-trust-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-cta-title {
    font-size: 36px;
  }
}

@media (min-width: 1024px) {
  .about-hero {
    min-height: 80vh;
  }

  .about-hero-title {
    font-size: 56px;
  }

  .about-hero-subtitle {
    font-size: 19px;
  }

  .about-stat-card {
    padding: var(--space-5);
  }

  .about-stat-number {
    font-size: 48px;
  }

  .about-section-title {
    font-size: 40px;
  }

  .about-story-wrapper {
    gap: var(--space-10);
  }

  .about-story-image img {
    height: 450px;
  }

  .about-story-title {
    font-size: 38px;
  }

  .about-values-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-process-step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary-pale);
    color: var(--primary);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
  }

  .about-cta-title {
    font-size: 42px;
  }
}

/* ================================
   FAQ PAGE
   ================================ */

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(107, 186, 98, 0.1);
}

.faq-question {
  width: 100%;
  padding: var(--space-4);
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 64px;
  -webkit-tap-highlight-color: transparent;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question span {
  flex: 1;
  line-height: 1.5;
}

.faq-icon {
  flex-shrink: 0;
  color: var(--text-tertiary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
  padding: 0 var(--space-4) var(--space-4) var(--space-4);
}

.faq-answer-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
  font-size: 15px;
}

/* ================================
   CHECKOUT PAGE
   ================================ */

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  max-width: 1200px;
  margin: 0 auto;
}

.checkout-summary {
  background-color: var(--gray-50);
  padding: var(--space-5);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
}

.checkout-summary h2 {
  margin-bottom: var(--space-4);
  color: var(--text-primary);
  font-size: 20px;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3);
  background-color: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.cart-item-variant {
  font-size: 14px;
  color: var(--text-secondary);
}

.cart-item-price {
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

.checkout-coupon {
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border);
}

.checkout-coupon-form {
  display: flex;
  gap: var(--space-2);
}

.checkout-coupon-form .form-input {
  flex: 1;
  margin-bottom: 0;
}

.checkout-coupon-message {
  margin-top: var(--space-2);
  padding: var(--space-2);
  border-radius: var(--radius-md);
  font-size: 14px;
}

.checkout-coupon-message.success {
  background-color: #e0f5dc;
  color: #307470;
  border: 1px solid #9AE17B;
}

.checkout-coupon-message.error {
  background-color: #e8e9f0;
  color: #42476D;
  border: 1px solid #d4d6e3;
}

.order-total {
  border-top: 2px solid var(--border);
  padding-top: var(--space-3);
}

.order-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-2);
  color: var(--text-secondary);
}

.order-total-row:has(#orderDiscount) {
  color: #6BBA62;
  font-weight: 600;
}

.order-total-final {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0;
  margin-top: var(--space-2);
}

.checkout-form {
  background-color: var(--white);
  padding: var(--space-5);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
}

.checkout-form h2 {
  margin-bottom: var(--space-4);
  color: var(--text-primary);
  font-size: 20px;
}

.form-group {
  margin-bottom: var(--space-4);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.form-section-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: var(--space-5) 0 var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--border);
}

.form-label {
  display: block;
  margin-bottom: var(--space-2);
  font-weight: 600;
  color: var(--text-primary);
  font-size: 14px;
}

.form-input {
  width: 100%;
  padding: var(--space-3);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 16px;
  color: var(--text-primary);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(107, 186, 98, 0.1);
}

.form-input::placeholder {
  color: var(--text-tertiary);
}

textarea.form-input {
  resize: vertical;
  min-height: 80px;
}

.form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px 12px;
  padding-right: 40px;
  cursor: pointer;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.payment-method-option {
  cursor: pointer;
  display: block;
}

.payment-method-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.payment-method-card {
  padding: var(--space-4);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  background-color: var(--white);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.payment-method-option input[type="radio"]:checked + .payment-method-card {
  border-color: var(--primary);
  background-color: rgba(107, 186, 98, 0.05);
  box-shadow: 0 0 0 1px var(--primary);
}

.payment-method-option:hover .payment-method-card {
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.payment-method-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-1);
}

.payment-method-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.payment-method-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
}

.order-total-divider {
  height: 1px;
  background-color: var(--border);
  margin: var(--space-3) 0;
}

.order-payment-now {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.order-payment-later {
  font-size: 15px;
  color: var(--text-secondary);
}

.text-success {
  color: #6BBA62;
}

.text-muted {
  color: var(--text-secondary);
}

.checkout-actions {
  margin-top: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.checkout-trust {
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.checkout-error {
  padding: var(--space-3);
  background-color: #ededf3;
  border: 1px solid #d4d6e3;
  border-radius: var(--radius-md);
  color: #42476D;
  margin-bottom: var(--space-4);
  font-size: 14px;
}

.empty-state {
  text-align: center;
  padding: var(--space-6) var(--space-4);
  max-width: 500px;
  margin: 0 auto;
}

.empty-state-icon {
  margin-bottom: var(--space-4);
  color: var(--text-tertiary);
}

.empty-state h2 {
  margin-bottom: var(--space-2);
  color: var(--text-primary);
}

.empty-state p {
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
}

@media (max-width: 767px) {
  .checkout-summary {
    padding: var(--space-4);
  }

  .checkout-form {
    padding: var(--space-4);
  }

  .payment-method-card {
    padding: var(--space-3);
  }

  .payment-method-name {
    font-size: 15px;
  }

  .payment-method-desc {
    font-size: 13px;
  }

  .form-section-title {
    font-size: 16px;
    margin: var(--space-4) 0 var(--space-3);
  }

  .order-payment-now {
    font-size: 16px;
  }
}

@media (min-width: 768px) {
  .checkout-layout {
    grid-template-columns: 1fr 1.2fr;
  }

  .checkout-summary {
    order: 2;
    position: sticky;
    top: calc(var(--header-height) + 48px + var(--space-4));
    align-self: start;
  }

  .checkout-form {
    order: 1;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
  }
}

/* ================================
   PAYMENT STATUS PAGES
   ================================ */

.payment-status-container {
  max-width: 600px;
  margin: 0 auto;
  padding: var(--space-4);
}

.payment-status-card {
  background-color: var(--white);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  text-align: center;
}

.payment-status-icon {
  margin-bottom: var(--space-4);
  color: var(--text-tertiary);
  display: flex;
  justify-content: center;
}

.payment-status-card.success .payment-status-icon {
  color: var(--primary);
}

.payment-status-card.cancel .payment-status-icon {
  color: var(--text-tertiary);
}

.payment-status-card.verifying .payment-status-icon {
  color: #6BBA62;
}

.payment-status-card.error .payment-status-icon {
  color: #42476D;
}

.payment-status-card h1 {
  margin-bottom: var(--space-3);
  color: var(--text-primary);
  font-size: 28px;
}

.payment-status-message {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: var(--space-5);
}

.payment-status-info {
  background-color: var(--gray-50);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-5);
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) 0;
}

.info-item + .info-item {
  border-top: 1px solid var(--border);
}

.info-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 600;
}

.info-value {
  font-size: 16px;
  color: var(--text-primary);
  font-weight: 600;
  font-family: monospace;
}

.payment-status-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.payment-status-note {
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
}

.payment-status-note p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 640px) {
  .payment-status-actions {
    flex-direction: row;
    justify-content: center;
  }

  .payment-status-actions .btn {
    flex: 0 0 auto;
    min-width: 160px;
  }
}

/* Progress bar in success/cancel pages */
.success-progress,
.cancel-progress {
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--border);
}

.success-progress .progress-step.completed .progress-circle {
  background-color: #6BBA62;
  border-color: #6BBA62;
  color: white;
}

.success-progress .progress-line.completed {
  background-color: #6BBA62;
}

.cancel-progress .progress-step.cancelled .progress-circle {
  background-color: #42476D;
  border-color: #42476D;
  color: white;
}

.cancel-progress .progress-step.cancelled .progress-sublabel {
  color: #42476D;
}

/* Order summary section */
.order-summary-section {
  background-color: var(--gray-50);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-5);
  text-align: left;
}

.order-summary-section h3 {
  font-size: 18px;
  color: var(--text-primary);
  margin: 0 0 var(--space-4) 0;
  font-weight: 600;
}

.order-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.order-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: var(--space-3);
  align-items: center;
  padding: var(--space-3);
  background-color: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.order-item-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.order-item-name {
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 600;
}

.order-item-variant {
  font-size: 13px;
  color: var(--text-secondary);
}

.order-item-quantity {
  font-size: 14px;
  color: var(--text-secondary);
  padding: var(--space-1) var(--space-2);
  background-color: var(--gray-50);
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.order-item-price {
  font-size: 16px;
  color: var(--text-primary);
  font-weight: 700;
  min-width: 80px;
  text-align: right;
}

.order-totals {
  border-top: 2px solid var(--border);
  padding-top: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.order-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  color: var(--text-secondary);
}

.order-total-row.discount {
  color: var(--primary);
  font-weight: 600;
}

.order-total-row.grand-total {
  border-top: 2px solid var(--border);
  padding-top: var(--space-3);
  margin-top: var(--space-2);
  font-size: 18px;
  color: var(--text-primary);
  font-weight: 700;
}

@media (max-width: 640px) {
  .order-item {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }

  .order-item-quantity,
  .order-item-price {
    justify-self: start;
  }
}

/* ================================
   CART DRAWER - MODERN MINIMALIST
   ================================ */

.cart-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.cart-drawer.active {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cart-drawer-content {
  position: relative;
  width: 100%;
  max-width: 420px;
  max-height: 80vh;
  background: #fff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.cart-drawer.active .cart-drawer-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}

@media (min-width: 768px) {
  .cart-drawer {
    padding: 0;
    justify-content: flex-end;
  }

  .cart-drawer-content {
    width: 400px;
    max-width: 400px;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
    transform: translateX(100%);
  }

  .cart-drawer.active .cart-drawer-content {
    transform: translateX(0);
  }
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: #fff;
}

.cart-drawer-header-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cart-drawer-title {
  font-size: 18px;
  font-weight: 600;
  color: #42476D;
  letter-spacing: -0.02em;
}

.cart-drawer-count {
  font-size: 13px;
  color: #6b7285;
  font-weight: 400;
}

.cart-drawer-close {
  width: 36px;
  height: 36px;
  border: none;
  background: #f5f5f5;
  color: #6b7285;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.cart-drawer-close:hover {
  background: #EEEEEE;
  color: #42476D;
  transform: rotate(90deg);
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 0 24px;
  scrollbar-width: thin;
  scrollbar-color: #E0E0E0 transparent;
}

.cart-drawer-body::-webkit-scrollbar {
  width: 4px;
}

.cart-drawer-body::-webkit-scrollbar-track {
  background: transparent;
}

.cart-drawer-body::-webkit-scrollbar-thumb {
  background: #E0E0E0;
  border-radius: 4px;
}

.cart-drawer-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #EEEEEE;
  position: relative;
}

.cart-drawer-item:last-child {
  border-bottom: none;
}

.cart-drawer-item-image {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  background: #FAFAFA;
}

.cart-drawer-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-drawer-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  padding-right: 28px;
}

.cart-drawer-item-details h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #42476D;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.01em;
}

.cart-drawer-item-variant {
  font-size: 12px;
  color: #6b7285;
  margin: 0;
}

.cart-drawer-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 8px;
}

.cart-drawer-item-quantity {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: #f5f5f5;
  border-radius: 20px;
  padding: 4px;
}

.cart-qty-btn {
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  color: #6b7285;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.cart-qty-btn:hover {
  background: #E0E0E0;
  color: #42476D;
}

.cart-qty-btn:active {
  transform: scale(0.9);
}

.cart-qty-value {
  min-width: 24px;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  color: #42476D;
}

.cart-drawer-item-price {
  font-weight: 600;
  color: #42476D;
  font-size: 14px;
}

.cart-drawer-item-remove {
  position: absolute;
  top: 16px;
  right: 0;
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  color: #8b8fa6;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.cart-drawer-item-remove:hover {
  color: #dc2626;
}

.cart-drawer-item-remove svg {
  width: 16px;
  height: 16px;
}

.cart-drawer-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
  min-height: 280px;
}

.cart-drawer-empty-icon {
  width: 80px;
  height: 80px;
  background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: 20px;
}

.cart-drawer-empty h3 {
  margin: 0 0 8px;
  color: #42476D;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.cart-drawer-empty p {
  color: #6b7285;
  margin: 0 0 24px;
  font-size: 14px;
}

.cart-drawer-empty .btn {
  border-radius: 50px;
  padding: 12px 28px;
  font-size: 14px;
}

.cart-drawer-footer {
  padding: 20px 24px;
  padding-bottom: max(20px, env(safe-area-inset-bottom));
  background: #fafafa;
  border-top: 1px solid #EEEEEE;
}

.cart-coupon-section {
  margin-bottom: 16px;
}

.cart-coupon-form {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.cart-coupon-input {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  border: 1px solid #E0E0E0;
  border-radius: 50px;
  font-size: 13px;
  font-family: inherit;
  background: #fff;
  transition: all 0.2s ease;
}

.cart-coupon-input:focus {
  outline: none;
  border-color: #42476D;
}

.cart-coupon-input::placeholder {
  color: #8b8fa6;
}

.cart-coupon-btn {
  flex-shrink: 0;
  padding: 12px 20px;
  background: #42476D;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cart-coupon-btn:hover {
  background: #333;
}

.cart-coupon-btn:active {
  transform: scale(0.97);
}

.cart-coupon-message {
  margin-top: 10px;
  font-size: 12px;
  padding: 10px 14px;
  border-radius: 10px;
}

.cart-coupon-message.success {
  color: #307470;
  background: #e0f5dc;
}

.cart-coupon-message.error {
  color: #42476D;
  background: #e8e9f0;
}

.cart-drawer-summary {
  margin-bottom: 16px;
}

.cart-drawer-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  color: #42476D;
}

.cart-checkout-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #6BBA62 0%, #307470 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(107, 186, 98, 0.35);
  letter-spacing: 0.01em;
}

.cart-checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 186, 98, 0.45);
}

.cart-checkout-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(107, 186, 98, 0.3);
}

.cart-checkout-btn svg {
  transition: transform 0.3s ease;
}

.cart-checkout-btn:hover svg {
  transform: translateX(4px);
}

@media (max-width: 640px) {
  .cart-drawer {
    padding: 12px;
  }

  .cart-drawer-content {
    max-height: 90vh;
    border-radius: 20px;
  }

  .cart-drawer-header {
    padding: 16px 20px;
  }

  .cart-drawer-body {
    padding: 0 20px;
  }

  .cart-drawer-footer {
    padding: 16px 20px;
    padding-bottom: max(16px, env(safe-area-inset-bottom));
  }

  .cart-checkout-btn {
    padding: 14px 28px;
    font-size: 14px;
  }

  .cart-drawer-item-image {
    width: 64px;
    height: 64px;
  }
}

/* ================================
   REMOVE CONFIRMATION MODAL
   ================================ */

.remove-confirm-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.remove-confirm-modal.active {
  display: flex;
  animation: modalFadeIn 200ms ease-out;
}

.remove-confirm-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: overlayFadeIn 200ms ease-out;
}

.remove-confirm-content {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 0, 0, 0.1);
  animation: modalSlideUp 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: center;
}

.remove-confirm-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8e9f0 0%, #d4d6e3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: iconPop 400ms cubic-bezier(0.34, 1.56, 0.64, 1) 100ms backwards;
}

.remove-confirm-icon svg {
  color: #dc2626;
  animation: iconShake 500ms ease-in-out 150ms;
}

.remove-confirm-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 12px 0;
  animation: textSlideUp 300ms ease-out 150ms backwards;
}

.remove-confirm-text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0 0 28px 0;
  animation: textSlideUp 300ms ease-out 200ms backwards;
}

.remove-confirm-actions {
  display: flex;
  gap: 12px;
  animation: textSlideUp 300ms ease-out 250ms backwards;
}

.remove-confirm-btn {
  flex: 1;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.remove-confirm-cancel {
  background: var(--gray-100);
  color: var(--gray-700);
  border-color: var(--gray-200);
}

.remove-confirm-cancel:hover {
  background: var(--gray-200);
  border-color: var(--gray-300);
  transform: translateY(-1px);
}

.remove-confirm-delete {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.remove-confirm-delete:hover {
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
  transform: translateY(-2px);
}

.remove-confirm-delete:active,
.remove-confirm-cancel:active {
  transform: translateY(0);
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes overlayFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes iconPop {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes iconShake {
  0%, 100% { transform: rotate(0deg); }
  10%, 30%, 50%, 70%, 90% { transform: rotate(-5deg); }
  20%, 40%, 60%, 80% { transform: rotate(5deg); }
}

@keyframes textSlideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .remove-confirm-content {
    padding: 28px 24px;
  }

  .remove-confirm-icon {
    width: 70px;
    height: 70px;
  }

  .remove-confirm-icon svg {
    width: 40px;
    height: 40px;
  }

  .remove-confirm-title {
    font-size: 20px;
  }

  .remove-confirm-text {
    font-size: 14px;
  }

  .remove-confirm-btn {
    padding: 12px 20px;
    font-size: 14px;
  }
}

/* ================================
   MOBILE BOTTOM NAVIGATION
   ================================ */

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 0 16px calc(12px + env(safe-area-inset-bottom, 0px)) 16px;
  z-index: 100;
  pointer-events: none;
}

@media (max-width: 768px) {
  .bottom-nav {
    display: flex;
  }

  body {
    padding-bottom: 85px;
  }
}

.bottom-nav-container {
  background: white;
  border-radius: 20px;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1),
              0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  pointer-events: auto;
  max-width: 400px;
  width: 100%;
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 6px 10px;
  color: var(--gray-400);
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.bottom-nav-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.bottom-nav-item span {
  font-size: 9px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.bottom-nav-item.active {
  color: var(--primary);
}

.bottom-nav-item.active svg {
  color: var(--primary);
}

.bottom-nav-item.active span {
  color: var(--primary);
}

.bottom-nav-item:active {
  transform: scale(0.92);
}

.bottom-nav-cart {
  padding: 0 4px;
  margin-top: -22px;
}

.bottom-nav-cart-icon {
  position: relative;
  width: 54px;
  height: 54px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(107, 186, 98, 0.35),
              0 0 0 4px rgba(107, 186, 98, 0.12);
  transition: all 0.2s ease;
}

.bottom-nav-cart-icon svg {
  color: white;
  width: 22px;
  height: 22px;
}

.bottom-nav-cart:active .bottom-nav-cart-icon {
  transform: scale(0.92);
}

.bottom-nav-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #42476D;
  color: white;
  font-size: 9px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

@media (max-width: 360px) {
  .bottom-nav-container {
    padding: 5px 8px;
    max-width: 340px;
  }

  .bottom-nav-item {
    padding: 5px 8px;
  }

  .bottom-nav-item svg {
    width: 18px;
    height: 18px;
  }

  .bottom-nav-cart-icon {
    width: 48px;
    height: 48px;
  }

  .bottom-nav-cart-icon svg {
    width: 18px;
    height: 18px;
  }

  .bottom-nav-item span {
    font-size: 8px;
  }
}

/* ================================
   MINIMUM ORDER POPUP
   ================================ */

.minimum-order-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.minimum-order-popup.active {
  opacity: 1;
  visibility: visible;
}

.minimum-order-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.minimum-order-content {
  position: relative;
  background-color: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.minimum-order-popup.active .minimum-order-content {
  transform: scale(1);
}

.minimum-order-icon {
  margin-bottom: var(--space-4);
  color: #42476D;
}

.minimum-order-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.minimum-order-content p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: var(--space-2);
  line-height: 1.6;
}

.minimum-order-amount {
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: var(--space-5);
}

.minimum-order-amount strong {
  color: var(--primary);
  font-size: 20px;
}

/* ================================
   RESPONSIVE UTILITIES
   ================================ */

@media (max-width: 640px) {
  .section { padding: var(--space-3) 0; }
  .section-header { margin-bottom: var(--space-2); }
  h1 { font-size: 24px; }
  h2 { font-size: 20px; }
}

/* ================================
   LOADING SKELETONS
   ================================ */

@keyframes skeletonShimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.skeleton {
  background: linear-gradient(
    90deg,
    var(--gray-100) 0%,
    var(--gray-50) 20%,
    var(--gray-100) 40%,
    var(--gray-100) 100%
  );
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s ease-in-out infinite;
  border-radius: var(--radius-md);
}

.skeleton-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}

.skeleton-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 0;
}

.skeleton-badge {
  width: 70px;
  height: 22px;
  margin: var(--space-2);
  border-radius: var(--radius-full);
}

.skeleton-content {
  padding: var(--space-2);
}

.skeleton-title {
  height: 18px;
  width: 85%;
  margin-bottom: var(--space-1);
}

.skeleton-category {
  height: 14px;
  width: 50%;
  margin-bottom: var(--space-2);
}

.skeleton-variants {
  display: flex;
  gap: var(--space-1);
  margin-bottom: var(--space-2);
}

.skeleton-variant {
  width: 50px;
  height: 28px;
  border-radius: var(--radius-md);
}

.skeleton-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-1);
  border-top: 1px solid var(--gray-100);
  margin-top: var(--space-1);
}

.skeleton-price {
  height: 22px;
  width: 60px;
}

.skeleton-button {
  width: 90px;
  height: 36px;
  border-radius: var(--radius-md);
}

.skeleton-text {
  height: 16px;
  margin: var(--space-2);
}

.skeleton-text-short {
  width: 60%;
}

/* ========================================

/* ========================================
   BREATHTAKING MODERN CHECKOUT PAGE
   ======================================== */

/* Progress Bar */
.checkout-progress-section {
  background: linear-gradient(135deg, #f4f8f3 0%, #edf3ec 100%);
  padding: 2rem 0 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.checkout-stepper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 1rem;
}

.stepper-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.stepper-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--gray-400);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

.stepper-step.completed .stepper-icon {
  background: linear-gradient(135deg, #6BBA62 0%, #307470 100%);
  border-color: #6BBA62;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(107, 186, 98, 0.25);
}

.stepper-step.active .stepper-icon {
  background: linear-gradient(135deg, #6BBA62 0%, #307470 100%);
  border-color: #6BBA62;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(107, 186, 98, 0.35);
  transform: scale(1.08);
}

.stepper-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stepper-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: -0.01em;
}

.stepper-subtitle {
  font-size: 11px;
  color: var(--gray-400);
  font-weight: 500;
}

.stepper-step.completed .stepper-title,
.stepper-step.active .stepper-title {
  color: var(--gray-900);
}

.stepper-step.completed .stepper-subtitle,
.stepper-step.active .stepper-subtitle {
  color: var(--gray-600);
}

.stepper-line {
  flex: 1;
  height: 2px;
  background: var(--gray-200);
  margin: 0 1rem;
  margin-top: 22px;
  border-radius: 999px;
  min-width: 40px;
  max-width: 80px;
}

.stepper-line.completed {
  background: linear-gradient(90deg, #6BBA62 0%, #9AE17B 100%);
}

.checkout-promo-banner {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #edf8ea 0%, #c4edba 100%);
  border: 1px solid #9AE17B;
  border-radius: 14px;
  animation: slideUp 0.4s ease-out;
}

.checkout-promo-banner.success {
  background: linear-gradient(135deg, #e0f5dc 0%, #c4edba 100%);
  border-color: #9AE17B;
}

.checkout-promo-banner.warning {
  background: linear-gradient(135deg, #edf8ea 0%, #c4edba 100%);
  border-color: #9AE17B;
}

.promo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.checkout-promo-banner.warning .promo-icon {
  color: #307470;
}

.checkout-promo-banner.success .promo-icon {
  color: #307470;
}

.promo-content {
  flex: 1;
}

.promo-text {
  font-size: 13px;
  color: var(--gray-800);
  line-height: 1.4;
}

.promo-text strong {
  font-weight: 700;
}

.promo-action {
  padding: 0.5rem 1rem;
  background: var(--white);
  color: #307470;
  font-size: 12px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.promo-action:hover {
  background: #307470;
  color: var(--white);
  transform: translateY(-1px);
}

/* Main Checkout Section */
.checkout-main-section {
  padding: 3rem 0 4rem;
  background: linear-gradient(180deg, #f4f8f3 0%, var(--white) 50%);
}

.checkout-modern-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.checkout-glass-card {
  display: flex;
  flex-direction: column;
}

.summary-glass-card {
  display: flex;
  flex-direction: column;
}

/* Mobile Order: Contact Info → Order Summary Section */
.checkout-form-section {
  order: 1;
}

.checkout-summary-section {
  order: 2;
}

/* Default order for form elements */
.checkout-glass-card > * {
  order: 1;
}

/* Payment section is moved to right column via JS - no CSS hiding needed */

/* Order in Summary Card (Mobile & Desktop):
   Order Summary → Items → Coupon → Price → Payment Breakdown → Payment Method (via JS) → Confirm */
.summary-glass-card .summary-header {
  order: 1;
}

.summary-glass-card .order-items-scroll {
  order: 2;
}

.summary-glass-card .coupon-section {
  order: 3;
}

.summary-glass-card .summary-divider {
  order: 4;
}

.summary-glass-card .price-breakdown {
  order: 5;
}

.summary-glass-card .payment-summary-card {
  order: 6;
}

/* Payment section will be inserted with order: 7 via JavaScript */

.summary-glass-card .checkout-confirm-btn {
  order: 8;
  margin-top: 0.5rem;
}

@media (min-width: 1024px) {
  .checkout-modern-layout {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 2rem;
    align-items: start;
  }

  .checkout-form-section {
    order: 0;
  }

  .checkout-summary-section {
    order: 0;
  }
}

/* Payment section wrapper styling */
.payment-section-wrapper {
  margin-top: 1.5rem;
  margin-bottom: 1.25rem;
}

.payment-section-wrapper .checkout-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.payment-section-wrapper .checkout-header-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f2f9f0 0%, #e0f5dc 100%);
  color: #307470;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.payment-section-wrapper .checkout-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
}

.payment-section-wrapper .payment-options-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Glass Card Effect */
.checkout-glass-card,
.summary-glass-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2rem;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.06),
    0 1px 2px rgba(0, 0, 0, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: visible;
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.checkout-glass-card::before,
.summary-glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.checkout-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.checkout-header-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.checkout-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
}

.section-spacer {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gray-200) 50%, transparent 100%);
  margin: 1.5rem 0;
}

/* Form Fields */
.form-row-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-field {
  margin-bottom: 1rem;
}

.floating-field {
  position: relative;
}

.field-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.floating-field > .field-label {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 400;
  color: var(--gray-400);
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  padding: 0 4px;
  z-index: 1;
}

.floating-field > .field-textarea + .field-label {
  top: 1rem;
  transform: translateY(0);
}

.floating-field > .field-input:focus + .field-label,
.floating-field > .field-input:not(:placeholder-shown) + .field-label {
  top: 0;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  background: var(--white);
  letter-spacing: 0.01em;
}

.floating-field > .field-input:not(:focus):not(:placeholder-shown) + .field-label {
  color: var(--gray-600);
}

.field-input {
  width: 100%;
  height: 54px;
  padding: 0 1rem;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  font-size: 15px;
  font-family: var(--font-sans);
  color: var(--gray-900);
  background: linear-gradient(145deg, #ffffff 0%, #f4f8f3 100%);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), inset 0 1px 2px rgba(255, 255, 255, 0.9);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.field-input:hover {
  border-color: var(--gray-300);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06), inset 0 1px 2px rgba(255, 255, 255, 0.9);
}

.field-input:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(107, 186, 98, 0.1), 0 4px 12px rgba(107, 186, 98, 0.08);
}

.field-input::placeholder {
  color: transparent;
}

.field-textarea {
  height: auto;
  padding: 1.25rem 1rem 0.875rem;
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

/* District Search with Premium Animations */
.district-select-wrapper {
  position: relative;
}

.district-hidden-select {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.district-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 50px;
  padding: 0 16px;
  background: linear-gradient(145deg, #ffffff 0%, #f4f8f3 100%);
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  font-size: 15px;
  color: var(--gray-500);
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), inset 0 1px 2px rgba(255, 255, 255, 0.9);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
}

.district-trigger:hover {
  border-color: var(--gray-300);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06), inset 0 1px 2px rgba(255, 255, 255, 0.9);
}

.district-trigger.active {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(67, 56, 202, 0.1), 0 4px 12px rgba(67, 56, 202, 0.08);
}

.district-trigger-icon {
  flex-shrink: 0;
  color: var(--gray-400);
  transition: color 0.3s ease;
}

.district-trigger.active .district-trigger-icon {
  color: var(--primary);
}

.district-trigger-text {
  flex: 1;
  font-weight: 400;
}

.district-trigger.has-value .district-trigger-text {
  color: var(--gray-900);
  font-weight: 500;
}

.district-trigger-chevron {
  flex-shrink: 0;
  color: var(--gray-400);
  transition: all 0.3s ease;
}

.district-trigger.active .district-trigger-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-5px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.district-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
  z-index: 100;
  display: none;
  border: 1px solid var(--gray-200);
  animation: slideDown 200ms ease-out;
  overflow: hidden;
}

.district-dropdown.show {
  display: block;
}

.district-search-wrapper {
  padding: 16px;
  border-bottom: 1px solid var(--gray-100);
  background: var(--white);
}

.district-search-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  font-size: 15px;
  color: var(--gray-900);
  background: var(--white);
  transition: all 0.2s ease;
}

.district-search-input::placeholder {
  color: var(--gray-400);
}

.district-search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(67, 56, 202, 0.08);
}

.district-options-list {
  max-height: 280px;
  overflow-y: auto;
  background: #f4f8f3;
}

.district-options-list::-webkit-scrollbar {
  width: 8px;
}

.district-options-list::-webkit-scrollbar-track {
  background: #edf3ec;
  border-radius: 4px;
}

.district-options-list::-webkit-scrollbar-thumb {
  background: #BDBDBD;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.district-options-list::-webkit-scrollbar-thumb:hover {
  background: #6b7285;
}

.district-option {
  padding: 14px 20px;
  font-size: 15px;
  color: var(--gray-700);
  cursor: pointer;
  transition: all 0.2s ease;
  animation: fadeInLeft 300ms ease-out;
  animation-fill-mode: both;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}

.district-option:last-child {
  border-bottom: none;
}

.district-option:hover {
  background: #f4f8f3;
  color: var(--gray-900);
  padding-left: 24px;
}

.district-option.selected {
  background: var(--primary-50);
  color: var(--primary);
  font-weight: 600;
}

.district-option.selected::after {
  content: '✓';
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  animation: scaleIn 200ms ease-out;
}

/* Payment Radio Options */
.payment-options-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.payment-radio-option {
  cursor: pointer;
  display: block;
}

.payment-radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.payment-radio-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 14px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.payment-radio-option:hover .payment-radio-card {
  border-color: var(--gray-300);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.payment-radio-option input[type="radio"]:checked + .payment-radio-card {
  border-color: #6BBA62;
  background: linear-gradient(135deg, rgba(107, 186, 98, 0.08) 0%, rgba(107, 186, 98, 0.03) 100%);
  box-shadow: 0 4px 16px rgba(107, 186, 98, 0.15);
}

.payment-radio-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.payment-radio-option input[type="radio"]:checked + .payment-radio-card .payment-radio-circle {
  border-color: #6BBA62;
  background: #6BBA62;
}

.payment-radio-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white);
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s ease;
}

.payment-radio-option input[type="radio"]:checked + .payment-radio-card .payment-radio-dot {
  opacity: 1;
  transform: scale(1);
}

.payment-radio-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.payment-radio-icon.cod {
  background: linear-gradient(135deg, #f2f9f0 0%, #e0f5dc 100%);
  color: #6BBA62;
}

.payment-radio-icon.cod img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.payment-radio-icon.bkash {
  background: linear-gradient(135deg, #ededf3 0%, #e8e9f0 100%);
}

.payment-radio-icon.bkash img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.payment-radio-icon.nagad {
  background: linear-gradient(135deg, #f2f9f0 0%, #e0f5dc 100%);
}

.payment-radio-icon.nagad img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.payment-radio-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.payment-radio-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
}

.payment-radio-desc {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 500;
}

/* Security Badges */
.security-badges {
  display: none;
}

.security-badge {
  display: none;
}

.security-badge svg {
  display: none;
}

/* Order Summary */
.checkout-summary-section {
  position: relative;
}

.checkout-summary-sticky {
  position: sticky;
  top: 1.5rem;
}

.summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.summary-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
}

.items-badge {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

/* Order Items */
.order-items-scroll {
  max-height: 320px;
  overflow-y: auto;
  margin-bottom: 1.25rem;
  padding-right: 4px;
}

.order-items-scroll::-webkit-scrollbar {
  width: 6px;
}

.order-items-scroll::-webkit-scrollbar-track {
  background: var(--gray-100);
  border-radius: 999px;
}

.order-items-scroll::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 999px;
}

.order-items-scroll::-webkit-scrollbar-thumb:hover {
  background: var(--gray-400);
}

.order-item {
  display: flex;
  gap: 0.875rem;
  padding: 1rem;
  background: var(--white);
  border-radius: 14px;
  margin-bottom: 0.75rem;
  border: 1px solid var(--gray-100);
  transition: all 0.2s ease;
  position: relative;
}

.order-item:hover {
  border-color: var(--gray-200);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.item-image {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  border: 1px solid var(--gray-100);
}

.item-info {
  flex: 1;
  min-width: 0;
}

.item-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.item-variant {
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}

.item-price-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 13px;
}

.item-unit-price {
  color: var(--gray-600);
}

.item-qty-controls {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--gray-50);
  border-radius: 8px;
  padding: 2px;
  position: relative;
  z-index: 5;
}

.qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: none;
  background: var(--white);
  color: var(--gray-700);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
  pointer-events: auto;
}

.qty-btn:hover:not(:disabled) {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.05);
}

.qty-btn:active:not(:disabled) {
  transform: scale(0.95);
}

.qty-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.qty-num {
  min-width: 20px;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  color: var(--gray-900);
}

.item-total {
  font-weight: 700;
  color: var(--gray-900);
  margin-left: auto;
}

.item-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: none;
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
  opacity: 1;
  z-index: 10;
  pointer-events: auto;
}

.item-remove:hover {
  background: #dc2626;
  color: var(--white);
  transform: scale(1.1);
}

/* Coupon Section */
.coupon-section {
  margin-bottom: 1.25rem;
}

.coupon-wrapper {
  display: flex;
  gap: 0.5rem;
}

.coupon-input {
  flex: 1;
  height: 44px;
  padding: 0 1rem;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  font-size: 14px;
  font-family: var(--font-sans);
  transition: all 0.2s ease;
}

.coupon-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(67, 56, 202, 0.08);
}

.coupon-btn {
  height: 44px;
  padding: 0 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.coupon-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(67, 56, 202, 0.3);
}

.coupon-message {
  margin-top: 0.5rem;
  padding: 0.75rem;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
}

.coupon-message.success {
  background: #f2f9f0;
  color: #307470;
}

.coupon-message.error {
  background: #ededf3;
  color: #42476D;
}

/* Price Breakdown */
.summary-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gray-200) 50%, transparent 100%);
  margin: 1.25rem 0;
}

.price-breakdown {
  margin-bottom: 1.25rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 14px;
  color: var(--gray-700);
}

.price-row-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 0;
  margin-top: 0.5rem;
  border-top: 2px solid var(--gray-200);
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
}

.discount-amount {
  color: #6BBA62;
  font-weight: 600;
}

/* Payment Summary Card */
.payment-summary-card {
  background: linear-gradient(135deg, #f4f8f3 0%, #edf3ec 100%);
  border-radius: 16px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(107, 186, 98, 0.2);
  position: relative;
  overflow: hidden;
}

.payment-summary-header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.payment-summary-header svg {
  color: #6BBA62;
}

.payment-summary-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.payment-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-100);
  transition: all 0.2s ease;
}

.payment-summary-row:hover {
  border-color: var(--gray-200);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.payment-summary-row.main {
  border-color: rgba(107, 186, 98, 0.3);
  background: linear-gradient(135deg, rgba(107, 186, 98, 0.05) 0%, var(--white) 100%);
}

.payment-summary-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
}

.payment-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.payment-indicator.now {
  background: linear-gradient(135deg, #6BBA62 0%, #307470 100%);
  box-shadow: 0 0 0 3px rgba(107, 186, 98, 0.2);
}

.payment-indicator.later {
  background: linear-gradient(135deg, #6b7285 0%, #42476D 100%);
  box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.2);
}

.payment-summary-value {
  font-size: 22px;
  font-weight: 800;
  color: #42476D;
  letter-spacing: -0.02em;
}

.payment-summary-value.later {
  font-size: 17px;
  font-weight: 700;
  color: #42476D;
}

/* Checkout Confirm Button */
.checkout-confirm-btn {
  width: 100%;
  height: 56px;
  background: linear-gradient(135deg, #6BBA62 0%, #307470 100%);
  color: var(--white);
  border: none;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(107, 186, 98, 0.35);
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.checkout-confirm-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.5s ease;
}

.checkout-confirm-btn:hover::before {
  left: 100%;
}

.checkout-confirm-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107, 186, 98, 0.45);
  background: linear-gradient(135deg, #6BBA62 0%, #307470 100%);
}

.checkout-confirm-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(107, 186, 98, 0.35);
}

.checkout-confirm-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.checkout-confirm-btn svg {
  transition: transform 0.3s ease;
}

.checkout-confirm-btn:hover svg {
  transform: translateX(4px);
}

/* Continue Shopping Link - Hidden */
.continue-link {
  display: none;
}

/* Responsive Design */
@media (max-width: 1023px) {
  .checkout-summary-sticky {
    position: static;
  }

  .order-items-scroll {
    max-height: 280px;
  }
}

@media (max-width: 768px) {
  .checkout-stepper {
    gap: 0;
  }

  .stepper-step {
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
  }

  .stepper-info {
    display: flex;
    align-items: center;
    text-align: center;
  }

  .stepper-subtitle {
    display: none;
  }

  .stepper-title {
    font-size: 11px;
  }

  .stepper-line {
    margin: 0 0.5rem;
    margin-top: 20px;
    min-width: 30px;
  }

  .stepper-icon {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .checkout-promo-banner {
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
  }

  .promo-icon {
    width: 36px;
    height: 36px;
  }

  .promo-text {
    font-size: 12px;
  }

  .promo-action {
    width: 100%;
    text-align: center;
    margin-top: 0.25rem;
  }

  .checkout-glass-card,
  .summary-glass-card {
    padding: 1.5rem;
    border-radius: 20px;
  }

  .form-row-two {
    grid-template-columns: 1fr;
  }

  .payment-radio-card {
    padding: 0.875rem 1rem;
    gap: 0.75rem;
  }

  .payment-radio-icon {
    width: 40px;
    height: 40px;
  }

  .payment-radio-icon.bkash img,
  .payment-radio-icon.nagad img {
    width: 28px;
    height: 28px;
  }

  .payment-summary-row {
    padding: 0.875rem 1rem;
  }

  .payment-summary-value {
    font-size: 18px;
  }

  .payment-summary-value.later {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .checkout-progress-section {
    padding: 1.25rem 0;
  }

  .checkout-stepper {
    padding: 0 0.5rem;
  }

  .stepper-icon {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .stepper-title {
    font-size: 10px;
  }

  .stepper-line {
    min-width: 20px;
    margin: 0 0.25rem;
    margin-top: 18px;
  }

  .checkout-promo-banner {
    margin-top: 1rem;
    padding: 0.75rem;
  }

  .promo-icon {
    width: 32px;
    height: 32px;
  }

  .promo-icon svg {
    width: 16px;
    height: 16px;
  }

  .promo-text {
    font-size: 11px;
  }

  .checkout-main-section {
    padding: 1.5rem 0 2rem;
  }

  .checkout-glass-card,
  .summary-glass-card {
    padding: 1.25rem;
    border-radius: 18px;
  }

  .checkout-card-title,
  .summary-title {
    font-size: 16px;
  }

  .field-input {
    height: 46px;
    font-size: 14px;
  }

  .order-item {
    flex-wrap: wrap;
    padding: 0.875rem;
  }

  .item-price-line {
    width: 100%;
    margin-top: 0.5rem;
    justify-content: space-between;
  }

  .item-remove {
    opacity: 1;
  }

  .payment-radio-name {
    font-size: 14px;
  }

  .payment-radio-desc {
    font-size: 11px;
  }

  .payment-summary-value {
    font-size: 16px;
  }

  .checkout-confirm-btn {
    height: 52px;
    font-size: 15px;
  }
}

/* ========================================
   PRODUCT DETAIL PAGE (PDP) - PREMIUM
   ======================================== */

/* Main Section */
.pdp-main {
  padding: 1.25rem 0 2rem;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.pdp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

/* Image Column */
.pdp-image-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pdp-image-card {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.pdp-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(107, 186, 98, 0.3);
  letter-spacing: 0.02em;
}

.pdp-image-container {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  overflow: hidden;
}

.pdp-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.pdp-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-pale) 0%, #edf8ea 100%);
  border-radius: 0;
}

.pdp-placeholder-emoji {
  font-size: 60px;
}

/* Trust Strip - Always horizontal */
.pdp-trust-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  padding: 0.65rem 0.75rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  flex-wrap: nowrap;
}

.pdp-trust-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 10px;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
}

.pdp-trust-item svg {
  color: var(--primary);
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

/* Info Column */
.pdp-info-col {
  display: flex;
  flex-direction: column;
}

.pdp-info-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pdp-category {
  font-size: 10px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pdp-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.25;
  margin: 0;
}

/* Meta Row */
.pdp-meta-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.pdp-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.pdp-stars {
  display: flex;
  gap: 1px;
}

.pdp-stars svg {
  width: 12px;
  height: 12px;
}

.pdp-rating-text {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 500;
}

.pdp-stock {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 11px;
  font-weight: 500;
  color: #307470;
}

.pdp-stock-dot {
  width: 6px;
  height: 6px;
  background: #6BBA62;
  border-radius: 50%;
  animation: pdp-pulse 2s ease infinite;
}

@keyframes pdp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.9); }
}

/* Pricing */
.pdp-pricing {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.pdp-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.pdp-price-current {
  font-size: 24px;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

.pdp-price-original {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: line-through;
}

.pdp-save-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: linear-gradient(135deg, #f2f9f0 0%, #e0f5dc 100%);
  color: #307470;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  width: fit-content;
}

.pdp-save-badge svg {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
}

/* Divider */
.pdp-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0.25rem 0;
}

/* Option Groups */
.pdp-option-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pdp-option-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Size Grid - Circular Pills */
.pdp-size-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.pdp-size-btn {
  padding: 0.45rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  background: var(--white);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.pdp-size-btn:hover {
  border-color: var(--primary-light);
  background: var(--primary-pale);
}

.pdp-size-btn.active {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--primary-pale) 0%, #edf8ea 100%);
  color: var(--primary-dark);
  font-weight: 600;
}

/* Quantity - Inline Style */
.pdp-quantity {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.pdp-qty-btn {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--border);
  background: var(--white);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.pdp-qty-btn svg {
  width: 14px;
  height: 14px;
}

.pdp-qty-btn:hover {
  border-color: var(--primary);
  background: var(--primary-pale);
  color: var(--primary);
}

.pdp-qty-btn:active {
  transform: scale(0.9);
}

.pdp-qty-input {
  width: 32px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  -moz-appearance: textfield;
}

.pdp-qty-input::-webkit-outer-spin-button,
.pdp-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Action Buttons - Premium Circular Style */
.pdp-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.pdp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  letter-spacing: 0.01em;
}

.pdp-btn svg {
  width: 16px;
  height: 16px;
}

.pdp-btn-primary {
  background: linear-gradient(135deg, #6BBA62 0%, #307470 100%);
  color: var(--white);
  box-shadow: 0 3px 10px rgba(107, 186, 98, 0.3);
}

.pdp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 186, 98, 0.45);
}

.pdp-btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(107, 186, 98, 0.3);
}

.pdp-btn-primary svg {
  transition: transform 0.3s ease;
}

.pdp-btn-primary:hover svg {
  transform: scale(1.1);
}

.pdp-btn-secondary {
  background: linear-gradient(135deg, #42476D 0%, #4d527a 100%);
  color: var(--white);
  box-shadow: 0 3px 10px rgba(30, 41, 59, 0.2);
}

.pdp-btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 16px rgba(30, 41, 59, 0.3);
  background: linear-gradient(135deg, #4d527a 0%, #5a5f87 100%);
}

.pdp-btn-secondary:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(30, 41, 59, 0.15);
}

.pdp-btn-secondary svg {
  transition: transform 0.3s ease;
}

.pdp-btn-secondary:hover svg {
  transform: translateX(3px);
}

/* ========================================
   PDP TABS SECTION
   ======================================== */

.pdp-tabs-section {
  padding: 2rem 0;
  background: var(--gray-50);
}

/* Tab Buttons - Semi-transparent centered */
.pdp-tab-buttons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.pdp-tab-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1rem;
  border: 1.5px solid rgba(107, 186, 98, 0.2);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.pdp-tab-btn svg {
  width: 14px;
  height: 14px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.pdp-tab-btn:hover {
  border-color: rgba(107, 186, 98, 0.4);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-primary);
}

.pdp-tab-btn:hover svg {
  opacity: 0.8;
}

.pdp-tab-btn.active {
  border-color: var(--primary);
  background: var(--white);
  color: var(--primary-dark);
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(107, 186, 98, 0.15);
}

.pdp-tab-btn.active svg {
  opacity: 1;
  color: var(--primary);
}

/* Language Switcher */
.pdp-lang-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  padding: 0.5rem;
}

.pdp-lang-toggle {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: rgba(107, 186, 98, 0.06);
  border-radius: 50px;
  padding: 4px;
  border: 1.5px solid rgba(107, 186, 98, 0.12);
  width: 200px;
  backdrop-filter: blur(8px);
}

.pdp-lang-option {
  position: relative;
  padding: 0.5rem 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: color 0.3s ease, font-weight 0.3s ease;
  z-index: 2;
  white-space: nowrap;
  text-align: center;
}

.pdp-lang-option:hover {
  color: var(--primary-dark);
}

.pdp-lang-option.active {
  color: var(--primary-dark);
  font-weight: 600;
}

.pdp-lang-slider {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  background: var(--white);
  border-radius: 50px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(107, 186, 98, 0.15);
  z-index: 1;
  pointer-events: none;
}

.pdp-lang-slider.slide-right {
  transform: translateX(100%);
}

/* Tab Content */
.pdp-tab-content {
  max-width: 700px;
  margin: 0 auto;
}

.pdp-tab-panel {
  display: none;
}

.pdp-tab-panel.active {
  display: block;
  animation: pdp-fadeIn 0.3s ease;
}

@keyframes pdp-fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.pdp-tab-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.pdp-tab-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.pdp-tab-card > p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.pdp-description-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.pdp-desc-paragraph {
  display: block;
  margin-bottom: 0.75rem;
}

.pdp-desc-paragraph:last-child {
  margin-bottom: 0;
}

/* Benefits Grid */
.pdp-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.pdp-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.75rem;
  background: var(--gray-50);
  border-radius: 10px;
  transition: all 0.2s ease;
}

.pdp-benefit-item:hover {
  background: var(--primary-pale);
}

.pdp-benefit-icon {
  width: 32px;
  height: 32px;
  background: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.pdp-benefit-icon svg {
  width: 16px;
  height: 16px;
}

.pdp-benefit-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.pdp-benefit-text strong {
  font-size: 12px;
  color: var(--text-primary);
}

.pdp-benefit-text span {
  font-size: 10px;
  color: var(--text-secondary);
}

/* Steps */
.pdp-steps {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.pdp-step {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.65rem;
  background: var(--gray-50);
  border-radius: 10px;
  transition: all 0.2s ease;
}

.pdp-step:hover {
  background: var(--primary-pale);
}

.pdp-step-number {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.pdp-step-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.pdp-step-content strong {
  font-size: 12px;
  color: var(--text-primary);
}

.pdp-step-content p {
  font-size: 11px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
}

/* Tips */
.pdp-tips {
  background: linear-gradient(135deg, #f2f9f0 0%, #edf8ea 100%);
  border-radius: 10px;
  padding: 0.75rem;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.pdp-tips-header {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
  color: #307470;
  font-weight: 600;
  font-size: 12px;
}

.pdp-tips-header svg {
  color: #6BBA62;
  width: 14px;
  height: 14px;
}

.pdp-tips ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.pdp-tips li {
  font-size: 11px;
  color: #42476D;
  padding-left: 1rem;
  position: relative;
}

.pdp-tips li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 5px;
  height: 5px;
  background: #6BBA62;
  border-radius: 50%;
}

/* Benefits List */
.pdp-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pdp-benefit-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--gray-50);
  border-radius: 10px;
  transition: all 0.2s ease;
}

.pdp-benefit-list-item:hover {
  background: var(--primary-pale);
}

.pdp-benefit-check {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pdp-benefit-check svg {
  width: 14px;
  height: 14px;
}

.pdp-benefit-list-item span {
  font-size: 13px;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.4;
}

/* ========================================
   PDP RELATED PRODUCTS SECTION
   ======================================== */

.pdp-related-section {
  padding: 2rem 0 2.5rem;
  background: var(--white);
}

.pdp-related-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  gap: 0.75rem;
}

.pdp-related-title-group h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 0.15rem 0;
}

.pdp-related-title-group p {
  font-size: 12px;
  color: var(--text-secondary);
  margin: 0;
}

.pdp-view-all {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 12px;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.pdp-view-all:hover {
  color: var(--primary-dark);
}

.pdp-view-all svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.pdp-view-all:hover svg {
  transform: translateX(3px);
}

/* Related Products Grid */
.pdp-related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

/* ========================================
   PDP RESPONSIVE STYLES
   ======================================== */

@media (min-width: 480px) {
  .pdp-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 639px) {
  .pdp-lang-toggle {
    width: 180px;
  }

  .pdp-lang-option {
    padding: 0.4rem 0;
    font-size: 12px;
  }
}

@media (min-width: 640px) {
  .pdp-main {
    padding: 1.5rem 0 2rem;
  }

  .pdp-info-card {
    padding: 1.25rem;
    gap: 0.75rem;
  }

  .pdp-title {
    font-size: 20px;
  }

  .pdp-price-current {
    font-size: 26px;
  }

  .pdp-actions {
    flex-direction: row;
  }

  .pdp-btn {
    flex: 1;
  }

  .pdp-tab-card {
    padding: 1.5rem;
  }

  .pdp-related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .pdp-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
  }

  .pdp-image-col {
    position: sticky;
    top: calc(var(--header-height) + 48px + 1rem);
  }

  .pdp-placeholder-emoji {
    font-size: 70px;
  }

  .pdp-info-card {
    padding: 1.25rem;
  }

  .pdp-title {
    font-size: 22px;
  }

  .pdp-tabs-section {
    padding: 2.5rem 0;
  }

  .pdp-tab-buttons {
    gap: 0.75rem;
  }

  .pdp-tab-btn {
    padding: 0.7rem 1.25rem;
    font-size: 13px;
  }

  .pdp-lang-toggle {
    width: 220px;
  }

  .pdp-lang-option {
    padding: 0.55rem 0;
    font-size: 14px;
  }

  .pdp-related-section {
    padding: 2.5rem 0 3rem;
  }

  .pdp-related-header {
    margin-bottom: 1.25rem;
  }

  .pdp-related-title-group h2 {
    font-size: 20px;
  }

  .pdp-related-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .pdp-grid {
    grid-template-columns: 0.9fr 1fr;
    gap: 2rem;
  }

  .pdp-main {
    padding: 2rem 0 2.5rem;
  }

  .pdp-image-card {
    border-radius: 18px;
  }

  .pdp-image-container {
    padding: 0;
  }

  .pdp-info-card {
    padding: 1.5rem;
    border-radius: 18px;
  }

  .pdp-title {
    font-size: 24px;
  }

  .pdp-price-current {
    font-size: 28px;
  }

  .pdp-qty-btn {
    width: 32px;
    height: 32px;
  }

  .pdp-btn {
    padding: 0.85rem 1.75rem;
    font-size: 14px;
  }

  .pdp-tabs-section {
    padding: 3rem 0;
  }

  .pdp-benefits-grid {
    gap: 0.875rem;
  }

  .pdp-related-section {
    padding: 3rem 0 3.5rem;
  }

  .pdp-related-title-group h2 {
    font-size: 22px;
  }
}