/* ==========================================================================
   MINISTORE DESIGN SYSTEM & CORE STYLES
   ========================================================================== */

:root {
  /* Brand Palette */
  --ms-primary: #087F4F;
  --ms-primary-hover: #076e44;
  --ms-primary-dark: #064E3B;
  --ms-primary-light: #EAF7EF;
  --ms-primary-subtle: #d3f0de;

  /* Neutrals & Surfaces */
  --ms-bg: #F8FAF9;
  --ms-surface: #FFFFFF;
  --ms-surface-card: #FFFFFF;
  --ms-text: #111827;
  --ms-text-muted: #6B7280;
  --ms-text-light: #9CA3AF;
  --ms-border: #E5E7EB;
  --ms-border-light: #F3F4F6;

  /* Feedback & Accents */
  --ms-success: #16A34A;
  --ms-danger: #EF4444;
  --ms-warning: #F59E0B;
  --ms-info: #3B82F6;
  --ms-purple: #8B5CF6;

  /* Typography */
  --ms-font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --ms-font-handwriting: 'Caveat', 'Playpen Sans', cursive;

  /* Elevation */
  --ms-shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --ms-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --ms-shadow-md: 0 6px 16px rgba(0, 0, 0, 0.07);
  --ms-shadow-lg: 0 12px 28px rgba(0, 0, 0, 0.09);
  --ms-shadow-float: 0 16px 36px -4px rgba(6, 78, 59, 0.16);

  /* Border Radii */
  --ms-radius-sm: 8px;
  --ms-radius-md: 12px;
  --ms-radius-lg: 14px;
  --ms-radius-xl: 18px;
  --ms-radius-2xl: 24px;
  --ms-radius-pill: 9999px;

  /* Transitions */
  --ms-transition-fast: 0.15s ease;
  --ms-transition-normal: 0.25s ease;
  --ms-transition-bounce: 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Base Resets */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--ms-font-sans);
  background-color: var(--ms-bg);
  color: var(--ms-text);
  line-height: 1.5;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--ms-transition-fast);
}

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

button {
  font-family: inherit;
  border: none;
  background: transparent;
  cursor: pointer;
}

/* ==========================================================================
   COMMON UTILITY CLASSES
   ========================================================================== */
.font-handwriting {
  font-family: var(--ms-font-handwriting);
}

.text-primary-green {
  color: var(--ms-primary) !important;
}

.text-dark-green {
  color: var(--ms-primary-dark) !important;
}

.bg-light-green {
  background-color: var(--ms-primary-light) !important;
}

.bg-primary-green {
  background-color: var(--ms-primary) !important;
}

.bg-dark-green {
  background-color: var(--ms-primary-dark) !important;
}

.btn-primary-green {
  background-color: var(--ms-primary);
  color: #ffffff;
  font-weight: 600;
  border-radius: var(--ms-radius-pill);
  padding: 0.65rem 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all var(--ms-transition-fast);
  border: 1px solid transparent;
}

.btn-primary-green:hover, .btn-primary-green:focus {
  background-color: var(--ms-primary-hover);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(8, 127, 79, 0.25);
}

.btn-outline-green {
  background-color: #ffffff;
  color: var(--ms-primary);
  font-weight: 600;
  border-radius: var(--ms-radius-pill);
  padding: 0.65rem 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid var(--ms-border);
  transition: all var(--ms-transition-fast);
}

.btn-outline-green:hover, .btn-outline-green:focus {
  border-color: var(--ms-primary);
  background-color: var(--ms-primary-light);
  color: var(--ms-primary-dark);
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.85rem;
  border-radius: var(--ms-radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.pill-badge-green {
  background-color: var(--ms-primary-light);
  color: var(--ms-primary-dark);
  border: 1px solid rgba(8, 127, 79, 0.15);
}

.pill-badge-dark {
  background-color: var(--ms-primary-dark);
  color: #ffffff;
}

/* ==========================================================================
   PART 1: LANDING PAGE SPECIFIC STYLES (REFERENCE IMAGE 1)
   ========================================================================== */

/* Landing Navbar */
.landing-header {
  position: sticky;
  top: 0;
  z-index: 1020;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ms-border-light);
  transition: all var(--ms-transition-normal);
}

.landing-header.scrolled {
  border-bottom-color: var(--ms-border);
  box-shadow: var(--ms-shadow-xs);
}

.brand-logo-container {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ms-text);
}

