:root {
  --bg: #ffffff;
  --surface: rgba(109, 40, 217, 0.04);
  --border: rgba(0, 0, 0, 0.1);
  --text: #1a1a1a;
  --muted: #666666;
  --muted-2: #999999;

  --primary: #6d28d9;
  --primary-hover: #5b21b6;
  --accent: #ff4fb3;

  --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.12);

  --radius: 8px;
  --max: 1200px;

  --font-sans: "Poppins", system-ui, -apple-system, sans-serif;
  --font-soft: "Nunito", var(--font-sans);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0.75rem;
  transform: translateY(-200%);
  background: #000;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  z-index: 9999;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Message Bar */
.message-bar {
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  display: none; /* Hidden as requested */
}

.message-bar__container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.message-bar-usps {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.message-bar-usps__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.message-bar-usps__item i {
  font-style: normal;
}

/* Icons */
.icon-check {
  display: inline-block;
  width: 16px;
  height: 16px;
  position: relative;
  margin-right: 0.5rem;
}

.icon-check::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 10px;
  border: solid var(--primary);
  border-width: 0 2px 2px 0;
  transform: translateY(-60%) rotate(45deg);
}

.icon-check-circle {
  display: inline-block;
  width: 40px;
  height: 40px;
  position: relative;
}

.icon-check-circle::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--primary);
}

.icon-check-circle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -60%) rotate(45deg);
}

.trust-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border-radius: 12px;
  position: relative;
}

.icon-truck::before {
  content: "";
  position: absolute;
  width: 32px;
  height: 24px;
  border: 2px solid var(--primary);
  border-radius: 3px;
}

.icon-truck::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  background: var(--primary);
  top: 18px;
  left: 4px;
  box-shadow: 16px 0 0 var(--primary);
}

.icon-star {
  position: relative;
  width: 32px;
  height: 32px;
}

.icon-star::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 6px solid var(--primary);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.icon-star::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 6px solid var(--primary);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.icon-heart {
  position: relative;
  width: 28px;
  height: 28px;
}

.icon-heart::before,
.icon-heart::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 22px;
  background: var(--primary);
  border-radius: 14px 14px 0 0;
  transform: rotate(-45deg);
  top: 6px;
  left: 7px;
}

.icon-heart::after {
  left: -7px;
  transform: rotate(45deg);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-mark {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.9375rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--text);
  background: var(--surface);
  outline: none;
}

.nav-link.is-active {
  color: var(--primary);
  font-weight: 600;
}

.nav-cta {
  margin-left: 0.5rem;
}

.nav-icon-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0.5rem;
  border-radius: var(--radius);
  color: var(--muted);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-icon-link:hover,
.nav-icon-link:focus-visible {
  color: var(--primary);
  background: var(--surface);
  outline: none;
}

.nav-icon-link svg {
  width: 20px;
  height: 20px;
}

.nav-icon-badge {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  background: var(--accent);
  color: #fff;
  border-radius: 9px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transform: translate(25%, -25%);
}

.nav-icon-badge:empty {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.hamburger {
  position: relative;
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 2px;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
}

.hamburger::before {
  top: -6px;
}

.hamburger::after {
  top: 6px;
}

body.nav-open .hamburger {
  background: transparent;
}

body.nav-open .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

body.nav-open .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  border: none;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
  min-height: 44px;
}

.btn:active {
  transform: translateY(1px);
}

.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

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

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-secondary:hover {
  background: var(--surface);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  min-height: 36px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9375rem;
  margin-top: 0.5rem;
}

.text-link:hover {
  text-decoration: underline;
}

/* Hero */
.hero {
  padding: 4rem 0;
  background: linear-gradient(to bottom, var(--surface), transparent);
  position: relative;
  overflow: hidden;
}

.hero-modern {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.03) 0%, rgba(255, 79, 179, 0.02) 100%);
}

.hero-background-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  filter: blur(3px);
  transition: opacity 1.5s ease-in-out;
  transform: scale(1.1);
}

.hero-bg-slide.active {
  opacity: 0.25;
  z-index: 1;
}

.hero-bg-slide.fade-out {
  opacity: 0;
  z-index: 0;
}

.hero-slideshow-pagination {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 2;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50px;
}

.hero-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  outline: none;
}

