*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Navbar Container */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1em 3em;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    font-family: 'Segoe UI', sans-serif;
}

/* Logo */
nav .logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #000;
    cursor: pointer;
}

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

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s, transform 0.2s;
}

nav ul li a:hover {
    color: #FF9D00; /* accent color */
    transform: scale(1.1);
}
.nav-menu{
    display: flex;
    align-items: center;
    gap: 11.5em;
}

/* Cart & Contact Container */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5em;
}
.nav-actions i{
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 25px;
}

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

.carticon::after {
    content: attr(data-count);
    position: absolute;
    top: -10px;
    right: -10px;
    padding: 0.25em 0.5em;
    font-size: 0.75em;
    background-color: #FF9D00;
    border-radius: 50%;
    color: white;
    font-weight: bold;
}

/* Contact Button */
.contact-btn button {
    padding: 0.5em 1.8em;
    border: none;
    background-color: #000;
    color: #fff;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-btn button:hover {
    background-color: #FF9D00;
}

/* Responsive */
@media (max-width: 900px) {
    nav {
        flex-direction: column;
        gap: 1em;
        align-items: flex-start;
    }
    
    nav ul {
        flex-direction: column;
        gap: 1em;
        margin-left: 0;
    }

    .nav-actions {
        width: 100%;
        justify-content: space-between;
    }
}


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

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s;
}

/* Mobile Styles */
@media (max-width: 900px) {
    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1em 2em;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        position: absolute;
        top: 70px; /* adjust to navbar height */
        left: 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        padding: 1em 0;
        gap: 1em;
    }

    .nav-menu.show {
        display: flex;
    }

    nav ul {
        flex-direction: column;
        gap: 1em;
        margin-left: 0;
    }

    .nav-actions {
        flex-direction: column;
        gap: 1em;
        padding: 0 1em;
    }

    .hamburger {
        display: flex;
    }
}




.introduction {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4em 6em;
    gap: 2em;
    background: linear-gradient(to right, #fff, #fdf6f0); /* subtle gradient */
    flex-wrap: wrap;
    font-family: 'Poppins', sans-serif;
}

.intro-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.highlight {
    color: #FF9D00;
    font-weight: 600;
    font-size: 1.2em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.intro-content h1 {
    font-size: 3.5em;
    line-height: 1.1;
    margin: 0.2em 0;
}

.intro-content h1 span {
    color: #FF9D00;
}

.intro-text {
    margin: 1.5em 0;
    color: #555;
    font-size: 1.1em;
    line-height: 1.6;
}

.cta-btn {
    padding: 1em 3em;
    background: linear-gradient(45deg, #FF9D00, #FF6B00);
    border: none;
    color: #fff;
    font-size: 1em;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 157, 0, 0.4);
}

.intro-image {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 300px;
}

.intro-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.5s;
}

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

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

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

    .cta-btn {
        width: 70%;
    }
}




.search {
    text-align: center;
    padding: 4em 2em;
    background: #fdf6f0;
    font-family: 'Poppins', sans-serif;
}

.search h2 {
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 1em;
    color: #333;
}

.search-bar {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    flex-wrap: wrap;
}

.search-bar input {
    padding: 0.8em 1.2em;
    width: 300px;
    max-width: 90vw;
    border: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 1em;
    outline: none;
    transition: box-shadow 0.3s, transform 0.3s;
}

.search-bar input:focus {
    box-shadow: 0 6px 20px rgba(255, 157, 0, 0.4);
    transform: scale(1.02);
}

.search-bar button {
    padding: 0.8em 2em;
    border: none;
    border-radius: 50px;
    background: linear-gradient(45deg, #FF9D00, #FF6B00);
    color: white;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.search-bar button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 157, 0, 0.4);
}

/* Responsive */
@media (max-width: 600px) {
    .search-bar {
        flex-direction: column;
        gap: 1em;
    }

    .search-bar input, .search-bar button {
        width: 90%;
    }

    .search h2 {
        font-size: 2em;
    }
}



.About {
    margin: 4em 2em;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    background: #fdf6f0;
    padding: 4em 2em;
    border-radius: 20px;
}

