*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
/* Basic Layout */
nav {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 1em 2em;
  font-family: 'Poppins', sans-serif;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.6em;
  font-weight: 700;
  background: linear-gradient(90deg, #ff7300, #ff3c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Navigation Links */
nav ul {
  list-style: none;
  display: flex;
  gap: 3em;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

nav ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #ff7300;
  transition: width 0.3s ease;
}

nav ul li a:hover {
  color: #ff7300;
}

nav ul li a:hover::after {
  width: 100%;
}

/* Cart Icon */
.carticon {
  position: relative;
  cursor: pointer;
}

.carticon::after {
  content: attr(data-count);
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #ff7300;
  color: white;
  font-size: 0.75em;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 5px;
  transition: all 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  nav ul {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    gap: 1.5em;
    text-align: center;
    padding: 2em 0;
    border-radius: 0 0 12px 12px;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  nav ul.active {
    transform: translateY(0);
  }

  .carticon {
    position: absolute;
    top: 18px;
    right: 60px;
  }
}

/* Hamburger Animation when active */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.introduction {
  position: relative;
  background-image: linear-gradient(
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.6)
    ),
    url("/Assets/images/banner-2.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 35em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2em;
  border-radius: 30px;
  padding: 3em;
  overflow: hidden;
  animation: fadeInHero 1.2s ease;
  color: #fff;
}

/* ✨ Gradient glassy effect for content */
.intro-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 3em;
  max-width: 600px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: slideInLeft 1.2s ease;
}

.intro-content h1 {
  font-size: 4em;
  color: #ffe600;
  text-shadow: 0 0 15px rgba(255, 115, 0, 0.8);
  line-height: 1.1;
  margin-bottom: 0.5em;
}

.intro-content p {
  font-size: 1.2em;
  line-height: 1.6;
  color: #f2f2f2;
  margin-bottom: 2em;
}

.intro-content button {
  padding: 1em 3em;
  background: linear-gradient(90deg, #ff7300, #ff3c00);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(255, 115, 0, 0.5);
}

.intro-content button:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 40px rgba(255, 180, 0, 0.9);
}

/* 🥂 Product image animation */
.intro-image img {
  width: 380px;
  transform: translateY(20px);
  animation: floatBottle 4s ease-in-out infinite alternate;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

/* 🪄 Animations */
@keyframes fadeInHero {
  from { opacity: 0; transform: scale(1.05); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes floatBottle {
  0% { transform: translateY(10px) rotate(-2deg); }
  100% { transform: translateY(-10px) rotate(2deg); }
}

/* 📱 Responsive layout */
@media (max-width: 900px) {
  .introduction {
    flex-direction: column;
    text-align: center;
  }

  .intro-content {
    margin-bottom: 2em;
  }

  .intro-image img {
    width: 250px;
  }

  .intro-content h1 {
    font-size: 2.5em;
  }
}







.products {
  margin: 4em 2em;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.products h2 {
  font-size: 2.5em;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  margin-bottom: 1.5em;
}

.products h2::after {
  content: '';
  display: block;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, #ff7300, #ff3c00);
  margin: 0.5em auto 0;
  border-radius: 2px;
}

.products-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2em;
  justify-items: center;
}

.content-products {
  background: #fff;
  border-radius: 20px;
  padding: 2em 1.5em;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.content-products:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.content-products img {
  width: 80%;
  max-width: 200px;
  transition: transform 0.4s ease;
}

.content-products:hover img {
  transform: scale(1.08);
}

.price {
  margin: 1em 0;
  font-size: 1.2em;
}

.price data {
  color: #ff3c00;
  font-weight: 700;
  font-size: 1.3em;
  margin-right: 0.5em;
}

.price del {
  color: #999;
  font-size: 0.9em;
}

.content-products p {
  color: #555;
  font-size: 0.95em;
  margin-bottom: 1.5em;
  line-height: 1.4em;
}

.content-products button {
  background: linear-gradient(90deg, #ff7300, #ff3c00);
  border: none;
  color: #fff;
  padding: 0.8em 2.5em;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(255, 115, 0, 0.3);
}

.content-products button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 115, 0, 0.5);
}


.description {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3em;
  padding: 4em 6em;
  margin: 3em 2em;
  border-radius: 30px;
  background: linear-gradient(135deg, #ff7300, #ff3c00);
  color: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  animation: fadeIn 1s ease-out;
}

.description-image {
  position: relative;
  display: inline-block;
}

.description-image img {
  width: 400px;
  max-width: 100%;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.4));
  transition: transform 0.4s ease;
}

.description-image:hover img {
  transform: scale(1.05);
}

/* ✨ Shine Overlay */
.description-image .shine {
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  transform: skewX(-25deg);
  animation: shine 4s infinite;
  pointer-events: none;
}

/* ✨ Shine Animation */
@keyframes shine {
  0% {
    left: -75%;
  }
  60% {
    left: 125%;
  }
  100% {
    left: 125%;
  }
}

/* Text Section */
.description-content {
  max-width: 600px;
  animation: slideInRight 1s ease-out;
}

.description-content h3 {
  font-size: 3.5em;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 1em;
}

.description-content h3 span {
  color: #ffe600;
}

.description-content p {
  font-size: 1em;
  color: #f5f5f5;
  line-height: 1.6;
  margin-bottom: 1em;
}

.description-content button {
  padding: 1em 3em;
  margin-top: 1em;
  background: #fff;
  color: #ff3c00;
  border: none;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.3);
}

.description-content button:hover {
  background: #ffe600;
  color: #111;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Responsive Layout */
@media (max-width: 900px) {
  .description {
    flex-direction: column;
    text-align: center;
    padding: 3em 2em;
  }

  .description-content h3 {
    font-size: 2.5em;
  }

  .description-image img {
    width: 280px;
  }

  .description-image .shine {
    animation: shine 5s infinite;
  }
}





.banner {
  position: relative;
  background-image: url("/Assets/images/banner-4.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed; /* adds subtle parallax effect */
  min-height: 35em;
  margin: 2em;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInBanner 1s ease;
}

/* 🔥 dark overlay for contrast */
.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.6)
  );
  border-radius: 30px;
}

/* ✨ content styling */
.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  animation: slideUp 1s ease forwards;
}

.banner-content h3 {
  font-size: 4em;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 3px;
  color: #ffe600;
  text-shadow: 0 0 10px rgba(255, 115, 0, 0.8),
               0 0 20px rgba(255, 115, 0, 0.6);
  animation: glowPulse 2s infinite alternate;
}

.banner-content button {
  margin-top: 2em;
  padding: 1em 3em;
  font-size: 1em;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  background: linear-gradient(90deg, #ff7300, #ff3c00);
  color: white;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(255, 115, 0, 0.4);
}

.banner-content button:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(255, 115, 0, 0.7);
}

/* 🎞️ Animations */
@keyframes fadeInBanner {
  from { opacity: 0; transform: scale(1.05); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes glowPulse {
  from {
    text-shadow: 0 0 10px rgba(255, 115, 0, 0.6);
  }
  to {
    text-shadow: 0 0 25px rgba(255, 180, 0, 1),
                 0 0 40px rgba(255, 115, 0, 0.9);
  }
}

/* 📱 Responsive adjustments */
@media (max-width: 768px) {
  .banner-content h3 {
    font-size: 2.5em;
  }
  .banner-content button {
    padding: 0.8em 2em;
  }
}



.Gallery {
  margin: 4em 2em;
  text-align: center;
  background: linear-gradient(135deg, #ff7300, #ff3c00);
  border-radius: 30px;
  padding: 3em 2em;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  color: #fff;
  overflow: hidden;
  animation: fadeIn 1s ease-out;
}

.Gallery h2 {
  font-size: 3.5em;
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  margin-bottom: 1.5em;
}

.Gallery h2 span {
  color: #ffe600;
}

/* ✨ Underline effect */
.Gallery h2::after {
  content: '';
  display: block;
  height: 5px;
  width: 80%;
  margin: 0.5em auto 0;
  border-radius: 5px;
  background: linear-gradient(to right, #ffe600, #fff);
  animation: growLine 1.2s ease-out forwards;
}

/* 🖼️ Grid layout for gallery images */
.Gallery-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2em;
  justify-items: center;
  padding: 0 1em;
}

.Gallery-content img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: all 0.4s ease;
  object-fit: cover;
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

/* 🎞️ Hover effect */
.Gallery-content img:hover {
  transform: scale(1.08);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.4);
  filter: brightness(1.2);
}

/* ✨ Subtle floating animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes growLine {
  from { width: 0; opacity: 0; }
  to { width: 80%; opacity: 1; }
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .Gallery {
    padding: 2em 1em;
  }

  .Gallery h2 {
    font-size: 2.5em;
  }

  .Gallery-content img {
    max-width: 100%;
    margin: 1em 0;
  }
}

.footer {
  background: linear-gradient(135deg, #1b1b1b, #2e2e2e);
  color: #f1f1f1;
  padding: 4em 2em;
  text-align: center;
  border-top: 5px solid #ff7300;
  animation: fadeInFooter 1s ease;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 2em;
  gap: 2em;
}

.content-footer {
  max-width: 250px;
  text-align: left;
}

.content-footer h4 {
  color: #ff7300;
  margin-bottom: 1em;
  font-size: 1.3em;
  position: relative;
}

.content-footer h4::after {
  content: '';
  display: block;
  height: 3px;
  width: 40px;
  background: #ff7300;
  margin-top: 5px;
  border-radius: 3px;
}

.content-footer p {
  font-size: 0.95em;
  line-height: 1.6;
  color: #ccc;
}

.content-footer ul {
  list-style: none;
  padding: 0;
}

.content-footer ul li {
  margin-bottom: 0.5em;
}

.content-footer ul li a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s ease, transform 0.3s ease;
}

.content-footer ul li a:hover {
  color: #ff7300;
  transform: translateX(5px);
}

hr {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 2em auto;
  width: 90%;
}

.footer span {
  color: #ff7300;
  font-weight: 600;
}

@keyframes fadeInFooter {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .content-footer {
    margin: 1em 0;
    text-align: center;
  }
}




/*==================================cart section========================*/
.cart-container{
  max-width: 800px;
  margin-top: 80px;
  margin: auto;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.cart-item { 
      display: flex;
      justify-content: space-between; 
      margin: 10px 0;
      padding: 10px;
      border-bottom: 1px solid #ccc; 
}
.cart-item-details {
        flex: 1;
        min-width: 150px;
}
.cart-item button{
    background-color: #ff3c00;
    border: none;
    padding: 0.25em 1em;
    border-radius: 10px;
    color: white;
}
.cart-item img {
      width: 100px;
      height: 100px;
      object-fit: cover;
      margin-right: 15px; 
}
.cart-total{
      font-size: 20px;
      margin-top: 20px;
      text-align: right;
      font-weight: bold;
}
.submitBtn{
      padding: 1em 8em; 
      background: #ff3c00;
      color: #fff;
      border: none;
      cursor: pointer;
      margin-top: 20px;
      border-radius: 10px;
      margin: auto;
      display: block;
}


 .cart-container h1{
  margin-bottom: 20px;
  text-align: center;
  color: #ff3c00;
  
}
.cartItems{
    display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}






/*==========================================popup style==============================*/
/* Overlay background */
#customAlert {
  display: none; /* hidden by default */
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Alert box */
#customAlert .alert-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  text-align: center;
  max-width: 300px;
  animation: fadeIn 0.3s ease-in-out;
}

#customAlert .alert-box h4 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #333;
}

#customAlert .alert-box button {
  margin-top: 15px;
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  background: #ff7300;
  color: #fff;
  cursor: pointer;
}

#customAlert .alert-box button:hover {
  background: orange;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}