/* ============================================
   CHETAQUE PRINTING HUB — Design System
   StickerMule-Inspired Light Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Montserrat:wght@600;700;800;900&display=swap');

/* === CSS Variables === */
:root {
  /* Brand Colors — Orange & Black */
  --orange: #ff6b00;
  --orange-dark: #e05e00;
  --orange-light: #ff8c33;
  --orange-glow: rgba(255, 107, 0, 0.2);

  /* CTA Blue */
  --blue: #0069cc;
  --blue-light: #338fdd;

  /* Neutrals */
  --black: #1f1f1f;
  --dark-2: #333333;
  --gray-dark: #555555;
  --gray: #888888;
  --gray-light: #b0b0b0;
  --gray-bg: #f5f5f5;
  --gray-border: #e5e5e5;
  --light: #fafafa;
  --white: #ffffff;

  /* Accents */
  --accent-green: #10b981;
  --accent-amber: #f59e0b;
  --accent-purple: #8b5cf6;

  /* Gradients */
  --gradient-orange: linear-gradient(135deg, #ff6b00 0%, #ff8c33 100%);
  --gradient-blue: linear-gradient(135deg, #0069cc 0%, #338fdd 100%);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Montserrat', 'Inter', sans-serif;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 100px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 16px 50px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --transition-fast: all 0.15s ease;
  --transition-normal: all 0.3s ease;
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

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

/* === CONTAINER === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* === SECTION TITLES === */
.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: var(--space-md);
  color: var(--black);
}

.section-title span {
  color: var(--orange);
}

.section-subtitle {
  text-align: center;
  color: var(--gray-dark);
  font-size: 1rem;
  max-width: 550px;
  margin: 0 auto var(--space-3xl);
  line-height: 1.7;
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 56px;
  display: flex;
  align-items: center;
  background: #f0f0f0;
  transition: var(--transition-normal);
}

.navbar.scrolled {
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

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

.navbar-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.navbar-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--white);
}

.navbar-logo .red {
  color: var(--orange);
}

.navbar-logo .sub {
  display: block;
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--gray-light);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.navbar-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin-left: -20px;
  /* Adjust this value if needed to perfectly align with hero text (Max -30px sebelum dia hilang dari skrin) */
}

.navbar-welcome {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.3px;
}

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

.navbar-menu {
  display: flex;
  list-style: none;
  gap: var(--space-xl);
  align-items: center;
}

.navbar-menu a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--black);
  transition: var(--transition-fast);
  opacity: 0.75;
}

.navbar-menu a:hover {
  opacity: 1;
}

.cart-btn {
  position: relative;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-full);
  padding: var(--space-sm) var(--space-lg);
  color: var(--black);
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  transition: var(--transition-normal);
  transform: translateX(10px); /* Push 10px to the right */
}

.cart-btn:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.3);
}

.cart-btn .cart-count {
  background: var(--orange);
  color: white;
  border-radius: var(--radius-full);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: var(--space-sm);
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition-fast);
  border-radius: 2px;
}

/* ===========================
   HERO — Full Orange Banner 
   =========================== */
.hero {
  min-height: 420px;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--orange);
  overflow: hidden;
  margin-top: 56px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-3xl);
}

.hero-content {
  max-width: 520px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  padding: var(--space-xs) var(--space-lg);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.6s ease;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  animation: blink 2s infinite;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  color: var(--white);
  animation: fadeInUp 0.6s ease 0.1s backwards;
}

.hero h1 .highlight {
  color: var(--white);
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 6px;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
  animation: fadeInUp 0.6s ease 0.2s backwards;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  animation: fadeInUp 0.6s ease 0.3s backwards;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition-normal);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: #25D366;
  color: var(--white);
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition-normal);
}

.btn-secondary:hover {
  background: #1fba59;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fadeIn 1s ease 0.4s backwards;
}

.hero-showcase {
  position: relative;
  width: 380px;
  height: 380px;
}

.showcase-circle {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: rotate 20s linear infinite;
}

.showcase-circle::before,
.showcase-circle::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--white);
  border-radius: 50%;
}

.showcase-circle::before {
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
}

.showcase-circle::after {
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
}