.brand-icon-box {
  width: 38px;
  height: 38px;
  background-color: var(--ms-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.25rem;
  box-shadow: 0 4px 10px rgba(8, 127, 79, 0.2);
}

.nav-link-custom {
  font-size: 0.925rem;
  font-weight: 500;
  color: #4B5563;
  padding: 0.5rem 0.85rem;
  border-radius: var(--ms-radius-sm);
  transition: color var(--ms-transition-fast);
}

.nav-link-custom:hover {
  color: var(--ms-primary);
}

/* Hero Section with Lush Organic Foliage & Glow */
.hero-section {
  position: relative;
  padding: 3.5rem 0 5rem;
  overflow: hidden;
  background: radial-gradient(circle at 75% 45%, rgba(209, 250, 229, 0.6) 0%, rgba(234, 247, 239, 0.25) 45%, transparent 70%),
              radial-gradient(circle at 10% 80%, rgba(209, 250, 229, 0.4) 0%, transparent 40%);
}

/* Background Foliage Leaves (Matching Reference Image 2) */
.hero-foliage {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  user-select: none;
}

.hero-foliage-left {
  bottom: -20px;
  left: -30px;
  width: 260px;
  height: 320px;
  filter: drop-shadow(0 15px 25px rgba(6, 78, 59, 0.12));
  animation: leafSwayLeft 7s ease-in-out infinite alternate;
}

.hero-foliage-right {
  top: -20px;
  right: -20px;
  width: 240px;
  height: 300px;
  filter: drop-shadow(0 15px 25px rgba(6, 78, 59, 0.1));
  animation: leafSwayRight 8s ease-in-out infinite alternate;
}

.hero-glow-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  height: 520px;
  background: radial-gradient(circle, rgba(167, 243, 208, 0.5) 0%, rgba(234, 247, 239, 0.3) 45%, transparent 70%);
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.hero-tag {
  margin-bottom: 1.25rem;
}

.hero-tag .dot {
  width: 7px;
  height: 7px;
  background-color: var(--ms-primary);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(8, 127, 79, 0.2);
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--ms-text);
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--ms-text-muted);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}

.social-proof-wrapper {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.avatar-stack {
  display: flex;
}

.avatar-stack img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-left: -10px;
  object-fit: cover;
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.social-proof-text {
  font-size: 0.875rem;
  color: var(--ms-text-muted);
  line-height: 1.35;
}

.social-proof-text strong {
  color: var(--ms-text);
  font-weight: 600;
}

/* Cursive Handwritten Accent */
.handwriting-badge {
  position: absolute;
  color: var(--ms-primary);
  font-family: var(--ms-font-handwriting);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  z-index: 5;
}

.handwriting-badge.hero-accent {
  bottom: 8%;
  left: 36%;
  transform: rotate(-8deg);
}

.handwriting-arrow {
  width: 55px;
  height: 35px;
  display: inline-block;
  margin-left: 6px;
}

/* Hero Phone Mockup & Floating Stats */
.hero-mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 520px;
}

.phone-device {
  width: 320px;
  height: 640px;
  background: #000000;
  border-radius: 46px;
  padding: 10px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.25),
              0 0 0 1px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
  transform: rotate(-2deg);
  transition: transform 0.4s ease;
}

.phone-device:hover {
  transform: rotate(0deg) scale(1.02);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--ms-bg);
  border-radius: 38px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 22px;
  background: #000000;
  border-radius: 20px;
  z-index: 30;
}

/* Floating Stats Cards */
.floating-stat-card {
  position: absolute;
  background: #ffffff;
  border-radius: 16px;
  padding: 0.75rem 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--ms-border-light);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  z-index: 4;
  min-width: 145px;
  animation: floatCard 4s ease-in-out infinite alternate;
}

.floating-stat-card .stat-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

.floating-stat-card .stat-val {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ms-text);
  line-height: 1.2;
}

.floating-stat-card .stat-lbl {
  font-size: 0.725rem;
  color: var(--ms-text-muted);
}

.floating-stat-card .stat-badge {
  font-size: 0.675rem;
  font-weight: 600;
  color: var(--ms-success);
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

/* Specific Positions for Floating Cards */
.card-stat-sales {
  top: 60px;
  right: -25px;
  animation-delay: 0s;
}

.card-stat-orders {
  top: 220px;
  right: -35px;
  animation-delay: 1.2s;
}

.card-stat-visitors {
  bottom: 80px;
  right: -20px;
  animation-delay: 2.4s;
}

/* Trust / Benefits Bar */
.trust-bar-section {
  padding: 2.5rem 0;
  background: #ffffff;
  border-top: 1px solid var(--ms-border);
  border-bottom: 1px solid var(--ms-border);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-align: center;
}

.trust-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ms-primary-light);
  color: var(--ms-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all var(--ms-transition-fast);
}

