/* Core Styling & Resets */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

/* 1. Header & Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 2rem;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Clean Logo Implementation */
.clean-logo {
  height: 45px;
  width: auto;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.nav-menu ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 1.5rem;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #e91e63;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 6px;
  flex-direction: column !important;
  padding: 0.5rem 0;
  min-width: 150px;
}

.dropdown.active .dropdown-menu {
  display: flex;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  padding: 0.5rem 1rem;
  display: block;
}

/* 2. Floating WhatsApp Bubble */
.whatsapp-bubble {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: transform 0.3s ease;
}

.whatsapp-bubble:hover {
  transform: scale(1.1);
}

/* 3. Hero Section */
.hero-section {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: auto;
}

.hero-card {
  display: flex;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  align-items: center;
}

.hero-content {
  flex: 1;
  padding: 2.5rem;
}

.hero-content h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #111;
}

.hero-image-wrapper {
  flex: 1;
  width: 100%;
}

.hero-img {
  width: 100%;
  height: 100%;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.btn-primary { background: #e91e63; color: white; margin-top: 1rem;}
.btn-secondary { background: #222; color: white; width: 100%; }

/* 4. Wholesale Form */
.wholesale-section {
  background: #fff;
  padding: 3rem 1rem;
  margin: 2rem 0;
}

.container {
  max-width: 600px;
  margin: auto;
}

.wholesale-section h2, .reviews-section h2 {
  text-align: center;
  font-size: 1.8rem;
}

.subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.form-group input, 
.form-group textarea, 
.styled-select {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

/* 5. Product Details & Fixes */
.product-section {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.product-container {
  display: flex;
  gap: 2rem;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  align-items: flex-start;
}

/* 9:16 Vertical Video Ratio Fix */
.product-media-container {
  flex: 1;
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 177.78%; /* 9:16 Aspect Ratio (16/9 = 1.777) */
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.product-details-container {
  flex: 1.2;
}

.product-title {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.price-box {
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
}

.price-amount {
  font-weight: bold;
  color: #e91e63;
}

.original-price {
  text-decoration: line-through;
  color: #888;
  font-size: 1rem;
  margin-left: 0.5rem;
}

/* Specification Box */
.spec-box {
  background: #fdf2f5;
  border: 1px solid #f8bbd0;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.spec-box h3 {
  font-size: 1.1rem;
  color: #c2185b;
  margin-bottom: 0.5rem;
}

.spec-box ul {
  list-style: none;
}

.spec-box li {
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

/* WhatsApp Order Button */
.whatsapp-order-btn {
  width: 100%;
  background: #25d366;
  color: white;
  border: none;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  transition: background 0.3s;
}

.whatsapp-order-btn:hover {
  background: #1eb954;
}

/* 6. Screenshot Reviews Infinite Marquee */
.reviews-section {
  padding: 3rem 1rem;
  overflow: hidden;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.marquee-track {
  display: inline-flex;
  gap: 1.5rem;
  animation: scroll 20s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  width: 220px;
  height: 380px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Mobile & Tablet Responsiveness Rules */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .nav-menu.active {
    display: block;
  }

  .nav-menu ul {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
    align-items: flex-start;
  }

  .hero-card {
    flex-direction: column-reverse;
  }

  .hero-content {
    padding: 1.5rem;
  }

  .product-container {
    flex-direction: column;
  }

  .product-media-container {
    max-width: 100%;
  }
}