.hero-pagination-bullet:hover {
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.hero-pagination-bullet.active {
  background: #fff;
  border-color: #fff;
  width: 32px;
  border-radius: 6px;
}

.hero-pagination-bullet:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 600px;
}

.hero-title {
  margin: 0 0 1.5rem;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.accent-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  line-height: 1.7;
  max-width: 55ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.0625rem;
  min-height: 52px;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transform: translateZ(0);
}

/* Trust Section */
.trust-section {
  padding: 3rem 0;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.trust-card {
  text-align: center;
  padding: 2rem 1.5rem;
}


.trust-title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
}

.trust-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Sections */
.section {
  padding: 3rem 0;
}

.section-soft {
  background: var(--surface);
}

.section-head {
  margin-bottom: 3rem;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--surface);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.section-title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.section-featured {
  background: #fff;
}

.section-why {
  background: var(--surface);
  padding: 5rem 0;
}

.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.card-title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.card-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
}

/* Contact Section */
.contact-section {
  padding: 4rem 0;
  background: #fff;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.contact-info-card {
  background: linear-gradient(135deg, #fff 0%, rgba(109, 40, 217, 0.02) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(109, 40, 217, 0.12);
  border-color: var(--primary);
}

.contact-info-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 4px 12px rgba(109, 40, 217, 0.25);
}

.contact-info-title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
}

.contact-info-text {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.9375rem;
}

.contact-info-link {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.125rem;
  transition: color 0.2s ease;
}

.contact-info-link:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.contact-info-value {
  margin: 0;
  color: var(--text);
  font-weight: 500;
  font-size: 1rem;
}

.contact-social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-social-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  background: var(--surface);
  transition: all 0.2s ease;
}

.contact-social-link:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-wrapper {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.contact-form-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--surface);
}

.contact-sidebar {
  display: grid;
  gap: 1.5rem;
}

.contact-sidebar-card {
  background: linear-gradient(135deg, var(--surface) 0%, rgba(255, 255, 255, 0.8) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.sidebar-title {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
}

.sidebar-text {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.checklist-modern {
  gap: 1rem;
}

.checklist-modern li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding-left: 0;
}

.checklist-modern li svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: var(--primary);
}

.checklist-modern li span {
  flex: 1;
}

.business-hours {
  display: grid;
  gap: 1rem;
}

.business-hour-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.business-hour-item:last-child {
  border-bottom: none;
}

.business-day {
  font-weight: 500;
  color: var(--text);
  font-size: 0.9375rem;
}

.business-time {
  color: var(--muted);
  font-size: 0.9375rem;
}

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
}

.product:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: var(--primary);
}

.product > a {
  cursor: pointer;
}

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

.product-media {
  position: relative;
  min-height: 240px;
  padding: 1.5rem;
  overflow: hidden;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-media img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product:hover .product-media img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--primary);
  color: #fff;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 1;
}

.product-badge.new {
  background: var(--accent);
}

.product-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
}

.product-text {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.5;
  flex: 1;
}

.product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.price {
  font-weight: 700;
  color: var(--text);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.old-price {
  color: var(--muted-2);
  text-decoration: line-through;
  font-weight: 400;
  font-size: 0.9375rem;
}

/* Featured Products Carousel */
.featured-products-carousel {
  position: relative;
}

.carousel-nav {
  display: none;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 781px) {
  .carousel-nav {
    display: none !important;
  }
  
  .featured-products-carousel .product-grid {
    display: grid !important;
    overflow-x: visible !important;
    scroll-snap-type: none !important;
  }
  
  .featured-products-carousel .product-grid .product {
    flex: none !important;
    scroll-snap-align: none !important;
    max-width: none !important;
  }
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  padding: 0;
}

.carousel-btn:hover {
  border-color: var(--primary);
  background: #fff;
  color: var(--primary);
}

.carousel-btn:active {
  transform: scale(0.95);
}

.carousel-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
}

/* Page Hero */
.page-hero {
  padding: 3rem 0 2rem;
  background: var(--surface);
  text-align: center;
}