.trust-item:hover .trust-icon-box {
  transform: translateY(-3px);
  background: var(--ms-primary);
  color: #ffffff;
}

.trust-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ms-text);
}

/* Features Section */
.features-section {
  padding: 5.5rem 0;
  background-color: var(--ms-bg);
}

.section-badge-center {
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--ms-text);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--ms-text-muted);
  max-width: 560px;
  margin: 0 auto 3.5rem;
}

.feature-card {
  background: #ffffff;
  border: 1px solid var(--ms-border);
  border-radius: var(--ms-radius-lg);
  padding: 1.65rem 1.4rem;
  height: 100%;
  transition: all var(--ms-transition-fast);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ms-shadow-md);
  border-color: rgba(8, 127, 79, 0.3);
}

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: var(--ms-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.feature-title {
  font-size: 1.075rem;
  font-weight: 700;
  color: var(--ms-text);
  margin-bottom: 0.45rem;
}

.feature-desc {
  font-size: 0.885rem;
  color: var(--ms-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* How It Works Section */
.how-it-works-section {
  padding: 5.5rem 0;
  background: #ffffff;
  border-top: 1px solid var(--ms-border-light);
}

.step-card {
  text-align: center;
  position: relative;
  padding: 1rem 0.5rem;
}

.step-icon-wrapper {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  position: relative;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.step-number-badge {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #000000;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--ms-text);
}

.step-desc {
  font-size: 0.875rem;
  color: var(--ms-text-muted);
  line-height: 1.45;
  max-width: 220px;
  margin: 0 auto;
}

.step-arrow-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ms-border);
  font-size: 1.5rem;
}

/* Pricing Section */
.pricing-section {
  padding: 5.5rem 0;
  background-color: var(--ms-bg);
}

.pricing-toggle-wrap {
  display: inline-flex;
  align-items: center;
  background: #E5E7EB;
  border-radius: var(--ms-radius-pill);
  padding: 4px;
  margin: 0 auto 3rem;
  gap: 4px;
}

.pricing-toggle-btn {
  padding: 0.45rem 1.2rem;
  border-radius: var(--ms-radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ms-text-muted);
  transition: all var(--ms-transition-fast);
}

.pricing-toggle-btn.active {
  background: var(--ms-primary);
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(8, 127, 79, 0.3);
}

.save-badge {
  font-size: 0.725rem;
  background: var(--ms-primary-dark);
  color: #ffffff;
  padding: 2px 7px;
  border-radius: var(--ms-radius-pill);
  margin-left: 4px;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid var(--ms-border);
  border-radius: 20px;
  padding: 2.25rem 1.85rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--ms-transition-fast);
}

.pricing-card.popular {
  border: 2px solid var(--ms-primary);
  box-shadow: 0 12px 32px rgba(8, 127, 79, 0.12);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ms-primary-dark);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.25rem 1rem;
  border-radius: var(--ms-radius-pill);
}

.pricing-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ms-text);
  margin-bottom: 0.25rem;
}

.pricing-sub {
  font-size: 0.85rem;
  color: var(--ms-text-muted);
  margin-bottom: 1.5rem;
}

.pricing-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.75rem;
}

.pricing-amount {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--ms-text);
  line-height: 1;
}

.pricing-period {
  font-size: 0.95rem;
  color: var(--ms-text-muted);
}

.pricing-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex-grow: 1;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: #374151;
}

.pricing-feature-item i {
  color: var(--ms-success);
  font-size: 1rem;
}

/* Testimonial Quote Banner */
.testimonial-section {
  padding: 4.5rem 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--ms-border-light);
}

.quote-box {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.quote-icon {
  font-size: 2.25rem;
  color: var(--ms-primary);
  opacity: 0.8;
  margin-bottom: 1rem;
}

.quote-text {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ms-text);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.quote-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.quote-author-info {
  text-align: left;
}

.quote-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ms-text);
  margin: 0;
}

.quote-role {
  font-size: 0.825rem;
  color: var(--ms-text-muted);
  margin: 0;
}

.testimonial-script-accent {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%) rotate(4deg);
  color: var(--ms-primary);
  font-family: var(--ms-font-handwriting);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
}

/* Landing Footer */
.landing-footer {
  background: #ffffff;
  border-top: 1px solid var(--ms-border);
  padding: 4rem 0 2rem;
}

.footer-brand-desc {
  font-size: 0.875rem;
  color: var(--ms-text-muted);
  line-height: 1.6;
  max-width: 320px;
  margin-top: 0.85rem;
}