.showcase-inner {
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: var(--space-xl);
}

/* Specific styling for the new collage image */
.showcase-inner.hero-collage-wrapper {
  background: transparent;
  border: none;
  padding: 0;
  overflow: visible;
  inset: -20px; /* Let it overflow the circle slightly for a "pop" effect */
}

.hero-collage-img {
  width: 115%;
  height: 115%;
  object-fit: contain;
  animation: fadeInScale 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}


.showcase-inner .icon {
  font-size: 4rem;
  margin-bottom: var(--space-md);
}

.showcase-inner h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--white);
}

.showcase-inner p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Floating elements */
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
  animation: float 3s ease-in-out infinite;
  box-shadow: var(--shadow-lg);
}

.float-card.card-1 {
  top: 30px;
  right: -20px;
  animation-delay: 0s;
}

.float-card.card-2 {
  bottom: 60px;
  left: -30px;
  animation-delay: 1s;
}

.float-card.card-3 {
  bottom: 0;
  right: 10px;
  animation-delay: 2s;
}

.float-card .icon {
  font-size: 1.3rem;
}

/* Footer specific overlap fix */
.footer {
  margin-top: 0;
}

/* Stats bar */
.hero-stats {
  margin-top: var(--space-3xl);
  display: flex;
  gap: var(--space-3xl);
  animation: fadeInUp 0.6s ease 0.4s backwards;
}

.stat {
  text-align: left;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
}

.stat-number span {
  color: rgba(255, 255, 255, 0.7);
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* === TESTIMONIALS === */
.testimonials {
  padding: 80px 0;
  background: #f8f9fa;
  overflow: hidden;
}

.testimonials-container {
  position: relative;
  margin-top: var(--space-2xl);
  overflow: visible;
}

.testimonials-track {
  display: flex;
  gap: var(--space-lg);
  overflow-x: auto;
  padding: 20px 10px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
  -ms-overflow-style: none;  /* Hide scrollbar for IE/Edge */
  scroll-behavior: smooth;
}

.testimonials-track::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome/Safari */
}

.testimonial-card {
  flex: 0 0 350px;
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,0.05);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange-light);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.user-info {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.user-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.user-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
}

.rating {
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.platform-icon {
  font-size: 1.5rem;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray-dark);
  font-style: italic;
  flex-grow: 1;
  margin-bottom: var(--space-md);
}

.read-more {
  font-size: 0.8rem;
  font-weight: 600;
  color: #1877F2;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

/* Dots */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: var(--space-xl);
}

.dot {
  width: 100px; /* Long dots look premium */
  height: 4px;
  background: #ddd;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition-normal);
}

.dot.active {
  background: var(--orange);
  width: 25px;
}

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

/* ===========================
   ABOUT SECTION
   =========================== */
.about {
  padding: 80px 0;
  background: var(--white);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-3xl);
  align-items: center;
}

/* Video Mockup */
.about-visual {
  position: relative;
}

.video-mockup {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--black);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
}

.video-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1; /* Removed dimming */
  filter: brightness(1.15) contrast(1.05) saturate(1.1); /* "Padu" filters */
  transition: var(--transition-slow);
}

.video-mockup:hover .video-img {
  transform: scale(1.05);
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.1); /* Lighter overlay */
  transition: var(--transition-normal);
}

.video-mockup:hover .video-overlay {
  background: rgba(0, 0, 0, 0.1);
}

.play-btn {
  width: 80px;
  height: 80px;
  background: var(--white);
  color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2);
  transition: var(--transition-normal);
  cursor: pointer;
}

.video-mockup:hover .play-btn {
  transform: scale(1.1);
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 0 0 15px rgba(255, 107, 0, 0.1);
}

.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  transform: translateY(100%);
  transition: var(--transition-normal);
}

.video-mockup:hover .video-controls {
  transform: translateY(0);
}

.progress-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  margin-bottom: 15px;
  position: relative;
}

.progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: var(--orange);
  border-radius: 2px;
}

.controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  font-size: 1.2rem;
}

.left-controls,
.right-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.left-controls i,
.right-controls i {
  cursor: pointer;
  opacity: 0.8;
  transition: var(--transition-fast);
}

