/* Brand Colors */
:root {
  --purple: #6A0DAD;
  --gold: #FFD700;
  --light-bg: #f9f9f9;
  --dark-text: #333;
}

/* General Styles */
body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  margin: 0;
  background: var(--light-bg);
  color: var(--dark-text);
}


  /* Sales Banner */
    .sales-banner {
      background: linear-gradient(135deg, rgba(106, 13, 173, 0.95) 0%, rgba(212, 175, 55, 0.95) 100%);
      color: #fff;
      padding: 1.25rem 2rem;
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(106, 13, 173, 0.3);
    }

    /* Faint background product images */
    .sales-banner::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: 
        url('/assets/images/product1.jpeg'),
        url('/assets/images/product2.jpeg'),
        url('/assets/images/product3.jpeg'),
        url('/assets/images/product1.jpeg');
      background-size: 200px 200px, 180px 180px, 160px 160px, 190px 190px;
      background-position: 
        5% 50%,
        25% 20%,
        75% 70%,
        95% 30%;
      background-repeat: no-repeat;
      opacity: 0.3;
      filter: blur(1px);
      z-index: 0;
      animation: subtleFloat 20s ease-in-out infinite;
    }

    @keyframes subtleFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    .sales-banner::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(106, 13, 173, 0.3) 0%, rgba(212, 175, 55, 0.2) 100%);
      z-index: 0;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0) scale(1); }
      50% { transform: translateY(-20px) scale(1.05); }
    }

    .sales-content {
      position: relative;
      z-index: 2;
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 3rem;
    }

    .sales-header {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }

    .sales-badge {
      background: rgba(255, 255, 255, 0.25);
      backdrop-filter: blur(10px);
      padding: 0.4rem 0.9rem;
      border-radius: 50px;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      border: 2px solid rgba(255, 255, 255, 0.4);
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.05); }
    }

    .sales-title {
      font-size: 1.75rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 2px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      white-space: nowrap;
      line-height: 1.2;
    }

    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .offers-grid {
      display: flex;
      align-items: center;
      gap: 1.75rem;
      justify-content: center;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .offer-card {
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(15px);
      border: 2px solid rgba(255, 255, 255, 0.35);
      border-radius: 12px;
      padding: 0.85rem 1.5rem;
      text-align: center;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      min-width: 150px;
    }

    .offer-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.5s ease;
    }

    .offer-card:hover::before {
      left: 100%;
    }

    .offer-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      border-color: rgba(255, 255, 255, 0.4);
    }

    .offer-icon {
      font-size: 1.75rem;
      margin-bottom: 0.35rem;
      display: block;
      animation: bounce 2s ease-in-out infinite;
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-5px); }
    }

    .offer-percentage {
      font-size: 1.4rem;
      font-weight: 900;
      display: block;
      margin-bottom: 0.2rem;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      line-height: 1;
    }

    .offer-title {
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      opacity: 0.95;
    }

    .offer-description {
      display: none;
    }

    .countdown-container {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 0.6rem 1.25rem;
      background: rgba(0, 0, 0, 0.25);
      border-radius: 50px;
      backdrop-filter: blur(10px);
      border: 2px solid rgba(255, 255, 255, 0.2);
    }

    .countdown-label {
      font-size: 0.85rem;
      opacity: 0.95;
      text-transform: uppercase;
      letter-spacing: 1px;
      white-space: nowrap;
      font-weight: 600;
    }

    .countdown-timer {
      display: flex;
      gap: 0.85rem;
    }

    .countdown-item {
      display: flex;
      align-items: baseline;
      gap: 0.3rem;
    }

    .countdown-value {
      font-size: 1.6rem;
      font-weight: 800;
      line-height: 1;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .countdown-unit {
      font-size: 0.7rem;
      text-transform: lowercase;
      opacity: 0.9;
      font-weight: 600;
    }

    .cta-button {
      display: inline-block;
      padding: 0.7rem 2rem;
      background: #fff;
      color: #6a0dad;
      text-decoration: none;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
      transition: all 0.3s ease;
      border: 2px solid transparent;
      white-space: nowrap;
    }

    .cta-button:hover {
      background: transparent;
      color: #fff;
      border-color: #fff;
      transform: scale(1.05);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
      .sales-content {
        gap: 2rem;
      }

      .offers-grid {
        gap: 1.25rem;
      }

      .offer-card {
        min-width: 130px;
        padding: 0.75rem 1.25rem;
      }
    }

    @media (max-width: 992px) {
      .sales-content {
        grid-template-columns: auto 1fr;
        gap: 1.5rem;
      }

      .sales-header {
        grid-column: 1;
      }

      .offers-grid {
        grid-column: 2;
        grid-row: 1;
        gap: 1rem;
      }

      .sales-content > div:last-child {
        grid-column: 1 / -1;
        justify-self: center;
      }

      .offer-card {
        min-width: 120px;
        padding: 0.65rem 1rem;
      }

      .countdown-container {
        padding: 0.5rem 0.85rem;
      }
    }

    @media (max-width: 768px) {
      .sales-banner {
        padding: 1rem;
      }

      .sales-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
      }

      .sales-header {
        align-items: center;
        gap: 0.5rem;
      }

      .sales-title {
        font-size: 1.35rem;
        white-space: normal;
        letter-spacing: 1px;
      }

      .sales-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.75rem;
      }

      .offers-grid {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
        grid-column: 1;
        grid-row: auto;
      }

      .offer-card {
        min-width: 110px;
        padding: 0.6rem 0.9rem;
      }

      .offer-icon {
        font-size: 1.5rem;
      }

      .offer-percentage {
        font-size: 1.2rem;
      }

      .offer-title {
        font-size: 0.72rem;
      }

      .sales-content > div:last-child {
        grid-column: 1;
        flex-direction: column;
        gap: 0.75rem;
      }

      .countdown-container {
        flex-direction: row;
        padding: 0.55rem 1rem;
      }

      .countdown-timer {
        gap: 0.75rem;
      }

      .countdown-value {
        font-size: 1.35rem;
      }

      .countdown-label {
        font-size: 0.75rem;
      }

      .cta-button {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
      }
    }

    @media (max-width: 480px) {
      .offer-card {
        min-width: 95px;
        padding: 0.5rem 0.75rem;
      }

      .offer-icon {
        font-size: 1.25rem;
      }

      .offer-percentage {
        font-size: 1rem;
      }

      .offer-title {
        font-size: 0.65rem;
      }

      .countdown-timer {
        gap: 0.65rem;
      }

      .countdown-value {
        font-size: 1.15rem;
      }

      .countdown-unit {
        font-size: 0.6rem;
      }

      .countdown-label {
        font-size: 0.7rem;
      }
    }

    /* Print styles */
    @media print {
      .sales-banner {
        background: #6a0dad;
        box-shadow: none;
      }
    }