.footer-heading {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ms-text);
  margin-bottom: 1.25rem;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-link {
  font-size: 0.885rem;
  color: var(--ms-text-muted);
  transition: color var(--ms-transition-fast);
}

.footer-link:hover {
  color: var(--ms-primary);
}

.footer-bottom-bar {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ms-border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.825rem;
  color: var(--ms-text-muted);
}

/* ==========================================================================
   PART 2: CUSTOMER CATALOGUE STORE SPECIFIC STYLES (REFERENCE IMAGE 2)
   ========================================================================== */

/* Outer Catalogue Shell */
.catalogue-shell {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  min-height: 100vh;
  background-color: #ffffff;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Store Header (Dark Green Top Bar) */
.store-header {
  background-color: var(--ms-primary-dark);
  color: #ffffff;
  padding: 0.85rem 1rem 1rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(6, 78, 59, 0.2);
}

.store-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.store-header-btn {
  color: #ffffff;
  font-size: 1.35rem;
  padding: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--ms-radius-sm);
  transition: opacity var(--ms-transition-fast);
}

.store-header-btn:active {
  opacity: 0.7;
}

.store-brand-title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.header-cart-wrap {
  position: relative;
}

.header-cart-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  background-color: var(--ms-danger);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--ms-primary-dark);
}

/* Store Search Box */
.store-search-box {
  position: relative;
}

.store-search-box input {
  width: 100%;
  background: #ffffff;
  border: none;
  border-radius: var(--ms-radius-pill);
  padding: 0.65rem 2.4rem 0.65rem 2.6rem;
  font-size: 0.9rem;
  color: var(--ms-text);
  outline: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: box-shadow var(--ms-transition-fast);
}

.store-search-box input:focus {
  box-shadow: 0 0 0 2px rgba(8, 127, 79, 0.3);
}

.store-search-icon {
  position: absolute;
  left: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ms-text-muted);
  font-size: 0.95rem;
  pointer-events: none;
}

.store-search-clear {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ms-text-muted);
  font-size: 0.9rem;
  display: none;
  padding: 2px 6px;
}

/* Promotional Fashion Banner (Ref Image 2) */
.promo-banner-container {
  padding: 0.9rem 1rem 0.4rem;
}

.promo-banner {
  background: linear-gradient(135deg, #dcebe1 0%, #edf4ee 60%, #e5ede7 100%);
  border-radius: var(--ms-radius-lg);
  padding: 1.25rem 1.15rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--ms-shadow-xs);
  display: flex;
  align-items: center;
  min-height: 155px;
}

.promo-banner-content {
  position: relative;
  z-index: 2;
  max-width: 60%;
}

.promo-banner-title {
  font-size: 1.22rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--ms-primary-dark);
  margin-bottom: 0.25rem;
}

.promo-banner-sub {
  font-size: 0.75rem;
  color: #4b6354;
  margin-bottom: 0.85rem;
  line-height: 1.35;
}

.btn-shop-now {
  background-color: var(--ms-primary-dark);
  color: #ffffff;
  font-size: 0.775rem;
  font-weight: 600;
  padding: 0.38rem 0.95rem;
  border-radius: var(--ms-radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all var(--ms-transition-fast);
}

.btn-shop-now:hover, .btn-shop-now:active {
  background-color: var(--ms-primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(8, 127, 79, 0.35);
}

.promo-banner-image {
  position: absolute;
  right: -5px;
  bottom: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: 1;
}

.promo-banner-tag {
  position: absolute;
  top: 12px;
  right: 14px;
  font-family: var(--ms-font-handwriting);
  font-size: 1.15rem;
  font-weight: 700;
  color: #2b5740;
  transform: rotate(6deg);
  z-index: 3;
  line-height: 1.1;
  text-align: right;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 0.5rem;
  margin-bottom: 0.6rem;
}

.carousel-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #CBD5E1;
  transition: all var(--ms-transition-fast);
}

.carousel-dot.active {
  background-color: var(--ms-primary-dark);
  width: 14px;
  border-radius: 4px;
}

/* Horizontal Categories Scroller */
.categories-scroller-wrap {
  padding: 0.25rem 1rem 0.75rem;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.categories-scroller-wrap::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.categories-list {
  display: flex;
  gap: 0.85rem;
  min-width: max-content;
}

.category-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  user-select: none;
}

.category-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #4B5563;
  transition: all var(--ms-transition-fast);
  border: 1.5px solid transparent;
}

.category-chip.active .category-icon-circle {
  background-color: var(--ms-primary-light);
  color: var(--ms-primary);
  border-color: var(--ms-primary);
  box-shadow: 0 2px 8px rgba(8, 127, 79, 0.15);
}

