/* Global Stylesheet for jaibhimproducts.com */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1f2937;
  background-color: #f9fafb;
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 0; /* Add scroll buffer inside JS if sticky */
}

/* Scroll padding when navigating with anchors */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 130px; /* Account for sticky header */
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 80px;
  }
}

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

/* Main Container */
.main-content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, #1e1b4b 0%, #311042 100%);
  color: #ffffff;
  padding: 100px 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(252, 60, 138, 0.15) 0%, transparent 60%);
  animation: rotateGlow 25s infinite linear;
  pointer-events: none;
}

@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero-container {
  max-width: 900px;
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(90deg, rgba(252, 60, 138, 0.2) 0%, rgba(255, 94, 98, 0.2) 100%);
  border: 1px solid rgba(252, 60, 138, 0.4);
  color: #ff80ab;
  padding: 6px 16px;
  border-radius: 30px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, #ffffff 30%, #ffbe53 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.2rem;
  color: #d1d5db;
  max-width: 700px;
  margin: 0 auto 35px auto;
  font-weight: 400;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(90deg, #fc3c8a 0%, #ff5e62 100%);
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(252, 60, 138, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(252, 60, 138, 0.5);
}

.btn-secondary {
  font-family: 'Outfit', sans-serif;
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 15px;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

/* Sections */
.section {
  padding: 80px 20px;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #111827;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #fc3c8a 0%, #ff5e62 100%);
  border-radius: 2px;
}

.section-header p {
  color: #6b7280;
  font-size: 16px;
  margin-top: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid of Cards */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
  border-color: rgba(252, 60, 138, 0.2);
}

.product-img-wrapper {
  background-color: #f3f4f6;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-img-placeholder {
  width: 120px;
  height: 120px;
  opacity: 0.15;
  transition: all 0.3s ease;
}

.product-card:hover .product-img-placeholder {
  transform: scale(1.1);
  opacity: 0.25;
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #fc3c8a;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 30px;
  text-transform: uppercase;
}

.product-info {
  padding: 20px;
}

.product-category {
  font-size: 12px;
  text-transform: uppercase;
  color: #9ca3af;
  font-weight: 700;
  margin-bottom: 6px;
}

.product-title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

.product-rating {
  color: #ffbe53;
  font-size: 14px;
  margin-bottom: 12px;
}

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

.product-price {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fc3c8a;
}

.btn-add-cart {
  background: none;
  border: 2px solid #e5e7eb;
  color: #1f2937;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-add-cart:hover {
  background-color: #fc3c8a;
  border-color: #fc3c8a;
  color: #ffffff;
}

/* Opportunity Section */
.opportunity {
  background: #f3f4f6;
  border-radius: 24px;
  padding: 60px 40px;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.opp-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 15px;
}

.opp-content p {
  color: #4b5563;
  margin-bottom: 25px;
}

.opp-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.opp-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.opp-features li i {
  color: #10b981;
  font-size: 18px;
}

.opp-visual {
  background: linear-gradient(135deg, #fc3c8a 0%, #ff9966 100%);
  height: 350px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.opp-visual-logo {
  max-width: 180px;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.15));
}

@media (max-width: 900px) {
  .opportunity {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }
}


