/* Modern CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #ff6b9d;
  --primary-dark: #e85a8a;
  --secondary-color: #f8f9fa;
  --accent-color: #25d366;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
  --border-radius: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: 'Plus Jakarta Sans', 'Noto Sans', sans-serif;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container h2{
  font-family: 'Playfair Display', serif;
  font-weight: 300;
  font-size: 2rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* Modern Button Styles */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 107, 157, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-bottom-color: rgba(255, 107, 157, 0.2);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  position: relative;
}

.brand {
  font-size: 1.75rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.brand::before {
  content: '✨';
  position: absolute;
  left: -2rem;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.brand:hover::before {
  opacity: 1;
  transform: scale(1);
}

.brand:hover {
  transform: scale(1.05);
}

.menu-toggle {
  background: none;
  border: none;
  display: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 44px;
  height: 44px;
  position: relative;
  border: 2px solid transparent;
}

.menu-toggle:hover {
  background: rgba(255, 107, 157, 0.1);
  border-color: rgba(255, 107, 157, 0.2);
  transform: scale(1.05);
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  position: relative;
  transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

.hamburger.active {
  background: transparent;
}

.hamburger.active::before {
  transform: rotate(45deg);
  top: 0;
}

.hamburger.active::after {
  transform: rotate(-45deg);
  bottom: 0;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.nav-links li a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 12px 20px;
  border-radius: 30px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  background: transparent;
}

.nav-links li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: left 0.5s ease;
}

.nav-links li a:hover::before {
  left: 100%;
}

.nav-links li a:hover {
  color: var(--primary-color);
  background: rgba(255, 107, 157, 0.08);
  border-color: rgba(255, 107, 157, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.15);
}

.nav-links li a:active {
  transform: translateY(0);
}

/* Active link styling */
.nav-links li a.active {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.nav-links li a.active:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.nav-links.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.5rem 0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-radius: 0 0 20px 20px;
  border: 1px solid rgba(255, 107, 157, 0.1);
  border-top: none;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-links.active li {
  margin: 0.3rem 1rem;
}

.nav-links.active li a {
  border-radius: 15px;
  padding: 15px 20px;
  font-size: 1.1rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.9), rgba(232, 85, 138, 0.8)), url('asset/bgimage2.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 10rem 0 8rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

@media (max-width: 1024px) {
  .hero {
    background-attachment: scroll;
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

/* Hero Badge */
.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out;
  box-shadow: 0 4px 15px rgba(232, 85, 138, 0.2);
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease-out 0.1s both;
  line-height: 1.1;
}

.tagline {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 600;
  animation: fadeInUp 1s ease-out 0.2s both;
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  font-weight: 500;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 0.3s both;
}

/* Hero Features */
.hero-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
}

.feature-item i {
  font-size: 1.2rem;
  color: #25d366;
}

/* Hero CTA Group */
.hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.shop-now-btn {
  background: linear-gradient(135deg, var(--white), #f8f9fa);
  color: var(--primary-color);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.shop-now-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  background: var(--white);
}

.whatsapp-cta {
  background: linear-gradient(135deg, var(--accent-color), #128c7e);
  color: var(--white);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
}

.whatsapp-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.stat-item {
  text-align: center;
  color: var(--white);
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Product Highlights */
.product-highlights {
  padding: 5rem 0;
}

.product-highlights h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

/* Modern Product Cards */
.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(255, 107, 157, 0.1);
}

.product-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(255, 107, 157, 0.15);
  border-color: rgba(255, 107, 157, 0.2);
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 300px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.product-badge:not(.bestseller):not(.new):not(.trending):not(.sale) {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
}

.product-badge.bestseller {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: var(--white);
}

.product-badge.new {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
}

.product-badge.trending {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: var(--white);
}

.product-badge.sale {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: var(--white);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.quick-view-btn {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-color);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.quick-view-btn:hover {
  background: var(--white);
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-info {
  padding: 1.5rem;
  text-align: left;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-description {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.stars {
  display: flex;
  gap: 2px;
}

.stars i {
  color: #fbbf24;
  font-size: 0.9rem;
}

.rating-text {
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 500;
}

.product-price {
  margin-bottom: 1.5rem;
}

.price-range {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
}

.current-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-color);
}

.old-price {
  font-size: 1rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-right: 0.5rem;
}

/* Popular Products */
.popular-products {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.popular-products h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  padding: 1rem 0;
}

/* Product Actions */
.product-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.action-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--primary-color);
  font-size: 1.2rem;
  backdrop-filter: blur(10px);
  text-decoration: none;
}

.action-btn:hover {
  background: var(--white);
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.wishlist-btn:hover {
  color: #ef4444;
}

.quick-view-btn:hover {
  color: var(--primary-dark);
}

.order-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  margin: 0 1rem 1rem;
  box-shadow: var(--shadow);
}

.order-btn:hover {
  background: linear-gradient(135deg, var(--accent-color), #128c7e);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* About Section */
.about {
  background: var(--white);
  color: var(--text-dark);
  border-radius: var(--border-radius);
  padding: 6rem 2rem;
  margin: 4rem auto;
  text-align: center;
  max-width: 1000px;
  width: 90%;
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.about h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.about p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 2;
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-light);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: var(--white);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

.footer .container {
  text-align: center;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.footer-links li a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 16px;
  border-radius: 25px;
  transition: var(--transition);
}

.footer-links li a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.iclass {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.iclass a {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.iclass a:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: var(--shadow-hover);
}

.social-icons {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.social-icons p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* WhatsApp Float Button */
.whatsapp-float {
  display: none;
}

/* Floating Products */
.floating-products {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-product {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 3px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}

.floating-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-product-1 {
  top: 20%;
  left: 10%;
  animation: float 6s ease-in-out infinite;
}

.floating-product-2 {
  top: 60%;
  right: 15%;
  animation: float 6s ease-in-out infinite 2s;
}

.floating-product-3 {
  top: 30%;
  right: 8%;
  animation: float 6s ease-in-out infinite 4s;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--white);
  animation: fadeInUp 1s ease-out 0.8s both;
}

.scroll-text {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scroll-arrow {
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
  }

  .nav-links li {
    margin: 0.5rem 0;
  }

  .nav-links.active {
    display: flex;
  }

  .hero {
    padding: 6rem 0 4rem;
    min-height: 80vh;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .tagline {
    font-size: 1.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-features {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .hero-stats {
    gap: 2rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .floating-products {
    display: none;
  }

  .product-highlights h2,
  .popular-products h2,
  .about h2 {
    font-size: 2rem;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .product-card {
    margin: 0 auto;
    max-width: 350px;
  }

  .product-image {
    height: 250px;
  }

  .product-info {
    padding: 1.25rem;
  }

  .product-title {
    font-size: 1.1rem;
  }

  .current-price {
    font-size: 1.2rem;
  }

  .product-overlay {
    backdrop-filter: blur(3px);
  }

  .quick-view-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .action-btn {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .about {
    padding: 2rem;
    margin: 2rem auto;
    width: 95%;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  .whatsapp-float {
    display: block;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), #128c7e);
    border-radius: 50%;
    box-shadow: var(--shadow-hover);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }

  .whatsapp-float:hover {
    transform: scale(1.1);
  }

  .whatsapp-float img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
  }
}

@media (max-width: 480px) {
  .container {
    width: 95%;
    padding: 0 10px;
  }

  .hero {
    padding: 6rem 0;
  }

  .hero {
    padding: 5rem 0 3rem;
    min-height: 70vh;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .tagline {
    font-size: 1rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 6px 16px;
  }

  .hero-features {
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .feature-item {
    font-size: 0.85rem;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 1.3rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .scroll-indicator {
    bottom: 1rem;
  }

  .scroll-text {
    font-size: 0.75rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .product-card {
    max-width: 100%;
    border-radius: 16px;
  }

  .product-image {
    height: 220px;
  }

  .product-info {
    padding: 1rem;
  }

  .product-title {
    font-size: 1rem;
  }

  .product-description {
    font-size: 0.85rem;
  }

  .current-price {
    font-size: 1.1rem;
  }

  .product-badge {
    top: 10px;
    left: 10px;
    padding: 4px 8px;
    font-size: 0.7rem;
  }

  .quick-view-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .action-btn {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .product-highlights,
  .popular-products {
    padding: 3rem 0;
  }
}