/* HERO */
.hero {
  position: relative;
  height: 84vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0f0520;
  /* Decorative top and bottom frame */
border-top: 4px double rgba(218, 165, 32, 0.7); /* 50% transparent */
border-bottom: 6px double rgba(218, 165, 32, 0.5);
box-shadow: 
  0 8px 20px rgba(0, 0, 0, 0.4),
  0 -8px 20px rgba(0, 0, 0, 0.4);
}

/* Add decorative frame effect */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
  z-index: 3;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  z-index: 3;
  pointer-events: none;
}

.hero-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  perspective: 1500px;
}

.hero-image {
  flex: 1;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(218, 165, 32, 0.3);
  margin: 0 -15px;
}

/* Desktop 3D card effect */
@media (min-width: 769px) {
  .hero-image:nth-child(1) {
    transform: rotateY(8deg);
    box-shadow: 
      8px 8px 40px rgba(0, 0, 0, 0.7),
      inset -2px 0 20px rgba(218, 165, 32, 0.2);
    z-index: 1;
  }

  .hero-image:nth-child(1)::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 70%, rgba(218, 165, 32, 0.15) 100%);
    pointer-events: none;
  }

  .hero-image:nth-child(2) {
    transform: scale(1.08) translateZ(50px);
    box-shadow: 
      0 20px 60px rgba(0, 0, 0, 0.8),
      0 0 40px rgba(218, 165, 32, 0.3),
      inset 0 0 30px rgba(147, 51, 234, 0.2);
    z-index: 2;
    border-color: rgba(218, 165, 32, 0.6);
    margin: 0 -10px;
  }

  .hero-image:nth-child(2)::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to right,
      rgba(147, 51, 234, 0.15) 0%,
      transparent 20%,
      transparent 80%,
      rgba(218, 165, 32, 0.15) 100%
    );
    pointer-events: none;
  }

  .hero-image:nth-child(2)::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, var(--gold), var(--purple), var(--gold));
    z-index: -1;
    opacity: 0.5;
    filter: blur(8px);
    pointer-events: none;
  }

  .hero-image:nth-child(3) {
    transform: rotateY(-8deg);
    box-shadow: 
      -8px 8px 40px rgba(0, 0, 0, 0.7),
      inset 2px 0 20px rgba(147, 51, 234, 0.2);
    z-index: 1;
  }

  .hero-image:nth-child(3)::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, transparent 70%, rgba(147, 51, 234, 0.15) 100%);
    pointer-events: none;
  }

  /* Hover effects */
  .hero-image:nth-child(1):hover {
    transform: rotateY(4deg) scale(1.02);
  }

  .hero-image:nth-child(2):hover {
    transform: scale(1.1) translateZ(60px);
    box-shadow: 
      0 25px 70px rgba(0, 0, 0, 0.9),
      0 0 50px rgba(218, 165, 32, 0.5);
  }

  .hero-image:nth-child(3):hover {
    transform: rotateY(-4deg) scale(1.02);
  }
}