.category-chip:active .category-icon-circle {
  transform: scale(0.95);
}

.category-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ms-text);
  white-space: nowrap;
}

.category-chip.active .category-label {
  font-weight: 700;
  color: var(--ms-primary-dark);
}

/* Product Section Bar */
.products-section-header {
  padding: 0.5rem 1rem 0.65rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.products-section-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ms-text);
  margin: 0;
}

.btn-sort-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ms-text-muted);
  padding: 0.25rem 0.5rem;
  border-radius: var(--ms-radius-sm);
  transition: color var(--ms-transition-fast);
}

.btn-sort-toggle:hover {
  color: var(--ms-text);
}

/* 2-Column Mobile Product Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  padding: 0 1rem 5.5rem; /* Extra bottom pad for sticky cart bar */
}

.product-card {
  background: var(--ms-surface);
  border: 1px solid var(--ms-border);
  border-radius: var(--ms-radius-lg);
  padding: 0.65rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--ms-shadow-xs);
  transition: transform var(--ms-transition-fast), box-shadow var(--ms-transition-fast);
  position: relative;
}

.product-card:active {
  transform: scale(0.985);
}

.product-image-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #F8FAF9;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
  cursor: pointer;
}

.product-image-box img {
  width: 86%;
  height: 86%;
  object-fit: contain;
  transition: transform var(--ms-transition-normal);
}

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

.btn-wishlist {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--ms-text-muted);
  transition: all var(--ms-transition-fast);
  z-index: 2;
}

.btn-wishlist.active {
  color: var(--ms-danger);
  background: #ffffff;
}

.btn-share-product {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: #4b5563;
  transition: all var(--ms-transition-fast);
  z-index: 2;
  border: 1px solid rgba(0, 0, 0, 0.06);
  cursor: pointer;
  padding: 0;
}

.btn-share-product:hover {
  background: #ffffff;
  color: var(--ms-primary);
  transform: scale(1.1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.product-title {
  font-size: 0.885rem;
  font-weight: 600;
  color: var(--ms-text);
  line-height: 1.25;
  margin-bottom: 0.35rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  cursor: pointer;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin-bottom: 0.45rem;
}

.product-price-current {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ms-text);
}

.product-price-old {
  font-size: 0.775rem;
  color: var(--ms-text-light);
  text-decoration: line-through;
}

.product-discount-badge {
  font-size: 0.65rem;
  font-weight: 700;
  background-color: var(--ms-success);
  color: #ffffff;
  padding: 1px 5px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

/* Product Card Add Button / Stepper */
.product-add-wrapper {
  margin-top: auto;
}

.btn-add-product {
  width: 100%;
  background-color: var(--ms-primary-light);
  color: var(--ms-primary-dark);
  font-weight: 700;
  font-size: 0.825rem;
  border-radius: var(--ms-radius-pill);
  padding: 0.45rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  transition: all var(--ms-transition-fast);
  border: 1px solid rgba(8, 127, 79, 0.12);
}

.btn-add-product:hover, .btn-add-product:active {
  background-color: var(--ms-primary);
  color: #ffffff;
}

.product-qty-stepper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--ms-primary);
  border-radius: var(--ms-radius-pill);
  padding: 2px 4px;
  color: #ffffff;
}

.stepper-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  transition: background-color var(--ms-transition-fast);
}

.stepper-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.stepper-count {
  font-size: 0.85rem;
  font-weight: 700;
}

/* Sticky Bottom Cart Bar (Reference Image 2) */
.sticky-cart-bar {
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: calc(100% - 24px);
  max-width: 456px;
  background-color: var(--ms-primary-dark);
  border-radius: var(--ms-radius-xl);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--ms-shadow-float);
  z-index: 1050;
  transition: transform var(--ms-transition-bounce);
}

.sticky-cart-bar.visible {
  transform: translateX(-50%) translateY(0);
}

.sticky-cart-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: #ffffff;
}

.sticky-cart-icon-box {
  position: relative;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
}

.sticky-cart-badge {
  position: absolute;
  top: -5px;
  right: -8px;
  background-color: var(--ms-danger);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--ms-primary-dark);
}

.sticky-cart-text {
  display: flex;
  flex-direction: column;
}

.sticky-cart-total {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
}

.sticky-cart-items-lbl {
  font-size: 0.725rem;
  color: #a7d3b8;
}

.sticky-cart-divider {
  width: 1px;
  height: 28px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 0.5rem;
}