.page-hero-modern {
  padding: 5rem 0 4rem;
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.05) 0%, rgba(255, 79, 179, 0.03) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(109, 40, 217, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255, 79, 179, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero-label {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(109, 40, 217, 0.25);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.page-title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.page-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.mini-title {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.mini-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
}

.mini-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

/* Forms */
.form {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.25rem;
}

.form-modern {
  gap: 1.5rem;
}

.field {
  display: grid;
  gap: 0.5rem;
}

.label {
  font-weight: 600;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.label .required {
  color: var(--accent);
  font-weight: 700;
}

.label .optional {
  font-weight: 400;
  color: var(--muted-2);
  font-size: 0.875rem;
}

.input,
.textarea {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  padding: 0.75rem;
  font-size: 0.9375rem;
  outline: none;
  transition: all 0.2s ease;
}

.input-modern,
.textarea-modern {
  padding: 1rem;
  border-radius: 12px;
  border: 2px solid var(--border);
  background: var(--surface);
  font-size: 1rem;
  transition: all 0.2s ease;
}

.input-modern:focus,
.textarea-modern:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(109, 40, 217, 0.1);
}

.input-modern::placeholder,
.textarea-modern::placeholder {
  color: var(--muted-2);
}

.textarea {
  resize: vertical;
  min-height: 100px;
}

.textarea-modern {
  min-height: 140px;
  resize: vertical;
  font-family: inherit;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.form-actions-modern {
  gap: 1rem;
  margin-top: 0.5rem;
}

.form-actions-modern .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
}

.form-note-modern {
  padding: 1rem;
  background: var(--surface);
  border-radius: var(--radius);
  border-left: 3px solid var(--primary);
  font-size: 0.9375rem;
  min-height: 1.5rem;
}

/* Lists */
.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
  font-size: 0.9375rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 6px;
  height: 12px;
  border: solid var(--primary);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Why Choose Us */
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.why-content {
  max-width: 600px;
}

.why-features {
  display: grid;
  gap: 2rem;
  margin-top: 2.5rem;
}

.why-feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.why-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
}

.why-feature-title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
}

.why-feature-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.why-image {
  position: relative;
}

.why-image-placeholder {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 20px 60px rgba(109, 40, 217, 0.2);
  overflow: hidden;
  padding: 2rem;
}

.why-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

/* CTA Strip */
.cta-strip {
  padding: 2.5rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.cta-modern {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.05) 0%, rgba(255, 79, 179, 0.03) 100%);
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.cta-text {
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Footer */
.site-footer {
  padding: 3rem 0 1.5rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 0.75rem;
}

.footer-brand img {
  width: 44px;
  height: auto;
}

.footer-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
  max-width: 40ch;
}

.footer-title {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
}

.footer-link {
  display: block;
  color: var(--muted);
  padding: 0.25rem 0;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--text);
  outline: none;
}

.footer-muted {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted-2);
  font-size: 0.875rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--muted-2);
  font-size: 0.875rem;
  text-align: center;
}

/* Responsive - Mobile First Approach */

