/* Must include */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* Ensure all images are responsive */
img {
  max-width: 100%;
  height: auto;
}

/* Prevent horizontal overflow — clip does not create a scroll container so position:sticky works */
body, html {
  overflow-x: clip;
  max-width: 100vw;
}

:root {
  --primary: #FFFFFF;         /* clean white background */
  --secondary: #F4F4F6;       /* very light grey for sections/cards */
  --accent: #703bbe;          /* electric blue — main CTA color */
  --accent-light: #8854d0;    /* lighter blue for hovers */
  --text-main: #0A0A1A;       /* deep navy for main text */
  --text-muted: #5A5A72;      /* muted text */
  --purple-hint: #7B5EA7;     /* subtle purple to echo product */
  --gradient: linear-gradient(135deg, #703bbe, #7B5EA7);
  --border-color: rgba(0, 0, 0, 0.08);
}

body {
  background: var(--primary);
  color: var(--text-main);
  font-family: 'Unbounded', sans-serif;
  overflow-x: clip;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Reusable classes */
.btn-primary { 
  background: var(--accent); 
  color: white; 
  padding: 14px 32px; 
  border-radius: 10px; 
  font-family: 'Unbounded', sans-serif; 
  font-weight: 600; 
  border: 1px solid rgba(0, 0, 0, 0.1); 
  cursor: pointer; 
  transition: all 0.3s ease; 
  display: inline-block;
  text-decoration: none;
  text-align: center;
}
.btn-primary:hover { 
  background: var(--accent-light); 
  transform: translateY(-2px); 
  box-shadow: 0 4px 15px rgba(112, 59, 190, 0.3);
}
.btn-outline { 
  background: transparent; 
  border: 1px solid var(--accent); 
  color: var(--accent); 
  padding: 14px 32px; 
  border-radius: 10px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}
.btn-outline:hover {
  background: rgba(112, 59, 190, 0.05);
  transform: translateY(-2px);
}
.section { padding: 100px 0; }
.pt-0 { padding: 40px 0 60px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; margin-bottom: 60px; text-align: center; color: var(--text-main); }
.why-content .section-title { 
  text-align: left; 
  margin-bottom: 20px;
  white-space: nowrap;
}
.video-testimonials .section-title {
  font-size: clamp(1.2rem, 3vw, 2rem);
  white-space: nowrap;
  margin-bottom: 40px;
  line-height: 1.2;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  text-decoration: none;
  letter-spacing: 0.05em;
}
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

/* Ensure nav links are positioned correctly on desktop */
@media (min-width: 769px) {
  .nav-links {
    position: static !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    width: auto !important;
    max-height: none !important;
    height: auto !important;
    flex-direction: row !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    transform: none !important;
    transition: none !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
}
.nav-links a:not(.btn-primary) {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.3s ease;
}
.nav-links a:not(.btn-primary):hover {
  color: var(--accent);
}
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  width: 100%;
  height: 500px;
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-color: var(--primary);
  background-image: url('../assets/desktop_banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  background: var(--gradient);
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.15;
  z-index: -1;
  transform: translate(-50%, -50%);
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
}
.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 600px; /* Reduced max-width since it's now on the side */
}
.hero-text h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: 24px;
  font-weight: 900;
  color: #FFFFFF;
  text-transform: uppercase;
  text-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.hero-text p {
  font-size: 1.25rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  max-width: 550px;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
.hero-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}
.hero .btn-primary {
  background: #FFFFFF;
  color: var(--accent);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  font-weight: 700;
  padding: 20px 45px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.hero .btn-primary:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  background: #FFFFFF;
  color: var(--accent-light);
}
.product-image {
  width: 100%;
  max-width: 400px;
}

.product-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.product-placeholder {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, #F8F9FF, #F4F0F9);
  border: 1px solid rgba(112, 59, 190, 0.1);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
}
.product-placeholder span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.7;
}

/* Trust Bar */
.trust-bar {
  background: linear-gradient(135deg, #F8F4FF, #F0E8FF);
  padding: 5px 0;
  overflow: hidden;
  position: relative;
}
.marquee-content {
  display: flex;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 30px;
  font-size: 1.3rem;
  color: var(--text-main);
  font-weight: 700;
  white-space: nowrap;
  background: transparent;
  padding: 15px 25px;
  border-radius: 50px;
}
.marquee-item i {
  color: var(--accent);
  font-size: 1.5rem;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* How It Works */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.step-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.step-card:hover {
  transform: translateY(-3px);
}
.step-content {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex: 1;
}
.step-text {
  flex: 1;
}
.step-text h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
}
.step-text p {
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
.step-image {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 15px;
  overflow: hidden;
  flex-shrink: 0;
}
.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: var(--text-main);
}
.step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Benefits / Features */
.why-section {
  background: linear-gradient(135deg, #F8F4FF, #F0E8FF);
  padding: 60px 0;
}

.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.why-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.why-feature i {
  font-size: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.why-feature h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--text-main);
}

.why-feature p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.why-image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(112, 59, 190, 0.1);
}

/* Video Testimonials */
.video-testimonials {
  background: var(--primary);
}

/* How It Works Section */
#how-it-works {
  background: linear-gradient(135deg, #F8F4FF, #F0E8FF);
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(135deg, #F8F4FF, #F0E8FF);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.video-card {
  background: var(--primary);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.video-thumbnail {
  position: relative;
  aspect-ratio: 9/16;
  background: linear-gradient(145deg, #F8F9FF, #F4F0F9);
  overflow: hidden;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--text-muted);
}

.video-placeholder i {
  font-size: 3rem;
  margin-bottom: 10px;
  color: var(--accent);
}

.video-placeholder span {
  font-size: 0.9rem;
  font-weight: 600;
}

.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 15px;
  color: white;
}

.views {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  margin-bottom: 8px;
  opacity: 0.9;
}

.video-title {
  font-size: 0.9rem;
  line-height: 1.3;
  margin: 0;
  font-weight: 500;
}

.video-info {
  padding: 15px;
}

.product-mini {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-img-placeholder {
  width: 40px;
  height: 40px;
  background: linear-gradient(145deg, #F8F9FF, #F4F0F9);
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.product-details p {
  margin: 0;
}

.product-name {
  font-size: 0.85rem;
  color: var(--text-main);
  font-weight: 600;
}

.product-price {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 700;
}

.original-price {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 5px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.feature-card {
  background: var(--primary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}
.feature-card:hover {
  border-color: rgba(112, 59, 190, 0.2);
  box-shadow: 0 15px 30px rgba(112, 59, 190, 0.08);
  transform: translateY(-5px);
}
.feature-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 24px;
}
.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: var(--text-main);
}
.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Product Highlight */
.product-highlight {
  background: radial-gradient(circle at center, rgba(123, 94, 167, 0.03) 0%, transparent 70%);
  padding: 120px 0;
}
.product-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.product-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.tag {
  background: var(--secondary);
  color: var(--text-main);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
}
.product-info h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--text-main);
}
.product-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 24px;
}
.product-info p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 60px;
}
.testimonial-card {
  background: var(--primary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.stars {
  color: #FFB800;
  margin-bottom: 20px;
}
.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 24px;
  color: var(--text-main);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--secondary);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}
.author-info h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--text-main);
  white-space: nowrap;
}
.author-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: 24px 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out, margin 0.3s ease-out;
  color: var(--text-muted);
  line-height: 1.6;
  opacity: 0;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  margin-top: 16px;
  opacity: 1;
  transition: max-height 0.4s ease-out, opacity 0.3s ease-out, margin 0.3s ease-out;
}
.faq-icon {
  transition: transform 0.3s ease;
  color: var(--text-main);
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
/* FAQ Support Box */
.faq-support-box {
  background: var(--accent);
  color: white;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  margin-top: 40px;
}
.faq-support-box h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: white;
}
.faq-support-box p {
  font-size: 1rem;
  margin-bottom: 20px;
  opacity: 0.9;
}
.faq-support-box a {
  color: white;
  text-decoration: underline;
  font-weight: 600;
  font-size: 1rem;
}
.faq-support-box a:hover {
  opacity: 0.8;
}