.left-controls i:hover,
.right-controls i:hover {
  opacity: 1;
  color: var(--orange);
}

/* About Content */
.about-content {
  padding-left: var(--space-xl);
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gray-bg);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-dark);
  margin-bottom: var(--space-lg);
  border: 1px solid var(--gray-border);
}

.about-badge .badge-icon {
  height: 16px;
  width: auto;
}

.about-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  color: var(--black);
}

.about-title span {
  color: var(--orange);
}

.about-text {
  font-size: 1.1rem;
  color: var(--gray-dark);
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
}

.btn-about {
  background: var(--black);
  color: var(--white);
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.btn-about:hover {
  background: var(--orange);
  transform: translateX(5px);
  box-shadow: 0 4px 15px var(--orange-glow);
}

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

/* Responsive About */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about-content {
    padding-left: 0;
    text-align: center;
  }

  .about-badge {
    justify-content: center;
  }

  .about-title {
    font-size: 2.2rem;
  }
}

/* ===========================
   PRODUCTS SECTION — White bg, clean cards
   =========================== */
.products {
  padding: 80px 0;
  background: var(--white);
  position: relative;
}

.products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gray-border);
}

/* Categorized Sections */
.category-section {
  margin-bottom: var(--space-3xl);
}

.category-heading {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--gray-light);
}

.category-heading .icon {
  font-size: 1.8rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: var(--space-xl);
}

/* Product Card — Clean white with subtle shadow */
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-normal);
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: var(--shadow-xl);
}

.product-card-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-card-image .product-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  z-index: 1;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  transition: var(--transition-normal);
}

.product-card:hover .product-icon {
  transform: scale(1.1);
}

.product-card-image .product-icon i {
  color: var(--orange);
  line-height: 1;
}

.product-card .product-icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

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

.cart-item-name .product-icon-img {
  width: 28px !important;
  height: 28px !important;
  object-fit: cover !important;
  border-radius: 4px;
  vertical-align: middle;
  margin-right: 8px;
}

.modal-header h2 .product-icon-img {
  width: 32px !important;
  height: 32px !important;
  object-fit: cover !important;
  border-radius: 6px;
  vertical-align: middle;
}

.product-card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.08;
  transition: var(--transition-normal);
}

.product-card:nth-child(1) .product-card-image::before {
  background: linear-gradient(135deg, #ff6b00, #ff9a44);
}

.product-card:nth-child(2) .product-card-image::before {
  background: linear-gradient(135deg, #38bdf8, #7dd3fc);
}

.product-card:nth-child(3) .product-card-image::before {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.product-card:nth-child(4) .product-card-image::before {
  background: linear-gradient(135deg, #fbbf24, #fde68a);
}

.product-card:nth-child(5) .product-card-image::before {
  background: linear-gradient(135deg, #a78bfa, #c4b5fd);
}

.product-card:hover .product-card-image::before {
  opacity: 0.15;
}

.product-card-body {
  padding: var(--space-xl);
}

.product-card-tag {
  display: inline-block;
  background: rgba(255, 107, 0, 0.08);
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-sm);
}

.product-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--black);
}

.product-card p {
  font-size: 0.88rem;
  color: var(--gray-dark);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price-from {
  font-size: 0.8rem;
  color: var(--gray);
}

.product-price-from strong {
  font-size: 1.2rem;
  color: var(--black);
  font-weight: 700;
}

.btn-order {
  background: var(--gradient-orange);
  color: var(--white);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.btn-order:hover {
  box-shadow: 0 4px 15px var(--orange-glow);
  transform: scale(1.05);
}

/* ===========================
   CALCULATOR MODAL
   =========================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

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

.modal {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-xl);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px) scale(0.95);
  transition: var(--transition-normal);
  box-shadow: var(--shadow-xl);
}

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

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-xl) var(--space-xl) var(--space-md);
  border-bottom: 1px solid var(--gray-border);
}

.modal-header h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--black);
}

.modal-close {
  background: var(--gray-bg);
  border-radius: var(--radius-full);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-dark);
  font-size: 1.2rem;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background: var(--orange);
  color: var(--white);
}

.modal-body {
  padding: var(--space-xl);
}

/* Form Styles */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group select,
.form-group input {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-sm);
  padding: var(--space-md) var(--space-lg);
  color: var(--black);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23555555' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select:focus,
.form-group input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

/* Price Display */
.price-display {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.05) 0%, rgba(255, 107, 0, 0.02) 100%);
  border: 1px solid rgba(255, 107, 0, 0.15);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  text-align: center;
  margin-top: var(--space-lg);
}

.price-label {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-xs);
}

.price-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--black);
}

