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

:root {
  --blush: #ffd1dc;
  --rose: #ffb6c1;
  --hot-pink: #ff69b4;
  --deep-pink: #ff1493;
  --magenta: #c71585;
  --cream: #faf9f6;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-700: #374151;
  --gray-900: #111827;
  --dark-bg: #0a0a0a;
  --dark-surface: #1a1a1a;
  --neon-pink: #ff0080;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  background: var(--cream);
  color: var(--gray-900);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Rose Background Animation */
.rose-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.rose {
  position: absolute;
  width: 120px;
  height: 120px;
  opacity: 0.6;
  will-change: transform;
  transition: transform 0.1s linear;
}

.rose img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 15px rgba(255, 105, 180, 0.3));
}

.rose-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 25s;
}

.rose-2 {
  top: 40%;
  left: 10%;
  animation-delay: -5s;
  animation-duration: 30s;
  width: 150px;
  height: 150px;
}

.rose-3 {
  top: 80%;
  left: 20%;
  animation-delay: -10s;
  animation-duration: 22s;
  width: 100px;
  height: 100px;
}

.rose-4 {
  top: 30%;
  left: 10%;
  animation-delay: -15s;
  animation-duration: 28s;
  width: 130px;
  height: 130px;
}

.rose-5 {
  top: 50%;
  left: 40%;
  animation-delay: -20s;
  animation-duration: 26s;
  width: 110px;
  height: 110px;
}

.rose-6 {
  top: 20%;
  left: 50%;
  animation-delay: -8s;
  animation-duration: 24s;
  width: 140px;
  height: 140px;
}

.rose-7 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 25s;
}

.rose-8 {
  top: 60%;
  left: 80%;
  animation-delay: -5s;
  animation-duration: 30s;
  width: 150px;
  height: 150px;
}

.rose-9 {
  top: 80%;
  left: 20%;
  animation-delay: -10s;
  animation-duration: 22s;
  width: 100px;
  height: 100px;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  background: rgba(250, 249, 246, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 182, 193, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 3px;
  background: linear-gradient(135deg, var(--hot-pink), var(--deep-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-menu a {
  text-decoration: none;
  color: var(--gray-700);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--hot-pink);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: var(--hot-pink);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-700);
  position: relative;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.icon-btn:hover {
  color: var(--hot-pink);
  transform: translateY(-2px);
}

.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--hot-pink);
  color: white;
  font-size: 0.7rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background: var(--gray-700);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 3rem;
  background: linear-gradient(
    135deg,
    rgba(255, 209, 220, 0.3) 0%,
    rgba(250, 249, 246, 0.5) 50%,
    rgba(255, 182, 193, 0.2) 100%
  );
  z-index: auto;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  animation: fadeInUp 1s ease;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 105, 180, 0.1);
  border: 1px solid rgba(255, 105, 180, 0.3);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--deep-pink);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
}

.gradient-text {
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--hot-pink),
    var(--deep-pink),
    var(--neon-pink)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-700);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

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

.btn {
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--hot-pink), var(--deep-pink));
  color: white;
  box-shadow: 0 10px 30px rgba(255, 105, 180, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 105, 180, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--gray-700);
  border: 2px solid var(--gray-300);
}

.btn-secondary:hover {
  border-color: var(--hot-pink);
  color: var(--hot-pink);
  transform: translateY(-3px);
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--gray-700);
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--hot-pink), transparent);
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0%,
  100% {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(10px);
  }
}

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

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section Headers */
.section-header {
  margin-bottom: 2.5rem;
}

.section-header.centered {
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--hot-pink);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -1px;
  color: var(--gray-900);
}

/* Featured Products */
.featured {
  padding: 4rem 0; /* Reduced padding */
  position: relative;
  z-index: auto;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Smaller min width */
  gap: 2rem; /* Reduced gap */
}

.featured-card {
  background: white;
  border-radius: 16px; /* Slightly smaller radius */
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05); /* Softer shadow */
  transition: all 0.3s ease;
  cursor: pointer;
}

.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(255, 105, 180, 0.15);
}

.featured-image {
  position: relative;
  overflow: hidden;
}

.product-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--neon-pink);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 10;
  box-shadow: 0 3px 10px rgba(255, 0, 128, 0.3);
}

.product-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 220px;
  max-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  background-size: cover !important;
  background-position: center !important;
}

@media (max-width: 768px) {
  .product-placeholder {
    aspect-ratio: 1 / 1;
    min-height: 180px;
  }
}

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

.product-icon {
  font-size: 4rem;
  filter: drop-shadow(0 5px 15px rgba(255, 105, 180, 0.3));
}

.featured-info {
  padding: 1.5rem;
}