/* Mobile: Hide non-active images and enable sliding */
@media (max-width: 768px) {
  .hero-images {
    display: block;
    perspective: none;
  }
  
  .hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    transform: none;
    border: none;
    box-shadow: none;
    margin: 0;
  }
  
  .hero-image.active {
    opacity: 1;
    z-index: 1;
  }
  
  .hero-image::before,
  .hero-image::after {
    display: none;
  }
}

.hero-overlay {
  position: relative;
  background: rgba(106, 13, 173, 0.25);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-content {
  margin-top: -4rem;
  text-align: center;
  color: #fff;
  max-width: 650px;
  padding: 0 1rem;
  position: relative;
  z-index: 4;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
  text-shadow: 
    2px 2px 8px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(218, 165, 32, 0.3);
}

.hero-content p {
  margin-bottom: 30px !important;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.cta-btn {
  background: var(--gold);
  color: var(--purple);
  padding: 0.9rem 1.7rem;
  border-radius: 40px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(218, 165, 32, 0.4);
}

.cta-btn:hover {
  background: #e6c200;
  box-shadow: 
    0 6px 16px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(218, 165, 32, 0.6);
  transform: translateY(-2px);
}

/* Slide indicators for mobile */
.hero-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  gap: 10px;
  z-index: 3;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.indicator.active {
  background: var(--gold);
  border-color: var(--gold);
}

@media (max-width: 768px) {
  .hero-indicators {
    display: flex;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
}



/* CATEGORIES */
.categories-section {
  text-align: center;
  padding: 40px 20px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.category-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.category-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.category-card span {
  padding: 10px;
  background: var(--purple);
  color: #fff;
  font-weight: bold;
}

.category-card:hover {
  transform: translateY(-5px);
}

/* ABOUT SECTION */
.about-section {
  background: var(--purple);
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}

.about-btn {
  display: inline-block;
  margin-top: 15px;
  background: var(--gold);
  color: var(--purple);
  padding: 8px 16px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
}

/* PRODUCTS */
.products-section {
  padding: 30px 20px;
  max-width: 100%;
  margin: auto;
    background: rgb(244, 243, 237);

}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.section-title{
  margin-bottom: 2rem;
}

.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.02);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 15px;
}

.price {
  color: var(--purple);
  font-weight: bold;
  margin: 10px 0;
}

.btn-add {
  background: var(--purple);
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
}

.btn-add:hover {
  background: #550a8a;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f3f0f9 0%, #e8e3f0 100%);
  overflow: hidden;
}

.testimonials-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--purple);
  margin-bottom: 50px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonials-slider-container {
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

.testimonials-slider {
  display: flex;
  gap: 25px;
  animation: slide 35s linear infinite;
  width: fit-content;
}

.testimonials-slider:hover {
  animation-play-state: paused;
}

.testimonial-slide {
  position: relative;
  min-width: 320px;
  height: 480px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(106, 13, 173, 0.2);
  transition: all 0.3s ease;
}

.testimonial-slide:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(106, 13, 173, 0.35);
}

.testimonial-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(106, 13, 173, 0.95) 0%, rgba(106, 13, 173, 0.75) 60%, transparent 100%);
  padding: 25px 20px;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.testimonial-slide:hover .testimonial-overlay {
  transform: translateY(-5px);
  background: linear-gradient(to top, rgba(106, 13, 173, 0.98) 0%, rgba(106, 13, 173, 0.8) 60%, transparent 100%);
}