.price-value .currency {
  font-size: 1.2rem;
  color: var(--orange);
}

.price-per-unit {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: var(--space-xs);
}

.btn-add-cart {
  width: 100%;
  background: var(--gradient-orange);
  color: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  margin-top: var(--space-lg);
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.btn-add-cart:hover {
  box-shadow: 0 4px 15px var(--orange-glow);
  transform: translateY(-2px);
}

.btn-add-cart:active {
  transform: translateY(0);
}

/* ===========================
   CART SIDEBAR
   =========================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

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

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -460px;
  width: 460px;
  max-width: 100vw;
  height: 100vh;
  background: var(--white);
  border-left: 1px solid var(--gray-border);
  z-index: 3001;
  transition: var(--transition-slow);
  display: flex;
  flex-direction: column;
}

.cart-sidebar.active {
  right: 0;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-xl);
  border-bottom: 1px solid var(--gray-border);
  flex-shrink: 0;
}

.cart-header h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--black);
}

.cart-header .item-count {
  background: var(--orange);
  color: white;
  border-radius: var(--radius-full);
  padding: 2px 10px;
  font-size: 0.75rem;
  font-weight: 700;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-lg);
}

.cart-empty {
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
}

.cart-empty .icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  opacity: 0.3;
}

.cart-empty p {
  color: var(--gray);
  font-weight: 500;
}

.cart-empty small {
  color: var(--gray-light);
  font-size: 0.85rem;
}

/* Cart Item */
.cart-item {
  background: var(--gray-bg);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
  transition: var(--transition-fast);
}

.cart-item:hover {
  border-color: var(--orange);
}

.cart-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-sm);
}

.cart-item-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--black);
}

.cart-item-remove {
  background: transparent;
  color: var(--gray-light);
  font-size: 1rem;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.cart-item-remove:hover {
  background: #fee2e2;
  color: #ef4444;
}

.cart-item-details {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs) var(--space-md);
  margin-bottom: var(--space-sm);
  font-size: 0.8rem;
  color: var(--gray-dark);
}

.cart-item-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--orange);
}

/* Cart Footer */
.cart-footer {
  border-top: 1px solid var(--gray-border);
  padding: var(--space-xl);
  flex-shrink: 0;
  background: var(--gray-bg);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-lg);
}

.cart-total-label {
  font-weight: 700;
  font-size: 1rem;
  color: var(--black);
}

.cart-total-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
}

.cart-total-value .currency {
  font-size: 1rem;
}

.customer-info {
  margin-bottom: var(--space-lg);
  position: relative;
}

.customer-info .form-group {
  margin-bottom: var(--space-md);
}

.customer-info .form-group label {
  font-size: 0.75rem;
  color: var(--gray-dark);
}

.customer-info .form-group input {
  background: var(--white);
  border: 1px solid var(--gray-border);
  padding: var(--space-sm) var(--space-md);
  font-size: 0.9rem;
}

.cart-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.btn-whatsapp:hover {
  background: #1fba59;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-email {
  background: var(--white);
  border: 1px solid var(--gray-border);
  color: var(--black);
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.btn-email:hover {
  background: var(--gray-bg);
  border-color: var(--gray);
  transform: translateY(-2px);
}

/* ===========================
   ANTI-BOT SLIDER CAPTCHA
   =========================== */
.captcha-container {
  margin-bottom: var(--space-lg);
}

.captcha-label {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-sm);
}

.captcha-label .shield {
  font-size: 1rem;
}

.captcha-slider {
  position: relative;
  width: 100%;
  height: 52px;
  background: var(--gray-bg);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
}

