/* ===== HERO SECTION - DARK BLACK BACKGROUND WITH FLOATING STARS ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: #000000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  margin-top: -1px;
}

/* Stars Container */
.stars-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Star Base Style */
.star {
  position: absolute;
  background: radial-gradient(circle, #ffffff, #fff8e7);
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

/* Different star sizes */
.star-small {
  width: 2px;
  height: 2px;
}

.star-medium {
  width: 3px;
  height: 3px;
}

.star-large {
  width: 5px;
  height: 5px;
}

/* Star Twinkle Animation */
@keyframes twinkle {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
}

/* Star Floating Animation */
@keyframes floatStar {
  0% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-30px) translateX(15px);
  }
  50% {
    transform: translateY(-50px) translateX(-10px);
  }
  75% {
    transform: translateY(-25px) translateX(20px);
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}

/* Shooting Stars */
.shooting-star {
  position: absolute;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, #fff, transparent);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

.shooting-star::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes shootStar {
  0% {
    transform: translateX(0) translateY(0) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: translateX(500px) translateY(500px) rotate(45deg);
    opacity: 0;
  }
}

/* Hero Container */
.hero-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  position: relative;
  z-index: 10;
}

/* Hero Content */
.hero-content {
  flex: 1;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-block;
  margin-bottom: 1.5rem;
  animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.badge-text {
  background: rgba(255, 215, 0, 0.15);
  border: 1px solid rgba(255, 215, 0, 0.4);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #FFD700;
  backdrop-filter: blur(10px);
  display: inline-block;
  font-family: 'Poppins', sans-serif;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #ffffff;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  font-family: 'Playfair Display', serif;
}

.hero-gradient {
  background: linear-gradient(135deg, #FFD700, #FFA500, #c0c0c0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 2rem;
  max-width: 600px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
  font-family: 'Poppins', sans-serif;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.2rem;
  background: linear-gradient(135deg, #FFD700, #FFA500, #c0c0c0);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  color: #0a0a0a;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  font-family: 'Poppins', sans-serif;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  gap: 1rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.2rem;
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.5);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  color: #FFD700;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.btn-secondary:hover {
  background: rgba(255, 215, 0, 0.2);
  transform: translateY(-3px);
  border-color: #FFD700;
  gap: 1rem;
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFD700;
  line-height: 1;
  font-family: 'Playfair Display', serif;
}

.stat-label {
  font-size: 0.8rem;
  color: #c0c0c0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Poppins', sans-serif;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 215, 0, 0.3);
}

/* ===== AUTO SCROLLING IMAGES - HORIZONTAL SCROLL TO RIGHT ===== */
.hero-visual {
  flex: 1;
  position: relative;
  animation: fadeInRight 1s ease-out;
  overflow: hidden;
  padding: 2rem 0;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.scrolling-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.scrolling-track {
  display: flex;
  gap: 2rem;
  animation: scrollRight 20s linear infinite;
  width: max-content;
}

/* Pause on hover */
.scrolling-container:hover .scrolling-track {
  animation-play-state: paused;
}

.scroll-item {
  flex-shrink: 0;
  width: 280px;
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(10, 10, 10, 0.98));
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.scroll-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 0 2px rgba(255, 215, 0, 0.4);
}

.scroll-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.scroll-item:hover .scroll-image {
  transform: scale(1.05);
}

.image-caption {
  text-align: center;
  padding: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: #FFD700;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  font-family: 'Poppins', sans-serif;
  backdrop-filter: blur(5px);
}

/* Auto Scroll Animation - Moves to Right */
@keyframes scrollRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Glow Effect */
.glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: pulseGlow 3s ease-in-out infinite;
  z-index: 0;
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(0.9);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 215, 0, 0.6);
  border-radius: 20px;
  position: relative;
}

.mouse::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #FFD700;
  border-radius: 2px;
  animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(15px);
  }
}