/* About page stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
  text-align: center;
}

@media (max-width: 600px) {
  .about-stats {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 40px;
  }
}

/* Tutorial Video Section */
.tuto-section {
  background: var(--primary);
}

.tuto-video-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.tuto-video-wrapper video {
  width: 100%;
  max-width: 720px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(112, 59, 190, 0.25);
  display: block;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9998;
  transition: bottom 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.whatsapp-float i {
  font-size: 1.8rem;
  color: #fff;
}

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

/* Instagram Section */
.instagram-section {
  background: var(--primary);
  padding: 80px 0;
}
.instagram-header {
  text-align: center;
  margin-bottom: 50px;
}
.instagram-header .section-title {
  margin-bottom: 15px;
}
.instagram-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}
.instagram-item {
  aspect-ratio: 1;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.instagram-item:hover img {
  transform: scale(1.05);
}
.instagram-cta {
  text-align: center;
}
.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.btn-instagram:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}
/* Page Headers */
.page-header {
  padding: 150px 0 80px;
  text-align: center;
  background: radial-gradient(circle at top, rgba(112, 59, 190, 0.05) 0%, transparent 70%);
}
.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--text-main);
  margin-bottom: 20px;
}
.page-header p {
  color: var(--text-muted);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* About Page */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}
.value-card {
  text-align: center;
  padding: 40px 20px;
  background: var(--primary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}
.value-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 20px;
}
.about-image {
  width: 100%;
  height: 400px;
  background: linear-gradient(145deg, #F8F9FF, #F4F0F9);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 60px 0;
  color: var(--text-muted);
  font-weight: 700;
  border: 1px solid rgba(112, 59, 190, 0.1);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}
.product-card {
  background: var(--primary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(112, 59, 190, 0.1);
  border-color: rgba(112, 59, 190, 0.2);
}
.product-card-img {
  height: 300px;
  background: linear-gradient(145deg, #F8F9FF, #F4F0F9);
  border-radius: 15px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-muted);
  font-weight: 600;
}
.product-card h3 {
  color: var(--text-main);
  margin-bottom: 10px;
}
.product-card .price {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* Single Product Page */
.product-gallery {
  display: grid;
  gap: 20px;
}
.main-image {
  height: 500px;
  background: linear-gradient(145deg, #F8F9FF, #F4F0F9);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-muted);
  font-weight: 600;
  border: 1px solid rgba(112, 59, 190, 0.1);
}
.thumbnails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.thumb {
  height: 100px;
  background: var(--secondary);
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid var(--border-color);
  transition: border-color 0.3s ease;
}
.thumb:hover {
  border-color: var(--accent);
}
.qty-selector {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}
.qty-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--primary);
  color: var(--text-main);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.qty-btn:hover {
  background: var(--secondary);
}
.qty-input {
  width: 50px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  border: none;
  background: transparent;
  color: var(--text-main);
}
.payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 12px 20px;
  background: rgba(39, 174, 96, 0.1);
  color: #27ae60;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Tabs */
.tabs-container {
  margin-top: 60px;
}
.tabs-nav {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 30px;
}
.tab-btn {
  background: none;
  border: none;
  padding: 10px 0;
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}
.tab-btn:hover {
  color: var(--text-main);
}
.tab-btn.active {
  color: var(--accent);
}
.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
}
.tab-content {
  display: none;
  color: var(--text-muted);
  line-height: 1.6;
  animation: fadeIn 0.4s ease;
}
.tab-content.active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Forms */
.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--primary);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-main);
  font-size: 0.9rem;
}
.form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  font-family: 'Unbounded', sans-serif;
  background: var(--secondary);
  color: var(--text-main);
  transition: all 0.3s ease;
}
.form-control:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(112, 59, 190, 0.1);
}
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%230A0A1A%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 15px top 50%;
  background-size: 12px auto;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.info-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

