/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #222;
  overflow-x: hidden;
}

/* ✅ HERO SECTION */
.hero-section {
  background: url("Images1/background.webp") no-repeat center center/cover;
  color: #fff;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 0;
}

/* ✅ HEADER */
.header {
  width: 100%;
  padding: 20px;
  position: relative;
  z-index: 2;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.logo {
  display: flex;
  align-items: center;
  margin-left: -30px;
  gap: 8px;
}

.logo img {
  width: 160px;
  height: 50px;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  z-index: 1000;
}

.nav ul li {
  position: relative; /* Needed for dropdown positioning */
}

.nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav ul li a:hover {
  color: #ff038a;
}

/* Home Dropdown */
/* Home Dropdown */
.home-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; 
  left: 0;
  background: #fff;
  min-width: 120px; /* Reduced width */
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  border-radius: 5px;
  z-index: 1000;
  font-size: 14px; /* Smaller font */
}

.home-dropdown .dropdown-menu li a {
  color: #333;
  padding: 6px 10px; /* Reduced padding */
  display: block;
  font-weight: 400;
  transition: background 0.3s;
}

.home-dropdown .dropdown-menu li a:hover {
  background: #ff038a;
  color: #fff;
}

.home-dropdown:hover .dropdown-menu {
  display: block;
}

/* Optional caret icon styling */
.home-dropdown > a .fa-caret-down {
  margin-left: 5px;
  font-size: 0.7em;
}

/* ===== Wishlist & Cart Dropdown ===== */
.icons {
  display: flex;
  align-items: center;
  gap: 30px; /* slightly more space between icons */
  position: relative;
}

.icon-item i {
  font-size: 16px; /* compact size */
}



.icon-item {
  position: relative;
  cursor: pointer;
}

.icon-item i {
  font-size: 20px;
  color: #fff;
  transition: color 0.3s;
}

.icon-item i:hover {
  color: #ff038a;
}

.badge-icon {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #ff038a;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  border-radius: 50%;
  padding: 2px 5px;
}

.dropdown-panel {
  position: absolute;
  top: 28px;
  right: 0;
  width: 250px;
  background: #fff;
  color: #111;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  padding: 12px;
  display: none;
  z-index: 9999;
}

.dropdown-panel h4 {
  font-size: 15px;
  margin: 0 0 8px;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
  color: #111;
}

.dropdown-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 200px;
  z-index: 9999;
  overflow-y: auto;
}

.dropdown-panel li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  z-index: 9999;
  border-bottom: 1px solid #f1f1f1;
}

.dropdown-panel li img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 6px;
}

.dropdown-panel li p {
  font-size: 13px;
  margin: 0;
  flex: 1;
}

.empty-text {
  text-align: center;
  color: #777;
  font-size: 13px;
  margin-top: 10px;
}

.icon-item:hover .dropdown-panel {
  display: block;
}