.scroll-text {
  font-size: 0.7rem;
  color: #c0c0c0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Poppins', sans-serif;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-visual {
    order: -1;
    width: 100%;
  }
  
  .scroll-item {
    width: 240px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 5rem 1.5rem 3rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary, .btn-secondary {
    justify-content: center;
    width: 100%;
  }
  
  .hero-stats {
    gap: 1rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.7rem;
  }
  
  .scroll-item {
    width: 200px;
  }
  
  .image-caption {
    font-size: 0.75rem;
    padding: 8px;
  }
  
  .scrolling-track {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .badge-text {
    font-size: 0.75rem;
  }
  
  .hero-stats {
    flex-direction: column;
  }
  
  .stat-divider {
    width: 40px;
    height: 1px;
  }
  
  .scroll-item {
    width: 160px;
  }
  
  .image-caption {
    font-size: 0.7rem;
    padding: 6px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .scrolling-track {
    animation: none;
  }
  
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* ===== FEATURED CATEGORIES SECTION ===== */
.featured-categories {
    position: relative;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    overflow: hidden;
}

/* Section Header */
.categories-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-badge {
    display: inline-block;
    margin-bottom: 1rem;
}

.badge-text {
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.4);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #FFD700;
    font-family: 'Poppins', sans-serif;
    backdrop-filter: blur(10px);
    display: inline-block;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.title-gradient {
    background: linear-gradient(135deg, #FFD700, #FFA500, #c0c0c0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.section-description {
    font-size: 1.1rem;
    color: #c0c0c0;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Category Card */
.category-card {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.category-card:nth-child(1) { animation-delay: 0.2s; }
.category-card:nth-child(2) { animation-delay: 0.3s; }
.category-card:nth-child(3) { animation-delay: 0.4s; }
.category-card:nth-child(4) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 215, 0, 0.2);
}

/* Card Image Wrapper */
.card-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-card:hover .category-image {
    transform: scale(1.1);
}

/* Card Overlay */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(255, 215, 0, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-card:hover .card-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.category-card:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 0.5rem;
    display: block;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.overlay-content span {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
}

/* Card Content */
.card-content {
    padding: 1.5rem;
    text-align: center;
}

.category-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.3rem;
    font-family: 'Playfair Display', serif;
    transition: color 0.3s ease;
}

.category-card:hover .category-title {
    color: #FFD700;
}

.category-count {
    font-size: 0.85rem;
    color: #c0c0c0;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #FFD700;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.category-link i {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.category-link:hover {
    gap: 0.8rem;
    color: #c0c0c0;
}

.category-link:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .categories-grid {
        gap: 1.5rem;
    }
    
    .category-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 1024px) {
    .featured-categories {
        padding: 5rem 1.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .categories-grid {
        gap: 1.2rem;
    }
    
    .category-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .featured-categories {
        padding: 4rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .card-content {
        padding: 1rem;
    }
    
    .category-title {
        font-size: 1rem;
    }
    
    .category-count {
        font-size: 0.75rem;
    }
    
    .category-link {
        font-size: 0.8rem;
    }
    
    .overlay-content i {
        font-size: 2rem;
    }
    
    .overlay-content span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .badge-text {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }
    
    .categories-grid {
        gap: 1rem;
    }
    
    .card-content {
        padding: 0.8rem;
    }
    
    .category-title {
        font-size: 0.9rem;
    }
    
    .category-count {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }
    
    .category-link {
        font-size: 0.75rem;
    }
}

/* Smooth Scroll Animation */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.category-card.animate-in {
    animation: fadeInScale 0.6s ease-out forwards;
}

/* Hover Additional Effects */
.category-card {
    position: relative;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.category-card:hover::before {
    opacity: 1;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .category-card,
    .category-image,
    .card-overlay,
    .overlay-content,
    .category-link i {
        transition: none;
        animation: none;
    }
    
    .category-card {
        opacity: 1;
        transform: none;
    }
}
/* ===== BEST SELLING PRODUCTS SECTION ===== */
.best-selling {
    position: relative;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #0f0f0f 100%);
    overflow: hidden;
}

/* Section Header */
.products-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-badge {
    display: inline-block;
    margin-bottom: 1rem;
}

.badge-text {
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.4);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #FFD700;
    font-family: 'Poppins', sans-serif;
    backdrop-filter: blur(10px);
    display: inline-block;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.title-gradient {
    background: linear-gradient(135deg, #FFD700, #FFA500, #c0c0c0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.section-description {
    font-size: 1.1rem;
    color: #c0c0c0;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Products Grid - 4 columns for 8 products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    margin-bottom: 3rem;
}

/* Product Card */
.product-card {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUpCard 0.6s ease-out forwards;
}

.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.2s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }
.product-card:nth-child(6) { animation-delay: 0.3s; }
.product-card:nth-child(7) { animation-delay: 0.35s; }
.product-card:nth-child(8) { animation-delay: 0.4s; }

@keyframes fadeInUpCard {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 215, 0, 0.2);
}

/* Sale Badge */
.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

.product-badge.sale {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #0a0a0a;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Product Image */
.product-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

/* Product Actions */
.product-actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #FFD700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.action-btn:hover {
    background: #FFD700;
    color: #0a0a0a;
    transform: scale(1.1);
    border-color: #FFD700;
}

.action-btn.wishlist.active {
    background: #FFD700;
    color: #0a0a0a;
}

/* Product Info */
.product-info {
    padding: 1.2rem;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
}

.product-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: #FFD700;
}

.product-card:hover .product-title a {
    color: #FFD700;
}

/* Rating */
.product-rating {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    margin-bottom: 0.6rem;
    flex-wrap: wrap;
}

.product-rating i {
    font-size: 0.7rem;
    color: #FFD700;
}

.product-rating i.far {
    color: #666;
}

.rating-count {
    font-size: 0.65rem;
    color: #c0c0c0;
    margin-left: 0.3rem;
}

/* Price */
.product-price {
    margin-bottom: 1rem;
}

.current-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFD700;
    font-family: 'Poppins', sans-serif;
}

.old-price {
    font-size: 0.8rem;
    color: #c0c0c0;
    text-decoration: line-through;
    margin-left: 0.5rem;
}

/* Add to Cart Button */
.add-to-cart-btn {
    width: 100%;
    padding: 0.7rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    color: #FFD700;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #0a0a0a;
    border-color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

.add-to-cart-btn i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.add-to-cart-btn:hover i {
    transform: translateX(3px);
}

/* View All Button */
.view-all-wrapper {
    text-align: center;
    margin-top: 2rem;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 50px;
    color: #FFD700;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-3px);
    gap: 1rem;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.view-all-btn i {
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .best-selling {
        padding: 4rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .product-title {
        font-size: 0.9rem;
    }
    
    .current-price {
        font-size: 1rem;
    }
}

@media (max-width: 550px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
    color: #FFD700;
    padding: 0.8rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    border-left: 3px solid #FFD700;
    z-index: 9999;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(0);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100px);
    }
}

@media (max-width: 550px) {
    .toast-notification {
        left: 20px;
        right: 20px;
        text-align: center;
        transform: translateY(100px);
    }
    
    .toast-notification.show {
        transform: translateY(0);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #2c2418;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #FFD700, #c0c0c0);
    border-radius: 10px;
}

/* ===== PROMOTIONAL OFFER SECTION ===== */
.promo-offer {
    margin: 4rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Animated Background */
.promo-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(255, 215, 0, 0.05) 0%, 
        rgba(255, 165, 0, 0.03) 50%,
        transparent 100%);
    pointer-events: none;
    animation: bgShift 8s ease-in-out infinite;
}

@keyframes bgShift {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Decorative Dots Pattern */
.promo-offer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 40%, rgba(255, 215, 0, 0.08) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.promo-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

/* Left Content */
.promo-content {
    flex: 1;
}

.offer-badge {
    display: inline-block;
    margin-bottom: 1.2rem;
}

.offer-badge span {
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.4);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #FFD700;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.2);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(255, 215, 0, 0);
    }
}

.offer-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.discount-text {
    background: linear-gradient(135deg, #FFD700, #FFA500, #c0c0c0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 3.2rem;
    display: inline-block;
}

.offer-desc {
    font-size: 1rem;
    color: #c0c0c0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

.coupon-code {
    background: rgba(255, 215, 0, 0.15);
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-family: monospace;
    font-size: 1rem;
    color: #FFD700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.coupon-code:hover {
    background: rgba(255, 215, 0, 0.3);
    transform: scale(1.02);
}

/* Countdown Timer */
.countdown-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    justify-content: center;
    flex-wrap: wrap;
}

.time-unit {
    text-align: center;
    min-width: 65px;
}

.time-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFD700;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.time-label {
    font-size: 0.7rem;
    color: #c0c0c0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.time-sep {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFD700;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Shop Button */
.shop-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    color: #0a0a0a;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    }
}

.shop-now-btn:hover {
    transform: translateY(-2px);
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
    animation: none;
}

.shop-now-btn i {
    transition: transform 0.3s ease;
}

.shop-now-btn:hover i {
    transform: translateX(5px);
}

.offer-note {
    font-size: 0.7rem;
    color: #888;
    font-family: 'Poppins', sans-serif;
}

/* Right Visual */
.offer-visual {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

.discount-badge {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(192, 192, 192, 0.05));
    border-radius: 50%;
    padding: 2rem;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.3);
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.discount-circle {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.1));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 215, 0, 0.5);
    animation: rotateSlow 8s linear infinite;
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.discount-circle .percent {
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFD700;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.discount-circle .off-text {
    font-size: 1rem;
    color: #c0c0c0;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.3rem;
}

.sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sparkles span {
    position: absolute;
    font-size: 1.2rem;
    animation: sparkleFloat 4s ease-in-out infinite;
}

.sparkles span:nth-child(1) {
    top: -10px;
    right: 20px;
    animation-delay: 0s;
}

.sparkles span:nth-child(2) {
    bottom: -5px;
    left: 30px;
    animation-delay: 1s;
}

.sparkles span:nth-child(3) {
    top: 30%;
    right: -15px;
    animation-delay: 2s;
}

@keyframes sparkleFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-10px) rotate(15deg);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .promo-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .offer-title {
        font-size: 2.5rem;
    }
    
    .discount-text {
        font-size: 2.7rem;
    }
    
    .countdown-box {
        justify-content: center;
    }
    
    .offer-visual {
        order: -1;
    }
    
    .discount-circle {
        width: 150px;
        height: 150px;
    }
    
    .discount-circle .percent {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .promo-offer {
        margin: 3rem 1rem;
    }
    
    .promo-wrapper {
        padding: 1.5rem;
    }
    
    .offer-title {
        font-size: 2rem;
    }
    
    .discount-text {
        font-size: 2.2rem;
    }
    
    .offer-desc {
        font-size: 0.9rem;
    }
    
    .time-unit {
        min-width: 55px;
    }
    
    .time-number {
        font-size: 1.4rem;
    }
    
    .time-sep {
        font-size: 1.4rem;
    }
    
    .countdown-box {
        gap: 0.5rem;
        padding: 0.8rem;
    }
    
    .discount-circle {
        width: 130px;
        height: 130px;
    }
    
    .discount-circle .percent {
        font-size: 2.5rem;
    }
}

@media (max-width: 550px) {
    .promo-offer {
        margin: 2rem 0.8rem;
    }
    
    .promo-wrapper {
        padding: 1.2rem;
    }
    
    .offer-title {
        font-size: 1.8rem;
    }
    
    .discount-text {
        font-size: 2rem;
    }
    
    .time-unit {
        min-width: 45px;
    }
    
    .time-number {
        font-size: 1.2rem;
    }
    
    .time-label {
        font-size: 0.6rem;
    }
    
    .time-sep {
        font-size: 1.2rem;
    }
    
    .shop-now-btn {
        width: 100%;
        justify-content: center;
    }
    
    .discount-circle {
        width: 110px;
        height: 110px;
    }
    
    .discount-circle .percent {
        font-size: 2rem;
    }
    
    .discount-circle .off-text {
        font-size: 0.8rem;
    }
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-us {
    position: relative;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #0f0f0f 100%);
    overflow: hidden;
}

/* Background Decorative Elements */
.why-choose-us::before {
    content: '✦';
    position: absolute;
    font-size: 300px;
    color: rgba(255, 215, 0, 0.02);
    top: 50%;
    left: -100px;
    transform: translateY(-50%);
    pointer-events: none;
    animation: floatBackground 20s infinite ease-in-out;
}

.why-choose-us::after {
    content: '✧';
    position: absolute;
    font-size: 250px;
    color: rgba(192, 192, 192, 0.02);
    bottom: -50px;
    right: -80px;
    pointer-events: none;
    animation: floatBackground 25s infinite reverse ease-in-out;
}

@keyframes floatBackground {
    0%, 100% {
        transform: translateY(-50%) rotate(0deg);
    }
    50% {
        transform: translateY(-50%) rotate(10deg);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-badge {
    display: inline-block;
    margin-bottom: 1rem;
}

.badge-text {
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.4);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #FFD700;
    font-family: 'Poppins', sans-serif;
    backdrop-filter: blur(10px);
    display: inline-block;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.title-gradient {
    background: linear-gradient(135deg, #FFD700, #FFA500, #c0c0c0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.section-description {
    font-size: 1.1rem;
    color: #c0c0c0;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Feature Card */
.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

/* Card Hover Effect */
.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 215, 0, 0.2);
}

/* Card Glow Effect on Hover */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

/* Icon Wrapper */
.feature-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(192, 192, 192, 0.08));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    border-color: #FFD700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 215, 0, 0.15));
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.feature-icon i {
    font-size: 2.5rem;
    color: #FFD700;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
    color: #FFD700;
}

/* Icon Glow Effect */
.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card:hover .icon-glow {
    opacity: 1;
    animation: pulseGlow 1.5s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

/* Feature Title */
.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-family: 'Playfair Display', serif;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
    color: #FFD700;
}

/* Feature Description */
.feature-description {
    font-size: 0.9rem;
    color: #c0c0c0;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-family: 'Poppins', sans-serif;
}

/* Feature Link */
.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #FFD700;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
}

.feature-card:hover .feature-link {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.feature-link span {
    transition: all 0.3s ease;
}

.feature-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.feature-link:hover {
    gap: 0.8rem;
}

.feature-link:hover i {
    transform: translateX(5px);
}

/* Trust Badge */
.trust-badge {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    animation: fadeInUp 0.6s ease-out 0.5s both;
    opacity: 0;
}

.trust-content {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 215, 0, 0.05);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.trust-content:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.trust-content i {
    font-size: 1.2rem;
    color: #FFD700;
}

.trust-content span {
    font-size: 0.9rem;
    color: #e0e0e0;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
    
    .feature-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 4rem 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .feature-icon {
        width: 65px;
        height: 65px;
    }
    
    .feature-icon i {
        font-size: 2rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .trust-content {
        padding: 0.6rem 1.5rem;
    }
    
    .trust-content span {
        font-size: 0.8rem;
    }
}

@media (max-width: 550px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .badge-text {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }
    
    .feature-card {
        padding: 1.2rem;
    }
    
    .feature-card:hover {
        transform: translateY(-5px);
    }
    
    .trust-content {
        padding: 0.5rem 1.2rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .feature-card,
    .feature-icon,
    .feature-link,
    .trust-content {
        transition: none;
        animation: none;
    }
    
    .feature-card {
        opacity: 1;
        transform: none;
    }
    
    .feature-link {
        opacity: 0;
        visibility: hidden;
    }
    
    .feature-card:hover .feature-link {
        opacity: 1;
        visibility: visible;
    }
}

/* ===== TESTIMONIALS SECTION - GOLD/BLACK/SILVER THEME ===== */
.testimonials-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative Gold Elements */
.testimonials-section::before {
    content: '✦';
    position: absolute;
    font-size: 200px;
    color: rgba(255, 215, 0, 0.03);
    top: 10%;
    left: -50px;
    pointer-events: none;
    animation: floatGold 20s infinite ease-in-out;
}

.testimonials-section::after {
    content: '✧';
    position: absolute;
    font-size: 180px;
    color: rgba(192, 192, 192, 0.03);
    bottom: 5%;
    right: -30px;
    pointer-events: none;
    animation: floatGold 25s infinite reverse ease-in-out;
}

@keyframes floatGold {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Header Styles */
.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out;
}

.testimonials-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.12);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.testimonials-badge .badge-icon {
    font-size: 1rem;
}

.testimonials-badge span:last-child {
    font-size: 0.85rem;
    font-weight: 500;
    color: #FFD700;
    font-family: 'Poppins', sans-serif;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.title-highlight {
    background: linear-gradient(135deg, #FFD700, #FFA500, #c0c0c0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.title-underline {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #c0c0c0);
    margin: 1rem auto;
    border-radius: 2px;
}

.testimonials-desc {
    font-size: 1rem;
    color: #c0c0c0;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

/* Slider Container */
.testimonials-slider {
    position: relative;
    margin: 2rem 0;
    overflow: hidden;
    padding: 1rem 0;
}

.slider-container {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
}

/* Testimonial Card - Dark Theme */
.testimonial-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 215, 0, 0.1);
}

.quote-icon {
    margin-bottom: 1rem;
}

.quote-icon i {
    font-size: 2rem;
    color: #FFD700;
    opacity: 0.5;
}

.testimonial-review {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 1.2rem;
    font-family: 'Poppins', sans-serif;
    font-style: italic;
}

/* Rating Stars */
.rating-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1.2rem;
}

.rating-stars i {
    font-size: 0.9rem;
    color: #FFD700;
}

.rating-stars i.far {
    color: #666;
}

/* Customer Info */
.customer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.customer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    color: #0a0a0a;
    font-family: 'Poppins', sans-serif;
}

.customer-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.2rem;
    font-family: 'Poppins', sans-serif;
}

.customer-location {
    font-size: 0.75rem;
    color: #c0c0c0;
    font-family: 'Poppins', sans-serif;
}

/* Slider Navigation Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot:hover {
    background: #FFD700;
    transform: scale(1.2);
}

.dot.active {
    width: 28px;
    border-radius: 5px;
    background: #FFD700;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 215, 0, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    font-size: 1.2rem;
    z-index: 10;
}

.slider-arrow:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
    transform: translateY(-50%) scale(1.1);
    color: #FFD700;
}

.prev-arrow {
    left: -20px;
}

.next-arrow {
    right: -20px;
}

/* Trust Badge */
.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.trust-item i {
    font-size: 1.2rem;
    color: #FFD700;
}

.trust-item span {
    font-size: 0.85rem;
    color: #c0c0c0;
    font-family: 'Poppins', sans-serif;
}

.trust-divider {
    width: 1px;
    height: 25px;
    background: rgba(255, 215, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1100px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .prev-arrow {
        left: -10px;
    }
    
    .next-arrow {
        right: -10px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 1rem;
    }
    
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonial-card {
        flex: 0 0 calc(100% - 0rem);
        padding: 1.5rem;
    }
    
    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .prev-arrow {
        left: 5px;
    }
    
    .next-arrow {
        right: 5px;
    }
    
    .trust-badge {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trust-divider {
        width: 40px;
        height: 1px;
    }
}

@media (max-width: 480px) {
    .testimonials-title {
        font-size: 1.6rem;
    }
    
    .testimonials-desc {
        font-size: 0.9rem;
    }
    
    .testimonial-review {
        font-size: 0.85rem;
    }
    
    .customer-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .customer-details h4 {
        font-size: 0.9rem;
    }
    
    .customer-location {
        font-size: 0.7rem;
    }
    
    .rating-stars i {
        font-size: 0.8rem;
    }
    
    .slider-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide Animation */
.slide-in {
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .slider-container,
    .testimonial-card,
    .slider-arrow,
    .dot {
        transition: none;
    }
}

/* ===== NEWSLETTER SUBSCRIPTION SECTION ===== */
.newsletter-subscribe {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative Gold Elements */
.newsletter-subscribe::before {
    content: '✦';
    position: absolute;
    font-size: 250px;
    color: rgba(255, 215, 0, 0.03);
    top: 20%;
    left: -80px;
    pointer-events: none;
    animation: floatGold 20s infinite ease-in-out;
}

.newsletter-subscribe::after {
    content: '✧';
    position: absolute;
    font-size: 220px;
    color: rgba(192, 192, 192, 0.03);
    bottom: 10%;
    right: -60px;
    pointer-events: none;
    animation: floatGold 25s infinite reverse ease-in-out;
}

@keyframes floatGold {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.newsletter-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.newsletter-content {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Icon */
.newsletter-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 215, 0, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 215, 0, 0.3);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(255, 215, 0, 0.1);
        transform: scale(1.05);
    }
}

.newsletter-icon i {
    font-size: 2rem;
    color: #FFD700;
}

/* Offer Badge */
.offer-badge {
    display: inline-block;
    margin-bottom: 1rem;
}

.offer-text {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0a0a0a;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
    }
}

/* Title */
.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.title-gold {
    background: linear-gradient(135deg, #FFD700, #FFA500, #c0c0c0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* Description */
.newsletter-desc {
    font-size: 1rem;
    color: #c0c0c0;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

/* Form Styles - FIXED */
.newsletter-form {
    margin-bottom: 2rem;
}

.input-group {
    margin-bottom: 1rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(30, 30, 30, 0.95);
    border-radius: 60px;
    border: 2px solid rgba(255, 215, 0, 0.25);
    transition: all 0.3s ease;
    overflow: hidden;
    padding: 4px;
}

.input-wrapper:focus-within {
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.15);
}

/* ICON FIX */
.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #FFD700;
    font-size: 0.95rem;
    opacity: 0.8;
}

/* INPUT FIX */
.input-wrapper input {
    flex: 1;
    padding: 14px 14px 14px 48px; /* clean spacing */
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    outline: none;
}

.input-wrapper input::placeholder {
    color: #888;
    font-weight: 300;
}

/* BUTTON FIX */
.subscribe-btn {
    height: 44px;
    padding: 0 22px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border: none;
    border-radius: 50px;
    color: #0a0a0a;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 6px;
}

.subscribe-btn span {
    transition: all 0.3s ease;
}

.subscribe-btn i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    gap: 0.9rem;
}

.subscribe-btn:hover i {
    transform: translateX(5px);
}

.subscribe-btn:active {
    transform: translateY(0);
}

/* Form Note */
.form-note {
    font-size: 0.7rem;
    color: #888;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    margin-top: 1rem;
}

/* Guarantee */
.newsletter-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.guarantee-item i {
    font-size: 1rem;
    color: #FFD700;
}

.guarantee-item span {
    font-size: 0.8rem;
    color: #c0c0c0;
    font-family: 'Poppins', sans-serif;
}

.guarantee-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 215, 0, 0.3);
}

/* Success Message */
.subscribe-success {
    background: rgba(76, 175, 80, 0.15);
    border: 1px solid rgba(76, 175, 80, 0.4);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
    text-align: center;
    animation: slideInUp 0.4s ease-out;
}

.subscribe-success i {
    color: #4caf50;
    margin-right: 0.5rem;
}

.subscribe-success span {
    color: #4caf50;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Error Message */
.subscribe-error {
    background: rgba(244, 67, 54, 0.15);
    border: 1px solid rgba(244, 67, 54, 0.4);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
    text-align: center;
    animation: shake 0.5s ease-out;
}

.subscribe-error i {
    color: #f44336;
    margin-right: 0.5rem;
}

.subscribe-error span {
    color: #ff6b6b;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Loading State */
.subscribe-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.subscribe-btn.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .newsletter-subscribe {
        padding: 4rem 1.5rem;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-desc {
        font-size: 0.9rem;
    }
    
    .input-wrapper {
        flex-direction: column;
        background: transparent;
        border: none;
        gap: 1rem;
    }
    
    .input-wrapper:focus-within {
        box-shadow: none;
        background: transparent;
    }
    
    .input-icon {
        display: none;
    }
    
    .input-wrapper input {
        background: rgba(30, 30, 30, 0.9);
        border: 2px solid rgba(255, 215, 0, 0.25);
        border-radius: 60px;
        padding: 1rem 1.5rem;
        width: 100%;
        text-align: center;
    }
    
    .input-wrapper input:focus {
        border-color: #FFD700;
        box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
    }
    
    .subscribe-btn {
        width: 100%;
        justify-content: center;
        margin: 0;
        padding: 1rem;
    }
    
    .newsletter-guarantee {
        flex-direction: column;
        gap: 1rem;
    }
    
    .guarantee-divider {
        width: 40px;
        height: 1px;
    }
}

@media (max-width: 480px) {
    .newsletter-subscribe {
        padding: 3rem 1rem;
    }
    
    .newsletter-title {
        font-size: 1.6rem;
    }
    
    .newsletter-icon {
        width: 60px;
        height: 60px;
    }
    
    .newsletter-icon i {
        font-size: 1.5rem;
    }
    
    .offer-text {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .newsletter-desc {
        font-size: 0.85rem;
    }
    
    .guarantee-item span {
        font-size: 0.7rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .newsletter-icon,
    .offer-text,
    .input-wrapper,
    .subscribe-btn,
    .subscribe-success,
    .subscribe-error {
        animation: none;
    }
    
    .subscribe-btn:hover {
        transform: none;
    }
}


