@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  /* Color Palette - Premium Warm/Soft */
  --bg-primary: #FAF6F1;
  --bg-secondary: #F0EAE1;
  --text-primary: #1C1410;
  --text-secondary: #5A544F;
  --accent-color: #A6735E;
  --accent-light: #CBA596;
  --accent-hover: #8A5E4D;
  --gold-accent: #C9A96E;

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  /* Layout & Spacing */
  --container-width: 1200px;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;

  /* Animation */
  --transition-fast: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius: 12px;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-light);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

::selection {
  background-color: var(--accent-light);
  color: white;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-primary);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 30px;
}

/* Glassmorphism Utility */
.glass-panel {
  background: rgba(255, 255, 255, 0.4) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.4) !important;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-sm {
  margin-top: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.p-lg {
  padding: var(--space-lg) 0;
}

.p-xl {
  padding: var(--space-xl) 0;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-block;
  padding: 12px 32px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--text-primary);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--text-primary), #1a1715);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 25px rgba(44, 40, 37, 0.25);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--text-primary);
}

.btn-outline:hover {
  background-color: var(--text-primary);
  color: var(--bg-primary);
}

.btn-gold {
  background-color: var(--gold-accent);
  color: #fff;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #d4b87a, var(--gold-accent));
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 25px rgba(201, 169, 110, 0.3);
}

/* ==================== NAVIGATION ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px 0;
  z-index: 1000;
  transition: all var(--transition-fast);
  background-color: transparent;
}

.navbar.scrolled {
  background-color: rgba(250, 246, 241, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-slow);
}

.nav-logo:hover img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
  align-items: center;
}

.nav-links li a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  position: relative;
  padding: 10px 5px;
  display: inline-block;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 5px;
  width: 0%;
  height: 2px;
  background-color: var(--accent-color);
  transition: width var(--transition-fast);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: calc(100% - 10px);
}

.nav-links .order-btn {
  background-color: var(--gold-accent);
  color: white;
  padding: 10px 24px;
  border-radius: 25px;
  transition: all var(--transition-fast);
  font-weight: 600;
}

.nav-links .order-btn::after {
  display: none;
}

.nav-links .order-btn:hover {
  background: linear-gradient(135deg, #d4b87a, var(--gold-accent));
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
}

.hamburger-line {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  background-color: var(--text-primary);
  transition: all 0.3s ease;
}

/* ==================== ANIMATIONS ==================== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.zoom-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform;
}

.zoom-in.visible {
  opacity: 1;
  transform: scale(1);
}

.reveal-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
}

.reveal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-secondary);
  z-index: 10;
  transform-origin: right;
  transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
  transition-delay: 0.1s;
}

.reveal-wrapper.visible .reveal-overlay {
  transform: scaleX(0);
}

.reveal-wrapper img {
  transform: scale(1.1);
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-wrapper.visible img {
  transform: scale(1);
}

.hover-lift {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(51, 32, 42, 0.08);
}

/* ==================== HERO ==================== */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-top: -100px;
  padding-top: 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(28, 20, 16, 0.3), rgba(28, 20, 16, 0.8) 90%);
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: white;
  margin-bottom: 20px;
  line-height: 1.1;
  font-style: italic;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.2rem);
  max-width: 600px;
  margin: 0 auto 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  font-weight: 300;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons .btn-outline {
  color: white;
  border-color: white;
}

.hero-buttons .btn-outline:hover {
  background-color: white;
  color: var(--text-primary);
}

/* ==================== TRUST BAR ==================== */
.trust-bar {
  background-color: var(--text-primary);
  color: rgba(255, 255, 255, 0.85);
  padding: 14px 0;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-item i {
  color: var(--gold-accent);
  font-size: 0.9rem;
}

/* ==================== SECTION TYPOGRAPHY ==================== */
.section-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  margin-bottom: 30px;
}

h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.4rem);
}

/* ==================== FEATURES / GRIDS ==================== */
.features-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(250, 246, 241, 0.95));
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

/* ==================== GALLERY ==================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* ==================== PRODUCT CARDS ==================== */
.product-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-img-wrapper {
  height: 250px;
  overflow: hidden;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.05);
}

.product-info {
  padding: 30px;
  text-align: left;
}

.product-info h3 {
  margin-bottom: 10px;
  color: var(--text-primary);
}

.product-info p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ==================== CAROUSEL ==================== */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 1000px;
  margin: 0 auto;
}

.carousel-track-container {
  overflow-x: auto;
  border-radius: var(--border-radius);
  flex: 1;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  /* Hide scrollbar IE/Edge */
  scrollbar-width: none;
  /* Hide scrollbar Firefox */
}

.carousel-track-container::-webkit-scrollbar {
  display: none;
  /* Hides scrollbar in Chrome/Safari */
}

.carousel-track {
  display: flex;
  gap: 20px;
  /* Removed transform transitioning to use native scroll */
}

