/* styles.css - Unified styles for ZamPURE website */

:root {
  --emerald: rgb(0, 66, 74);
  --emerald-700: rgb(0, 50, 56);
  --white-gold: rgb(255, 248, 220);
  --muted: #6b6b6b;
  --glass: rgba(0, 0, 0, 0.03);
  --radius: 14px;
  --transition: 280ms cubic-bezier(.2, .9, .3, 1);
}

/* Reset + base */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

p {
  text-align: justify;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: #ffffff;
  color: #111;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--emerald);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* NAVBAR - Unified */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  gap: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 0;
  /* background: #fff; */
  z-index: 999;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 52px;
}

.brand h1 {
  font-size: 20px;
  margin: 0;
  color: var(--emerald);
  letter-spacing: 0.6px;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 600;
  color: var(--emerald-700);
}

.nav-links a:hover {
  background: linear-gradient(90deg, rgba(0, 66, 74, 0.06), rgba(255, 248, 220, 0.02));
  box-shadow: 0 6px 18px rgba(0, 66, 74, 0.06);
  transform: translateY(-2px);
}

/* TYPOGRAPHY - Unified */
/* Headings */
h2,
h3,
h4,
h5 {
  color: var(--emerald-700);
}

h2 {
  font-size: 44px;
  line-height: 1.02;
  letter-spacing: -0.6px;
  margin: 6px 0 14px;
}

h3 {
  font-size: 28px;
  margin: 0;
}

h4 {
  font-size: 18px;
  margin: 0 0 8px;
}

h5 {
  margin: 0 0 6px;
}

/* Common text styles */
.eyebrow {
  display: inline-block;
  background: linear-gradient(90deg, rgba(0, 66, 74, 0.08), rgba(255, 248, 220, 0.06));
  color: var(--emerald-700);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 18px;
}

.lead {
  font-size: 18px;
  color: #333;
  max-width: 640px;
  margin: 0 0 22px;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

/* BUTTONS - Unified */
.btn-primary {
  background: linear-gradient(180deg, var(--emerald), var(--emerald-700));
  color: var(--white-gold);
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(0, 66, 74, 0.12);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 66, 74, 0.18);
}

.btn-ghost {
  background: transparent;
  border: 1.5px solid rgba(0, 66, 74, 0.08);
  color: var(--emerald-700);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-ghost:hover {
  background: rgba(0, 66, 74, 0.04);
  transform: translateY(-3px);
}

/* HERO - Unified */
.hero {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 70px 6% 80px;
  position: relative;
  overflow: hidden;
}

.hero-left {
  flex: 1;
  max-width: 760px;
  padding-right: 20px;
}

.hero-right {
  flex: 0 0 420px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
}

/* Bottle animation */
.bottle-wrap {
  width: 300px;
  height: 520px;
  position: relative;
  transform-origin: center;
  transition: transform 600ms cubic-bezier(.2, .9, .3, 1);
  will-change: transform;
}

.bottle {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
  animation: float 5.2s ease-in-out infinite;
  filter: drop-shadow(0 18px 40px rgba(0, 66, 74, 0.12));
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.12));
  padding: 12px;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-14px) rotate(1deg);
  }

  100% {
    transform: translateY(0) rotate(-1deg);
  }
}

/* SECTIONS - Unified */
.section {
  padding: 64px 6%;
}

.section-title {
  display: flex;
  align-items: end;
  gap: 18px;
}

.accent-bar {
  height: 6px;
  width: 84px;
  background: linear-gradient(90deg, var(--emerald), var(--white-gold));
  border-radius: 6px;
}

/* CARDS - Unified */
.products-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 360ms cubic-bezier(.2, .9, .3, 1), box-shadow 360ms;
  transform-origin: center;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 22px 60px rgba(0, 66, 74, 0.08);
}

.card .imgwrap {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.card .badge {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 66, 74, 0.06), rgba(255, 248, 220, 0.06));
  color: var(--emerald-700);
  font-weight: 600;
  font-size: 13px;
}

/* Team member images in cards */
.team-img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto;
  border: 3px solid var(--emerald);
}

.team-description {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 8px 0 0;
}

/* FEATURES/GRIDS - Unified */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  /* 66% text, 33% image */
  gap: 24px;
  align-items: center;
}

.grid-3 .margin1 {
  margin-right: 10%;
}

.feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(0, 66, 74, 0.02), rgba(255, 248, 220, 0.01));
  border: 1px solid rgba(0, 66, 74, 0.03);
}

.feature .dot {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-gold);
  font-weight: 700;
  font-size: 18px;
}

/* CONTACT CARDS - Unified */
.contact-card {
  background: linear-gradient(180deg, rgba(0, 66, 74, 0.03), rgba(255, 248, 220, 0.01));
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(0, 66, 74, 0.04);
}

/* IMAGE FRAMES - About page specific */
.img-frame {
  background: linear-gradient(180deg, rgba(0, 66, 74, 0.05), rgba(255, 248, 220, 0.08));
  padding: 12px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 66, 74, 0.08);
}

/* FOOTER - Unified */
footer {
  margin-top: 36px;
  padding: 28px 6%;
  background: #fafafa;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

footer p,
footer div {
  margin: 0;
  color: var(--muted);
}

footer strong {
  color: var(--emerald-700);
}

/* ANIMATIONS - Unified */
.reveal {
  opacity: 0;
  transform: translateY(22px) scale(.995);
  transition: all 600ms cubic-bezier(.2, .9, .3, 1);
  will-change: transform, opacity;
}

.reveal.revealed {
  opacity: 1;
  transform: none;
}

.slide-left {
  transform: translateX(-30px);
  opacity: 0;
}

.slide-left.revealed {
  transform: none;
  opacity: 1;
  transition: all 700ms cubic-bezier(.2, .9, .3, 1);
}

.slide-right {
  transform: translateX(30px);
  opacity: 0;
}

.slide-right.revealed {
  transform: none;
  opacity: 1;
  transition: all 700ms cubic-bezier(.2, .9, .3, 1);
}

.pop {
  transform: scale(.85);
  opacity: 0;
}

.pop.revealed {
  transform: none;
  opacity: 1;
  transition: all 520ms cubic-bezier(.2, .9, .3, 1);
}

.zoom-out {
  transform: scale(1.08);
  opacity: 0;
}

.zoom-out.revealed {
  transform: scale(1);
  opacity: 1;
  transition: all 700ms cubic-bezier(.2, .9, .3, 1);
}

/* RESPONSIVE - Unified */
@media (max-width: 920px) {
  .hero {
    flex-direction: column;
    padding: 48px 5%;
  }

  .hero-right {
    order: 2;
    margin-top: 18px;
  }

  .hero-left {
    order: 1;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .bottle-wrap {
    width: 250px;
    height: 430px;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 14px 20px;
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .section {
    padding: 40px 5%;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 24px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== CONTACT PAGE SPECIFIC STYLES ===== */

/* Active nav link */
.nav-links a.active {
  background: linear-gradient(90deg, rgba(0, 66, 74, 0.08), rgba(255, 248, 220, 0.06));
  color: var(--emerald-700);
}

/* Contact visual in hero */
.contact-visual {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.water-drop {
  position: absolute;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(0, 66, 74, 0.1), rgba(0, 50, 56, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 3s ease-in-out infinite;
}

.water-drop i {
  font-size: 80px;
  color: var(--emerald);
  opacity: 0.7;
}

.contact-illustration {
  position: absolute;
  width: 120px;
  height: 120px;
  background: var(--white-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 66, 74, 0.15);
  animation: float 4s ease-in-out infinite;
}

.contact-illustration i {
  font-size: 50px;
  color: var(--emerald-700);
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* Contact icons in cards */
.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-700));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white-gold);
  font-size: 24px;
}

.contact-details {
  margin: 15px 0;
  font-size: 14px;
  line-height: 1.6;
}

.contact-details i {
  width: 20px;
  color: var(--emerald);
  margin-right: 10px;
}

/* Contact form card */
.contact-form-card {
  background: white;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0, 66, 74, 0.08);
  border: 1px solid rgba(0, 66, 74, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.input-icon {
  position: relative;
}

.input-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--emerald);
  z-index: 2;
}

.textarea-icon i {
  top: 20px;
  transform: none;
}

.form-control {
  width: 100%;
  padding: 14px 14px 14px 45px;
  border: 1.5px solid rgba(0, 66, 74, 0.1);
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  transition: var(--transition);
  background: white;
}

.form-control:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(0, 66, 74, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  appearance: none;
  cursor: pointer;
}

.form-note {
  margin-top: 15px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

.form-note i {
  color: var(--emerald);
  margin-right: 5px;
}

/* Map section */
.map-placeholder {
  height: 300px;
  background: linear-gradient(180deg, rgba(0, 66, 74, 0.03), rgba(255, 248, 220, 0.01));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(0, 66, 74, 0.1);
}

.map-visual {
  text-align: center;
  color: var(--muted);
}

.map-visual i {
  font-size: 60px;
  color: var(--emerald);
  margin-bottom: 15px;
  opacity: 0.5;
}

.address-details {
  line-height: 1.8;
}

.address-details i {
  width: 20px;
  color: var(--emerald);
  margin-right: 10px;
}

/* FAQ section */
.faq-item {
  padding: 20px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 66, 74, 0.05);
  transition: var(--transition);
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 66, 74, 0.08);
}

.faq-item h5 {
  color: var(--emerald-700);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.faq-item h5 i {
  margin-right: 10px;
  color: var(--emerald);
}

.faq-item p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
}

/* Responsive adjustments for contact page */
@media (max-width: 768px) {
  .contact-visual {
    width: 200px;
    height: 200px;
    margin: 0 auto;
  }

  .water-drop {
    width: 150px;
    height: 150px;
  }

  .water-drop i {
    font-size: 60px;
  }

  .contact-illustration {
    width: 90px;
    height: 90px;
  }

  .contact-illustration i {
    font-size: 40px;
  }

  .contact-form-card {
    padding: 20px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .map-placeholder {
    height: 250px;
    margin-top: 20px;
  }
}

/* Simple version CSS */
.website-wrapper {
  position: relative;
  min-height: 100vh;
}

.fullscreen-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.main-content {
  position: relative;
  z-index: 1;
  animation: contentSlide 1s ease-out;
}

@keyframes contentSlide {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== MOBILE RESPONSIVE NAVBAR ===== */

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1000;
  position: relative;
}

.menu-line {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--emerald);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile menu button animation */
.mobile-menu-btn.active .menu-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active .menu-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .menu-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -7px);
}

/* Responsive navbar */
@media (max-width: 768px) {

  /* Show mobile menu button */
  .mobile-menu-btn {
    display: flex;
  }

  /* Hide regular nav links by default on mobile */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 90px 30px 30px;
    box-shadow: -10px 0 40px rgba(0, 66, 74, 0.15);
    transition: right 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
    z-index: 999;
    overflow-y: auto;
  }

  /* Show nav links when menu is active */
  .nav-links.active {
    right: 0;
  }

  /* Nav links styling for mobile */
  .nav-links a {
    width: 100%;
    padding: 16px 20px;
    margin: 8px 0;
    text-align: left;
    font-size: 16px;
    border-radius: 12px;
    border: 1px solid rgba(0, 66, 74, 0.08);
    transition: all 0.3s ease;
  }

  .nav-links a:hover {
    background: linear-gradient(90deg, rgba(0, 66, 74, 0.08), rgba(255, 248, 220, 0.06));
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 66, 74, 0.1);
  }

  .nav-links a.active {
    background: linear-gradient(90deg, rgba(0, 66, 74, 0.12), rgba(0, 50, 56, 0.08));
    color: var(--emerald-700);
    font-weight: 700;
    border-color: rgba(0, 66, 74, 0.15);
  }

  /* Overlay when menu is open */
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Adjust navbar padding for mobile */
  .nav {
    padding: 15px 20px;
    position: sticky;
  }

  /* Reduce brand image size on mobile */
  .brand img {
    height: 42px;
  }

  .brand h1 {
    font-size: 18px;
  }
}