.featured-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.featured-info p {
  color: var(--gray-700);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.price-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.price-original {
  font-size: 1rem;
  color: var(--gray-300);
  text-decoration: line-through;
}

.price-sale {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--hot-pink);
}

.btn-add-cart {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--hot-pink), var(--deep-pink));
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-add-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 105, 180, 0.4);
}

/* Categories */
.categories {
  padding: 4rem 0 3rem; /* Reduced padding */
  background: var(--gray-50);
  position: relative;
  z-index: auto;
  overflow: hidden;
}

/* grid used on category listing page */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem; /* Reduced gap */
}

/* horizontal slider container used on home page */
.category-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
  -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
}
.category-slider::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome/Safari */
}

.category-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.category-slider-wrapper {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.8s ease-in-out; /* Slow transition for auto-slide */
  will-change: transform;
}

.category-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  min-width: 240px; /* Smaller width */
  position: relative;
  height: 280px; /* Reduced height */
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* mobile: two cards per page */
@media (max-width: 768px) {
  .category-card {
    min-width: 45%;
    height: 240px;
  }
}

/* Category image that fills the card */
.category-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: var(--gray-100);
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.category-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, rgba(255, 182, 193, 0.3), rgba(255, 105, 180, 0.3));
}

/* Category name overlay on top */
.category-name-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  color: white;
  z-index: 2;
}

.category-name-overlay h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Category description on hover */
.category-description-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.4) 100%);
  color: white;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.category-card:hover .category-description-overlay {
  opacity: 1;
  transform: translateY(0);
}

.category-description-overlay p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  max-height: 4.5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* Auto-slide indicators */
.category-slider-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.category-slider-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.category-slider-indicator.active {
  background: var(--hot-pink);
  transform: scale(1.2);
}

.category-slider-indicator:hover {
  background: var(--deep-pink);
}

/* Dark Premium Section */
.dark-premium {
  padding: 8rem 0;
  background: var(--dark-bg);
  position: relative;
  z-index: auto;
  overflow: hidden;
}

.dark-premium::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(255, 105, 180, 0.15),
    transparent 70%
  );
  filter: blur(60px);
}

/* Dark section specific roses */
.dark-rose-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.dark-rose {
  position: absolute;
  width: 150px;
  height: 150px;
  opacity: 0.4;
  will-change: transform;
  transition: transform 0.1s linear;
}

.dark-rose img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(255, 0, 128, 0.6))
    drop-shadow(0 0 40px rgba(255, 105, 180, 0.4));
}

.dark-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.dark-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: white;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.neon-text {
  font-weight: 700;
  color: var(--neon-pink);
  text-shadow:
    0 0 20px rgba(255, 0, 128, 0.6),
    0 0 40px rgba(255, 0, 128, 0.4);
}

.dark-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4rem;
  line-height: 1.8;
}

.dark-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  text-align: left;
}

.dark-feature {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 182, 193, 0.1);
  transition: all 0.3s ease;
}

.dark-feature:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 105, 180, 0.3);
  transform: translateY(-5px);
}

.feature-number {
  font-size: 0.85rem;
  color: var(--hot-pink);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.dark-feature h4 {
  font-size: 1.25rem;
  color: white;
  margin-bottom: 0.75rem;
}

.dark-feature p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* Testimonials */
.testimonials {
  padding: 8rem 0;
  position: relative;
  z-index: auto;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(255, 105, 180, 0.15);
}

.stars {
  color: var(--hot-pink);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--hot-pink));
}

.testimonial-author h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--gray-700);
}

/* CTA Section */
.cta-section {
  padding: 8rem 2rem;
  background: linear-gradient(135deg, var(--hot-pink), var(--deep-pink));
  text-align: center;
  position: relative;
  z-index: auto;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
  background: white;
  color: var(--hot-pink);
}

.btn-large:hover {
  background: var(--cream);
  transform: translateY(-3px);
}

/* Product Listing */
.product-listing {
  padding: 4rem 0; /* Reduced padding */
  position: relative;
  z-index: auto;
}

.listing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem; /* Reduced margin */
  flex-wrap: wrap;
  gap: 1.5rem; /* Reduced gap */
}

.listing-title {
  font-size: 2rem; /* Smaller font */
  font-weight: 300;
  color: var(--gray-900);
}

.filter-select {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--gray-200);
  border-radius: 50px;
  font-size: 0.95rem;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-select:focus {
  outline: none;
  border-color: var(--hot-pink);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* Smaller min width */
  gap: 1.5rem; /* Reduced gap */
}

.product-card {
  background: white;
  border-radius: 16px; /* Smaller radius */
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); /* Softer shadow */
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(255, 105, 180, 0.15);
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 260px; /* Reduced height */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image {
  transform: scale(1.06);
}