.carousel-slide {
  min-width: calc(33.333% - 14px);
  /* Show 3 cards on desktop */
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--border-radius);
  scroll-snap-align: start;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
  transition: transform 0.6s ease;
}

.carousel-slide:hover img {
  transform: scale(1.03);
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--accent-color);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  color: var(--accent-color);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
}

.carousel-btn:hover {
  background: var(--accent-color);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(166, 115, 94, 0.3);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-light);
  opacity: 0.4;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.carousel-dots .dot.active {
  opacity: 1;
  background: var(--accent-color);
  transform: scale(1.3);
}

/* ==================== TESTIMONIALS ==================== */
.testimonial-card {
  background: rgba(255, 255, 255, 0.8) !important;
  padding: 35px;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  background: white !important;
}

/* ==================== HOW IT WORKS ==================== */
.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.step-card {
  flex: 1;
  min-width: 220px;
  max-width: 320px;
  background: white;
  padding: 40px 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 35px;
  background-color: var(--gold-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
}

.step-icon {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.step-connector {
  display: flex;
  align-items: center;
  color: var(--accent-light);
  font-size: 1.5rem;
  padding-top: 40px;
}

/* ==================== FLOATING PRE-ORDER BUTTON ==================== */
.preorder-float {
  position: fixed;
  bottom: 90px;
  right: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-accent), #d4b87a);
  color: white;
  padding: 14px 22px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 20px rgba(201, 169, 110, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  animation: pulse-preorder 2.5s infinite;
}

.preorder-float i {
  font-size: 1.1rem;
}

.preorder-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(201, 169, 110, 0.5);
}

@keyframes pulse-preorder {
  0% {
    box-shadow: 0 6px 20px rgba(201, 169, 110, 0.4);
  }

  50% {
    box-shadow: 0 6px 20px rgba(201, 169, 110, 0.4), 0 0 0 10px rgba(201, 169, 110, 0.08);
  }

  100% {
    box-shadow: 0 6px 20px rgba(201, 169, 110, 0.4);
  }
}

/* ==================== BACK TO TOP ==================== */
.back-to-top {
  position: fixed;
  bottom: 90px;
  left: 25px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--accent-color);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  color: var(--accent-color);
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent-color);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(166, 115, 94, 0.3);
}

/* ==================== STICKY MOBILE CTA ==================== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 998;
  background: linear-gradient(135deg, var(--gold-accent), #d4b87a);
  text-align: center;
  padding: 14px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-cta-bar a {
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

/* ==================== SOCIAL LINKS ==================== */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 5px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background-color: var(--accent-color);
  color: white;
  transform: translateY(-3px);
}

/* ==================== FOOTER ==================== */
.site-footer {
  background-color: var(--bg-secondary);
  padding: 60px 0 20px;
  margin-top: auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-4col {
  grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-col p {
  color: var(--text-secondary);
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--text-secondary);
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(51, 32, 42, 0.1);
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.powered-by {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
}

.powered-by img.sipo-logo {
  height: 18px;
  position: relative;
  top: 1px;
}

.dev-logo {
  height: 18px;
  margin-left: 5px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  .hamburger {
    display: block;
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--bg-primary);
    flex-direction: column;
    justify-content: center;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.05);
  }

  .nav-links.nav-active {
    right: 0;
  }

  .hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .footer-content,
  .footer-4col {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-links {
    justify-content: center;
  }

  .trust-items {
    gap: 15px;
    font-size: 0.75rem;
  }

  .trust-item span {
    display: none;
  }

  .step-connector {
    display: none;
  }

  .steps-grid {
    flex-direction: column;
    align-items: center;
  }

  .step-card {
    max-width: 100%;
  }

  .mobile-cta-bar {
    display: block;
  }

  .preorder-float {
    bottom: 70px;
    right: 15px;
    padding: 12px 16px;
    font-size: 0.8rem;
  }

  .preorder-float span {
    display: none;
  }

  .preorder-float i {
    font-size: 1.3rem;
  }

  .back-to-top {
    bottom: 70px;
    left: 15px;
    width: 42px;
    height: 42px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Carousel responsive */
  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .carousel-slide {
    aspect-ratio: 3 / 4;
  }

  .carousel-dots .dot {
    width: 8px;
    height: 8px;
  }

  .product-img-wrapper {
    height: 220px;
  }

  .features-grid,
  .product-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 80%;
    text-align: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .trust-items {
    gap: 25px;
    font-size: 0.8rem;
  }

  .footer-4col {
    grid-template-columns: 1fr 1fr;
  }

  .features-grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .carousel-slide {
    min-width: calc(50% - 10px);
    /* Show 2 items on tablet */
  }

  .preorder-float {
    padding: 12px 18px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .feature-card {
    padding: 30px 20px;
  }

  .product-info {
    padding: 20px;
  }

  .carousel-slide {
    min-width: 85%;
    /* 1 item on mobile, peeking the next one */
  }

  .carousel-wrapper {
    gap: 6px;
  }

  .carousel-btn {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .testimonial-card {
    padding: 25px;
  }
}