/* Smooth hover transition */
.icon-item i {
  transition: color 0.3s, transform 0.3s;
}
.icon-item:hover i {
  color: #ff038a;
  transform: scale(1.1);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

.dropdown-toggle {
  margin-left: 5px;
  cursor: pointer;
  display: inline-block;
}

.dropdown-toggle.open i {
  transform: rotate(180deg);
  transition: transform 0.3s;
}

.dropdown-menu {
  display: none;
}

.dropdown-menu.show {
  display: block;
}


/* ===== Mobile Header Adjustments ===== */
@media (max-width: 768px) {
  /* Header container slightly left-aligned */
  .header-container {
    width: 95%;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 30px;
  }

  /* Smaller logo */
  .logo img {
    width: 80px;
    height: auto;
  }

  /* Smaller hamburger */
  .hamburger span {
    width: 20px;
    height: 2.5px;
  }

  .hamburger {
    gap: 3px;
  }

  /* Smaller icons */
  .icons {
    gap: 15px;
  }

  .icon-item i {
    font-size: 16px;
  }

  .badge-icon {
    font-size: 9px;
    top: -6px;
    right: -8px;
    padding: 1.5px 4px;
  }

  /* Slight left shift for layout balance */
  .header {
    padding: 10px 0px;
  }

  /* Keep dropdown panels readable */
  .dropdown-panel {
    right: -20px; /* slight left shift */
    width: 220px;
  }
}

/* ===== Extra small devices (<= 425px) ===== */
@media (max-width: 425px) {
  .logo img {
    width: 90px;
  }

  .hamburger span {
    width: 18px;
  }

  .icons {
    gap: 10px;
  }

  .icon-item i {
    font-size: 14px;
  }
}

/* ================== Responsive Media Queries ================== */

/* Tablet & smaller laptops (<= 992px) */
@media (max-width: 992px) {
  /* Hero content */
  .hero-content h1 { font-size: 36px; }
  .hero-content .sub-heading { font-size: 16px; }
  .animated-text { height: 56px; }
  .animated-text span { font-size: 32px; }

  /* Navbar */
  .nav ul { gap: 20px; }
  .icons { gap: 20px; }
}

/* Mobile devices (<= 768px) */
/* Mobile devices (<= 768px) */
@media (max-width: 768px) {
  /* Hamburger visible */
  .hamburger { display: flex; }

  /* Mobile nav menu - now full width */
  .nav ul {
    position: absolute;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    width: 100%; /* ✅ full width */
    border-radius: 0;
    padding: 15px 0;
    gap: 0;
    transition: right 0.3s ease-in-out;
    z-index: 9999;
  }

  .nav ul.show { right: 0; } /* ✅ slide in fully */

  .nav ul li { padding: 12px 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .nav ul li a { font-size: 15px; color: #fff; }

  /* Home dropdown full width */
  .home-dropdown .dropdown-menu {
    position: relative;
    top: 0;
    left: 0;
    background: #222;
    border-radius: 0;
    width: 100%; /* ✅ full width dropdown */
    display: none;
    flex-direction: column;
    padding: 8px 0;
  }

  .home-dropdown .dropdown-menu.show { display: flex; }
  .home-dropdown .dropdown-menu li a {
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
  }

  .home-dropdown > a .fa-caret-down {
    color: #fff;
    margin-left: 5px;
    font-size: 0.8em;
  }

  /* Hero content */
  .hero-content { max-width: 80%; text-align: center; margin: 0 auto; }
  .hero-content h1 { font-size: 32px; }
  .hero-content .sub-heading { font-size: 15px; }
  .animated-text { height: 50px; }
  .animated-text span { font-size: 28px; }
}

/* Small mobile devices (<= 576px) */
@media (max-width: 576px) {
  .hero-content { max-width: 90%; }
  .hero-content h1 { font-size: 28px; }
  .hero-content .sub-heading { font-size: 14px; }
  .animated-text { height: 44px; }
  .animated-text span { font-size: 24px; }

  /* ✅ Full-width nav retained */
  .nav ul { width: 100%; top: 65px; right: -100%; }
  .nav ul.show { right: 0; }

  .home-dropdown .dropdown-menu { width: 100%; }
  .home-dropdown .dropdown-menu li a { font-size: 13px; padding: 9px 18px; }

  .icons { gap: 15px; }
}

/* Extra small devices (<= 425px) */
@media (max-width: 425px) {
  .hero-content { max-width: 95%; }
  .hero-content h1 { font-size: 24px; }
  .hero-content .sub-heading { font-size: 13px; }
  .animated-text { height: 40px; }
  .animated-text span { font-size: 20px; }

  /* ✅ Full width maintained */
  .nav ul { width: 100%; top: 60px; right: -100%; }
  .nav ul.show { right: 0; }
  .home-dropdown .dropdown-menu { width: 100%; }

  .home-dropdown .dropdown-menu li a { font-size: 12px; padding: 8px 15px; }

  .hamburger span { width: 22px; height: 2.5px; }
  .icons { gap: 12px; }

  /* Hero container adjustments */
  .hero-container { padding: 20px 10px; }
}

/* Desktop: hover dropdown */
@media (min-width: 768px) {
  .home-dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* Mobile: toggle dropdown */
.home-dropdown .dropdown-menu.open {
  display: block !important;
}

/* Arrow rotation on mobile */
.home-dropdown .dropdown-toggle i.open {
  transform: rotate(180deg);
  transition: transform 0.3s;
}

/* Wishlist & Cart dropdown */
#wishlistDropdown.open,
#cartDropdown.open {
  display: block !important;
}


/* ✅ HERO CONTENT & IMAGE */
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  margin: auto;
  flex: 1;
  position: relative;
  z-index: 2;
  padding: 30px 0;
  overflow: hidden;
}

.hero-content {
  max-width: 60%;
}

.hero-content h1 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  white-space: nowrap;
}

.hero-content .sub-heading {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin-top: 15px;
  margin-bottom: 20px;
}

.hero-content .sub-heading span {
  color: #ff038a;
  font-weight: 600;
}

.hero-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.hero-features li {
  color: #fff;
  font-size: 15px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-features i {
  color: #ff038a;
  font-size: 18px;
}

.price {
  margin: 20px 0;
  font-size: 20px;
  color: #fff;
}

.price span {
  color: #ff038a;
  font-weight: bold;
  font-size: 24px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.primary-btn {
  background: #ff038a;
  color: #000;
}

.primary-btn:hover {
  background: #fff;
  color: #000;
}

.secondary-btn {
  border: 2px solid #fff;
  color: #fff;
}

.secondary-btn:hover {
  background: #fff;
  color: #000;
}

.hero-image {
  position: relative;
  width: 500px;
  height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.image-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.image-slider img {
  width: 100%;
  height: auto;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}


.delivery-badge {
  position: absolute;
  top: -20px; /* 👈 moves it above the delivery image */
  right: 10px;
  background: #fff;
  color: #000;
  border-radius: 12px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 3;
}

.delivery-badge i {
  background: #ff038a;
  padding: 10px;
  border-radius: 50%;
  color: #fff;
}

.delivery-badge h4 {
  font-size: 16px;
  margin-bottom: 3px;
}

.delivery-badge p {
  font-size: 13px;
  color: #555;
}

/* Animated rotating/fading lines for the H1 */
.animated-text {
  position: relative;
  display: inline-block;
  width: 80%;
  /* Reserve height equal to one line of the heading.
     Adjust if your h1 font-size/line-height are different. */
  height: 64px;               /* ← change if needed to match your heading */
  box-sizing: border-box;
  margin: 0 0 16px 0;
  vertical-align: middle;
  line-height: 1.05;
}

/* Each phrase stacked exactly on top of each other */
.animated-text span {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  display: block;
  color: #ff038a;
  opacity: 0;
  transform: translateY(10px);
  text-align: left;          /* change to center if you want centered text */
  animation: fadeCycle 9s infinite;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
}

/* Stagger the phrases so they appear one after another */
.animated-text span:nth-child(1) { animation-delay: 0s; }
.animated-text span:nth-child(2) { animation-delay: 3s; }
.animated-text span:nth-child(3) { animation-delay: 6s; }

/* Keyframes: fade in, hold, fade out, stay hidden */
@keyframes fadeCycle {
  0%   { opacity: 0; transform: translateY(10px); }
  6%   { opacity: 1; transform: translateY(0); }   /* fade in quickly */
  30%  { opacity: 1; transform: translateY(0); }   /* visible */
  36%  { opacity: 0; transform: translateY(-10px); }/* fade out */
  100% { opacity: 0; transform: translateY(-10px); }/* remain hidden until next cycle */
}

.header {
  position: relative; /* or fixed if you want sticky */
  z-index: 10000;
}

.dropdown-panel {
  position: absolute;
  top: 50px; /* adjust to header height */
  right: 0;
  z-index: 10001; /* ensure above everything */
}

.hero-section::before {
  z-index: 0; /* already behind header */
}

/* ================= Hero Section Responsive Media Queries ================= */

/* ================= Hero Section Responsive Media Queries ================= */

/* Tablets & smaller laptops (<= 992px) */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    align-items: center; /* center content & image */
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
  }

  .hero-content {
    max-width: 90%;
    text-align: center;
  }

  .hero-image {
    width: 80%;
    height: auto; /* image scales */
  }

  .delivery-badge {
    top: auto;
    bottom: 10px; /* place below image */
    right: 10px;
  }

  .hero-section {
    min-height: 120vh; /* increase height */
  }
}

/* Mobile devices (<= 768px) */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 40px 15px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content .sub-heading {
    font-size: 15px;
  }

  .hero-image {
    width: 90%;
    height: auto;
  }

  .delivery-badge {
    bottom: 5px;
    right: 5px;
  }

  .hero-section {
    min-height: 140vh; /* taller but content stays aligned */
  }
}

/* Small mobile devices (<= 576px) */
@media (max-width: 576px) {
  .hero-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    z-index: 1;
    padding: 30px 10px;
  }

  .hero-content h1 {
    font-size: 24px;
    margin-top: -100px;
  }

  .hero-content .sub-heading {
    font-size: 14px;
    margin-top: -50px;
  }

  .hero-image {
    width: 95%;
    height: auto;
  }

  .delivery-badge {
    display: none;
  }

  .hero-features {
    text-align: center;
  }
  
  .hero-section {
    min-height: 160; /* increase height without pushing content */
  }
}



