/* Premium Dropshipping Theme */
:root {
  --primary-color: #FF3366; /* Vibrant pink/coral */
  --primary-dark: #E60039;
  --secondary-color: #F8F4F0;
  --accent-color: #111111; /* Very dark, sleek */
  --text-main: #222222;
  --text-muted: #777777;
  --bg-color: #FFFFFF;
  --bg-off: #F9F9FA;
  --success: #00C853;
  --warning: #FFAB00;
  --danger: #FF3D00;
  --border-radius: 16px;
  --box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  --box-shadow-hover: 0 30px 60px rgba(255, 51, 102, 0.15);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --gradient-primary: linear-gradient(135deg, #FF3366 0%, #FF6B3B 100%);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.py-2 { padding: 2rem 0; }
.py-4 { padding: 4rem 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 50px; /* Pill shape for modern look */
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 10px 20px rgba(255, 51, 102, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px rgba(255, 51, 102, 0.4);
  color: #fff;
}

.btn-accent {
  background: var(--accent-color);
  color: #fff;
}

.btn-accent:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(255, 51, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 51, 102, 0); }
}

/* Header & Nav */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

.desktop-nav {
  display: flex;
  gap: 30px;
}

.desktop-nav a {
  color: var(--text-main);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.2px;
  position: relative;
}

.desktop-nav a.active, .desktop-nav a:hover {
  color: var(--primary-color);
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s;
}

.desktop-nav a:hover::after, .desktop-nav a.active::after {
  width: 100%;
}

.header-icons {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 1.3rem;
}

.header-icons .icon-link {
  filter: grayscale(100%);
  opacity: 0.7;
}

.header-icons a:hover {
  transform: scale(1.1);
  opacity: 1;
  filter: grayscale(0%);
}

.cart-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -12px;
  background: var(--primary-color);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(255,51,102,0.4);
}

/* Urgency Bar */
.urgency-bar {
  background: var(--accent-color);
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.urgency-bar span {
  color: var(--primary-color);
  font-weight: 800;
}

/* Hero Section */
.hero.banner-hero {
  background: url('https://images.unsplash.com/photo-1616683693504-3ea7e9ad6fec?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  padding: 8rem 0;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.hero.banner-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content-box {
  background: rgba(255, 255, 255, 0.95);
  padding: 4rem 3rem;
  border-radius: 8px;
  max-width: 650px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  backdrop-filter: blur(10px);
}

.hero-content-box h1 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
  line-height: 1.1;
}

.hero-content-box p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

/* Section Header */
.section-header {
  margin-bottom: 3.5rem;
  margin-top: 2rem;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
  color: var(--accent-color);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

/* Product Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 3rem;
  padding: 5rem 0;
}

/* Product Funnel */
.product-funnel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 4rem 0;
}

.product-gallery {
  position: sticky;
  top: 120px;
}

.main-image {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 1.5rem;
  object-fit: cover;
  aspect-ratio: 4/5;
  transition: var(--transition);
}

.main-image:hover {
  transform: scale(1.02);
}

.product-info {
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  background: var(--bg-off);
  padding: 8px 16px;
  border-radius: 50px;
  color: var(--text-main);
}

.stars { color: #FFB300; font-size: 1.2rem; }

.price-container {
  margin: 1rem 0 2rem;
  padding: 2rem;
  background: var(--bg-off);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  border: 1px solid rgba(0,0,0,0.03);
}

.price-current {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.price-old {
  font-size: 1.5rem;
  text-decoration: line-through;
  color: var(--text-muted);
  font-weight: 500;
}

.discount-badge {
  background: var(--gradient-primary);
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stock-scarcity {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--danger);
  display: flex;
  align-items: center;
  gap: 10px;
}

.stock-scarcity::before {
  content: '🔥';
  font-size: 1.5rem;
  animation: pulse 1s infinite alternate;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background: #E0E0E0;
  border-radius: 5px;
  margin-top: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--gradient-primary);
  width: 12%; 
  border-radius: 5px;
}

.benefits-list {
  list-style: none;
  margin: 2rem 0;
  padding: 0;
}

.benefits-list li {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 1.1rem;
  font-weight: 500;
}

.benefits-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--success);
  color: white;
  border-radius: 50%;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 3rem 0 1rem;
  padding: 2rem;
  background: var(--bg-off);
  border-radius: var(--border-radius);
}

.trust-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-badge-item img {
  width: 40px;
  height: 40px;
  opacity: 0.8;
}

/* Checkout styling */
.checkout-container {
  max-width: 800px;
  margin: 4rem auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--accent-color);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #E0E0E0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--bg-off);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  background: white;
  box-shadow: 0 0 0 4px rgba(255, 51, 102, 0.1);
}

/* Payment Methods */
.payment-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.payment-method {
  border: 2px solid #E0E0E0;
  border-radius: 12px;
  padding: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 15px;
  background: white;
}

.payment-method:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.payment-method.active {
  border-color: var(--primary-color);
  background: rgba(255, 51, 102, 0.05);
}

.payment-method-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-off);
  border-radius: 8px;
  font-size: 1.2rem;
}

/* Product Cards Grid */
.product-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-hover);
}

.product-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-info-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-info-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-price {
  font-weight: 800;
  color: var(--primary-color);
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.badge-top {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gradient-primary);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(255, 51, 102, 0.4);
}

/* Animations */
.fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Testimonials */
.testimonials {
  background: var(--bg-off);
  padding: 5rem 0;
}

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 992px) {
  .product-funnel {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .product-gallery {
    position: static;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .price-current {
    font-size: 2.5rem;
  }
  
  .checkout-container {
    padding: 1.5rem;
    margin: 2rem 15px;
  }
}
