/* BAAZIGAR - Modern E-commerce Shopping Theme */
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Roboto', sans-serif;
  line-height: 1.6;
  color: #2d3748;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #ff5252, #26d0ce);
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid rgba(255, 107, 107, 0.3);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
  animation: logoPulse 2s ease-in-out infinite alternate;
}

@keyframes logoPulse {
  0% { filter: drop-shadow(0 0 5px rgba(255, 107, 107, 0.3)); }
  100% { filter: drop-shadow(0 0 20px rgba(255, 107, 107, 0.6)); }
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #2d3748;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
}

.nav-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.2), transparent);
  transition: left 0.5s;
}

.nav-links a:hover::before {
  left: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 50%, #45b7d1 100%);
  color: white;
  padding: 140px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="shopping" width="60" height="40" patternUnits="userSpaceOnUse"><path d="M10 20 L20 10 L30 20 L40 10" stroke="white" stroke-width="1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23shopping)"/></svg>');
  animation: shoppingFloat 15s ease-in-out infinite;
}

@keyframes shoppingFloat {
  0%, 100% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(-15px) translateY(-15px); }
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffffff, #ffd93d, #6c5ce7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  0% { filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5)); }
  100% { filter: drop-shadow(0 0 30px rgba(255, 107, 107, 0.8)); }
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffd93d;
  text-shadow: 0 0 10px rgba(255, 217, 61, 0.5);
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.btn {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  font-size: 1.1rem;
}

.btn-primary {
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  color: white;
  box-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.5);
  border-color: #ff6b6b;
}

.btn-secondary {
  background: transparent;
  color: #ffd93d;
  border: 2px solid #ffd93d;
  box-shadow: 0 0 20px rgba(255, 217, 61, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 217, 61, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 217, 61, 0.4);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 107, 0.5);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.2);
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: #ffd93d;
  text-shadow: 0 0 20px rgba(255, 217, 61, 0.5);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Section Styles */
.section {
  padding: 100px 0;
  position: relative;
}

.section h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
}

.section-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Categories Section */
.categories-section {
  background: rgba(255, 107, 107, 0.05);
  position: relative;
}

.categories-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(255, 107, 107, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(78, 205, 196, 0.05) 0%, transparent 50%);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.category-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 107, 107, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.1), transparent);
  transition: left 0.5s;
}

.category-card:hover::before {
  left: 100%;
}

.category-card:hover {
  transform: translateY(-15px);
  border-color: rgba(255, 107, 107, 0.5);
  box-shadow: 0 25px 50px rgba(255, 107, 107, 0.2);
}