/* Extra small devices (<= 425px) */
@media (max-width: 425px) {
  .hero-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 1;
    padding: 20px 5px;
  }

  .hero-features {
    text-align: center;
  }

  .hero-content h1 {
    font-size: 20px;
    margin-top: -200px;
  }

  .hero-content .sub-heading {
    font-size: 12px;
    margin-top: -100px;
  }

  .hero-image {
    width: 100%;
    height: auto;
  }

  .delivery-badge {
    bottom: 5px;
    right: 5px;
  }

  .hero-section {
    min-height: 180vh; /* taller hero */
  }
}

/* Extra small devices (<= 430px) */
@media (max-width: 430px) {
  .hero-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 1;
    margin-top: -100px;
    padding: 20px 5px;
  }

  .hero-features {
    text-align: center;
  }

  .hero-content h1 {
    font-size: 20px;
    margin-left: -50px;
  }

  .hero-content .sub-heading {
    font-size: 12px;
  }

  .hero-image {
    width: 100%;
    height: auto;
  }

  .delivery-badge {
    bottom: 5px;
    right: 5px;
  }

  .hero-section {
    min-height: 100vh; /* taller hero */
  }
}

@media (max-width: 768px) {

  /* PUSH HAMBURGER TO RIGHT CORNER */
  .hamburger {
    position: absolute !important;
    right: 20px !important;
    top: 20px !important;
    display: flex !important;
    z-index: 99999 !important;
  }

  /* Adjust icons away from hamburger */
  .icons {
    position: absolute !important;
    right: 60px !important;
    top: 18px !important;
  }

}

@media (max-width: 768px) {
    .logo img {
        width: 140px !important;
        margin-top: -5px;
        height: auto !important;
    }
}
/* Extra small screens */
@media (max-width: 425px) {
    .logo img {
        width: 130px !important;
        height: auto !important;
    }
}

@media (max-width: 768px) {

  .nav ul li,
  .nav ul li a {
    text-align: center !important;
    justify-content: center !important;
  }

  .home-dropdown .dropdown-menu li a {
    text-align: center !important;
    justify-content: center !important;
  }

}

@media (max-width: 768px) {
  .nav ul {
    top: 55px !important;   /* earlier 70px → now moved UP */
  }
}

@media (max-width: 768px) {

    /* Fix dropdown position (separate block under Home) */
    .home-dropdown .dropdown-menu {
        position: relative !important;   /* NOT overlay */
        top: 0 !important;               /* Reset top */
        margin-top: 5px !important;      /* Small gap */
        width: 100% !important;
        padding: 10px 0 !important;
        display: none;                   /* Default hidden */
    }

    /* When dropdown is open */
    .home-dropdown .dropdown-menu.show {
        display: block !important;
    }

    /* Center dropdown items properly */
    .home-dropdown .dropdown-menu li {
        width: 100% !important;
        padding: 12px 0 !important;
        text-align: center !important;
        display: flex !important;
        justify-content: center !important;
    }

    .home-dropdown .dropdown-menu li a {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        color: #fff !important;
    }
}


.categories-section {
  width: 90%;
  margin: 60px auto;
  overflow: hidden;
}

.categories-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.categories-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #000;
}

.categories-header .view-all {
  text-decoration: underline;
  color: #000;
  font-weight: 500;
  transition: color 0.3s;
}

.categories-header .view-all:hover {
  color: #ff038a;
}

.categories-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.categories-container {
  display: flex;
  gap: 25px;
  flex-wrap: nowrap;
  white-space: nowrap;
  will-change: transform;
  animation: scrollContinuous 30s linear infinite;
}

