/*!**********************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./app/home.css ***!
  \**********************************************************************************************************************************************************************************************************************************************************/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.home-page {
  padding-bottom: 2rem;
  background: #fafbfc;
}

/* Categories Navigation */
.categories-nav {
  background: #f3f4f6;
  border-bottom: 1px solid #e5e7eb;
  padding: 1.5rem 0;
}

.categories-nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.categories-nav-container::-webkit-scrollbar {
  display: none;
}

.category-nav-item {
  white-space: nowrap;
  color: #374151;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  transition: all 0.3s;
  position: relative;
}

.category-nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #667eea;
  transition: width 0.3s;
}

.category-nav-item:hover {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  color: #667eea;
  transform: translateY(-2px);
}

.category-nav-item:hover::after {
  width: 70%;
}

.category-nav-item.view-all {
  color: #667eea;
  font-weight: 600;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

/* Hero Banner */
.hero-banner {
  background: linear-gradient(135deg, #e42529 0%, #b21f22 100%);
  color: white;
  padding: 6rem 3rem;
  text-align: center;
  margin: 2rem auto;
  max-width: 1400px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(228, 37, 41, 0.3);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-content h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  padding: 1.1rem 3rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.hero-cta.primary {
  background: white;
  color: #f5576c;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hero-cta.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.hero-cta.secondary {
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.hero-cta.secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

/* Offers Section */
.offers-section {
  max-width: 1400px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.section-subtitle {
  color: #6b7280;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

.offers-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-gap: 1.5rem;
  gap: 1.5rem;
  margin-top: 2rem;
}

.offer-card {
  background: linear-gradient(135deg, #003380 0%, #002255 100%);
  color: white;
  padding: 3rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  box-shadow: 0 10px 30px rgba(0, 51, 128, 0.25);
}

.offer-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  background-size: 200% 200%;
  animation: shimmer 3s infinite;
}

.offer-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 51, 128, 0.35);
}

.offer-card.large {
  background: linear-gradient(135deg, #e42529 0%, #b21f22 100%);
  box-shadow: 0 10px 30px rgba(228, 37, 41, 0.25);
}

.offer-card.large:hover {
  box-shadow: 0 20px 50px rgba(228, 37, 41, 0.35);
}

.offer-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 1;
}

.offer-card h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.offer-card p {
  margin-bottom: 1.5rem;
  opacity: 0.95;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

.offer-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
  padding: 0.5rem 0;
}

.link-arrow {
  transition: transform 0.3s;
}

.offer-link:hover .link-arrow {
  transform: translateX(5px);
}

/* Features Bar */
.features-bar {
  max-width: 1400px;
  margin: 4rem auto;
  padding: 2.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  border-radius: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2.5rem;
  gap: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem;
  border-radius: 12px;
  transition: all 0.3s;
  cursor: pointer;
}

.feature-item:hover {
  background: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  animation: float 3s ease-in-out infinite;
}

.feature-item:nth-child(2) .feature-icon {
  animation-delay: 0.5s;
}

.feature-item:nth-child(3) .feature-icon {
  animation-delay: 1s;
}

.feature-item:nth-child(4) .feature-icon {
  animation-delay: 1.5s;
}

.feature-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: #111827;
}

.feature-item p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.4;
}

/* Product Carousels */
.home-product-sections {
  max-width: 1400px;
  margin: 4rem auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.product-section {
  padding: 0 3rem;
}

.product-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.product-section-header h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.25rem;
}

.product-section-header p {
  color: #6b7280;
  font-size: 0.95rem;
}

.section-view-all {
  color: #1d4ed8;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.product-carousel {
  position: relative;
  margin-top: 1.25rem;
}

.product-track {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  scrollbar-width: none;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.product-track::-webkit-scrollbar {
  display: none;
}

.home-product-card {
  flex: 0 0 auto;
  width: 230px;
  background: white;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  padding: 0 0 1rem 0;
  text-decoration: none;
  color: inherit;
  scroll-snap-align: start;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
  position: relative;
}

.home-product-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
  border-color: transparent;
}

.card-top {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 2;
  pointer-events: none; /* Allow clicking through to image */
}

.promo-pill {
  background: #e42529;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  letter-spacing: 0.02em;
  max-width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.wishlist-icon {
  color: #333;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  pointer-events: auto;
  cursor: pointer;
  transition: all 0.2s;
}

.wishlist-icon:hover {
    background: #e42529;
    color: white;
}

.card-image {
  background: #f9f9f9;
  height: 230px; /* Square-ish */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0.75rem;
  padding: 1rem;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}

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

.card-placeholder {
  font-size: 2.5rem;
  color: #e5e7eb;
}

.card-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 1rem;
}

.card-title-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.5;
  min-height: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.card-price {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
}

.card-discount {
  font-size: 0.75rem;
  font-weight: 700;
  color: #16a34a;
}

.card-mrp-row {
  font-size: 0.72rem;
  color: #9ca3af;
}

.card-mrp {
  text-decoration: line-through;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #374151;
  z-index: 2;
  cursor: pointer;
  transition: all 0.3s;
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: #fdf2f2; /* Light red tint */
  border-color: #e42529;
  color: #e42529;
  box-shadow: 0 6px 16px rgba(228, 37, 41, 0.15);
}

.carousel-btn.prev {
  left: -20px;
}

.carousel-btn.next {
  right: -20px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.3s;
}

.dot:hover {
  background: #9ca3af;
}

.dot.active {
  background: #e42529; /* Active red dot */
  width: 24px;
}

.home-product-card.skeleton {
  border-color: #edf2f7;
  background: #f8fafc;
  box-shadow: none;
}

.home-product-card.skeleton .card-image,
.home-product-card.skeleton .card-title,
.home-product-card.skeleton .card-price,
.home-product-card.skeleton .card-mrp,
.home-product-card.skeleton .skeleton-pill {
  background: linear-gradient(90deg, #eef2f7 25%, #f5f7fb 50%, #eef2f7 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}

.home-product-card.skeleton .card-image {
  height: 160px;
}

.home-product-card.skeleton .card-title {
  height: 34px;
  border-radius: 6px;
}

.home-product-card.skeleton .card-price {
  height: 16px;
  width: 60%;
  border-radius: 6px;
}

.home-product-card.skeleton .card-mrp {
  height: 12px;
  width: 45%;
  border-radius: 6px;
}

.home-product-card.skeleton .skeleton-pill {
  height: 18px;
  width: 120px;
  border-radius: 6px;
}

/* Section Header */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eee; /* Light gray line across */
  animation: fadeInUp 0.6s ease-out;
}

.section-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  position: relative;
  display: inline-block;
  text-transform: uppercase; /* Match Reliance style */
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -9px; /* Align with border-bottom */
  left: 0;
  width: 100%;
  height: 3px;
  background: #e42529; /* Solid Red Line */
  border-radius: 2px;
}

.view-all-link {
  color: #fff;
  background: #003380; /* Reliance Blue Button */
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
  padding: 0.5rem 1.2rem;
  border-radius: 4px; /* Square corners */
}

.view-all-link:hover {
  background: #002255;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,51,128,0.2);
}

/* Shop by Category */
.shop-by-category,
.trending-section,
.blogs-section {
  max-width: 1400px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

.loading-container {
  text-align: center;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.loader {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f4f6;
  border-top: 5px solid #667eea;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.loading-container p {
  color: #6b7280;
  font-size: 1.1rem;
  font-weight: 500;
}

/* Trending Section */
.trending-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2rem;
  gap: 2rem;
}

.trending-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
  cursor: pointer;
  border: 2px solid transparent;
}

.trending-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
  border-color: #667eea;
}