.About h2 {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 0.5em;
    color: #333;
}

.about-text {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 3em;
}

.About-content {
    display: flex;
    justify-content: center;
    gap: 2em;
    flex-wrap: wrap;
    margin-bottom: 3em;
}

.content-About {
    display: flex;
    flex-direction: column;
    gap: 2em;
}

.content-About img {
    width: 250px;
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.content-About img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(255, 157, 0, 0.4);
}

.about-btn {
    padding: 0.8em 3em;
    font-size: 1em;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    background: linear-gradient(45deg, #FF9D00, #FF6B00);
    color: white;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.about-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 157, 0, 0.4);
}

/* Responsive */
@media (max-width: 900px) {
    .About-content {
        flex-direction: column;
        gap: 2em;
    }

    .content-About {
        flex-direction: row;
        justify-content: center;
        gap: 1em;
    }

    .About h2 {
        font-size: 2.2em;
    }

    .about-text {
        font-size: 1em;
    }
}






.products {
    text-align: center;
    padding: 4em 2em;
    font-family: 'Poppins', sans-serif;
    background: #fdf6f0;
    border-radius: 20px;
}

.products-intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2em;
}

.products-intro h3 {
    font-size: 2em;
    font-weight: 700;
    color: #333;
}

.pro-btn button {
    padding: 0.6em 1.2em;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: transparent;
    font-size: 1.2em;
    cursor: pointer;
    transition: all 0.3s;
}

.pro-btn button:hover {
    background: #FF9D00;
    color: white;
    transform: scale(1.1);
    border-color: #FF9D00;
}

.products-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
}

.content-products {
    background: #fff;
    border-radius: 20px;
    padding: 2em 1.5em;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 220px;
}

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

.content-products img {
    max-width: 100%;
    border-radius: 15px;
    margin-bottom: 1em;
}

.product-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5em;
}

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

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

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

.buy-btn {
    padding: 0.8em 2em;
    border: none;
    border-radius: 50px;
    background: linear-gradient(45deg, #FF9D00, #FF6B00);
    color: white;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.buy-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255,157,0,0.4);
}

/* Responsive */
@media (max-width: 900px) {
    .products-content {
        flex-direction: column;
        gap: 2em;
    }

    .products-intro {
        flex-direction: column;
        gap: 1em;
    }
}







.description {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3em;
    padding: 4em 2em;
    background: #fdf6f0;
    font-family: 'Poppins', sans-serif;
    flex-wrap: wrap;
}

.description-content {
    flex: 1;
    min-width: 300px;
}

.description-content h3 {
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 1em;
    color: #333;
    line-height: 1.2;
}

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

.description-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.2em;
    font-size: 1.05em;
}

.shop-btn {
    padding: 0.8em 3em;
    border-radius: 50px;
    border: none;
    background: linear-gradient(45deg, #FF9D00, #FF6B00);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.shop-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 157, 0, 0.4);
}

.description-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.description-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.4s;
}

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

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

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

    .shop-btn {
        width: 70%;
    }
}









.footer {
    background-color: #1c1c1c;
    color: #fff;
    padding: 4em 2em;
    font-family: 'Poppins', sans-serif;
    text-align: left;
}

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

.content-footer {
    flex: 1;
    min-width: 200px;
}

.content-footer h4 {
    margin-bottom: 1em;
    font-size: 1.2em;
    font-weight: 700;
    color: #FF9D00;
    text-transform: uppercase;
}

.content-footer p, 
.content-footer ul li a {
    font-size: 0.95em;
    line-height: 1.8;
    color: #ccc;
}

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

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

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

.content-footer ul li a:hover {
    color: #FF9D00;
}

.footer hr {
    border: 0;
    height: 1px;
    background-color: #444;
    margin-bottom: 1em;
}

.footer p {
    text-align: center;
    font-size: 0.9em;
    color: #aaa;
}

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

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



/*==================================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: #FF9D00;
    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: #FF9D00;
      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: #FF9D00;
  
}
.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: #FF9D00;
}

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

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

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