.category-card {
  min-width: 150px;
  background: #f9f9f9;
  border-radius: 10px;
  text-align: center;
  padding: 15px;
  flex-shrink: 0;
  transition: transform 0.3s, box-shadow 0.3s;
}

.category-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 10px;
}

.category-card h3 {
  font-size: 16px;
  color: #000;
  margin-bottom: 5px;
}

.category-card p {
  color: #777;
  font-size: 14px;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Animation for continuous left scroll */
@keyframes scrollContinuous {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* ================= Responsive Media Queries for Categories ================= */

/* Tablets (<= 992px) */
@media (max-width: 992px) {
  .categories-section {
    width: 90%;
    margin: 50px auto;
  }

  .categories-header h2 {
    font-size: 22px;
  }

  .categories-header .view-all {
    font-size: 14px;
  }

  .categories-container {
    gap: 20px;
  }

  .category-card {
    min-width: 140px;
    padding: 12px;
  }

  .category-card img {
    width: 100px;
    height: 100px;
  }

  .category-card h3 {
    font-size: 15px;
  }

  .category-card p {
    font-size: 13px;
  }
}

/* Mobile devices (<= 768px) */
@media (max-width: 768px) {
  .categories-section {
    width: 95%;
    margin: 40px auto;
  }

  .categories-header h2 {
    font-size: 20px;
  }

  .categories-header .view-all {
    font-size: 13px;
  }

  .categories-container {
    gap: 15px;
    animation: none; /* Optional: remove auto scroll on small screens */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .category-card {
    min-width: 130px;
    padding: 10px;
  }

  .category-card img {
    width: 90px;
    height: 90px;
  }

  .category-card h3 {
    font-size: 14px;
  }

  .category-card p {
    font-size: 12px;
  }
}

/* Small mobile devices (<= 576px) */
@media (max-width: 576px) {
  .categories-section {
    margin: 30px 10px;
  }

  .categories-header h2 {
    font-size: 18px;
  }

  .categories-header .view-all {
    font-size: 12px;
  }

  .categories-container {
    gap: 10px;
  }

  .category-card {
    min-width: 110px;
    padding: 8px;
  }

  .category-card img {
    width: 70px;
    height: 70px;
  }

  .category-card h3 {
    font-size: 13px;
  }

  .category-card p {
    font-size: 11px;
  }
}

/* Extra small devices (<= 425px) */
@media (max-width: 425px) {
  .categories-section {
    margin: 20px 5px;
  }

  .categories-header h2 {
    font-size: 16px;
  }

  .categories-header .view-all {
    font-size: 11px;
  }

  .categories-container {
    gap: 8px;
  }

  .category-card {
    min-width: 100px;
    padding: 6px;
  }

  .category-card img {
    width: 60px;
    height: 60px;
  }

  .category-card h3 {
    font-size: 12px;
  }

  .category-card p {
    font-size: 10px;
  }
}


.featured-section {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  padding: 50px 5%;
  flex-wrap: wrap;
  background: #fff;
  overflow: hidden;
}

.featured-card {
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  background: #f9f9f9;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.featured-card:hover {
  transform: translateY(-5px);
}

.featured-content {
  flex: 1;
  z-index: 2;
}

.featured-content h3 {
  font-size: 26px;
  color: #111;
  margin-bottom: 10px;
}

.featured-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}

.featured-content span {
  font-weight: bold;
  color: #e60023;
}

.shop-btn {
  display: inline-block;
  padding: 8px 20px;
  background: #002b5c;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s;
}

.shop-btn:hover {
  background: #004b9a;
}

.featured-image img {
  width: 160px;
  height: 120px;
  object-fit: contain;
}

/* Background colors for variety */
.featured-card:nth-child(1) {
  background: #fef6e4;
}

.featured-card:nth-child(2) {
  background: #f0f0f0;
}

.featured-card:nth-child(3) {
  background: #ffeaea;
}

/* ================= Responsive Media Queries for Featured Section ================= */

/* Tablets (<= 992px) */
@media (max-width: 992px) {
  .featured-section {
    padding: 40px 4%;
    gap: 15px;
  }

  .featured-card {
    min-width: 260px;
    max-width: 320px;
    padding: 20px 25px;
  }

  .featured-content h3 {
    font-size: 22px;
  }

  .featured-content p {
    font-size: 15px;
  }

  .featured-image img {
    width: 140px;
    height: 110px;
  }
}

/* Mobile devices (<= 768px) */
@media (max-width: 768px) {
  .featured-section {
    flex-direction: column;
    padding: 35px 3%;
    gap: 20px;
    align-items: center;
  }

  .featured-card {
    min-width: 90%;
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .featured-content h3 {
    font-size: 20px;
  }

  .featured-content p {
    font-size: 14px;
  }

  .featured-image img {
    width: 120px;
    height: 100px;
    margin-top: 15px;
  }

  .shop-btn {
    font-size: 13px;
    padding: 6px 18px;
  }
}

/* Small mobile devices (<= 576px) */
@media (max-width: 576px) {
  .featured-section {
    padding: 30px 2%;
  }

  .featured-card {
    padding: 15px;
    min-width: 95%;
  }

  .featured-content h3 {
    font-size: 18px;
  }

  .featured-content p {
    font-size: 13px;
  }

  .featured-image img {
    width: 100px;
    height: 80px;
  }

  .shop-btn {
    font-size: 12px;
    padding: 5px 15px;
  }
}

/* Extra small devices (<= 425px) */
@media (max-width: 425px) {
  .featured-section {
    padding: 25px 1%;
  }

  .featured-card {
    padding: 12px;
  }

  .featured-content h3 {
    font-size: 16px;
  }

  .featured-content p {
    font-size: 12px;
  }

  .featured-image img {
    width: 90px;
    height: 70px;
  }

  .shop-btn {
    font-size: 11px;
    padding: 4px 12px;
  }
}


.popular-section {
  width: 95%;
  margin: auto;
  overflow: hidden;
}

/* Scrolling wrapper */
.scroll-container {
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* Content that moves */
.scroll-content {
  display: inline-flex;
  gap: 20px;
  animation: scroll-left 18s linear infinite;
  padding: 10px 0;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Product Card - Same Size */
.product-card {
  width: 160px;
  height: 250px;   /* ✅ same height */
  text-align: center;
  display: inline-block;
  white-space: normal;
  padding: 8px 5px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 6px;
}

/* Category Above Image */
.category1 {
  font-size: 11px;
  color: #444;
  font-weight: 600;
  display: block;
  text-align: center;   /* ✅ centers category text */
  width: 100%;          /* ✅ ensures it spans full card width */
  margin-bottom: 6px;
}


/* Product Image */
.product-card img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin-bottom: 8px;
}

/* Product Title */
.product-card h3 {
  font-size: 12.5px;
  margin-bottom: 6px;
  line-height: 1.25;
  min-height: 32px; /* ✅ equal title height */
}

/* Price */
.price .new {
  font-size: 14px;
  font-weight: 600;
  color: #e63946;
}

/* Rating */
.rating {
  font-size: 12px;
  margin-top: -20px;
}

/* Stock Labels */
.stock {
  font-size: 11px;
  margin-top: 3px;
}
.stock.in { color: #27ae60; }
.stock.out { color: #e63946; }


/* ================= Responsive Media Queries for Popular Section ================= */

/* Tablets & smaller laptops (<= 992px) */
@media (max-width: 992px) {
  .scroll-content {
    gap: 15px;
  }

  .product-card {
    width: 140px;
    height: 220px;
    padding: 6px 4px;
  }

  .product-card img {
    width: 95px;
    height: 95px;
  }

  .product-card h3 {
    font-size: 12px;
    min-height: 28px;
  }

  .price .new {
    font-size: 13px;
  }

  .rating {
    font-size: 11px;
  }

  .stock {
    font-size: 10px;
  }
}

/* Mobile devices (<= 768px) */
@media (max-width: 768px) {


  .product-card {
    width: 130px;
    height: 210px;
    flex-shrink: 0;
  }

  .product-card img {
    width: 90px;
    height: 90px;
  }

  .product-card h3 {
    font-size: 11.5px;
    min-height: 26px;
  }

  .price .new {
    font-size: 12px;
  }

  .rating {
    font-size: 11px;
  }

  .stock {
    font-size: 10px;
  }
}

/* Small mobile devices (<= 576px) */
@media (max-width: 576px) {
  .scroll-content {
    gap: 10px;
  }

  .product-card {
    width: 120px;
    height: 200px;
  }

  .product-card img {
    width: 80px;
    height: 80px;
  }

  .product-card h3 {
    font-size: 11px;
    min-height: 24px;
  }

  .price .new {
    font-size: 11px;
  }

  .rating {
    font-size: 10px;
  }

  .stock {
    font-size: 9px;
  }
}

/* Extra small devices (<= 425px) */
@media (max-width: 425px) {
  .scroll-content {
    gap: 8px;
  }

  .product-card {
    width: 110px;
    height: 180px;
    padding: 5px;
  }

  .product-card img {
    width: 70px;
    height: 70px;
  }

  .product-card h3 {
    font-size: 10.5px;
    min-height: 22px;
  }

  .price .new {
    font-size: 10px;
  }

  .rating {
    font-size: 9px;
  }

  .stock {
    font-size: 8px;
  }
}

.product-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin: 40px 0;
  overflow: hidden;
}

/* Each section side by side */
.product-section {
  width: 48%;
  display: flex;
  gap: 20px;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  padding: 25px;
  overflow: hidden;
  border: 1px solid #ececec;
}

/* Banner */
.promo-banner {
  width: 50%;
  height: 300px;
  padding: 20px;
  border-radius: 14px;
  text-align: center;
  position: relative;
}

.banner-green { background: #e8f9e3; }
.banner-blue { background: #e4ebff; }

.banner-category { font-size: 12px; color: #666; margin-bottom: 6px; }

.promo-banner h2 { font-size: 20px; font-weight: 700; }

.banner-img {
  width: 150px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.float-animate {
  animation: float 3s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translate(-50%,0);} 50%{transform:translate(-50%,-8px);} }

/* Product List */
.product-list { width: 55%; }
.list-item { display: flex; margin-bottom: 12px; }
.list-item img { width: 60px; margin-right: 10px; }
.list-item h4 { font-size: 14px; line-height: 18px; font-weight: 500; }
.price { font-size: 14px; color: #e63946; }
.price del { color: gray; }

@media(max-width:768px){
  .product-section { width: 100%; flex-direction: column; text-align:center; }
  .promo-banner, .product-list { width:100%; }
}

/* ================= Responsive Media Queries for Product Wrapper ================= */

/* Tablets & smaller laptops (<= 992px) */
@media (max-width: 992px) {
  .product-wrapper {
    gap: 20px;
    margin: 30px 0;
  }

  .product-section {
    padding: 20px;
  }

  .promo-banner h2 {
    font-size: 18px;
  }

  .banner-category {
    font-size: 11px;
  }

  .banner-img {
    width: 130px;
  }

  .list-item img {
    width: 50px;
  }

  .list-item h4 {
    font-size: 13px;
  }

  .price {
    font-size: 13px;
  }
}

/* Mobile devices (<= 768px) */
@media (max-width: 768px) {
  .product-wrapper {
    flex-direction: column;
    gap: 25px;
    margin: 25px 0;
  }

  .product-section {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .promo-banner, .product-list {
    width: 100%;
  }

  .promo-banner h2 {
    font-size: 17px;
  }

  .banner-category {
    font-size: 11px;
  }

  .banner-img {
    width: 120px;
  }

  .list-item {
    justify-content: center;
    flex-direction: row;
    gap: 10px;
  }

  .list-item img {
    width: 50px;
  }

  .list-item h4 {
    font-size: 13px;
  }

  .price {
    font-size: 12.5px;
  }
}

/* Small mobile devices (<= 576px) */
@media (max-width: 576px) {
  .product-wrapper {
    gap: 20px;
    margin: 20px 0;
  }

  .promo-banner h2 {
    font-size: 16px;
  }

  .banner-category {
    font-size: 10px;
  }

  .banner-img {
    width: 100px;
  }

  .list-item img {
    width: 45px;
  }

  .list-item h4 {
    font-size: 12px;
  }

  .price {
    font-size: 12px;
  }
}

/* Extra small / very small devices (<= 425px) */
@media (max-width: 425px) {
  .product-wrapper {
    margin: 15px 0;
  }

  .promo-banner h2 {
    font-size: 15px;
  }

  .banner-category {
    font-size: 9px;
  }

  .banner-img {
    width: 90px;
  }

  .list-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .list-item img {
    width: 40px;
    margin-bottom: 5px;
  }

  .list-item h4 {
    font-size: 11px;
  }

  .price {
    font-size: 11px;
  }
}



.brands-section {
  width: 95%;
  margin: auto;
  margin-bottom: 30px;
  overflow: hidden;
}

.brands-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.brands-header h2 {
  font-size: 24px;
  font-weight: 700;
}

.view-all {
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  color: #000;
  cursor: pointer;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid #e5e5e5;
}

.brand-item {
  border: 1px solid #e5e5e5;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 10px;
  background: #fff;
  transition: 0.3s ease;
}

.brand-item img {
  max-width: 110px;
  height: auto;
  filter: grayscale(0);
  transition: 0.3s;
}

/* Hover Effect */
.brand-item:hover {
  background: #f9f9f9;
}

.brand-item:hover img {
  transform: scale(1.05);
  filter: grayscale(0);
}

/* Responsive */
@media (max-width: 900px) {
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 500px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.hero-banner {
  width: 100%;
  height: 480px; /* Adjust height if needed */
  background-image: url("Images1/vr.webp"); /* ✅ Set Your Full Image */
  background-size: cover;       /* Fill container */
  background-position: center;  /* Center the subject */
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 0 80px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* Optional dark overlay */
.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 500px;
}

.hero-tag {
  background: #ffcc33;
  color: #000;
  padding: 7px 18px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 18px;
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 14px;
  white-space: nowrap;   /* ✅ Prevent text from breaking into multiple lines */
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 25px;
}

.hero-btn {
  background: #2563eb;
  color: #fff;
  padding: 14px 34px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  margin-top: 12px;   /* ✅ Move button slightly down */
  display: inline-block; /* ✅ Ensures margin works properly */
}

.hero-btn:hover {
  background: #003bb5;
}

/* ================= Responsive Media Queries for Hero Banner ================= */

/* Tablets & smaller laptops (<= 992px) */
@media (max-width: 992px) {
  .hero-banner {
    height: 420px;
    padding: 0 50px;
    align-items: center;
  }

  .hero-content {
    max-width: 450px;
  }

  .hero-tag {
    font-size: 13px;
    padding: 6px 16px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-btn {
    padding: 12px 28px;
    font-size: 14px;
  }
}

/* Mobile devices (<= 768px) */
@media (max-width: 768px) {
  .hero-banner {
    height: 380px;
    padding: 0 30px;
    align-items: flex-start; /* Content moves slightly down */
  }

  .hero-content {
    max-width: 90%;
    margin-top: 40px;
  }

  .hero-tag {
    font-size: 12px;
    padding: 5px 14px;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-btn {
    padding: 10px 24px;
    font-size: 13px;
  }
}

/* Small mobile devices (<= 576px) */
@media (max-width: 576px) {
  .hero-banner {
    height: 320px;
    padding: 0 20px;
    align-items: flex-start;
  }

  .hero-content {
    max-width: 100%;
    margin-top: 30px;
  }

  .hero-tag {
    font-size: 11px;
    padding: 4px 12px;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-btn {
    padding: 8px 20px;
    font-size: 12px;
  }
}


/* Extra small devices (<= 480px) */
@media (max-width: 480px) {
  .hero-banner {
    height: 360px; /* increase height to fit content */
    padding: 0 15px;
    display: flex;
    flex-direction: column; /* stack content vertically */
    justify-content: center; /* vertically center all content */
    align-items: flex-start; /* or center if you want horizontal centering */
  }

  .hero-content {
    max-width: 100%;
    margin-top: 0; /* remove top margin */
  }

  .hero-tag {
    font-size: 10px;
    padding: 3px 10px;
  }

  .hero-content h1 {
    font-size: 22px;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 13px;
    margin-bottom: 12px; /* reduce spacing to make room for button */
  }

  .hero-btn {
    padding: 6px 16px;
    font-size: 12px;
  }
}

/* Ultra small devices (<= 400px) */
@media (max-width: 400px) {
  .hero-banner {
    height: 300px; /* enough to fit small content */
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* vertically center content */
    align-items: flex-start; /* left align, or center for horizontal */
  }

  .hero-content {
    max-width: 100%;
    margin-top: 0;
  }

  .hero-tag {
    font-size: 9px;
    padding: 2px 8px;
  }

  .hero-content h1 {
    font-size: 18px;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .hero-btn {
    padding: 5px 12px;
    font-size: 11px;
  }
}



.latest-news {
  width: 100%;
  background: #fff;
  padding: 50px 30px;
  overflow: hidden;
  font-family: "Inter", sans-serif;
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.news-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #111;
}

.news-header a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: 0.3s;
}

.news-header a:hover {
  border-bottom: 1px solid #000;
}

/* === 4 Cards in One Row === */
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.news-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 0 5px 0;
  font-size: 14px;
  color: #555;
}

.tag {
  display: inline-block;
  background: #e9ecf5;
  color: #555;
  font-weight: 600;
  font-size: 13px;
  border-radius: 20px;
  padding: 4px 10px;
  text-transform: capitalize;
}

.tag.virtual {
  background: #e6e8ff;
  color: #3b57ff;
}

.tag.mobile {
  background: #eaf6ff;
  color: #007bff;
}

.tag.wireless {
  background: #ebf4ff;
  color: #4c70ff;
}

.news-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #000;
  line-height: 1.4;
  margin: 0 0 20px 0;
}


/* Tablets & smaller laptops (<= 992px) */
@media (max-width: 992px) {
  .latest-news {
    padding: 40px 20px;
  }

  .news-header h2 {
    font-size: 24px;
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
    gap: 20px;
  }

  .news-card img {
    height: 200px;
  }

  .news-card h3 {
    font-size: 16px;
  }

  .news-meta {
    font-size: 13px;
  }
}

/* Mobile devices (<= 768px) */
@media (max-width: 768px) {
  .latest-news {
    padding: 30px 15px;
  }

  .news-header h2 {
    font-size: 22px;
  }

  .news-grid {
    grid-template-columns: 1fr; /* 1 card per row */
    gap: 15px;
  }

  .news-card img {
    height: 180px;
  }

  .news-card h3 {
    font-size: 15px;
  }

  .news-meta {
    font-size: 12px;
  }

  .tag {
    font-size: 12px;
    padding: 3px 8px;
  }
}

/* Extra small mobile devices (<= 576px) */
@media (max-width: 576px) {
  .latest-news {
    padding: 25px 10px;
  }

  .news-header h2 {
    font-size: 20px;
  }

  .news-card img {
    height: 160px;
  }

  .news-card h3 {
    font-size: 14px;
  }

  .news-meta {
    font-size: 11px;
  }

  .tag {
    font-size: 11px;
    padding: 2px 6px;
  }
}

/* Ultra small devices (<= 400px) */
@media (max-width: 400px) {
  .latest-news {
    padding: 20px 8px;
  }

  .news-header h2 {
    font-size: 18px;
  }

  .news-card img {
    height: 140px;
  }

  .news-card h3 {
    font-size: 13px;
  }

  .news-meta {
    font-size: 10px;
  }

  .tag {
    font-size: 10px;
    padding: 2px 5px;
  }
}


.feature-strip {
  background: #002b80; /* deep blue background */
  padding: 25px 5%;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.feature-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1 1 200px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

.feature-icon i {
  color: #fe09b9; /* golden icon color */
  font-size: 22px;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background: rgba(255, 255, 255, 0.2);
}

.feature-item:hover .feature-icon i {
  color: #ff77ef; /* brighter gold on hover */
}

.feature-text h4 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}

/* ================= Tablet & small laptops (<=992px) ================= */
@media (max-width: 992px) {
  .feature-strip {
    padding: 20px 4%;
  }

  .feature-container {
    gap: 20px;
  }

  .feature-item {
    flex: 1 1 180px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
  }

  .feature-icon i {
    font-size: 20px;
  }

  .feature-text h4 {
    font-size: 14px;
  }
}

/* ================= Mobile devices (<=768px) ================= */
@media (max-width: 768px) {
  .feature-container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .feature-item {
    flex: 1 1 100%;
    justify-content: flex-start;
  }

  .feature-icon {
    width: 45px;
    height: 45px;
  }

  .feature-icon i {
    font-size: 18px;
  }

  .feature-text h4 {
    font-size: 13px;
  }
}

/* ================= Small mobile devices (<=576px) ================= */
@media (max-width: 576px) {
  .feature-strip {
    padding: 15px 3%;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
  }

  .feature-icon i {
    font-size: 16px;
  }

  .feature-text h4 {
    font-size: 12px;
  }

  .feature-item {
    gap: 10px;
  }
}

/* ================= Extra small devices (<=425px) ================= */
@media (max-width: 425px) {
  .feature-strip {
    padding: 12px 2%;
  }

  .feature-icon {
    width: 35px;
    height: 35px;
  }

  .feature-icon i {
    font-size: 14px;
  }

  .feature-text h4 {
    font-size: 11px;
  }

  .feature-item {
    gap: 8px;
    flex-direction: row;
  }
}

.footer-section {
  background-image: url("Images1/background.webp"); /* Replace with your footer background */
  background-size: cover;
  background-position: center;
  overflow: hidden;
  color: #444;
  font-family: "Inter", sans-serif;
}

.footer-overlay {
   background: rgba(0, 0, 0, 0.7); 
  padding: 60px 80px 10px; /* reduced bottom padding */
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 20px;
}

/* Logo Image */
.footer-logo img {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
}

/* Contact Info */
.contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #666;
  font-size: 14px;
}

.contact-info i {
  color: #fdfdfd;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons i {
  font-size: 16px;
  color: #f9f7f7;
  cursor: pointer;
  transition: color 0.3s;
}

.social-icons i:hover {
  color: #ff038a;
}

/* Headings */
.footer-col h3 {
  font-weight: 700;
  color: #f7f0f0;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  text-decoration: none;
  padding: 0;
}

.footer-col ul li {
  color: #bcbaba;
  margin-bottom: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s;
}

.footer-col ul li a {
  text-decoration: none;  /* Remove underline */
  color: #bcbaba;         /* Match your li color */
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #fef7f7;         /* Hover color */
}


.footer-col ul li:hover {
  color: #fef7f7;
}

/* Newsletter */
.newsletter p {
  color: #bcbaba;
  font-size: 14px;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 40px;
  overflow: hidden;
  width: 100%;
  max-width: 320px;
}

.newsletter-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 16px;
  font-size: 14px;
}

.newsletter-form button {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 40px;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter-form button:hover {
  background: #333;
}

.payment-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.payment-icons img {
  height: 24px;
  opacity: 0.6;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ddd;
  padding-top: 20px;
  font-size: 14px;
  color: #666;
}

.footer-bottom span {
  color: #ff038a;
  font-weight: 600;
}

.footer-menu a {
  text-decoration: none;
  color: #555;
  margin-left: 25px;
  transition: color 0.3s;
}

.footer-menu a:hover {
  color: #000;
}


/* Tablets & smaller laptops (<= 992px) */
@media (max-width: 992px) {
  .footer-overlay {
    padding: 50px 40px 10px;
    text-align: center; /* Center all content */
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    justify-items: center; /* Center grid items */
  }

  .footer-logo img {
    width: 140px; /* Slightly larger */
    margin: 0 auto;
  }

  .footer-col h3 {
    font-size: 18px;
  }

  .footer-col ul li,
  .contact-info li,
  .newsletter p {
    font-size: 14px;
  }

  .newsletter-form {
    max-width: 300px;
    margin: 0 auto;
  }

  .newsletter-form input,
  .newsletter-form button {
    font-size: 14px;
  }

  .payment-icons {
    justify-content: center; /* Center icons */
  }

  .payment-icons img {
    height: 22px;
  }
}

/* Mobile devices (<= 768px) */
@media (max-width: 768px) {
  .footer-overlay {
    padding: 45px 20px 10px;
    text-align: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 25px;
    justify-items: center;
  }

  .footer-logo img {
    width: 130px;
  }

  .footer-col h3 {
    font-size: 17px;
  }

  .footer-col ul li,
  .contact-info li,
  .newsletter p {
    font-size: 13px;
  }

  .newsletter-form {
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
    padding: 12px;
    font-size: 13px;
    margin-bottom: 10px;
  }

  .payment-icons img {
    height: 20px;
  }
}

/* Small mobile devices (<= 576px) */
@media (max-width: 576px) {
  .footer-overlay {
    padding: 35px 15px 10px;
    text-align: center;
  }

  .footer-logo img {
    width: 120px;
  }

  .footer-col h3 {
    font-size: 16px;
  }

  .footer-col ul li,
  .contact-info li,
  .newsletter p {
    font-size: 14px; /* Slightly larger for readability */
  }

  .newsletter-form input,
  .newsletter-form button {
    font-size: 14px;
    padding: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
    text-align: center;
  }

  .footer-menu a {
    margin: 0 10px;
  }

  .payment-icons img {
    height: 18px;
  }
}

/* Extra small devices (<= 400px) */
@media (max-width: 400px) {
  .footer-overlay {
    padding: 30px 10px 10px;
    text-align: center;
  }

  .footer-logo img {
    width: 110px;
  }

  .footer-col h3 {
    font-size: 15px;
  }

  .footer-col ul li,
  .contact-info li,
  .newsletter p {
    font-size: 13px; /* Larger for small devices */
  }

  .newsletter-form input,
  .newsletter-form button {
    font-size: 13px;
    padding: 8px;
  }

  .footer-bottom {
    font-size: 12px;
    text-align: center;
  }

  .payment-icons img {
    height: 16px;
  }
}

#cartItems li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

#cartCheckout button {
  padding: 5px 15px;
  background-color: #ff038a;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

#cartCheckout button:hover {
  background-color: #e60070;
}

/* Default hidden before scroll */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

/* When visible */
[data-animate].animate {
  opacity: 1;
  transform: translateY(0);
}

/* 🔹 Bounce Animations */
@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.3); }
  50% { opacity: 1; transform: scale(1.05); }
  70% { transform: scale(0.9); }
  100% { transform: scale(1); }
}
@keyframes bounceInUp {
  0% { opacity: 0; transform: translateY(100px); }
  60% { opacity: 1; transform: translateY(-20px); }
  80% { transform: translateY(10px); }
  100% { transform: translateY(0); }
}
@keyframes bounceInDown {
  0% { opacity: 0; transform: translateY(-100px); }
  60% { opacity: 1; transform: translateY(20px); }
  80% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}
@keyframes bounceInLeft {
  0% { opacity: 0; transform: translateX(-120px); }
  60% { opacity: 1; transform: translateX(25px); }
  80% { transform: translateX(-10px); }
  100% { transform: translateX(0); }
}
@keyframes bounceInRight {
  0% { opacity: 0; transform: translateX(120px); }
  60% { opacity: 1; transform: translateX(-25px); }
  80% { transform: translateX(10px); }
  100% { transform: translateX(0); }
}

/* Animation class applied dynamically */
.animate.bounceIn     { animation: bounceIn 1.5s ease both; }
.animate.bounceInUp   { animation: bounceInUp 1.5s ease both; }
.animate.bounceInDown { animation: bounceInDown 1.5s ease both; }
.animate.bounceInLeft { animation: bounceInLeft 1.5s ease both; }
.animate.bounceInRight{ animation: bounceInRight 1.5s ease both; }