/* Footer */
.footer {
  background: var(--secondary);
  padding: 80px 0 40px;
  border-top: 1px solid var(--border-color);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand p {
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 300px;
  line-height: 1.6;
}
.footer-links h4 {
  margin-bottom: 24px;
  font-size: 1.1rem;
  color: var(--text-main);
}
.footer-links ul {
  list-style: none;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--accent);
}
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-main);
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-3px);
}
.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .hero {
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 50%), url('../assets/mobile_banner.png');
    background-size: cover;
    margin: 80px auto 0;
    padding-top: 60px;
    align-items: flex-start;
  }
  .hero-content {
    align-items: flex-start;
  }
  .hero-text h1 {
    font-size: 0.95rem;
    line-height: 1.3;
  }
  .hero-buttons {
    margin-top: 15px;
  }
  .hero-buttons .btn-primary {
    padding: 12px 6px;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
  }
  .product-split form {
    text-align: left !important;
  }
  .product-split form label {
    display: block !important;
    text-align: left !important;
  }
  .hero-content, .product-split, .contact-grid, .product-highlight {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    align-items: center !important;
    gap: 40px !important;
  }
  .product-image img {
    width: 100% !important;
    max-width: 400px !important;
    margin: 0 auto !important;
  }
  .product-info {
    text-align: center !important;
    padding: 0 15px !important;
  }
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
  }
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    text-align: center !important;
  }
  .hero-text {
    align-items: flex-start;
  }
  .hero-text p {
    margin: 0 auto 30px;
  }
  .hero-buttons {
    justify-content: center;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .why-split {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 40px;
  }
  .why-content {
    align-items: flex-start;
  }
  .why-feature {
    flex-direction: row;
    text-align: left;
    gap: 15px;
  }
  .why-content .section-title {
    text-align: left;
    white-space: normal;
  }
  .why-image {
    order: -1;
  }
  .video-testimonials .section-title {
    font-size: 1.5rem;
    white-space: normal;
    text-align: left;
    margin-bottom: 20px;
  }
  .video-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 15px;
    /* Custom purple scrollbar for mobile */
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
  }
  .video-grid::-webkit-scrollbar {
    display: block;
    height: 4px;
  }
  .video-grid::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
  }
  .video-grid::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
  }
  .video-card {
    min-width: 65%;
    scroll-snap-align: center;
  }
  .product-tags {
    justify-content: center;
  }
  .qty-selector {
    justify-content: center;
  }
  .tabs-nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  .info-item {
    flex-direction: column;
    text-align: center;
  }
  .page-header {
    padding: 120px 0 60px;
  }
}