.btn-view-cart {
  background-color: #ffffff;
  color: var(--ms-primary-dark);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.55rem 1.25rem;
  border-radius: var(--ms-radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: all var(--ms-transition-fast);
}

.btn-view-cart:hover, .btn-view-cart:active {
  background-color: #f0fdf4;
  transform: scale(0.98);
}

/* ==========================================================================
   CART DRAWER & BOTTOM SHEET
   ========================================================================== */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  z-index: 1090;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ms-transition-normal);
}

.drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.bottom-sheet {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  background-color: #ffffff;
  border-top-left-radius: var(--ms-radius-2xl);
  border-top-right-radius: var(--ms-radius-2xl);
  z-index: 1100;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.bottom-sheet.open {
  transform: translateX(-50%) translateY(0);
}

.bottom-sheet-handle {
  width: 36px;
  height: 4px;
  background-color: #D1D5DB;
  border-radius: 2px;
  margin: 10px auto 4px;
}

.bottom-sheet-header {
  padding: 0.85rem 1.25rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--ms-border-light);
}

.bottom-sheet-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ms-text);
  margin: 0;
}

.btn-close-sheet {
  font-size: 1.25rem;
  color: var(--ms-text-muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottom-sheet-body {
  padding: 1rem 1.25rem;
  overflow-y: auto;
  flex: 1;
}

.bottom-sheet-footer {
  padding: 0.85rem 1.25rem 1.25rem;
  border-top: 1px solid var(--ms-border-light);
  background-color: #ffffff;
}

/* Cart Item Row */
.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.cart-item-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem;
  border: 1px solid var(--ms-border-light);
  border-radius: var(--ms-radius-md);
  background-color: #FAFAFA;
}

.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: var(--ms-radius-sm);
  background-color: #ffffff;
  object-fit: contain;
  padding: 4px;
}

.cart-item-details {
  flex: 1;
}

.cart-item-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ms-text);
  margin-bottom: 0.2rem;
}

.cart-item-price {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ms-primary-dark);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.cart-qty-box {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background-color: #ffffff;
  border: 1px solid var(--ms-border);
  border-radius: var(--ms-radius-pill);
  padding: 2px 6px;
}

.cart-qty-btn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ms-text);
}

.btn-remove-item {
  color: var(--ms-danger);
  font-size: 1rem;
  padding: 4px;
}

/* Coupon & Bill Breakdown */
.coupon-input-wrap {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.coupon-input-wrap input {
  flex: 1;
  border: 1px dashed var(--ms-border);
  background-color: #F9FAFB;
  border-radius: var(--ms-radius-sm);
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.bill-breakdown {
  background-color: #F9FAFB;
  border-radius: var(--ms-radius-md);
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.bill-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--ms-text-muted);
}

.bill-row.total-row {
  border-top: 1px solid var(--ms-border);
  padding-top: 0.5rem;
  margin-top: 0.25rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ms-text);
}

/* Checkout Form */
.checkout-section-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ms-text);
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.form-group-custom {
  margin-bottom: 0.75rem;
}

.form-label-custom {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ms-text);
  margin-bottom: 0.25rem;
  display: block;
}

.form-input-custom {
  width: 100%;
  border: 1px solid var(--ms-border);
  border-radius: var(--ms-radius-sm);
  padding: 0.6rem 0.85rem;
  font-size: 0.875rem;
  color: var(--ms-text);
  outline: none;
  transition: border-color var(--ms-transition-fast);
}

.form-input-custom:focus {
  border-color: var(--ms-primary);
}

.payment-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.payment-radio-card {
  border: 1px solid var(--ms-border);
  border-radius: var(--ms-radius-md);
  padding: 0.65rem 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--ms-transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.payment-radio-card.active {
  border-color: var(--ms-primary);
  background-color: var(--ms-primary-light);
  color: var(--ms-primary-dark);
}

.payment-radio-card i {
  font-size: 1.25rem;
}

.payment-radio-card span {
  font-size: 0.75rem;
  font-weight: 600;
}

/* Order Success Screen */
.success-screen-wrap {
  text-align: center;
  padding: 2rem 1rem;
}

.success-check-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--ms-primary-light);
  color: var(--ms-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  margin: 0 auto 1.25rem;
  animation: scalePop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ms-text);
  margin-bottom: 0.35rem;
}

.success-sub {
  font-size: 0.875rem;
  color: var(--ms-text-muted);
  margin-bottom: 1.5rem;
}

/* Mobile Bottom Navigation Bar (Home, Categories, Orders, Profile) */
.mobile-bottom-nav {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 1px solid var(--ms-border);
  display: flex;
  justify-content: space-around;
  padding: 0.55rem 0.5rem calc(0.55rem + env(safe-area-inset-bottom, 0px));
  z-index: 1040;
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--ms-text-muted);
  font-size: 0.72rem;
  font-weight: 500;
  transition: color var(--ms-transition-fast);
  padding: 4px 12px;
}

