/* ===== BASE ===== */
body {
  font-family: "Poppins", sans-serif;
  background-color: #f9f9f9;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: #000;
}

.navbar-brand {
  letter-spacing: 1px;
}

.nav-link {
  color: #fff !important;
  margin: 0 10px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ffcc00 !important;
}

/* ===== HERO SECTION ===== */
.hero-section {
  height: 100vh;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
    url("https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=1350&q=80")
      center/cover fixed no-repeat;
}

.hero-section h1 {
  font-size: 3.5rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-section p {
  font-size: 1.2rem;
  opacity: 0.9;
}


.card-img-top{
   width: 416px;
   height: 450px;
   border-radius: 5px;
}

.card-img-top:hover{
transform: translateY(-8px);
}

h2{
  color: #00ffea;
}

/* ===== Promo Section ===== */
.promo-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.promo-card img {
  object-fit: cover;
  height: 450px;
  width: 100%;
  transition: transform 0.5s ease;
}

.promo-card:hover img {
  transform: scale(1.1);
}

.promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 30px;
  transition: all 0.4s ease;
}

.promo-overlay h4 {
  font-weight: 700;
  font-size: 1.5rem;
}

.promo-overlay p {
  font-size: 1rem;
  margin-top: 5px;
  opacity: 0.9;
}

.promo-overlay .btn {
  font-weight: 600;
  border-radius: 30px;
  padding: 8px 22px;
  transition: all 0.3s ease;
}

.promo-overlay .btn:hover {
  background: #000;
  color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 767px) {
  .promo-card img {
    height: 350px;
  }
  .promo-overlay h4 {
    font-size: 1.3rem;
  }
  .promo-overlay p {
    font-size: 0.9rem;
  }
}

body {
  background-color: #0b0d10;
  font-family: "Poppins", sans-serif;
}

.featured-products-dark {
  background: linear-gradient(145deg, #0b0d10, #1a1f25);
  padding: 80px 0;
}

.featured-products-dark h2 {
  font-size: 2.2rem;
  color: #ffffff;
  letter-spacing: 1px;
  position: relative;
}

.featured-products-dark h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #ff007f, #00e5ff);
  margin: 15px auto 0;
  border-radius: 2px;
}

.product-card-dark {
  background: #121417;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
  position: relative;
}

.product-card-dark:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(255, 0, 127, 0.4),
              0 0 15px rgba(0, 229, 255, 0.3);
}

.product-img {
  position: relative;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  border-radius: 16px 16px 0 0;
  transition: transform 0.5s ease;
}

.product-card-dark:hover img {
  transform: scale(1.1);
}

.cart-btn {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #ff007f, #00e5ff);
  color: #fff;
  border: none;
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.4s ease;
  opacity: 0;
}

.product-card-dark:hover .cart-btn {
  bottom: 20px;
  opacity: 1;
}

.cart-btn:hover {
  box-shadow: 0 0 20px rgba(255, 0, 127, 0.6),
              0 0 10px rgba(0, 229, 255, 0.6);
}

.product-info {
  padding: 20px;
}

.product-info h6 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.product-info small {
  color: #aaa;
}

.product-info p {
  color: #00e5ff;
  font-weight: 600;
  margin-top: 10px;
}

.img-fluid {
  width: auto;
  height: 370px;
}

/* ===== Responsive ===== */
@media (max-width: 767px) {
  .product-img img {
    height: 220px;
  }
}

/* Animated Gradient Background */
.special-offer-section {
  position: relative;
  background: linear-gradient(-45deg, #ff007f, #00e5ff, #6a11cb, #2575fc);
  background-size: 400% 400%;
  animation: gradientMove 10s ease infinite;
  border-radius: 20px;
  padding: 80px 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Text Styling */
.offer-text h2 {
  font-size: 2.8rem;
  letter-spacing: 1px;
}

.highlight-text {
  color: #00ffea;
}

/* Floating Image Animation */
.floating {
  animation: floatImg 4s ease-in-out infinite;
}

@keyframes floatImg {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

/* SHOP NOW Button */
.shop-btn {
  background: linear-gradient(90deg, #fff, #d1ecff);
  color: #000;
  font-weight: 600;
  transition: 0.3s;
  border: none;
}

.shop-btn:hover {
  background: #fff;
  color: #ff007f;
  transform: scale(1.08);
  box-shadow: 0 5px 18px rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
  .offer-text {
    text-align: center;
    margin-bottom: 40px;
  }
}


.features-section {
  position: relative;
  background-color: #f8f9fc;
  padding-top: 70px;
  padding-bottom: 70px;
  overflow: hidden;
}

/* Gradient Line on Top */
.features-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 4px;
  background: linear-gradient(90deg, #ff007f, #00e5ff, #6a11cb);
  border-radius: 2px;
}

/* Feature Cards */
.feature-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

/* Icons */
.feature-icon {
  font-size: 45px;
  background: linear-gradient(90deg, #ff007f, #00e5ff, #6a11cb);
  -webkit-background-clip:  text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
  transition: 0.4s;
}

.feature-card:hover .feature-icon {
  transform: scale(1.2) rotate(8deg);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

/* Text */
.feature-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.feature-card p {
  color: #555;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .feature-card {
    margin-bottom: 20px;
  }
}
.footer-section {
  background: #111;
  color: #bbb;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}

.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff007f, #00e5ff, #6a11cb);
}

.footer-title {
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #ff007f, #6a11cb);
  border-radius: 2px;
}

.footer-section a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #00e5ff;
  text-decoration: underline;
}

.play-badge {
  width: 150px;
  margin-top: 10px;
  transition: transform 0.3s ease;
}

.play-badge:hover {
  transform: scale(1.05);
}

.footer-bottom {
  border-top: 1px solid #333;
  background-color: #0d0d0d;
}

.footer-bottom p {
  color: #888;
  font-size: 0.9rem;
}

.footer-bottom span {
  color: #00e5ff;
  font-weight: 600;
}