/* Desktop nav (inside navbar, hidden on mobile) */
.desktop-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}
.desktop-nav a:not(.btn-primary) {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.3s ease;
}
.desktop-nav a:not(.btn-primary):hover {
  color: var(--accent);
}

/* Desktop styles */
@media (min-width: 769px) {
  .menu-close {
    display: none !important;
  }
  .menu-social {
    display: none !important;
  }
  .menu-items {
    display: contents !important;
  }
  .nav-links::before {
    display: none !important;
  }
  /* mobile sheet stays hidden on desktop */
  .nav-links {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .desktop-nav {
    display: none !important;
  }
}

/* Mobile Menu Overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .navbar {
    z-index: 1001;
  }
  .container {
    padding: 0 20px;
  }
  .section {
    padding: 60px 0;
  }
  .section-title {
    margin-bottom: 40px;
    font-size: 2rem;
  }
  /* ── Bottom-sheet mobile menu ── */
  .nav-links {
    display: flex !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    width: 100vw !important;
    max-width: 100% !important;
    max-height: 88vh;
    background: #fff !important;
    flex-direction: column !important;
    padding: 0 !important;
    gap: 0 !important;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -8px 40px rgba(0,0,0,0.15);
    z-index: 10100;
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateY(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1),
                visibility 0s linear 0.38s;
  }
  .nav-links.active {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1),
                visibility 0s linear 0s;
  }

  /* close button */
  .menu-close {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: absolute !important;
    top: 16px !important;
    right: 20px !important;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f3f4f6 !important;
    border: none !important;
    cursor: pointer;
    font-size: 1.1rem !important;
    color: var(--text-main) !important;
    z-index: 10101;
  }

  /* drag handle */
  .nav-links::before {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    margin: 14px auto 0;
    flex-shrink: 0;
  }

  /* links wrapper */
  .menu-items {
    display: flex;
    flex-direction: column;
    padding: 48px 32px 24px;
    gap: 0;
  }

  .menu-items a,
  .menu-items a[style] {
    font-size: 1.6rem !important;
    font-weight: 800 !important;
    color: var(--text-main) !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    letter-spacing: -0.5px !important;
    padding: 14px 0 !important;
    border-bottom: 1px solid #f3f4f6 !important;
    display: block !important;
    background: transparent !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    border-radius: 0 !important;
    transition: color 0.2s ease !important;
  }
  .menu-items a:last-child {
    border-bottom: none !important;
  }
  .menu-items a:active,
  .menu-items a:hover {
    color: var(--accent) !important;
  }

  /* override btn-primary inside menu */
  .menu-items .btn-primary {
    margin-top: 8px !important;
    background: var(--accent) !important;
    color: #fff !important;
    text-align: center !important;
    border-radius: 12px !important;
    padding: 16px 0 !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    border: none !important;
  }

  /* social icons row */
  .menu-social {
    display: flex;
    gap: 20px;
    padding: 0 32px 36px;
    margin-top: auto;
  }
  .menu-social a {
    font-size: 1.6rem;
    color: var(--text-main);
    transition: color 0.2s ease;
    pointer-events: auto;
  }
  .menu-social a:hover { color: var(--accent); }

  .hamburger {
    display: block;
    z-index: 10001;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    pointer-events: auto;
  }
  .menu-close {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    font-size: 1.5rem;
    color: var(--text-main);
    z-index: 10101;
  }
  .hide-mobile {
    display: none !important;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 100%;
    text-align: left;
  }
  .step-card {
    text-align: left;
    align-items: flex-start;
  }
  .step-text {
    text-align: left;
  }
  .step-text h3 {
    text-align: left;
  }
  .step-text p {
    text-align: left;
  }
  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
  }
  /* Product page responsive */
  .product-detail-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  .product-gallery {
    position: static !important;
    margin-bottom: 20px;
  }
  .product-info h2 {
    font-size: 1.8rem;
  }
  .product-price {
    font-size: 1.5rem;
  }
  /* Products grid */
  .products-grid {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }
  /* About page */
  .about-image {
    height: 250px;
    margin: 40px 0;
  }
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .info-item {
    flex-direction: column !important;
    text-align: center !important;
  }
  /* Forms responsive */
  #order-form div[style*="display: flex; gap: 15px"]:not(.product-price),
  .form-row {
    flex-direction: column !important;
  }
  /* Product options */
  .option-card {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }
  .option-card > div {
    width: 100% !important;
  }
  .step-card {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 25px;
  }
  .step-content {
    justify-content: center;
    text-align: center;
  }
  .step-image {
    width: 100%;
    aspect-ratio: 1/1;
  }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .testimonial-card {
    min-width: unset;
    padding: 15px;
    background: var(--secondary);
    border: none;
  }
  .testimonial-text {
    font-size: 0.85rem;
    margin-bottom: 15px;
  }
  .testimonial-author {
    gap: 10px;
  }
  .author-avatar {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  .author-info h4 {
    font-size: 0.85rem;
  }
  .author-info p {
    font-size: 0.7rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .footer-brand p {
    margin: 16px auto 0;
  }
  .footer-social {
    justify-content: center;
  }
  .product-info h2 {
    font-size: 1.5rem;
  }
  .product-price {
    font-size: 1.5rem;
  }
  .main-image {
    height: 350px;
  }
  .about-image {
    height: 250px;
    margin: 40px 0;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero {
    height: 400px !important;
  }
  .hero-text h1 {
    font-size: 1.7rem !important;
    line-height: 1.1 !important;
  }
  .hero-text p {
    font-size: 1rem !important;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  .btn-primary, .btn-outline {
    width: 100%;
  }
  .section {
    padding: 40px 0 !important;
  }
  .section-title {
    font-size: 1.7rem !important;
    line-height: 1.2 !important;
  }
  .thumbnails {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px;
  }
  .form-container {
    padding: 20px 15px;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .product-card-img {
    height: 250px;
  }
  .video-grid {
    grid-template-columns: 1fr !important;
    gap: 15px;
  }
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .marquee-item {
    font-size: 1rem !important;
    padding: 12px 20px !important;
  }
  .faq-question {
    font-size: 0.95rem !important;
  }
  .page-header h1 {
    font-size: 2rem !important;
  }
  .page-header p {
    font-size: 1rem !important;
  }
}

/* ===========================
   ORDER SUCCESS MODAL
=========================== */

.order-success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.order-success-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.order-success-modal {
  background: #fff;
  border-radius: 24px;
  padding: 48px 40px 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.order-success-overlay.open .order-success-modal {
  transform: translateY(0) scale(1);
}

.order-success-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: #f4f4f6;
  color: #5a5a72;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.order-success-close:hover {
  background: #ede9f7;
  color: var(--accent);
}

.order-success-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #703bbe, #8854d0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
}

.order-success-modal h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0a0a1a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.order-success-modal p {
  font-size: 0.95rem;
  color: #5a5a72;
  line-height: 1.6;
}

.order-success-btn {
  margin-top: 28px;
  display: inline-block;
  padding: 13px 36px;
  background: linear-gradient(135deg, #703bbe, #8854d0);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}

.order-success-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(112, 59, 190, 0.4);
}

@media (max-width: 480px) {
  .order-success-modal {
    padding: 40px 24px 32px;
    border-radius: 20px;
  }
  .order-success-modal h2 { font-size: 1.2rem; }
  .order-success-icon { width: 60px; height: 60px; font-size: 1.6rem; }
}

/* ── Home order form ─────────────────────────────────────────────── */
.home-form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.home-form-label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.9rem;
  font-weight: 600;
}

@media (max-width: 480px) {
  .home-form-row {
    flex-direction: column;
    gap: 0;
  }
  .home-form-row > div {
    margin-bottom: 15px;
  }
}