.bottom-nav-item i {
  font-size: 1.2rem;
}

.bottom-nav-item.active {
  color: var(--ms-primary);
  font-weight: 700;
}

/* ==========================================================================
   DESKTOP CATALOGUE STORE LAYOUT (REFERENCE IMAGE 4)
   ========================================================================== */

/* Desktop Store Navbar (Image 4 Header) */
.desktop-store-navbar {
  background: #ffffff;
  border-bottom: 1px solid var(--ms-border);
  position: sticky;
  top: 0;
  z-index: 1025;
  padding: 0.75rem 0;
}

.desktop-nav-search {
  position: relative;
  max-width: 520px;
  width: 100%;
}

.desktop-nav-search input {
  width: 100%;
  background-color: #F9FAFB;
  border: 1px solid var(--ms-border);
  border-radius: var(--ms-radius-pill);
  padding: 0.6rem 1.25rem 0.6rem 2.75rem;
  font-size: 0.885rem;
  color: var(--ms-text);
  outline: none;
  transition: all var(--ms-transition-fast);
}

.desktop-nav-search input:focus {
  background-color: #ffffff;
  border-color: var(--ms-primary);
  box-shadow: 0 0 0 3px rgba(8, 127, 79, 0.15);
}

.desktop-nav-search i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ms-text-muted);
  font-size: 0.95rem;
  pointer-events: none;
}

.desktop-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--ms-text);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  border-radius: var(--ms-radius-md);
  transition: all var(--ms-transition-fast);
}

.desktop-nav-btn:hover {
  background-color: #F3F4F6;
  color: var(--ms-primary);
}

.desktop-nav-btn i {
  font-size: 1.2rem;
}

.btn-desktop-cart {
  background-color: var(--ms-primary-dark);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.55rem 1.15rem;
  border-radius: var(--ms-radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  transition: all var(--ms-transition-fast);
  box-shadow: 0 2px 8px rgba(6, 78, 59, 0.2);
}

.btn-desktop-cart:hover {
  background-color: #043629;
  color: #ffffff;
  transform: translateY(-1px);
}

.desktop-cart-badge {
  background-color: var(--ms-danger);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Store Layout Container */
.store-desktop-container {
  width: 100%;
  margin: 0;
  padding: 0;
  display: block;
}

.store-desktop-main {
  width: 100%;
  min-width: 0;
}

@media (min-width: 992px) {
  .store-desktop-container {
    max-width: 1400px;
    margin: 1.5rem auto;
    padding: 0 1.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .store-desktop-main {
    flex: 1;
    min-width: 0;
  }

  .store-desktop-sidebar {
    width: 320px;
    flex-shrink: 0;
    position: sticky;
    top: 85px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}

/* Desktop Hero Promo Banner (Image 4) */
.desktop-hero-banner {
  background: linear-gradient(135deg, #e3efe7 0%, #edf5f0 55%, #e1ebe4 100%);
  border-radius: 20px;
  padding: 2.25rem 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--ms-shadow-xs);
  display: flex;
  align-items: center;
  min-height: 240px;
  margin-bottom: 1.5rem;
}

.desktop-banner-content {
  position: relative;
  z-index: 2;
  max-width: 55%;
}

.desktop-banner-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ms-primary-dark);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.desktop-banner-title {
  font-size: 2.15rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--ms-primary-dark);
  margin-bottom: 0.4rem;
}

.desktop-banner-sub {
  font-size: 0.95rem;
  color: #3b5745;
  margin-bottom: 1.25rem;
}

.desktop-banner-image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 48%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.desktop-banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ms-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 3;
  transition: all var(--ms-transition-fast);
}

.desktop-banner-arrow:hover {
  background: #ffffff;
  color: var(--ms-primary);
  transform: translateY(-50%) scale(1.08);
}

.desktop-banner-arrow.prev { left: 16px; }
.desktop-banner-arrow.next { right: 16px; }

.desktop-banner-cursive {
  position: absolute;
  top: 25px;
  right: 28%;
  font-family: var(--ms-font-handwriting);
  font-size: 1.85rem;
  font-weight: 700;
  color: #1e4530;
  transform: rotate(5deg);
  z-index: 3;
  line-height: 1.1;
  text-align: right;
  pointer-events: none;
}

/* Desktop 3-Column Grid with Large Product Imagery */
@media (min-width: 992px) {
  .products-grid-desktop {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
    padding: 0 !important;
  }

  .products-grid-desktop .product-card {
    padding: 1rem !important;
    border-radius: 16px !important;
    border: 1px solid #E5E7EB !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s ease !important;
  }

  .products-grid-desktop .product-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.12), 0 4px 12px -2px rgba(0, 0, 0, 0.06) !important;
    border-color: rgba(8, 127, 79, 0.3) !important;
  }

  .products-grid-desktop .product-image-box {
    width: 100% !important;
    height: 240px !important;
    aspect-ratio: auto !important;
    border-radius: 12px !important;
    background-color: #F6F8F7 !important;
    margin-bottom: 0.85rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    position: relative !important;
  }

  .products-grid-desktop .product-image-box img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  .products-grid-desktop .product-card:hover .product-image-box img {
    transform: scale(1.06) !important;
  }

  .products-grid-desktop .product-title {
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #111827 !important;
    line-height: 1.35 !important;
    margin-bottom: 0.4rem !important;
  }

  .products-grid-desktop .product-price-current {
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    color: #087F4F !important;
  }

  .products-grid-desktop .product-price-old {
    font-size: 0.95rem !important;
  }

  .products-grid-desktop .product-discount-badge {
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    padding: 0.2rem 0.5rem !important;
    border-radius: 6px !important;
  }

  .products-grid-desktop .btn-add-product {
    font-size: 0.925rem !important;
    font-weight: 700 !important;
    padding: 0.55rem 1rem !important;
    border-radius: 10px !important;
    min-height: 42px !important;
  }
}

