.hero-banner {
  background: url('/Logo/artb.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4); /* dark overlay for better text visibility */
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-family: 'Sacramento', cursive;
  font-size: 64px;
  margin-bottom: 10px;
}

.hero-content p {
  font-family: 'Questrial', sans-serif;
  font-size: 30px;
  font-weight: 500;
}


.gallery-section {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #111, #1a1a1a);
  text-align: center;
  color: #fff;
}

.gallery-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #e9b949; /* golden accent */
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
  font-family: 'Georgia', serif;
}

.gallery-slider {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.swiper-slide img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  cursor: pointer;
  object-fit: cover;
}

/* Lightbox */
#lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

#lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 10px;
}

.how-it-works {
  background: #0f0f0f; /* Dark background to match site */
  padding: 60px 20px;
  text-align: center;
  color: #f5f5f5;
}

.how-it-works .container {
  max-width: 1200px;
  margin: auto;
}

.how-title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 40px;
  position: relative;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.step {
  background: #1a1a1a; /* Darker card */
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(255,255,255,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(255,255,255,0.12);
}

.step-number {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  background: #e9900a;
  width: 40px;
  height: 40px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #fdfdfd;
}

.step p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.6;
}



#flash-sale-banner {
    display: none;
    position: relative;
    width: 100%;
    background: url('Logo/sale1.png') center center / cover no-repeat;
    border: 0; /* no visible border */
    box-shadow: 
        0 0 10px #00ffcc inset,
        0 0 20px #00ffcc inset,
        0 0 15px #00ffcc;
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    border-radius: 0;
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    animation: pulse-green 2s infinite;
    overflow: hidden; /* prevent scrollbars if needed */
}

#flash-sale-background {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    opacity: 0.85;
}

#flash-sale-content {
    position: relative;
    z-index: 2;
}

#sale-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #ffff00;
    text-shadow: 0 0 5px #ffff00, 0 0 10px #ffff00;
}

#sale-discount {
    font-size: 28px;
    font-weight: bold;
    color: #ff0000;
    animation: flash-text 1s infinite alternate;
    margin-bottom: 15px;
}

#sale-end-date,
#sale-ends {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffffff;
}

#countdown-timer {
    font-size: 22px;
    font-weight: bold;
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00, 0 0 10px #00ff00;
}

#flash-sale-banner a {
    display: inline-block;
    padding: 12px 24px;
    background: #00ff00;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;

    transition: all 0.3s ease;
}

#flash-sale-banner a:hover {
    background: #00cc00;
    box-shadow: 0 0 15px #00ff00, 0 0 30px #00ff00;
    transform: scale(1.05);
}

@keyframes pulse-green {
    0% {
        box-shadow: 
            0 0 10px #00ffcc inset,
            0 0 20px #00ffcc inset,
            0 0 15px #00ffcc;
    }
    50% {
        box-shadow: 
            0 0 15px #33ffcc inset,
            0 0 25px #33ffcc inset,
            0 0 20px #33ffcc;
    }
    100% {
        box-shadow: 
            0 0 10px #00ffcc inset,
            0 0 20px #00ffcc inset,
            0 0 15px #00ffcc;
    }
}


@keyframes flash-text {
    0% {
        color: #ff0000;
        text-shadow: 0 0 5px #ff0000, 0 0 10px #ff0000;
    }
    100% {
        color: #ffffff;
        text-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff;
    }
}


/* Testimonials slider styling */
.testimonials-slider {
    padding: 50px 0;
    background: #111; /* MATCH your site's black background */
    text-align: center;
}


.testimonials-slider h2 {
    font-size: 28px;
    color: #fff; /* white heading */
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.testimonials-slider .swiper-slide {
    width: 100%;
    padding: 20px 25px;
    border: 1px solid #222;
    border-radius: 8px;
    background: #1a1a1a;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.05);
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
    box-sizing: border-box;
}



.testimonials-slider .swiper-slide .stars {
    color: #FFD700; /* gold stars */
    font-size: 18px;
    margin-bottom: 10px;
}

.testimonials-slider .swiper-slide .review-text {
    font-size: 16px;
    color: #ccc; /* light grey text */
    font-style: italic;
    margin-bottom: 12px;
    line-height: 1.5;
}

.testimonials-slider .swiper-slide .review-author {
    font-size: 14px;
    color: #888; /* subtle grey */
    font-weight: 500;
}

/* Pagination dots styling */
.testimonials-slider .swiper-pagination-bullet {
    background-color: #555;
    opacity: 1;
    margin: 0 4px !important;
    transition: background-color 0.3s ease;
}

.testimonials-slider .swiper-pagination-bullet-active {
    background-color: #FFD700; /* gold active dot */
}

.testimonials-slider .swiper-wrapper {
  display: flex;
  align-items: center;
}


.trendy-products-slider .swiper-pagination {
    display: none !important;
}