.captcha-slider.verified {
  border-color: rgba(16, 185, 129, 0.5);
  background: rgba(16, 185, 129, 0.05);
}

.captcha-track {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.captcha-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.5px;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.captcha-text .arrows {
  animation: slideArrows 1.5s ease-in-out infinite;
}

.captcha-slider.verified .captcha-text {
  opacity: 0;
}

.captcha-thumb {
  position: absolute;
  left: 4px;
  top: 4px;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: grab;
  transition: none;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.captcha-thumb:active {
  cursor: grabbing;
}

.captcha-slider.verified .captcha-thumb {
  background: var(--accent-green);
  border-color: var(--accent-green);
  transition: var(--transition-normal);
  cursor: default;
}

.captcha-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 48px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.02) 100%);
  border-radius: var(--radius-sm);
  z-index: 1;
  transition: none;
}

.captcha-slider.verified .captcha-fill {
  transition: var(--transition-normal);
}

.captcha-success {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-green);
  opacity: 0;
  transition: var(--transition-normal);
  z-index: 3;
  pointer-events: none;
  gap: var(--space-sm);
}

.captcha-slider.verified .captcha-success {
  opacity: 1;
}

/* Buttons locked state */
.cart-actions .btn-whatsapp.locked,
.cart-actions .btn-email.locked {
  opacity: 0.35;
  pointer-events: none;
  filter: grayscale(0.5);
}

/* Honeypot */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
  pointer-events: none;
}

@keyframes slideArrows {

  0%,
  100% {
    transform: translateX(0);
    opacity: 0.5;
  }

  50% {
    transform: translateX(6px);
    opacity: 1;
  }
}

/* ===========================
   FEATURES SECTION — Light gray bg
   =========================== */
.features {
  padding: 80px 0;
  background: var(--gray-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  transition: var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-lg);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--black);
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--gray-dark);
  line-height: 1.6;
}

/* ===========================
   HOW IT WORKS — White bg
   =========================== */
.how-it-works {
  padding: 80px 0;
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.step-item {
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--gradient-orange);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto var(--space-lg);
  box-shadow: 0 4px 12px var(--orange-glow);
}

.step-item h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--black);
}

.step-item p {
  font-size: 0.88rem;
  color: var(--gray-dark);
  line-height: 1.6;
}

/* ===========================
   FOOTER — Light gray
   =========================== */
.footer {
  background: var(--gray-bg);
  padding: 60px 0 30px;
  border-top: 1px solid var(--gray-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand p {
  color: var(--gray-dark);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: var(--space-md);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-normal);
}

.footer-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-2px);
}

.footer-column h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--black);
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: var(--space-sm);
}

.footer-column a {
  color: var(--gray-dark);
  font-size: 0.88rem;
  transition: var(--transition-fast);
}

.footer-column a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid var(--gray-border);
  padding-top: var(--space-xl);
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray);
}

/* ===========================
   FLOATING WHATSAPP
   =========================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: var(--transition-normal);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* ===========================
   TOAST
   =========================== */
.toast {
  position: fixed;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: var(--white);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transition: var(--transition-slow);
}

.toast.show {
  bottom: 100px;
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
}

/* ===========================
   TOGGLE SWITCH
   =========================== */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: var(--gray-light);
  transition: .3s;
  border-radius: 24px;
}
.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}
input:checked + .toggle-slider {
  background-color: var(--orange);
}
input:checked + .toggle-slider:before {
  transform: translateX(20px);
}

/* ===========================
   RESPONSIVE — Mobile First
   =========================== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-visual {
    display: none;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .features-grid,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

@media (max-width: 768px) {
  .navbar-menu {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    padding: var(--space-xl);
    gap: var(--space-lg);
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition-normal);
    border-bottom: 1px solid var(--gray-border);
  }

  .navbar-menu.active {
    transform: translateY(0);
    opacity: 1;
  }

  .menu-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero {
    min-height: 360px;
    padding: var(--space-2xl) 0;
  }

  .hero-stats {
    gap: var(--space-xl);
  }

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

  .products-grid {
    grid-template-columns: 1fr;
  }

  .features-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .cart-sidebar {
    width: 100vw;
    right: -100vw;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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