body {
font-family: 'Poppins', sans-serif;
margin: 0;
background: #f8f9fa;
color: #333;
}
/* Header */
/* HEADER */
   /* ===== HEADER ===== */
    .store-header {
      background: #fff;
      border-bottom: 2px solid #eee;
      box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
      padding: 12px 12px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    /* ===== INFO SECTION ===== */
    .store-info {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .logo {
      width: 100px;
      height: auto;
    }

    .store-details {
      display: flex;
      flex-direction: column;
      font-size: 0.9rem;
      color: #333;
      line-height: 1.4;
    }

    .store-details i {
      color: #eb752d;
      margin-right: 6px;
    }

    /* ===== RIGHT SECTION ===== */
    .store-actions {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    /* Search bar */
    .search-bar {
      display: flex;
      align-items: center;
      border: 1px solid #ccc;
      border-radius: 20px;
      overflow: hidden;
      background: #f9f9f9;
    }

    .search-bar input {
      border: none;
      outline: none;
      padding: 8px 12px;
      width: 180px;
      font-size: 0.9rem;
      background: transparent;
    }

    .search-bar button {
      border: none;
      background: #eb752d;
      color: #fff;
      padding: 8px 12px;
      cursor: pointer;
      transition: background 0.3s;
    }

    .search-bar button:hover {
      background: #d86322;
    }

    /* ===== MENU BUTTON ===== */
    .menu {
      position: relative;
    }

    .menu-toggle {
      background: #eb752d;
      color: #fff;
      border: none;
      padding: 8px 12px;
      border-radius: 8px;
      cursor: pointer;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: background 0.3s;
      font-size: 1rem;
    }

    .menu-toggle:hover {
      background: #d86322;
    }

    /* ===== DROPDOWN MENU ===== */
    .menu-dropdown {
      display: none;
      position: absolute;
      right: 0;
      top: 110%;
      background: #fff;
      width: 200px;
      border-radius: 8px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, .15);
      overflow: hidden;
      animation: fadeSlide 0.3s ease;
    }

    .menu-dropdown a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 15px;
      color: #333;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.2s ease;
    }

    .menu-dropdown a:hover {
      background: #f9f9f9;
      color: #eb752d;
    }

    .show {
      display: block;
    }

    @keyframes fadeSlide {
      from {opacity: 0; transform: translateY(-10px);}
      to {opacity: 1; transform: translateY(0);}
    }

    /* ===== CART ICON ===== */
    .cart-icon {
      color: #eb752d;
      font-size: 1.3rem;
      position: relative;
      cursor: pointer;
    }

    .cart-icon:hover {
      color: #d86322;
    }

    .cart-count {
      position: absolute;
      top: -6px;
      right: -8px;
      background: #d86322;
      color: #fff;
      border-radius: 50%;
      font-size: 0.7rem;
      padding: 2px 5px;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .store-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
      }

      .store-info {
        width: 100%;
        justify-content: space-between;
      }

      .store-details {
        font-size: 0.75rem;
      }

      .store-actions {
        width: 100%;
        justify-content: space-between;
        margin-top: 10px;
        flex-wrap: wrap;
      }

      .search-bar input {
        width: 130px;
      }

      .menu-toggle {
        align-self: flex-end;
        margin-top: 10px;
      }

      .menu-dropdown {
        width: 100%;
        left: 0;
      }
    }

/* Hero */
.hero {
text-align: center;
padding: 40px 20px;
background: #eb752d;
color: #fff;
}
.hero button {
background: #fff;
color: #eb752d;
padding: 12px 25px;
border: none;
border-radius: 30px;
font-weight: bold;
cursor: pointer;
}
#hero  {
width: 54%;
height: 44%;
border-radius: 10px;
object-fit: cover;
 
}
.hero button:hover {
background: #eb752d;
color: #fff;
}
/* Product Grid */
.product-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
gap: 15px;
padding: 20px;
}
/* Product Card */
.product-card {
background: #fff;
border-radius: 15px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
text-align: center;
padding: 5px;
transition: transform 0.2s;
}
.product-card:hover {
transform: translateY(-5px);
}
.product-card img {
width: 100%;
border-radius: 10px;
height: 190px;
object-fit: cover;
}
.add-cart {
background: #eb752d;
color: white;
padding: 8px 20px;
border: none;
border-radius: 25px;
cursor: pointer;
margin-top: 10px;
}
.add-cart:hover {
background: #0070e0;
}
/* Single Product Page */
.single-product {
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
}
.single-product img {
width: 100%;
max-width: 400px;
border-radius: 15px;
margin-bottom: 20px;
}
.product-info {
text-align: center;
}
.price {
font-size: 24px;
font-weight: bold;
color: #0a84ff;
}
/* Footer */
.footer {
background: #222;
color: #fff;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 20px;
padding: 30px;
text-align: left;
}
.footer-section h4 {
color: orange;
margin-bottom: 10px;
}
.footer-section a {
color: #ccc;
text-decoration: none;
display: block;
margin-bottom: 5px;
}
.footer-section a:hover {
color: white;
}
/* Responsive 2 per row on mobile */
@media (max-width: 768px) {
.product-grid {
grid-template-columns: repeat(2, 1fr);
}
}

.contact-prompt {
  background: #fff5eb;
  text-align: center;
  padding: 40px 20px;
  border-radius: 12px;
  margin: 50px auto;
  max-width: 800px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.contact-prompt h2 {
  color: #ff6600; /* N’sure orange accent */
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.contact-prompt p {
  color: #333;
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.contact-btn {
  background: #ff6600;
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background: #e65c00;
}
	    .sticky-button {
			 width:7%;
            position: fixed;
            bottom: 140px; /* Adjust the distance from the bottom */
            right: 3px; /* Adjust the distance from the right */
            background-color: green; /* Example background color */
            color: #fff; /* Example text color */
            padding: 8px 22px; /* Example padding */
            border: none;
            border-radius: 5px;
            cursor: pointer;
            z-index: 999; /* Ensure button appears above other content */
        }
		  .fab.fa-whatsapp {
            font-size: 24px; /* Adjust the font size as needed */
        }
		