* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #222;

}

.hero-section {
  background: url("Images1/background.webp") no-repeat center center/cover;
  color: #fff;
   min-height: 75vh;
  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 */
.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;
}


@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;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
    }
}



/* --- HERO CONTENT --- */
.hero-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 10px;
}

.hero-content .sub-heading {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

.hero-content .sub-heading span {
  color: #ff038a;
  font-weight: 600;
}


/* Main Layout */
.container1 {
  display: flex;
  padding: 20px;
  gap: 20px;
}

/* Sidebar */
.sidebar {
  width: 250px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  height: fit-content;
}

.sidebar h4 {
  margin: 20px 0 10px;
  font-size: 16px;
  color: #111;
  font-weight: 600;
}

.sidebar label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  cursor: pointer;
  color: #333;
}

/* Search Box */
.search-box {
  display: flex;
  align-items: center;
  background: #f0f0f0;
  border-radius: 25px;
  padding: 5px;
  margin-bottom: 20px;
}

.search-box input {
  border: none;
  background: transparent;
  padding: 8px;
  flex: 1;
  outline: none;
  font-size: 14px;
}

.search-box button {
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-box button:hover {
  background: #005fcc;
}

/* Product Area */
.product-area {
  flex: 1;
}

/* Top Bar (Sort, Filters, etc.) */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.top-bar select {
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  cursor: pointer;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
}

/* Product Card */
.product-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Badge */
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 12px;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
}

.badge.hot {
  background: linear-gradient(135deg, #ff3b3b, #ff7675);
}

.badge.sale {
  background: linear-gradient(135deg, #00b894, #55efc4);
}

/* Product Image */
.product-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

/* Product Info */
.product-info {
  margin-top: 12px;
}

.product-info h3 {
  font-size: 15px;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
  height: 38px;
  line-height: 1.3;
}

.price {
  font-size: 16px;
  font-weight: 700;
  color: #007bff;
  margin-bottom: 5px;
}

.status {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 10px;
}

.status.in {
  color: #00b894;
}

.status.out {
  color: #d63031;
}

/* Rating Stars */
.rating {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f5b50a;
  font-size: 14px;
  gap: 4px;
  margin-bottom: 8px;
}

.rating span {
  color: #666;
  font-size: 13px;
}

/* Action Buttons */
.actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}

.actions button {
  border: none;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

/* Cart Button */
.actions .cart-btn {
  background: linear-gradient(135deg, #007bff, #00a8ff);
  color: #fff;
  box-shadow: 0 3px 6px rgba(0, 123, 255, 0.3);
}

.actions .cart-btn:hover {
  background: linear-gradient(135deg, #0063cc, #0090cc);
  transform: translateY(-2px);
}

/* Wishlist Button */
.actions .wish-btn {
  background: linear-gradient(135deg, #ff4757, #ff6b81);
  color: #fff;
  box-shadow: 0 3px 6px rgba(255, 71, 87, 0.3);
}

.actions .wish-btn:hover {
  background: linear-gradient(135deg, #e84118, #ff5e7e);
  transform: translateY(-2px);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  margin: 30px 0;
  gap: 8px;
}

.pagination button {
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  background: #f0f0f0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination button:hover {
  background: #007bff;
  color: #fff;
}

.pagination button.active {
  background: #007bff;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .container1 {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  .product-card {
    padding: 14px;
  }

  .product-info h3 {
    font-size: 14px;
  }

  .price {
    font-size: 15px;
  }

  .actions button {
    padding: 8px 10px;
    font-size: 12px;
  }
}

.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; }

/* 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;
}

.added-msg {
  color: green;
  font-size: 14px;
  margin-top: 6px;
  text-align: center;
  transition: opacity 0.5s ease;
}