.category-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
  animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.category-card h3 {
  color: #2d3748;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.category-card p {
  color: #718096;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.product-count {
  display: block;
  color: #ff6b6b;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.category-link {
  display: inline-block;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.category-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* Deals Section */
.deals-section {
  background: rgba(78, 205, 196, 0.05);
  position: relative;
}

.deals-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 50% 20%, rgba(78, 205, 196, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.deal-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(78, 205, 196, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

.deal-card.featured {
  border-color: rgba(255, 107, 107, 0.5);
  box-shadow: 0 0 30px rgba(255, 107, 107, 0.2);
}

.deal-card:hover {
  transform: translateY(-15px);
  border-color: rgba(78, 205, 196, 0.5);
  box-shadow: 0 25px 50px rgba(78, 205, 196, 0.2);
}

.deal-card.featured:hover {
  border-color: rgba(255, 107, 107, 0.8);
  box-shadow: 0 25px 50px rgba(255, 107, 107, 0.3);
}

.deal-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(45deg, #ff6b6b, #ffd93d);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
  animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

.deal-image {
  height: 200px;
  background: linear-gradient(45deg, #4ecdc4, #45b7d1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
}

.deal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.deal-icon {
  animation: dealFloat 3s ease-in-out infinite;
}

@keyframes dealFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.deal-info {
  padding: 2rem;
}

.deal-info h3 {
  color: #2d3748;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.deal-info p {
  color: #718096;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.deal-price {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.original-price {
  color: #a0aec0;
  text-decoration: line-through;
  font-size: 1.1rem;
}

.current-price {
  color: #ff6b6b;
  font-size: 1.8rem;
  font-weight: 700;
}

.discount {
  background: linear-gradient(45deg, #ff6b6b, #ffd93d);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.deal-timer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.timer-label {
  color: #718096;
}

.timer {
  color: #ff6b6b;
  font-weight: 600;
  background: rgba(255, 107, 107, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
}

.buy-btn {
  display: inline-block;
  background: linear-gradient(45deg, #4ecdc4, #45b7d1);
  color: white;
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
}

.buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

/* Trending Section */
.trending-section {
  background: rgba(255, 217, 61, 0.05);
  position: relative;
}

.trending-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(255, 217, 61, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
}

.trending-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.trending-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 217, 61, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.trending-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 217, 61, 0.5);
  box-shadow: 0 20px 40px rgba(255, 217, 61, 0.2);
}

.trending-image {
  height: 200px;
  background: linear-gradient(45deg, #ffd93d, #ff6b6b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
}

.trending-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #ff6b6b;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.trending-info {
  padding: 1.5rem;
}

.trending-info h3 {
  color: #2d3748;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.trending-info p {
  color: #718096;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.trending-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.trending-rating {
  color: #ffd93d;
  font-weight: 600;
}

.trending-sales {
  color: #4ecdc4;
  font-weight: 500;
}

.trending-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff6b6b;
  margin-bottom: 1rem;
}

.trending-btn {
  display: inline-block;
  background: linear-gradient(45deg, #ffd93d, #ff6b6b);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
}

.trending-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 217, 61, 0.3);
}

/* Brands Section */
.brands-section {
  background: rgba(108, 92, 231, 0.05);
  position: relative;
}

.brands-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(108, 92, 231, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.05) 0%, transparent 50%);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.brand-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(108, 92, 231, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.brand-card:hover {
  transform: translateY(-10px);
  border-color: rgba(108, 92, 231, 0.5);
  box-shadow: 0 20px 40px rgba(108, 92, 231, 0.2);
}

.brand-logo {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.brand-name {
  color: #2d3748;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.brand-category {
  color: #718096;
  font-size: 0.9rem;
}

/* Seller Section */
.seller-section {
  background: rgba(255, 255, 255, 0.05);
  position: relative;
}

.seller-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.seller-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.seller-content h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #6c5ce7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.seller-content p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
}

.seller-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.seller-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.seller-feature-icon {
  font-size: 2rem;
  color: #ffd93d;
}

.seller-feature-text {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.seller-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
footer {
  background: rgba(45, 55, 72, 0.95);
  border-top: 2px solid rgba(255, 107, 107, 0.3);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: #ff6b6b;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: #4ecdc4;
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 107, 107, 0.2);
  color: rgba(255, 255, 255, 0.6);
}

/* Product Cards - Additional Styles */
.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-rating {
  background: rgba(255, 255, 255, 0.9);
  padding: 0.3rem 0.6rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffd93d;
}

.product-sold {
  background: rgba(255, 255, 255, 0.9);
  padding: 0.3rem 0.6rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #4ecdc4;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff6b6b;
}

.add-to-cart {
  display: inline-block;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
  margin-top: 1rem;
}

.add-to-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.become-seller-btn {
  display: inline-block;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  color: white;
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 2rem;
}

.become-seller-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* Start Selling on BAAZIGAR Section */
.seller-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
  align-items: flex-start;
  margin-top: 2rem;
}
.seller-info {
  flex: 2;
  min-width: 320px;
}
.seller-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.feature {
  background: rgba(255,255,255,0.97);
  border-radius: 15px;
  padding: 1.2rem 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 4px 16px rgba(78,205,196,0.10);
  border: 1px solid #ececec;
  color: #2d3748;
}
.feature h4 {
  color: #2d3748;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.feature p {
  color: #444;
  font-size: 1rem;
  font-weight: 500;
}
.feature-icon {
  font-size: 2rem;
  color: #ff6b6b;
}
.seller-stats {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
  margin-top: 2rem;
}
.stat-card {
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  color: #fff;
  border-radius: 12px;
  padding: 1.2rem 2rem;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(255,107,107,0.08);
}
.stat-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  margin-top: 0.3rem;
  color: #fff;
  opacity: 0.8;
}

/* Why Choose BAAZIGAR Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.feature-card {
  background: rgba(255,255,255,0.97);
  border-radius: 15px;
  padding: 1.5rem 1.2rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(255,107,107,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #ececec;
  transition: box-shadow 0.3s, transform 0.3s;
}
.feature-card:hover {
  box-shadow: 0 8px 32px rgba(78,205,196,0.18);
  transform: translateY(-6px) scale(1.03);
  border: 1.5px solid #4ecdc4;
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.7rem;
  color: #ff6b6b;
}
.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #2d3748;
  font-weight: 700;
}
.feature-card p {
  color: #444;
  font-size: 1rem;
  font-weight: 500;
}

/* Customer Support & Office Section */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.support-card {
  background: rgba(255,255,255,0.9);
  border-radius: 15px;
  padding: 1.5rem 1.2rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(255,107,107,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.3s;
}
.support-card:hover {
  box-shadow: 0 8px 32px rgba(78,205,196,0.18);
  transform: translateY(-6px) scale(1.03);
}
.support-icon {
  font-size: 2rem;
  margin-bottom: 0.7rem;
  color: #4ecdc4;
}
.support-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #2d3748;
}
.support-card p {
  color: #718096;
  font-size: 0.95rem;
}
.office-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 2rem;
}
.office-placeholder {
  background: rgba(255,255,255,0.9);
  border-radius: 15px;
  padding: 2rem 2.5rem;
  box-shadow: 0 4px 16px rgba(255,107,107,0.08);
  min-width: 320px;
  max-width: 500px;
}
.office-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #2d3748;
}
.office-content p, .office-details p {
  color: #718096;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.office-details p strong {
  color: #ff6b6b;
}