/* Desktop Cart Sidebar (Image 4) */
.desktop-cart-card {
  background: #ffffff;
  border: 1px solid var(--ms-border);
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: var(--ms-shadow-xs);
}

.desktop-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--ms-border-light);
}

.desktop-cart-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ms-text);
  margin: 0;
}

.desktop-cart-items-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-height: 320px;
  overflow-y: auto;
  margin-bottom: 1rem;
  padding-right: 4px;
}

.desktop-cart-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--ms-border-light);
}

.desktop-cart-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.desktop-cart-img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #f8faf9;
  object-fit: contain;
  padding: 2px;
  border: 1px solid var(--ms-border-light);
}

.desktop-cart-info {
  flex: 1;
  min-width: 0;
}

.desktop-cart-name {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--ms-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.desktop-cart-variant {
  font-size: 0.7rem;
  color: var(--ms-text-muted);
}

.desktop-cart-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ms-text);
}

.desktop-cart-controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.desktop-cart-stepper {
  display: flex;
  align-items: center;
  background: #f3f4f6;
  border-radius: var(--ms-radius-pill);
  padding: 2px 6px;
  gap: 4px;
}

.desktop-cart-stepper button {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ms-text);
}

.desktop-cart-stepper span {
  font-size: 0.75rem;
  font-weight: 700;
  min-width: 14px;
  text-align: center;
}

.desktop-coupon-box {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.desktop-coupon-box input {
  flex: 1;
  border: 1px solid var(--ms-border);
  border-radius: var(--ms-radius-sm);
  padding: 0.45rem 0.75rem;
  font-size: 0.825rem;
  outline: none;
  background: #f9fafb;
}

.desktop-coupon-box input:focus {
  background: #ffffff;
  border-color: var(--ms-primary);
}

.desktop-coupon-box button {
  background-color: var(--ms-primary-dark);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.45rem 0.95rem;
  border-radius: var(--ms-radius-sm);
}

.desktop-bill-box {
  background: #f9fafb;
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.desktop-bill-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.825rem;
  color: var(--ms-text-muted);
}

.desktop-bill-row.total-row {
  border-top: 1px solid var(--ms-border);
  padding-top: 0.45rem;
  margin-top: 0.2rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ms-text);
}

.btn-desktop-checkout {
  width: 100%;
  background-color: var(--ms-primary-dark);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.75rem 1rem;
  border-radius: var(--ms-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all var(--ms-transition-fast);
  box-shadow: 0 4px 12px rgba(6, 78, 59, 0.2);
}

.btn-desktop-checkout:hover {
  background-color: var(--ms-primary);
  color: #ffffff;
  transform: translateY(-1px);
}

/* Desktop Trust Badges Card (Image 4) */
.desktop-trust-card {
  background: #ffffff;
  border: 1px solid var(--ms-border);
  border-radius: 18px;
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.desktop-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.desktop-trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ms-primary-light);
  color: var(--ms-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.desktop-trust-title {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--ms-text);
  margin-bottom: 1px;
}

.desktop-trust-desc {
  font-size: 0.725rem;
  color: var(--ms-text-muted);
}