/* Tablet and below (900px) */
@media (max-width: 900px) {
  .container {
    width: min(var(--max), calc(100% - 2rem));
  }

  .hero-content,
  .hero-grid,
  .page-hero-inner,
  .why-grid,
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section > .container > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .hero-modern {
    padding: 3rem 0;
  }

  .page-hero-modern {
    padding: 3rem 0 2rem;
  }

  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .contact-form-wrapper {
    padding: 2rem;
  }

  .cta-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .cart-layout,
  .checkout-review-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cart-summary,
  .checkout-review-sidebar {
    position: static;
  }

  .cart-item {
    grid-template-columns: 100px 1fr;
    gap: 1rem;
  }

  .cart-item-price {
    grid-column: 1 / -1;
    text-align: left;
    margin-top: 0.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .checkout-progress {
    flex-direction: column;
    gap: 1rem;
  }

  .progress-step::after {
    display: none;
  }
}

/* Mobile (780px and below) */
@media (max-width: 780px) {
  /* Message Bar */
  .message-bar {
    padding: 0.5rem 0;
  }

  .message-bar-usps {
    gap: 0.75rem;
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }

  .message-bar-usps__item {
    gap: 0.375rem;
  }

  /* Header */
  .header-inner {
    padding: 0.75rem 0;
  }

  .brand-mark {
    height: 40px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    inset: 60px 0 auto 0;
    display: grid;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }

  body.nav-open .site-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-link {
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    width: 100%;
    text-align: center;
  }

  .nav-icon-link {
    width: 100%;
    justify-content: center;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
    margin-left: 0;
    margin-top: 0.5rem;
  }

  /* Hero Section */
  .hero {
    padding: 2rem 0;
  }

  .hero-modern {
    padding: 2.5rem 0;
  }

  .hero-content {
    gap: 2rem;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.125rem);
    margin-bottom: 1.5rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    display: none;
  }

  .stat-item {
    width: 100%;
  }

  .hero-slideshow-pagination {
    bottom: 1rem;
    padding: 0.375rem;
    gap: 0.5rem;
  }

  .hero-pagination-bullet {
    width: 10px;
    height: 10px;
  }

  .hero-pagination-bullet.active {
    width: 24px;
  }

  /* Page Hero */
  .page-hero {
    padding: 2rem 0 1.5rem;
  }

  .page-hero-modern {
    padding: 2.5rem 0 2rem;
  }

  .page-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .page-subtitle {
    font-size: clamp(0.9375rem, 3vw, 1.0625rem);
  }

  /* Sections */
  .section {
    padding: 2rem 0;
  }

  .section-head {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .section-subtitle {
    font-size: clamp(0.9375rem, 3vw, 1.0625rem);
  }

  /* Trust Section */
  .trust-section {
    display: none;
  }

  .trust-card {
    padding: 1.5rem 1rem;
  }

  .trust-title {
    font-size: 1.125rem;
  }

  /* Product Grid */
  .product-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Featured Products Carousel - Mobile */
  .featured-products-carousel {
    overflow: hidden;
  }

  .featured-products-carousel .product-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 1.5rem;
    padding-bottom: 1rem;
  }

  .featured-products-carousel .product-grid::-webkit-scrollbar {
    display: none;
  }

  .featured-products-carousel .product-grid .product {
    flex: 0 0 100%;
    scroll-snap-align: start;
    max-width: 100%;
  }

  .carousel-nav {
    display: flex;
  }

  .product-media {
    min-height: 200px;
    padding: 1rem;
  }

  .product-media img {
    max-height: 240px;
  }

  .product-body {
    padding: 1.25rem;
  }

  .product-title {
    font-size: 1rem;
  }

  .product-text {
    font-size: 0.8125rem;
  }

  /* Cards */
  .cards {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .card {
    padding: 1.25rem;
  }

  /* Contact Section */
  .contact-section {
    padding: 2rem 0;
  }

  .contact-info-card {
    padding: 1.5rem;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .contact-sidebar {
    gap: 1.25rem;
  }

  .contact-sidebar-card {
    padding: 1.5rem;
  }

  /* Forms */
  .form {
    gap: 1rem;
  }

  .form-modern {
    gap: 1.25rem;
  }

  .input-modern,
  .textarea-modern {
    padding: 0.875rem;
    font-size: 16px; /* Prevents zoom on iOS */
  }

  .form-actions-modern {
    flex-direction: column;
  }

  .form-actions-modern .btn {
    width: 100%;
    justify-content: center;
  }

  /* Why Choose Us */
  .section-why {
    padding: 3rem 0;
  }

  .why-grid {
    gap: 2rem;
  }

  .why-features {
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .why-feature {
    gap: 1rem;
  }

  /* CTA Strip */
  .cta-strip {
    padding: 2rem 0;
  }

  .cta-modern {
    padding: 3rem 0;
  }

  .cta-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .cta-text {
    font-size: clamp(0.9375rem, 3vw, 1.0625rem);
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .site-footer {
    padding: 2rem 0 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
  }

  /* Cart Page */
  .cart-item {
    grid-template-columns: 80px 1fr;
    padding: 1rem;
    gap: 0.75rem;
  }

  .cart-item-image {
    width: 80px;
    height: 80px;
  }

  .cart-item-title {
    font-size: 1rem;
  }

  .cart-item-controls {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .quantity-control {
    width: 100%;
  }

  .quantity-input-wrapper {
    width: 100%;
  }

  .quantity-input {
    flex: 1;
  }

  .cart-item-remove {
    align-self: flex-end;
  }

  .coupon-section {
    padding: 1.25rem;
  }

  .coupon-input-wrapper {
    flex-direction: column;
  }

  .coupon-apply {
    width: 100%;
    text-align: center;
    padding: 0.75rem;
  }

  .cart-summary {
    padding: 1.5rem;
  }

  .cart-summary-title {
    font-size: 1.25rem;
  }

  .payment-methods {
    justify-content: center;
  }

  /* Checkout */
  .checkout-progress {
    gap: 0.75rem;
  }

  .progress-step {
    padding: 0.75rem;
  }

  .progress-step-label {
    font-size: 0.8125rem;
  }

  .form-section {
    padding: 1.5rem;
  }

  .form-group {
    margin-bottom: 1.25rem;
  }

  .radio-group {
    flex-direction: column;
    gap: 1rem;
  }

  .checkout-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .checkout-actions .btn {
    width: 100%;
  }

  /* Payment Options */
  .payment-option {
    padding: 1.25rem;
  }

  .payment-option-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  /* Review Section */
  .review-section {
    padding: 1.5rem;
  }

  .review-cart-item {
    flex-direction: column;
    gap: 1rem;
  }

  .review-item-image {
    width: 100%;
    max-width: 120px;
    height: auto;
    aspect-ratio: 1;
  }

  /* Modal */
  .modal-content {
    padding: 1.5rem;
    max-width: calc(100% - 2rem);
    margin: 1rem;
  }

  .modal-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
  }

  .modal-title {
    font-size: 1.25rem;
  }

  .modal-message {
    font-size: 0.9375rem;
  }

  .modal-actions {
    flex-direction: column;
  }

  .modal-actions .btn {
    width: 100%;
  }

  /* Slider */
  [data-slider] {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: min(85%, 320px);
    overflow-x: auto;
    gap: 1rem;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  [data-slider] > * {
    scroll-snap-align: start;
  }

  [data-slider]::-webkit-scrollbar {
    height: 4px;
  }

  [data-slider]::-webkit-scrollbar-track {
    background: var(--surface);
  }

  [data-slider]::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 2px;
  }

  /* Product Detail Page */
  .section > .container > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  /* Buttons */
  .btn-large {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    min-height: 48px;
  }

  .btn {
    min-height: 44px;
    font-size: 0.9375rem;
  }

  /* Text adjustments */
  .price {
    font-size: 1.125rem;
  }

  .old-price {
    font-size: 0.875rem;
  }

  /* Product Detail Page Specific */
  .product-media[style*="min-height"] {
    min-height: 250px !important;
    padding: 1rem !important;
  }

  /* Breadcrumb navigation */
  nav[style*="margin-bottom"] {
    font-size: 0.8125rem !important;
    margin-bottom: 0.75rem !important;
  }

  /* Product actions on detail page */
  div[style*="display: flex"][style*="align-items: center"][style*="gap: 1rem"] {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.75rem !important;
  }

  div[style*="display: flex"][style*="gap: 0.5rem"] {
    width: 100%;
  }

  div[style*="display: flex"][style*="gap: 0.5rem"] button,
  div[style*="display: flex"][style*="gap: 0.5rem"] .btn {
    flex: 1;
    min-width: 0;
  }

  /* Share buttons */
  div[style*="display: flex"][style*="gap: 1rem"][style*="align-items: center"] {
    flex-wrap: wrap;
    gap: 0.75rem !important;
  }

  /* Video section */
  div[style*="margin-top: 4rem"] {
    margin-top: 2rem !important;
  }

  /* Better touch targets */
  button,
  .btn,
  a.btn {
    min-height: 44px;
    min-width: 44px;
  }

  /* Improved spacing for mobile */
  .section-cta {
    margin-top: 1.5rem;
  }

  .section-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  .container {
    width: calc(100% - 1.5rem);
  }

  .hero {
    padding: 1.5rem 0;
  }

  .hero-modern {
    padding: 2rem 0;
  }

  .hero-title {
    font-size: clamp(1.75rem, 10vw, 2.5rem);
  }

  .section {
    padding: 1.5rem 0;
  }

  .page-hero {
    padding: 1.5rem 0 1rem;
  }

  .page-hero-modern {
    padding: 2rem 0 1.5rem;
  }

  .product-media {
    min-height: 180px;
    padding: 0.75rem;
  }

  .product-body {
    padding: 1rem;
  }

  .cart-item {
    grid-template-columns: 70px 1fr;
    padding: 0.875rem;
  }

  .cart-item-image {
    width: 70px;
    height: 70px;
  }

  .contact-form-wrapper {
    padding: 1.25rem;
  }

  .contact-info-card {
    padding: 1.25rem;
  }

  .form-section {
    padding: 1.25rem;
  }

  .modal-content {
    padding: 1.25rem;
    max-width: calc(100% - 1rem);
    margin: 0.5rem;
  }

  .hero-stats {
    gap: 0.75rem;
    padding-top: 1rem;
  }

  .stat-number {
    font-size: 1.25rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }
}

/* Cart Page */
.cart-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.cart-main {
  display: grid;
  gap: 2rem;
}

.cart-items {
  display: grid;
  gap: 1.5rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  align-items: start;
}

.cart-item-image {
  width: 120px;
  height: 120px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-item-details {
  display: grid;
  gap: 1rem;
}

.cart-item-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
}

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

.quantity-control {
  display: grid;
  gap: 0.5rem;
}

.quantity-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
}

.quantity-input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.quantity-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--surface);
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.quantity-btn:hover {
  background: var(--primary);
  color: #fff;
}

.quantity-input {
  width: 60px;
  height: 36px;
  border: none;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 600;
  outline: none;
}

.cart-item-remove {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.cart-item-remove:hover {
  background: var(--accent);
  color: #fff;
}

.cart-item-price {
  text-align: right;
}

.price-amount {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.coupon-section {
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.coupon-label {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
}

.coupon-input-wrapper {
  display: flex;
  gap: 0.75rem;
}

.coupon-input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9375rem;
}

.coupon-apply {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: none;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  text-decoration: underline;
}

.coupon-apply:hover {
  color: var(--primary-hover);
}

.cart-actions {
  padding-top: 1rem;
}

.cart-continue-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
}

.cart-continue-link:hover {
  text-decoration: underline;
}

.cart-summary {
  padding: 2rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: sticky;
  top: 100px;
}

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

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  font-size: 0.9375rem;
}

.summary-row:not(.summary-total) {
  border-bottom: 1px solid var(--border);
}

.summary-total {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid var(--border);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.shipping-note {
  margin: 0.5rem 0;
  color: var(--primary);
  font-size: 0.875rem;
}

.btn-checkout {
  width: 100%;
  margin-top: 1.5rem;
  padding: 1rem;
  font-size: 1.0625rem;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  align-items: center;
}

.accepted-payment-method {
  height: 24px;
  width: auto;
  object-fit: contain;
  max-width: 60px;
}


/* Checkout Progress */
.checkout-progress {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  max-width: 600px;
}

.progress-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  transition: all 0.3s ease;
}

.progress-step::after {
  content: "";
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 1rem;
  height: 1rem;
  background: #fff;
  border-right: 2px solid var(--border);
  border-top: 2px solid var(--border);
  z-index: 1;
}

.progress-step:last-child::after {
  display: none;
}

.progress-step.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.progress-step.completed {
  background: rgba(109, 40, 217, 0.1);
  border-color: var(--primary);
}

.progress-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.progress-step-icon svg {
  width: 24px;
  height: 24px;
}

.progress-step-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
}

/* Checkout Form */
.checkout-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-section {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.radio-group {
  display: flex;
  gap: 2rem;
  margin-top: 0.5rem;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.radio-label input[type="radio"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9375rem;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 0.125rem;
  cursor: pointer;
  flex-shrink: 0;
}

.checkout-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}

.checkout-back-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
}

.checkout-back-link:hover {
  text-decoration: underline;
}

/* Payment Options */
.payment-form {
  max-width: 800px;
  margin: 0 auto;
}

.payment-options {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.payment-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
}

.payment-option:hover {
  border-color: var(--primary);
  background: var(--surface);
}

.payment-option input[type="radio"] {
  display: none;
}

.payment-option input[type="radio"]:checked + .payment-option-content {
  color: var(--primary);
}

.payment-option input[type="radio"]:checked ~ .payment-next {
  display: inline-flex;
}

.payment-option-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.payment-option-icon {
  width: 40px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

.payment-option-icon svg {
  width: 100%;
  height: 100%;
}

.payment-option-label {
  font-weight: 600;
  font-size: 1rem;
}

.payment-next {
  display: none;
}

/* Checkout Review */
.checkout-review-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.checkout-review-main {
  display: grid;
  gap: 2rem;
}

.review-section {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.review-section-title {
  margin: 0 0 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
}

.review-details {
  display: grid;
  gap: 0.5rem;
  color: var(--text);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.review-cart-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.review-item-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: var(--radius);
  background: #f8f9fa;
  padding: 0.5rem;
}

.review-item-details {
  flex: 1;
  display: grid;
  gap: 0.5rem;
}

.review-item-title {
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  font-size: 1rem;
}

.review-item-title:hover {
  text-decoration: underline;
}

.review-item-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--muted);
}

.review-item-price {
  font-weight: 600;
  color: var(--text);
}

.review-remarks {
  margin-bottom: 1.5rem;
}

.review-terms {
  margin-top: 1.5rem;
}

.terms-link {
  color: var(--primary);
  text-decoration: none;
}

.terms-link:hover {
  text-decoration: underline;
}

.checkout-review-sidebar {
  position: sticky;
  top: 100px;
}

.review-shipping-cost {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text);
}