@media (max-width: 900px) {
  .seller-content {
    flex-direction: column;
    align-items: stretch;
  }
  .office-container {
    flex-direction: column;
    align-items: stretch;
  }
}
@media (max-width: 600px) {
  .trending-grid, .features-grid, .support-grid {
    grid-template-columns: 1fr;
  }
  .seller-features {
    grid-template-columns: 1fr;
  }
  .office-placeholder {
    padding: 1.2rem 0.5rem;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .section h2 {
    font-size: 2rem;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .stat-item {
    padding: 1.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .seller-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-section {
    padding: 120px 0 60px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .section h2 {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .categories-grid,
  .deals-grid,
  .trending-grid,
  .brands-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .deal-card {
    flex-direction: column;
  }
  
  .deal-image {
    width: 100%;
    height: 200px;
  }
} 

/* Privacy Policy and Terms Section Styles */
.policy-section, .terms-section {
  margin-bottom: 3rem;
  color: #222;
  background: rgba(255,255,255,0.97);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 32px rgba(44,62,80,0.08);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
}
.policy-section h2, .terms-section h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  color: #ff6b6b;
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  background-clip: initial;
  text-shadow: none;
  font-weight: 700;
}
.policy-section h3, .terms-section h3 {
  font-size: 1.2rem;
  margin: 1.5rem 0 1rem 0;
  color: #4ecdc4;
  font-weight: 600;
}
.policy-section p, .terms-section p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: #333;
}
.policy-section ul, .terms-section ul {
  margin: 1rem 0 1rem 1.5rem;
  padding-left: 1.2rem;
}
.policy-section li, .terms-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: #444;
}
.policy-section ol, .terms-section ol {
  margin: 1rem 0 1rem 1.5rem;
  padding-left: 1.2rem;
}
.policy-section ol li, .terms-section ol li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: #444;
}
.policy-section strong, .terms-section strong {
  color: #ff6b6b;
}
@media (max-width: 700px) {
  .policy-section, .terms-section {
    padding: 1.2rem 0.5rem;
  }
} 

.product-image {
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

/* Fix for product card layout */
.product-card {
  background: rgba(255,255,255,0.95);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  box-shadow: 0 16px 40px rgba(78,205,196,0.18);
  transform: translateY(-8px) scale(1.02);
}

.product-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #2d3748;
  font-weight: 600;
}

.product-info p {
  color: #718096;
  margin-bottom: 1rem;
  flex: 1;
}

.product-tags {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.tag {
  display: inline-block;
  background: #4ecdc4;
  color: #fff;
  border-radius: 12px;
  padding: 0.2rem 0.8rem;
  font-size: 0.8rem;
  margin-right: 0.5rem;
  margin-bottom: 0.2rem;
  font-weight: 500;
}

/* Fix for mobile menu */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem;
    border-top: 1px solid rgba(255, 107, 107, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
} 