/* For very small screens */
@media (max-width: 480px) {
  .nav-links {
    width: 85%;
    max-width: 280px;
    padding: 80px 20px 20px;
    margin-top: 10px;
  }

  .nav-links a {
    padding: 14px 18px;
    font-size: 15px;
  }

  .brand img {
    height: 38px;
  }

  .brand h1 {
    font-size: 16px;
  }
}

/* Tablet view adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  .nav-links {
    gap: 15px;
  }

  .nav-links a {
    padding: 8px 10px;
    font-size: 14px;
  }

  .brand img {
    height: 46px;
  }

  .brand h1 {
    font-size: 18px;
  }
}

/* Animation for mobile menu items */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.nav-links.active a {
  animation: slideInRight 0.4s ease forwards;
  animation-delay: calc(var(--i, 0) * 0.1s);
}

/* Add this to your existing body styles */
body.menu-open {
  overflow: hidden;
}

/* ===== PRODUCTS PAGE STYLES ===== */


/* Products hero visual */
.products-hero-visual {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-bottle {
  position: absolute;
  width: 120px;
  height: 200px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
  border-radius: 30px 30px 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(0, 66, 74, 0.15);
  animation: float 6s ease-in-out infinite;
}

.product-bottle i {
  font-size: 50px;
  color: var(--emerald);
  opacity: 0.8;
}

.product-1 {
  transform: rotate(-15deg);
  animation-delay: 0s;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(0, 66, 74, 0.05));
  z-index: 3;
}