.review-payment-method {
  display: flex;
  align-items: center;
  font-size: 0.9375rem;
  color: var(--text);
}

.review-summary {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.btn-buy-now {
  width: 100%;
  margin-top: 1.5rem;
  padding: 1rem;
  font-size: 1.0625rem;
  background: var(--accent);
}

.btn-buy-now:hover {
  background: #e6399b;
}

.stripe-powered {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.stripe-powered svg {
  height: 20px;
}

.review-actions {
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 900px) {
  .cart-layout,
  .checkout-review-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary,
  .checkout-review-sidebar {
    position: static;
  }

  .cart-item {
    grid-template-columns: 100px 1fr;
    gap: 1rem;
  }

  .cart-item-price {
    grid-column: 1 / -1;
    text-align: left;
    margin-top: 0.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .checkout-progress {
    flex-direction: column;
  }

  .progress-step::after {
    display: none;
  }
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
  z-index: 1;
}

.modal.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 8px 24px rgba(109, 40, 217, 0.3);
}

.modal-icon svg {
  width: 32px;
  height: 32px;
}

.modal-title {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: var(--text);
}

.modal-message {
  margin: 0 0 1.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.modal-product-info {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.modal-product-image {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  object-fit: cover;
  background: #f8f9fa;
}

.modal-product-details {
  flex: 1;
}

.modal-product-name {
  margin: 0 0 0.25rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text);
}

.modal-product-price {
  margin: 0;
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 600;
}

.modal-actions {
  display: flex;
  gap: 0.75rem;
}

.modal-actions .btn {
  flex: 1;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: var(--surface);
  color: var(--text);
}

.modal-close svg {
  width: 20px;
  height: 20px;
}

/* Additional Mobile Utilities */
@media (max-width: 780px) {
  /* Hide elements that might not be needed on mobile */
  .hero-image-wrapper {
    order: -1;
  }

  /* Improve spacing for stacked elements */
  .why-content {
    order: 2;
  }

  .why-image {
    order: 1;
  }

  /* Better form layout on mobile */
  .field {
    margin-bottom: 0;
  }

  /* Improve button groups */
  .form-actions {
    flex-direction: column;
  }

  .form-actions .btn {
    width: 100%;
  }

  /* Cart item improvements */
  .cart-item-details {
    gap: 0.75rem;
  }

  /* Checkout improvements */
  .checkout-review-layout {
    gap: 1.5rem;
  }

  .review-section-title {
    font-size: 1.125rem;
  }

  .review-details {
    font-size: 0.875rem;
  }

  /* Payment method icons */
  .accepted-payment-method {
    max-width: 50px;
    height: 20px;
  }

  /* Business hours mobile */
  .business-hour-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  /* Contact sidebar mobile */
  .contact-sidebar-card .btn {
    width: 100%;
  }

  /* Product actions wrapper */
  .product-actions {
    flex-direction: column;
    gap: 0.75rem !important;
  }

  .product-actions button,
  .product-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Ensure all inline grids become single column */
  div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  /* Improve text readability */
  p, .text, .product-text {
    line-height: 1.6;
  }

  /* Better spacing for lists */
  .checklist-modern {
    gap: 0.75rem;
  }

  /* Improve icon sizes on mobile */
  .trust-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 0.75rem;
  }

  .contact-info-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
  }
}

/* Landscape mobile orientation */
@media (max-width: 780px) and (orientation: landscape) {
  .hero {
    padding: 1.5rem 0;
  }

  .hero-modern {
    padding: 2rem 0;
  }

  .section {
    padding: 1.5rem 0;
  }

  .site-nav {
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .brand-mark,
  img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Dark mode support (if needed in future) */
@media (prefers-color-scheme: dark) {
  /* Reserved for future dark mode implementation */
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
    animation: none !important;
  }
}
