  /* Reset */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: Arial, sans-serif;
  background-image: url('images/banner/background.jpg')  ;
    color: #fff;
    min-height: 500vh;
    overflow-y: auto;
  }

  /* Navbar */
  header {
    width: 100%;
    height: 100px;
    align-items: center;
    background:  hsl(0, 14%, 92%);
    padding: 15px 30px;
    position: sticky;
    top: 0;
    justify-content: space-between;
    padding-bottom: 40px;
  }

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: hsl(0, 14%, 92%);
  }

  .logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #222;
  }

  .nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
  }

  .nav-links a {
    text-decoration: none;
    color: #111;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.3s;
  }

  .nav-links a:hover {
    color: #ba181b;
  }

  .nav-icons {
    display: flex;
    gap: 35px;
    font-size: 18px;
  }

  .nav-icons a {
    color: #111;
    text-decoration: none;
    transition: 0.3s;
  }


  .nav-icons .icon:hover {
    color: #ff758c; 
  }

  /* Mobile */
  .menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .nav-links {
      display: none; /* hide menu links */
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      background: #fff;
      flex-direction: column;
      text-align: center;
      padding: 15px 0;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-links.active {
      display: flex; /* show when menu is open */
    }

    .menu-toggle {
      display: block; /* show menu button */
    }

    /* Keep search + cart visible on mobile */
    .nav-icons {
      font-size: 20px;
      gap: 12px;
    }
  }


  /* Dark/Light Mode Button */
  /* Toggle Switch Wrapper */
  .toggle-switch {
    position: relative;
    display: inline-block;
    width: 65px;
    height: 34px;
  }

  /* Hide default checkbox */
  .toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }

  /* Slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #dab313; /* Light = Sun color */
    transition: 0.4s;
    border-radius: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6px;
    font-size: 16px;
  }

  /* Add Sun & Moon Emoji */
  .slider::before {
    content: "🌞";
  }

  .slider::after {
    content: "🌙";
  }

  /* Circle knob */
  .knob {
    position: absolute;
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: rgb(5, 5, 5);
    border-radius: 50%;
    transition: 0.4s;
  }

  /* Checked (Dark Mode ON) */
  .toggle-switch input:checked + .slider {
    background-color: #17191b; /* Dark background */
  }

  .toggle-switch input:checked + .slider .knob {
    transform: translateX(31px);
  }

  /* Circle inside slider */
  .slider::before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: rgb(18, 13, 13);
    transition: 0.4s;
    border-radius: 50%;
  }

  /* Checked state */
  .toggle-switch input:checked + .slider {
    background-color: #444;
  }

  .toggle-switch input:checked + .slider::before {
    transform: translateX(30px);
  }

  /* Hero Section */
  .hero {

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 10%;
    margin-bottom: 50px ;

  }

  .hero-text {
    max-width: 45%;
    color: white;
  }

  .hero-text h1 {
    font-size: 42px;
    margin-bottom: 15px;
  }

  .hero-text p {
    font-size: 18px;
    margin-bottom: 25px;
  }

  .btn {
    display: inline-block;
    background: #fff;
    color: #ba181b;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
    
  }

  .btn:hover {
    background: #bb9c9c;
  }

  /* Hero image + butterflies */
  .hero-image {
    position: relative;
  }

  .hero-image img {
    max-width: 350px;
    border-radius: 10px;
  }

  /* .butterfly {
    position: absolute;
    width: 50px;
    animation: float 6s infinite ease-in-out;
  }

  .butterfly1 {
    top: -40px;
    left: -30px;
  }

  .butterfly2 {
    bottom: -40px;
    right: -20px;
  } */

  @keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
  }

  .section {
    height: 250vh;   /* makes each section full screen */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(0,0,0,0.2);
    border-top: 1px solid rgba(255,255,255,0.2);
  
    color: rgb(243, 236, 236);

  }
  .white-gap{
    height: 10px;
    background-color: white;
  }

  /*Footer section */

  .footer {
    background: #393838;   
    color: #fff;
    padding: 60px 20px 30px;
    font-size: 14px;
  }

  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
  }

  .footer-column h3 {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: bold;
    color: #f8f8f8;
  }

  .footer-column ul {
    list-style: none;
    padding: 0;
  }

  .footer-column ul li {
    margin-bottom: 10px;
  }

  .footer-column ul li a {
    text-decoration: none;
    color: #ddd;
    transition: 0.3s;
  }

  .footer-column ul li a:hover {
    color: #fff;
  }

  .footer-column p {
    margin: 8px 0;
    line-height: 1.6;
    color: #ccc;
  }

  .social-icons {
    margin-top: 15px;
  }

  .social-icons a {
    color: #fff;
    margin-right: 12px;
    font-size: 18px;
    transition: 0.3s;
  }

  .social-icons a:hover {
    color: #ff758c;   /* highlight color */
  }

  .footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 13px;
    color: #aaa;
  }


  /* Responsive Navbar */
  @media (max-width: 768px) {
    .nav-links {
      position: absolute;
      top: 60px;
      right: 0;
      background: rgba(0,0,0,0.9);
      flex-direction: column;
      width: 200px;
      padding: 20px;
      display: none;
    }

    .nav-links.active {
      display: flex;
    }

    .menu-toggle {
      display: block;
      cursor: pointer;
    }
  }

  /* Hamburger (Menu Toggle) */
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
  }

  .menu-toggle span {
    width: 25px;
    height: 3px;
    background: #111;
    border-radius: 2px;
  }

  /* Only Shop Page */
  .shop-page {
    min-height: 300px;
    min-height: 300px;
    text-align: center;
    background: #611414;         
    color: #9a1111;              
  }


  /*cart page */
  .cart-section {
    padding: 50px 20px;
    text-align: center;
  }

  .cart-container {
    max-width: 800px;
    margin: 0 auto;
  }

  .cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    margin: 15px 0;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  }

  .cart-item img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
  }

  .item-details {
    flex: 1;
    margin: 0 20px;
    text-align: left;
  }

  .remove-btn {
    background: #e74c3c;
    border: none;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
  }

  .remove-btn:hover {
    background: #c0392b;
  }

  .cart-total {
    margin-top: 30px;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 12px;
    display: inline-block;
  }

  .checkout-btn {
    margin-top: 15px;
    background: #7A2D35;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
  }

  .checkout-btn:hover {
    background: #5a2027;
  }

  .shop-section {
    padding: 50px 20px;
    text-align: center;
  }

  .shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
  }
  .product-grid {
    margin-top: 80px;
  }

  .product-card {
    background: #fff;
    color: #111;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  }

  .product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;  /* keeps image ratio */
    border-radius: 10px;
    margin-bottom: 15px;
  }

  .product-card h3 {
    margin: 10px 0;
  }

  .product-card button {
    background: #7A2D35;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
  }

  .product-card button:hover {
    background: #5a2027;
  }


  .cart-section {
    padding: 40px 20px;
    max-width: 600px;
    margin: auto;
    background: #1d1b1b;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-top: 40px;
  }

  #cart-items p {
    font-size: 16px;
    margin: 10px 0;
  }

  @media (max-width: 600px) {
    .product-card {
      padding: 15px;
    }

    .product-card img {
      height: 200px;
    }

    .cart-section {
      width: 90%;
      padding: 20px;
    }
    /*  Privacy Policy Page Styles  */
  .privacy-body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding: 20px;
    background: #827777;
    color: #333;
  }

  .privacy-body h1,
  .privacy-body h2 {
    color: #222;
  }

  .privacy-body a {
    color: #735757;
    text-decoration: none;
  }

  .privacy-body a:hover {
    text-decoration: underline;
  }

  .privacy-container {
    max-width: 800px;
    margin: auto;
    background: rgb(125, 111, 111);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  .policy-body { font-family: Arial, sans-serif; background:#6a3b3b; color:#333; margin:0; }
  .policy-container { max-width: 900px; margin: 40px auto; background:#3d2727; padding:28px; border-radius:14px; box-shadow:0 8px 24px rgba(0,0,0,.08); }
  h1 { margin:0 0 8px; font-size:32px; }
  .updated { color:#666; margin-bottom:22px; }
  h2 { margin-top:26px; font-size:20px; }
  a { color:#7A2D35; text-decoration:none; } a:hover { text-decoration:underline; }
  ul{ padding-left:18px; }
  @media (max-width:600px){ .policy-container{ margin:16px; padding:20px; } h1{font-size:26px;} }



  /* Discover HF-69 Section */
  .discover-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #fafafa, #f5f5f5);
    color: #333;
    text-align: center;
  }

  .discover-content {
    max-width: 900px;
    margin: 0 auto;
  }

  .discover-section h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;   /* Bigger gap below main heading */
    color: #111;
  }

  .discover-section h3 {
    margin-top: 50px;      /* Bigger gap before subheadings */
    margin-bottom: 20px;   /* Gap below each subheading */
    font-size: 1.8rem;
    color: #222;
  }

  .discover-section p {
    margin-bottom: 25px;   /* More gap between paragraphs */
    line-height: 1.8;
    font-size: 1.15rem;
    text-align: justify;
  }

  .discover-section ul {
    list-style: none;
    padding: 0;
    margin: 20px auto 40px auto;
    max-width: 700px;
    text-align: left;
  }

  .discover-section ul li {
    margin: 15px 0;
    padding-left: 28px;
    position: relative;
    font-size: 1.1rem;
  }

  .discover-section ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #444;
  }

  .discover-note {
    font-style: italic;
    color: #666;
    margin-top: 40px;
    font-size: 1.1rem;
  }


  /* Buy Now Button */
  /* Buy Now Button */
  .buy-now-btn {
    display: block;               /* makes it full width */
    width: 100%;                  /* covers the section width */
    max-width: 300px;             /* optional: limit max width */
    margin: 40px auto;            /* center it */
    padding: 16px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;                  /* text color */
    background: #C0392B;          /* box color */
    border-radius: 8px;           /* small rounded edges */
    text-align: center;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }

  .buy-now-btn:hover {
    background: #A93226;          /* darker on hover */
  }


/* ===============================
   NEW ARRIVALS FIX
================================= */
.new-arrivals {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.new-arrivals h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #222;
}

.new-arrivals p {
  margin-bottom: 40px;
  color: #555;
  font-size: 1rem;
}

.new-arrivals .shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.new-arrivals .product-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.new-arrivals .product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.new-arrivals .product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.new-arrivals .product-card h3 {
  font-size: 1.2rem;
  margin: 15px 0 10px;
  color: #333;
}

.new-arrivals .product-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 15px;
  padding: 0 10px;
}

.new-arrivals .product-card button {
  background: #7A2D35;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 0 0 15px 15px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}

.new-arrivals .product-card button:hover {
  background: #5a2027;
}
/* ===== Mobile-Friendly Media Queries ===== */

/* Tablets and below */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    margin-top: 20px;
  }

  .nav-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .product-section, .shop-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

/* Small tablets and large phones */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 10px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-text .btn {
    width: 100%;
    text-align: center;
  }

  .product-card h3, .product-card p {
    font-size: 0.9rem;
  }
}

/* Phones */
@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.5rem;
  }

  .hero-text p {
    font-size: 0.9rem;
  }

  .nav-icons {
    gap: 5px;
  }

  .product-card h3, .product-card p {
    font-size: 0.85rem;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-column {
    margin-bottom: 20px;
  }
}
/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 10px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background-color: #333;
  border-radius: 3px;
  transition: all 0.3s;
}

/* Show hamburger on small screens */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .nav-links.active {
    display: flex;
  }
}

}