.product-2 {
  transform: rotate(0deg);
  animation-delay: -2s;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 220, 0.1));
  z-index: 2;
  left: 60px;
}

.product-3 {
  transform: rotate(15deg);
  animation-delay: -4s;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(0, 50, 56, 0.08));
  z-index: 1;
  left: 120px;
}

/* Product badges */
.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(90deg, var(--emerald), var(--emerald-700));
  color: var(--white-gold);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

/* Product images */
.product-image {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 60px;
  color: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Different colors for different products */
.water-still {
  background: linear-gradient(135deg, #4a90e2, #63b3ed);
}

.water-sparkling {
  background: linear-gradient(135deg, #38b2ac, #4fd1c7);
}

.water-alkaline {
  background: linear-gradient(135deg, #805ad5, #9f7aea);
}

.beverage-cola {
  background: linear-gradient(135deg, #744210, #9c6c1c);
}

.beverage-zest {
  background: linear-gradient(135deg, #d69e2e, #ecc94b);
}

.beverage-orange {
  background: linear-gradient(135deg, #dd6b20, #ed8936);
}

.juice-apple {
  background: linear-gradient(135deg, #68d391, #9ae6b4);
}

.juice-berry {
  background: linear-gradient(135deg, #d53f8c, #ed64a6);
}

.juice-tropical {
  background: linear-gradient(135deg, #d69e2e, #ecc94b);
}

/* Product descriptions */
.product-description {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 12px 0;
  min-height: 70px;
}

.product-specs {
  background: rgba(0, 66, 74, 0.03);
  border-radius: 10px;
  padding: 12px;
  margin: 15px 0;
  font-size: 13.5px;
}

.product-specs p {
  margin: 8px 0;
  color: var(--emerald-700);
  display: flex;
  align-items: center;
}

.product-specs i {
  width: 20px;
  margin-right: 10px;
  color: var(--emerald);
}

.product-price {
  margin: 20px 0;
  text-align: center;
}

.price {
  font-size: 22px;
  font-weight: 700;
  color: var(--emerald-700);
  display: block;
}

.product-btn {
  width: 100%;
  margin-top: 10px;
  padding: 12px;
}

/* Coming Soon Section */
.coming-soon-badge {
  display: inline-block;
  background: linear-gradient(90deg, #d69e2e, #ed8936);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  margin-left: 15px;
  vertical-align: middle;
}

.coming-soon-card {
  position: relative;
  opacity: 0.9;
}

.coming-soon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  z-index: 5;
}

.coming-soon-overlay span {
  background: linear-gradient(90deg, var(--emerald), var(--emerald-700));
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  transform: rotate(-5deg);
  box-shadow: 0 10px 25px rgba(0, 66, 74, 0.2);
}

/* Responsive adjustments for products page */
@media (max-width: 768px) {
  .products-hero-visual {
    width: 250px;
    height: 250px;
    margin: 0 auto;
  }

  .product-bottle {
    width: 90px;
    height: 150px;
  }

  .product-bottle i {
    font-size: 40px;
  }

  .product-2 {
    left: 50px;
  }

  .product-3 {
    left: 100px;
  }

  .product-image {
    width: 130px;
    height: 130px;
    font-size: 50px;
  }

  .product-description {
    min-height: auto;
  }

  .coming-soon-overlay span {
    font-size: 16px;
    padding: 10px 20px;
  }

  .coming-soon-badge {
    display: block;
    margin: 10px 0 0 0;
    width: fit-content;
  }
}

@media (max-width: 480px) {
  .products-hero-visual {
    width: 200px;
    height: 200px;
  }

  .product-bottle {
    width: 70px;
    height: 120px;
  }

  .product-bottle i {
    font-size: 30px;
  }

  .product-2 {
    left: 40px;
  }

  .product-3 {
    left: 80px;
  }
}