* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}


body {
  font-family: "Inter", sans-serif;
}


.main-wrapper {
  background: radial-gradient(circle at top left, #2b114f, #000 60%);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 35px 60px;
  position: relative;
}


.site-header .nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #ec4899, #6366f1);
  padding: 10px 27px;
    border-radius: 999px;
}


.site-header .nav-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 20px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
}

.site-header .contact-btn {
  background: linear-gradient(90deg, #ec4899, #6366f1);
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 20px;
  text-align: center;
  color: #fff !important;
  font-weight: 500;
  white-space: nowrap;
}


.hamburger {
  display: none;
}

.mobile-drawer {
  display: none;
}


.hero {
  display: flex;
  align-items: center;
  padding: 50px 55px;
  color: #fff;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;

}

.hero-badge {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  color: #C850C0;
  margin-bottom: 20px;
}


.hero-content h1 {
  font-size: 70px;
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.02em;
}


/* Shared animated text */
.animate-text {
  background-size: 300% 300%;
  animation: gradientMove 4s ease-in-out infinite;
  display: inline-block;
}

/* Blue animated gradient */
.text-blue {
  background-image: linear-gradient(
    120deg,
    #4158d0,
    #5D3FD3,
    #ffffff,
    #4158d0
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Pink animated gradient */
.text-pink {
  background-image: linear-gradient(
    120deg,
    #c850c0,
    #ff9adf,
    #ffffff,
    #c850c0
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Animation */
@keyframes gradientMove {
  0%   { background-position:   0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position:   0% 50%; }
}



.hero-content p {
  font-size: 20px;
  line-height: 32px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
}


.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn-primary {
  background: rgba(200, 80, 192, 1);
  padding: 16px 36px;
  border-radius: 40px;
  color: #fff;
  text-decoration: none;

}


.hero-product {
  background: radial-gradient(circle, #12002a, #000);
  border-radius: 20px;
  padding: 15px;
  display: block;
  text-align: center;
  position: relative;

}

.hero-product img {
  max-width: 100%;
  height: auto;

}

.about {
  background-image: url("WhatsApp Image 2025-09-05 at 08.48.56.jpeg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  color: #fff;
  padding: 90px 75px 120px;
  text-align: left;
  position: relative;
}



.about-content {
  position: relative;
  max-width: 700px;
  z-index: 1;
}

.about h1 {

  font-size: 60px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about p {

  font-size: 20px;
  line-height: 32px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 48px;
}

.btn {
  display: inline-block;
  background: rgba(200, 80, 192, 1);
  padding: 16px 36px;
  border-radius: 40px;
  color: #fff;
  text-decoration: none;

}


.precision {
  background: #0C0B0D;
  padding: 96px 80px;
  color: #fff;
}

.precision-heading {
  text-align: center;
  margin-bottom: 80px;
}

.precision-heading h2 {
  font-size: 60px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.precision-heading p {
  font-size: 20px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
}

.precision-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.precision-product {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 10px;
  display: flex;
  justify-content: center;
  height: 560px;
  position: relative;

}

.hotspot {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);   /* more transparent */
  border: 2px solid rgba(255,255,255,0.6); /* softer border */
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  z-index: 5;
  backdrop-filter: blur(2px); /* optional: glass effect */
}

.hotspot::after {
  content: "";
  width: 8px;                             /* slightly smaller */
  height: 8px;
  background: rgba(255, 255, 255, 0.6);  /* lighter / transparent */
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
}





.hotspot.active {
  background: rgba(200, 80, 192, 0.6);
  border-color: #C850C0;
  box-shadow: 0 0 18px #C850C0;
  transform: translate(-50%, -50%) scale(1.4);
}

.hotspot::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid rgba(200, 80, 192, 0.5);
  opacity: 0;
  animation: pulseRing 1.6s infinite;
}

.hotspot.active::before {
  opacity: 1;
}

@keyframes pulseRing {
  0% {
    transform: scale(0.6);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}


.base-device {
  width: 100%;
  display: block;
}


.precision-product img {
  max-width: 100%;
  object-fit: cover;
}

.precision-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
}



.feature-glass {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 22px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* Active state */
.feature-glass.active {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(200, 80, 192, 0.9);
  box-shadow:
    0 12px 45px rgba(200, 80, 192, 0.45),
    inset 0 0 22px rgba(200, 80, 192, 0.2);
}
.feature-glass::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -120%;
  width: 60%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.1) 45%,
    rgba(255,255,255,0.3) 50%,
    rgba(255,255,255,0.1) 55%,
    transparent 100%
  );
  transform: skewX(-20deg);
  opacity: 0;
  pointer-events: none;
}

.feature-glass:hover::after {
  animation: shimmerMove 0.9s ease forwards;
  opacity: 1;
}

@keyframes shimmerMove {
  from {
    left: -120%;
  }
  to {
    left: 140%;
  }
}


.feature-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      transparent 20%,
      rgba(200, 80, 192, 0.25),
      rgba(120, 90, 255, 0.35),
      transparent 80%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.feature-glass:hover::before,
.feature-glass.active::before {
  opacity: 1;
}

/* Hover card lift */
.feature-glass:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(200, 80, 192, 0.7);
  box-shadow:
    0 10px 40px rgba(200, 80, 192, 0.35),
    inset 0 0 20px rgba(200, 80, 192, 0.15);
}

/* ================= FEATURE ICON ================= */

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;

  transition:
    transform 0.5s cubic-bezier(.2,.8,.2,1),
    background 0.5s ease,
    box-shadow 0.5s ease;
}

/* Icon image */
.feature-icon img {
  width: 22px;
  height: auto;
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* Glow overlay */
.feature-icon::after {
  content: "";
  position: absolute;
  inset: -60%;
  background: radial-gradient(circle, rgba(255,255,255,0.4), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Animate icon when full card hovered */
.feature-glass:hover .feature-icon,
.feature-glass.active .feature-icon {
  transform: translateY(-6px) scale(1.15) rotate(6deg);
  background: linear-gradient(135deg, #ec4899, #6366f1);
  box-shadow:
    0 10px 30px rgba(236,72,153,0.6),
    inset 0 0 12px rgba(255,255,255,0.25);
}

.feature-glass:hover .feature-icon::after,
.feature-glass.active .feature-icon::after {
  opacity: 1;
}

.feature-glass:hover .feature-icon img,
.feature-glass.active .feature-icon img {
  transform: scale(1.15);
  filter: brightness(1.2);
}


.feature-text h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.9);
}

.feature-text p {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}



.flavor-lab {
  padding: 80px 60px;
  background: #0C0B0D;
  overflow: hidden;
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flavor h1 {
  font-size: 60px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 16px;
}

.flavor p {
  font-size: 20px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
}

.filters button {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.1);
  color: #ccc;
  padding: 10px 22px;
  border-radius: 30px;
  cursor: pointer;
  margin-left: 10px;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 700;
}

.filters button.active {
  background: #C850C0;
  color: white;
  border-color: transparent;
}

.cards-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 64px;
}

.card {
  width: 100%;
  padding: 24px 24px 0;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(200, 80, 192, 0.7);
    box-shadow: 0 10px 40px rgba(200, 80, 192, 0.35), inset 0 0 20px rgba(200, 80, 192, 0.15);
}



.product-images {
  height: 220px;
  margin-bottom: 20px;
}

.product-images img {
  height: 240px;
  object-fit: contain;
  display: block;
  margin: auto;
  transition: transform 0.5s ease;
  will-change: transform;
}
.product-images img:hover {
  transform: scale(1.1) rotate(2deg);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}



.product-split {
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  gap: 20px;
}

.product-col {
  display: flex;
  flex-direction: column;
  color: #fff;
}

/* Vertical divider */
.divider {
  width: 2px;
  height: 100%;
  background: rgba(255,255,255,0.5);
}




/* Mobile responsive */
@media (max-width: 768px) {
  .product-split {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .divider {
    width: 100%;
    height: 2px;
    margin-top: 20px;
  }
.product-desc{
  display: block !important;
  min-height: auto !important;
}
 
}





.badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 16px;
}

.badge {
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.badge.blue {
  background: #16B8F0;
  color: #fff;
}

.badge.yellow {
  background: #BA8520;
  color: #fff;

}

.badge.red {
   background: #C72728;
  color: #fff;

}


.product-desc {
  position: relative;
  padding: 12px;
  border-radius: 12px;
  font-size: 13px;
  color: #fff;
  background: rgba(0,0,0,0.55);
  margin-bottom: 15px;
  overflow: hidden;
  text-align: center;
  min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Border layer */
.product-desc::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

/* Soft glow layer */
.product-desc::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: .5;
  pointer-events: none;
}

/* ================= PURPLE STYLE ================= */

.product-desc.purple::before {
  background: linear-gradient(135deg, #ec4899, #6366f1);
}

.product-desc.purple::after {
  background: radial-gradient(
    circle at top left,
    rgba(236,72,153,.35),
    transparent 70%
  );
}

/* ================= RED STYLE ================= */

.product-desc.red::before {
  background: linear-gradient(135deg, #ff4d4d, #ff9f43);
}

.product-desc.red::after {
  background: radial-gradient(
    circle at top left,
    rgba(255,77,77,.35),
    transparent 70%
  );
}


.product-desc.gray::before {
  background: linear-gradient(135deg, #ffffff, #CACAC9, #9e9e9e);
}

.product-desc.gray::after {
  background: radial-gradient(
    circle at top left,
    rgba(202,202,201,.35),
    transparent 70%
  );
}

.product-desc.blue::before {
  background: linear-gradient(135deg, #6dd5fa, #1B9FCE, #0b5d82);
}

.product-desc.blue::after {
  background: radial-gradient(
    circle at top left,
    rgba(27,159,206,.45),
    transparent 70%
  );
  box-shadow: 0 0 16px rgba(27,159,206,.55);
}

/* ================= YELLOW STYLE (#facc15) ================= */

.product-desc.yellow::before {
  background: linear-gradient(135deg, #fff7cc, #facc15, #b58900);
}

.product-desc.yellow::after {
  background: radial-gradient(
    circle at top left,
    rgba(250,204,21,.45),
    transparent 70%
  );
  box-shadow: 0 0 16px rgba(250,204,21,.55);
}


/* ================= ROSE STYLE (#855052) ================= */

.product-desc.rose::before {
  background: linear-gradient(
    135deg,
    #c08b8e,
    #855052,
    #4a2a2c
  );
}

.product-desc.rose::after {
  background: radial-gradient(
    circle at top left,
    rgba(133,80,82,.45),
    transparent 70%
  );
  box-shadow: 0 0 16px rgba(133,80,82,.55);
}

/* ================= PURPLE STYLE (#B72EAF) ================= */

.product-desc.purple::before {
  background: linear-gradient(
    135deg,
    #f3a1ef,
    #B72EAF,
    #6b0f66
  );
}

.product-desc.purple::after {
  background: radial-gradient(
    circle at top left,
    rgba(183,46,175,.45),
    transparent 70%
  );
  box-shadow: 0 0 16px rgba(183,46,175,.55);
}

/* ================= GREEN STYLE (#2BA148) ================= */

.product-desc.green::before {
  background: linear-gradient(
    135deg,
    #a6f4c5,
    #2BA148,
    #0f4f22
  );
}

.product-desc.green::after {
  background: radial-gradient(
    circle at top left,
    rgba(43,161,72,.45),
    transparent 70%
  );
  box-shadow: 0 0 16px rgba(43,161,72,.55);
}

/* ================= OLIVE GOLD (#ADAA2A) ================= */

.product-desc.gold::before {
  background: linear-gradient(
    135deg,
    #f5f2a3,
    #ADAA2A,
    #6e6b12
  );
}

.product-desc.gold::after {
  background: radial-gradient(
    circle at top left,
    rgba(173,170,42,.45),
    transparent 70%
  );
  box-shadow: 0 0 16px rgba(173,170,42,.55);
}

/* ================= ROSE PINK (#BE788A) ================= */

.product-desc.rosepink::before {
  background: linear-gradient(
    135deg,
    #f7c1cf,
    #BE788A,
    #7a3f4f
  );
}

.product-desc.rosepink::after {
  background: radial-gradient(
    circle at top left,
    rgba(190,120,138,.45),
    transparent 70%
  );
  box-shadow: 0 0 16px rgba(190,120,138,.55);
}

/* ================= MAGENTA (#CE48B1) ================= */

.product-desc.magenta::before {
  background: linear-gradient(
    135deg,
    #f3a3e2,
    #CE48B1,
    #7a1c63
  );
}

.product-desc.magenta::after {
  background: radial-gradient(
    circle at top left,
    rgba(206,72,177,.45),
    transparent 70%
  );
  box-shadow: 0 0 16px rgba(206,72,177,.55);
}

/* ================= DEEP ROSE (#C22868) ================= */

.product-desc.rose::before {
  background: linear-gradient(
    135deg,
    #f6a0bf,
    #C22868,
    #6d0f36
  );
}

.product-desc.rose::after {
  background: radial-gradient(
    circle at top left,
    rgba(194,40,104,.45),
    transparent 70%
  );
  box-shadow: 0 0 16px rgba(194,40,104,.55);
}




.card h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
  text-align: center;
  transition: 0.4s ease;
}

.card:hover h2 {
  background: linear-gradient(90deg, rgb(236, 72, 153), rgb(99, 102, 241));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  
}



.flavor-chart {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 28px;
}

.radar-canvas {
  width: 220px;
  height: 220px;
  opacity: .4;
}

.card:hover .radar-canvas {
  opacity: 1;
  
}

.cta {
  width: 100%;
  padding: 8px;
  height: 40px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: white;
  background: linear-gradient(90deg, #ec4899, #6366f1);
  transition: .3s ease;
  font-family: "Inter", sans-serif;
  margin-top: auto;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(236, 72, 153, .5);
}


.card.hide {
  opacity: 0;
  transform: scale(.85);
  pointer-events: none;
  transition: .4s ease;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.section-two {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 65px 30px;
  color: white;
  background: radial-gradient(circle at 30% 50%, #5f28ff 0%, transparent 60%),
    radial-gradient(circle at 70% 50%, #ff3b8d 0%, transparent 60%),
    radial-gradient(circle at 50% 80%, #2d2dff 0%, transparent 70%);
  background-color: #000;

}

.section-image img {
  max-width: 740px;
  height: auto;

}

.section-text {
  max-width: 500px;
}

.section-text h2 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
}

.section-text p {
  font-size: 18px;
  line-height: 1.4;


}

.mixes {
  padding: 60px 80px;
  background: #0a0015;
  text-align: center;
  color: #fff;
}

.mixes h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 50px;
  letter-spacing: 2.1px;
}

.mixes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(267px, 1fr));
  gap: 40px;
}

.mix-card {
  border: 2px solid #2B2B2B;
  border-radius: 10px;
  padding: 20px;
  text-decoration: none;

}

.mix-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.mix-card p {
  font-size: 14px;
  font-weight: 600;

  color: #ddd;
}

.verification {
  text-align: center;
  background: linear-gradient(180deg, #000000, #0a0015);
  color: #fff;
  padding: 50px;
}

.verification h2 {
  font-size: 60px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 16px;
}

.verification p {
  font-size: 20px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);

  margin-bottom: 30px;
}

.verify-form {
  display: flex;
  justify-content: center;
}

.input-box {
  position: relative;
  width: 500px;
}

.input-box input {
  width: 100%;
  padding: 16px 140px 16px 20px;
  font-size: 18px;
  border: 1px solid #333;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  outline: none;
}

.input-box input::placeholder {
  color: #777;
}

.input-box button {
  position: absolute;
  top: 19%;
  right: 18px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  color: #fff;
  cursor: pointer;
  background: rgba(200, 80, 192, 1);
  border-radius: 40px;
  text-decoration: none;
  font-family: "Inter", sans-serif;

}

.contact {
  padding: 35px 20px;
  text-align: center;
  background: linear-gradient(180deg, #000000, #0a0015);
  color: #fff;
}

.contact h2 {
  font-size: 60px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.contact-form label {
  display: block;
  font-size: 20px;
  margin-bottom: 15px;
  color: #ddd;
  font-weight: 300;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  font-size: 20px;
  border: 1px solid #333;
  border-radius: 6px;
  background: transparent;
  color: #fff;
  outline: none;
}


.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #777;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #7b2fff;
  box-shadow: 0 0 8px rgba(123, 47, 255, 0.6);
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 20px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
}

.radio-option input[type="radio"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  background: transparent;
}

.radio-option input[type="radio"]:checked::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: rgba(200, 80, 192, 1);
  border-radius: 50%;
  top: 2px;
  left: 2px;
}

.radio-option label {
  font-size: 14px;
  color: #ccc;
  font-weight: 500;
  cursor: pointer;
}


.contact-form button {
  width: 100%;
  padding: 12px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  color: #fff;
  cursor: pointer;
  background: rgba(200, 80, 192, 1);
  border-radius: 40px;
  text-decoration: none;
  font-family: "Inter", sans-serif;
}

#successMessage {
  font-size: 20px;
  color: #fff;
  display: none;
  margin-top: 21px;

}

.footer {
  background: rgba(12, 11, 13, 1);
  color: #fff;
  padding: 60px 60px 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 80px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 24px;
}

.footer p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.footer small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.footer h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: rgba(65, 88, 208, 1);
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 17px;
}

.footer ul a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);

}

.footer-icons {
  display: flex;
  gap: 16px;
  margin: 0 0 24px;
}

.footer-icons img {
  width: 25px;
}


.newsletter {
  font-size: 12px;
  font-weight: 400;
}

.footer-bottom {
  margin-top: 20px;
}

.footer-bottom-top {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 40px;
}

.footer-links {
  
  justify-content: center;
  margin-top: 15px;
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
}

.footer-disclaimer {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px 30px;
  font-weight: 400;
  font-size: 10px;
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
}





/* ===== MOBILE HEADER ===== */

@media (max-width: 768px) {


/* Lock background scroll when mobile menu is open */
body.mobile-open {
  overflow: hidden;
  height: 100vh;
  touch-action: none;
}

/* iOS Safari fix */
html.mobile-open,
body.mobile-open {
  position: fixed;
  width: 100%;
}


.mobile-drawer {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 70% 90%, rgba(99,102,241,.25), transparent 60%),
    radial-gradient(circle at 30% 70%, rgba(236,72,153,.35), transparent 60%),
    #000;
  padding: 28px 24px 40px;
  transform: translateY(-100%);
  transition: .5s ease;
  z-index: 10050;
  display: flex;
  flex-direction: column;
}

/* Active drawer */
.mobile-drawer.active {
  transform: translateY(0);
}

/* Hide header when drawer open */
.mobile-open .site-header {
  opacity: 0;
  pointer-events: none;
}

/* Drawer header */
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
}

.drawer-close {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  transition: .3s ease;
}

.drawer-close:hover {
  background: rgba(255,255,255,0.1);
}

/* Menu links */
.drawer-links {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.drawer-links a {
  font-size: 18px;
  color: #fff;
  text-decoration: none;
}


.drawer-contact {
  margin-top: 30px;
}

.drawer-contact a {
  display: block;
  text-align: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ec4899, #6366f1);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

  .site-header {
    padding: 40px 30px;
  }

  .site-header .nav-links,
  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    width: 28px;
    gap: 6px;
    cursor: pointer;
    z-index: 10060;
  }

  .hamburger span {
    height: 3px;
    background: #fff;
    border-radius: 2px;
  }

  /* Hide hamburger when drawer open */
  .mobile-open .hamburger {
    opacity: 0;
    pointer-events: none;
  }
}





@media (max-width: 768px) {


  /* HERO */
  .hero {
    padding: 20px 20px 50px;
    min-height: auto;
  }

  .hero-inner {
    display: block;
  }

  .hero-content {
    display: block;
    text-align: center;
  }

  .hero-badge{
    margin-bottom: 30px;
    width: 100%;
    bottom: -33%;
  }

  .hero-content h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 30px;
  }

  .hero-content p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 45px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary {
    padding: 12px 36px;
  }

  .btn-secondary {
    padding: 12px 36px;
  }

  .hero-product {
    padding: 10px;
    margin-top: 30px;
  }


  .about {
    background-image: none;
    padding:  50px 20px;
    background-position: center;
    text-align: center;
    background: radial-gradient(circle at bottom right, #2b114f, #000 60%);
    }
  

  .about h1 {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .about p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0;
  }

  .btn {
    display: block;
    padding: 12px 36px;
  }

  /* PRECISION */
  .precision {
    padding: 60px 20px;
  }

  .precision-heading h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .precision-heading p {
    font-size: 16px;
   line-height: 26px;
}

  .precision-grid {
    display: block;

  }

  .precision-product {
    padding: 0px;
    height: 365px;
    margin-bottom: 30px;
  }

  .precision-features {
   
    gap: 30px;
}

  .feature-glass {
    padding: 20px;
  }

  .feature-icon {
    width: 90px;

  }

  /* FLAVOR LAB */
  .flavor-lab {
    padding: 60px 20px;
  }

  .top {
    display: block;
    text-align: center;
  }

  .flavor h1 {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .flavor p {
    font-size: 16px;  
    line-height: 26px;

  }

  .filters {
    margin-top: 20px;
  }

  .filters button {
    margin: auto;
    padding: 8px 20px;
  }

  .cards-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .card:hover {
    transform: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.product-images img {
    height: 270px;
    
}
.badges {
   
    margin-top: 32px;
}
  .card h2 {
    background: linear-gradient(90deg, rgb(236, 72, 153), rgb(99, 102, 241));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

  }
  .radar-canvas {
    opacity: 1;
}

  /* MIXES */
  .mixes {
    padding: 50px 20px;
  }

  .mixes h2 {
    font-size: 28px;
  }

  /* VERIFICATION */
  .verification h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .verification p {
    font-size: 16px;
   line-height: 26px;
   
}

  .input-box {
    width: 100%;
  }

  /* CONTACT */

  .contact {
    padding: 60px 20px;
    
}
  .contact h2 {
    font-size: 32px;
  }

  .contact-form label {
    font-size: 16px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 16px;
  }

  /* FOOTER */
  .footer {
    padding: 60px 20px 30px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-bottom-top {
   
    text-align: left;
  }
  .footer-links {
    justify-content: left;
    
}

}