/* Diwali Gifts Mobile-First Responsive CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  padding: 40px 0;
  text-align: center;
}

.hero-section h1 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.hero-subtitle {
  font-size: 16px;
  margin-bottom: 24px;
  opacity: 0.9;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 24px;
  font-weight: 700;
}

.stat-label {
  font-size: 12px;
  opacity: 0.8;
}

/* Breadcrumb */
.breadcrumb {
  padding: 16px 0;
  font-size: 14px;
  color: #666;
}

.breadcrumb a {
  color: #ff6b35;
  text-decoration: none;
}

/* Product Cards */
.products-section {
  padding: 32px 0;
}

.product-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.product-card h3 {
  color: #ff6b35;
  font-size: 18px;
  margin-bottom: 16px;
}

.product-card ul {
  list-style: none;
  margin-bottom: 16px;
}

.product-card li {
  padding: 4px 0;
  font-size: 14px;
  color: #555;
}

.product-card li:before {
  content: "✓ ";
  color: #28a745;
  font-weight: bold;
}

/* Key Takeaways */
.key-takeaways {
  background: #f8f9fa;
  padding: 24px;
  border-radius: 8px;
  margin: 24px 0;
}

.key-takeaways h3 {
  color: #ff6b35;
  margin-bottom: 16px;
}

/* Sections */
.intro-section, .hampers-section, .city-wise-section, 
.product-based-section, .festive-section, .industry-section,
.relationship-section, .diwali-corporate-section {
  padding: 32px 0;
}

.intro-section h2, .hampers-section h2, .city-wise-section h2,
.product-based-section h2, .festive-section h2, .industry-section h2,
.relationship-section h2, .diwali-corporate-section h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 16px;
}

.intro-section h3, .hampers-section h3, .city-wise-section h3,
.product-based-section h3, .festive-section h3, .industry-section h3,
.relationship-section h3, .diwali-corporate-section h3 {
  font-size: 18px;
  color: #ff6b35;
  margin: 24px 0 12px 0;
}

.intro-section h4, .hampers-section h4 {
  font-size: 16px;
  color: #333;
  margin: 16px 0 8px 0;
}

/* CTA Sections */
.cta-section {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  padding: 32px 0;
  text-align: center;
  margin: 32px 0;
}

.cta-section h2 {
  font-size: 20px;
  margin-bottom: 12px;
}

.cta-section p {
  margin-bottom: 24px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #fff;
  color: #ff6b35;
}

.btn-secondary {
  background: #28a745;
  color: white;
}

.btn-tertiary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cta-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  font-size: 12px;
}

.cta-features span {
  background: rgba(255,255,255,0.2);
  padding: 4px 8px;
  border-radius: 4px;
}

/* FAQ Section */
.faq-section {
  padding: 32px 0;
  background: #f8f9fa;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 32px;
  color: #333;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.faq-item h3 {
  background: #ff6b35;
  color: white;
  padding: 16px;
  margin: 0;
  font-size: 16px;
  cursor: pointer;
  position: relative;
}

.faq-item h3:after {
  content: "+";
  position: absolute;
  right: 16px;
  font-size: 20px;
}

.faq-item.active h3:after {
  content: "−";
}

.faq-item p {
  padding: 16px;
  margin: 0;
  display: none;
  line-height: 1.6;
}

.faq-item.active p {
  display: block;
}

/* Lists */
ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
}

/* Links */
a {
  color: #ff6b35;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (min-width: 768px) {
  .hero-section h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
  
  .product-card {
    padding: 32px;
  }
  
  .container {
    padding: 0 24px;
  }
}

@media (min-width: 1024px) {
  .hero-section h1 {
    font-size: 40px;
  }
  
  .hero-section {
    padding: 60px 0;
  }
  
  .intro-section h2, .hampers-section h2, .city-wise-section h2,
  .product-based-section h2, .festive-section h2, .industry-section h2,
  .relationship-section h2, .diwali-corporate-section h2 {
    font-size: 28px;
  }
  
  .cta-section h2 {
    font-size: 24px;
  }
}

/* Performance Optimizations */
img {
  max-width: 100%;
  height: auto;
  loading: lazy;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus States for Accessibility */
.btn:focus, .faq-item h3:focus {
  outline: 2px solid #ff6b35;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .cta-section, .hero-section {
    background: none !important;
    color: #333 !important;
  }
}