.trending-image {
  height: 220px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.trending-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.1) 100%);
}

.trending-icon {
  font-size: 4rem;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.trending-content {
  padding: 1.5rem;
  position: relative;
}

.trending-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.trending-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.trending-card p {
  color: #6b7280;
  font-size: 1rem;
  font-weight: 500;
}

/* Blog Section */
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
  gap: 2rem;
}

/* Newsletter */
.newsletter-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 5rem 2rem;
  border-radius: 24px;
  max-width: 1400px;
  margin: 4rem auto;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.newsletter-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.newsletter-content {
  max-width: 650px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.newsletter-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 800;
  text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.2);
}

.newsletter-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 550px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1 1;
  padding: 1.2rem 1.8rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  outline: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
}

.newsletter-input:focus {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.newsletter-btn {
  padding: 1.2rem 3rem;
  background: #f59e0b;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: #d97706;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
  .categories-nav {
    overflow-x: auto;
  }

  .product-section {
    padding: 0 2rem;
  }

  .offers-grid {
    grid-template-columns: 1fr 1fr;
  }

  .categories-grid,
  .trending-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-product-card {
    width: 180px;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .hero-content h2 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .categories-nav {
    gap: 0.5rem;
    padding: 1rem 1rem;
  }

  .category-nav-item {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .hero-banner {
    padding: 3rem 1.5rem;
    margin: 1rem;
    border-radius: 16px;
  }

  .hero-content h2 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-cta {
    width: 100%;
    padding: 0.9rem 2rem;
  }

  .product-section {
    padding: 0 1rem;
  }

  .offers-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .offer-card {
    padding: 2rem;
    min-height: auto;
  }

  .features-bar {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem auto;
    padding: 1.5rem;
  }

  .categories-grid,
  .trending-grid,
  .blogs-grid {
    grid-template-columns: 1fr;
  }

  .product-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .product-section-header h2 {
    font-size: 1.3rem;
  }

  .home-product-card {
    width: 160px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .newsletter-section {
    padding: 3rem 1.5rem;
    margin: 2rem 1rem;
    border-radius: 16px;
  }

  .newsletter-content h2 {
    font-size: 2rem;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 0.75rem;
  }

  .newsletter-input {
    padding: 1rem 1.5rem;
  }

  .newsletter-btn {
    padding: 1rem 2rem;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-content h2 {
    font-size: 1.5rem;
  }

  .section-header h2 {
    font-size: 1.3rem;
  }

  .newsletter-content h2 {
    font-size: 1.5rem;
  }

  .home-product-card {
    width: 140px;
  }

  .carousel-btn {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .product-carousel {
    margin-top: 1rem;
  }

  .offers-grid {
    gap: 1rem;
  }

  .offer-card {
    padding: 1.5rem;
  }

  .offer-card h3 {
    font-size: 1.5rem;
  }
}