.testimonial-overlay blockquote {
  margin: 0;
}

.testimonial-overlay p {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.6;
  font-style: italic;
  margin: 0 0 12px 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  font-family: 'Segoe UI', Tahoma, sans-serif;
}

.testimonial-overlay cite {
  color: var(--gold);
  font-size: 0.95rem;
  font-style: normal;
  font-weight: bold;
  display: block;
  text-align: right;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Animation */
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-320px * 5 - 125px));
  }
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 50px 20px;
  }

  .testimonials-section .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .testimonial-slide {
    min-width: 280px;
    height: 420px;
  }

  .testimonial-overlay {
    padding: 20px 18px;
  }

  .testimonial-overlay p {
    font-size: 0.95rem;
  }

  .testimonial-overlay cite {
    font-size: 0.9rem;
  }

  @keyframes slide {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-280px * 5 - 125px));
    }
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 40px 15px;
  }

  .testimonials-section .section-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .testimonial-slide {
    min-width: 260px;
    height: 400px;
  }

  .testimonials-slider {
    gap: 20px;
  }

  .testimonial-overlay {
    padding: 18px 15px;
  }

  .testimonial-overlay p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  @keyframes slide {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-260px * 5 - 100px));
    }
  }
}
/* NEWSLETTER */
.newsletter-section {
  background: var(--purple);
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  gap: 10px;
}

.newsletter-form input {
  padding: 10px;
  border-radius: 25px;
  border: none;
  width: 250px;
}

.newsletter-form button {
  background: var(--gold);
  color: var(--purple);
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
}



/* Style add-to-cart form */
.add-to-cart-form {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

/* Quantity input */
.add-to-cart-form input[type="number"] {
  width: 60px;              /* compact width */
  padding: 6px 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  text-align: center;
  font-size: 0.9rem;
}

/* Remove browser spinners for cleaner look */
.add-to-cart-form input[type="number"]::-webkit-outer-spin-button,
.add-to-cart-form input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.add-to-cart-form input[type="number"] {
  -moz-appearance: textfield;
}

/* Button refinement */
.btn-add {
  background: var(--purple);
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn-add:hover {
  background: #550a8a;
}

/* Responsive: stack on mobile */
@media (max-width: 500px) {
  .add-to-cart-form {
    flex-direction: column;
    align-items: stretch;
  }

  .add-to-cart-form input[type="number"] {
    width: 100%;
  }

  .btn-add {
    width: 100%;
  }
}