.product-icon-large {
  font-size: 3.5rem; /* Smaller icon */
  filter: drop-shadow(0 5px 15px rgba(255, 105, 180, 0.3));
}

.quick-view-btn {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 0.6rem 1.5rem;
  background: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-card:hover .quick-view-btn {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.product-info {
  padding: 1.25rem; /* Reduced padding */
}

.product-info h3 {
  font-size: 1.1rem; /* Smaller font */
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--gray-900);
}

.product-category {
  font-size: 0.8rem; /* Smaller font */
  color: var(--gray-700);
  margin-bottom: 0.75rem;
}

.product-pricing {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.btn-add-cart-product {
  width: 100%;
  padding: 0.75rem;
  background: linear-gradient(135deg, var(--hot-pink), var(--deep-pink));
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-add-cart-product:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 105, 180, 0.3);
}

/* Product Detail Modal */
.product-detail-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.product-detail-modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  position: relative;
  background: white;
  border-radius: 30px;
  max-width: 1200px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUp 0.4s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: var(--gray-100);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--hot-pink);
  color: white;
  transform: rotate(90deg);
}

.product-detail-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3rem;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gallery-main {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.product-badge-detail {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--neon-pink);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(255, 0, 128, 0.3);
}

.main-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 300px;
  max-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background-size: contain !important;
  background-repeat: no-repeat !important;
}

@media (max-width: 768px) {
  .main-image {
    aspect-ratio: 4 / 5;
    min-height: 250px;
    max-height: 450px;
  }
}

.product-icon-xl {
  font-size: 8rem;
  filter: drop-shadow(0 10px 30px rgba(255, 105, 180, 0.4));
}

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

.thumbnail {
  height: 100px;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
  border-color: var(--hot-pink);
  transform: scale(1.05);
}

.product-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.product-category-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 105, 180, 0.1);
  color: var(--hot-pink);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  width: fit-content;
}

.product-detail-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.2;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.product-rating span {
  color: var(--gray-700);
  font-size: 0.95rem;
}

.product-price-block {
  padding: 1.5rem;
  background: var(--gray-50);
  border-radius: 15px;
}

.price-detail-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.price-original-large {
  font-size: 1.25rem;
  color: var(--gray-300);
  text-decoration: line-through;
}

.price-sale-large {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--hot-pink);
}

.discount-badge {
  padding: 0.5rem 1rem;
  background: var(--neon-pink);
  color: white;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
}

.product-description h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--gray-900);
}

.product-description p {
  color: var(--gray-700);
  line-height: 1.8;
}

.product-features {
  display: grid;
  gap: 0.75rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gray-700);
}

.feature-icon {
  color: var(--hot-pink);
  font-weight: 700;
}

.product-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 2px solid var(--gray-200);
  border-radius: 50px;
  overflow: hidden;
}

.qty-btn {
  width: 45px;
  height: 45px;
  background: white;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--gray-700);
  transition: all 0.3s ease;
}

.qty-btn:hover {
  background: var(--gray-100);
  color: var(--hot-pink);
}

.qty-input {
  width: 60px;
  text-align: center;
  border: none;
  font-size: 1rem;
  font-weight: 600;
}

.btn-add-cart-large {
  flex: 1;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--hot-pink), var(--deep-pink));
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-add-cart-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 105, 180, 0.4);
}

.product-trust {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--gray-50);
  border-radius: 15px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--gray-700);
}

/* Footer */
.footer {
  background: var(--dark-bg);
  color: rgba(255, 255, 255, 0.8);
  padding: 6rem 0 2rem;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  background: linear-gradient(135deg, var(--hot-pink), var(--deep-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.footer-brand p {
  margin-bottom: 2rem;
  line-height: 1.8;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--hot-pink);
  transform: translateY(-3px);
}

.footer-links h4 {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 1.5rem;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--hot-pink);
  padding-left: 5px;
}

.footer-newsletter h4 {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 1rem;
}

.footer-newsletter p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  color: white;
  font-size: 0.95rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
  width: 50px;
  height: 50px;
  background: var(--hot-pink);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--deep-pink);
  transform: scale(1.1);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--hot-pink);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .product-detail-container {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
    z-index: 1001;
  }

  .nav-menu.active {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 6rem 2rem;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: fadeIn 0.3s ease;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: all !important;
  }

  .nav-menu.active a {
    font-size: 1.5rem;
  }

  .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);
  }

  body.menu-open {
    overflow: hidden;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

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

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

  .dark-features {
    grid-template-columns: 1fr;
  }

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

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

  .listing-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .modal-content {
    padding: 2rem;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

  .product-actions {
    flex-direction: column;
  }

  .quantity-selector {
    width: 100%;
    justify-content: space-between;
  }
}
