* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Courier, monospace;
}
.header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(4, 18, 5, 0.822);
    color: white;
    padding: 8px 15px;
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.912);
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    overflow: visible;
    min-height: 60px;
    flex-wrap: nowrap;
}

.header .logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header img {
    height: 40px;
    width: auto;
    padding: 0;
    margin: 0;
    border-radius: 5px;
}

/* Category Dropdown - Compact */
.category-dropdown {
    position: relative;
    display: inline-block;
    flex-shrink: 0;
    margin: 0 5px 0 30px;
}

/* Search Bar - Responsive */
.search-bar {
    display: flex;
    align-items: center;
    flex: 1;
    max-width: 300px;
    margin: 0 15px 0 5px;
}

#searchInput{
    width: 100%;
    font-size: 16px;
    height: 35px;
    border: none;
    border-radius: 5px 0 0 5px;
    padding: 0 10px;
    outline: none;
}

.search-bar .search-icon {
    height: 35px;
    width: 35px;
    background-color: #088178;
    border: none;
    border-radius: 0 5px 5px 0;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.search-bar .search-icon:hover {
    background-color: #06a085;
}

/* Navigation - Compact */
nav {
    flex-shrink: 0;
}
#navbar {
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: flex-end;
    color: white;
    position: relative;
    border-radius: 5px;
    transition: 0.3s;
    flex-wrap: nowrap;
    gap: 5px;
}

.navibar li{
    margin: 0 5px;
    padding: 0;
    list-style: none;
    flex-shrink: 0;
}

.navibar li a {
    font-size: 16px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 8px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.navibar li a span {
    margin-left: 5px;
    font-size: 14px;
}

.navibar li a i {
    font-size: 18px;
}

.navibar li a:hover {
    background-color: rgba(255, 219, 192, 0.549);
}

.navibar li a.active,
.navibar .active {
    background-color: #088178 !important;
    color: white !important;
    border-radius: 5px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(8, 129, 120, 0.3);
}

/* Dark mode toggle */
.dark-mode-toggle {
    background-color: #088178;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    margin-left: 10px;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
}

.dark-mode-toggle:hover {
    background-color: #06a085;
}
.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    min-width: 20px;
    text-align: center;
}

#lg-bag {
    position: relative;
}

#mobile { 
    display: none;
    align-items: center;
    gap: 10px;
} 

#close{
    display: none;
    cursor: pointer;
    color: white;
    font-size: 20px;
} 

#navbar.active{
    right: 0;
} 
.navibar li{
    /* width: 100%; */
    margin: 0px 10px;
    padding: 0;
    list-style: none;
    justify-content: space-between;
}
 
 
.navibar li a {
    font-size: 20px;
    color: white;
    /* padding: 10px; */
    text-decoration: none;
    display: flex; /* Use flex display to align text and icon horizontally */
    align-items: center; /* Vertically center the content */
}


.navibar li a i {
    font-size: 24px; /* Increase icon size for better visibility */
}
.navibar li a:hover {
   
    background-color: rgba(255, 219, 192, 0.549);
    border-radius: 5px;
}

details {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: 15px;
}

/* Category Dropdown Styling */
.category-dropdown {
    position: relative;
    display: inline-block;
}

.category-dropdown summary {
    background-color: #088178;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
    list-style: none;
    outline: none;
}

.category-dropdown summary:hover {
    background-color: #06a085;
}

.category-dropdown summary::-webkit-details-marker {
    display: none;
}

.category-dropdown summary::after {
    content: ' ▼';
    font-size: 12px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.category-dropdown[open] summary::after {
    transform: rotate(180deg);
}

/* Dropdown Content */
.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 160px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    padding: 0;
    margin-top: 2px;
    animation: slideDown 0.3s ease;
}

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

.dropdown-content p {
    padding: 12px 16px;
    margin: 0;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content p:last-child {
    border-bottom: none;
}

.dropdown-content p:hover {
    background-color: #f8f9fa;
    color: #088178;
}

.dropdown-content p:first-child {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.dropdown-content p:last-child {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

#searchIcon{
    margin-top: 0;
    padding: 0; 
}  

/* Legacy dropdown styling for compatibility */
details > div {
    padding: 10px;
    border: 1px solid #333;
}

#learnmore{
    margin: 0;
    padding: 0;
    background-image: url('https://images.unsplash.com/photo-1602072917553-326e3e2f76dc?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=3135&q=80');
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment:static;
}
#learnmore h1{
margin-left: 35%;
padding: 60px;
font-size: 40px;
font-weight: 700;
}
#learnmore h6{
margin-left: 30%;
padding: 20px;
font-size: 28px;
font-weight: 500;
}
#learnmore p{
 
padding: 20px;
font-size: 18px;
font-weight: 500;
}

#buy {
     
    width: 100%;
    height: 100vh;
    padding: 100px 0;
    margin:0;
    background-size: cover;
     background-image: url('https://cdn.shopify.com/s/files/1/0070/7032/files/ecommerce_20website_20cost.png?format=jpg&quality=90&v=1680107890&width=1024');
    background-position: bottom 25% right 0;

    font-size: 40px;
    opacity: 0.8;
    background-repeat: no-repeat;
    background-attachment:static;
  
}
#buy h2{
margin: 20px 35%;
}
#buy a{
    text-decoration: none;
}
#buy button {
    width: 200px;
    height: 50px;
     
    font-size: 30px;
    text-align: center;
    margin: 20% 40%; /* Adjust margin for centering */
    background-color:rgb(206, 214, 214);
    display: block; /* Make it a block element for centering */
    border-radius: 5px;
}
#buy button:hover{
    background-color:#088178;
}
#feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.fe-box {
    width: 200px;
    height: 200px;
    padding: 10px;
    margin: 25px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 3px 3px 3px rgba(226, 210, 210, 0.475);
    border: rgba(245, 245, 245, 0.208);
    transition: box-shadow 0.3s ease;
    cursor: pointer; /* Add cursor pointer on hover */
}

.fe-box img {
    width: 100%;
    height: 90%;
    border-radius: 5px;
    padding-bottom: 0;
    
}
 
.fe-box h6 {
    line-height: 1;
    color: rgba(19, 19, 17, 0.56);
    padding: 5px;
    margin-bottom: 5px;
    border-radius: 4px;
    display: inline-block;
    background-color: rgb(206, 171, 177);
}

/* Apply hover effect to all .fe-box elements */
.fe-box:hover {
    box-shadow: 10px 10px 5px rgba(226, 210, 210, 0.475);
}

/* Define specific background colors for each fe-box */
.fe-box:nth-child(2) h6 {
    background-color: bisque;
}

.fe-box:nth-child(3) h6 {
    background-color: aqua;
}

.fe-box:nth-child(4) h6 {
    background-color: burlywood;
}

.fe-box:nth-child(5) h6 {
    background-color: rgba(255, 228, 196, 0.504);
}
#product1 {
    text-align: center;
}
#product1 .product-container{
    display: flex;
    text-align: center;
    justify-content: space-between;
    flex-wrap: wrap;

}
/* Contact Form Section */
.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background: #f4f6fa;
}

.contact-card {
  background: #13296b; /* dark blue */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  max-width: 420px;
  width: 100%;
  text-align: center;
}

.contact-card h2 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 22px;
  letter-spacing: 2px;
  font-weight: 700;
}

/* Input fields */
.contact-card input,
.contact-card textarea {
  width: 100%;
  margin: 15px 0;
  padding: 10px 5px;
  background: transparent;
  border: none;
  border-bottom: 2px solid #3498db;
  color: #fff;
  font-size: 16px;
  outline: none;
  resize: none;
}

.contact-card input::placeholder,
.contact-card textarea::placeholder {
  color: #ccc;
}

/* Button */
.contact-card button {
  margin-top: 20px;
  background: #f0c89f;
  color: #13296b;
  font-weight: bold;
  font-size: 14px;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.contact-card button:hover {
  background: #e6b07f;
}

#product1 .product:hover{
    border-radius: 35px;
    box-shadow: 5px 5px 5px 1px rgba(226, 210, 210, 0.475);
}
#product1 .product{
    width: 23%;
    /* min-width:230px; */
    height: 5%;
    font-size: 20px;

    padding: 5px 10px;
    border-radius: 30px;
    /* border-radius: 50px solid rgba(255, 255, 255, 0.391); */

    box-shadow: 3px 3px 3px 3px rgba(226, 210, 210, 0.475);
    margin: 25px 20px;
}
#product1 h2{
    font-size: 40px;
    background-color: aqua;
}
#product1 .product a{
    text-decoration: none;
    width:100%;
}
#product1 .product a img{
    width:100%;
    padding: 0;
    border-radius: 20px;
}
#product1 .product  .des{
    text-align: start;
}
#product1 .product  .des h6{
    font-size: 16px;
    color: #1a1a1a;
}
#product1 .product .des i{
font-size: 15px;
color: rgba(255, 217, 0, 0.858);
}
#product1 .product .des .ai i{
    width: 40px;
    height: 40px;
    font-weight: 600;
    font-size: 40px;
    color: #088178;
    background-color: #e8f6ea;
    border-radius: 25px;
}
#product1 .product a .des h4{
    font-size: 15px;
    font-weight: 800;
}
#banner{
margin: 40px 0;
display: flex;
font-size: 40px;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
background-image: url('https://media.istockphoto.com/id/1413355572/photo/discount-word-made-from-realistic-gold-with-star-on-red-background-3d-illustration.jpg?s=1024x1024&w=is&k=20&c=GhpptaGZI7UVYTG9rZKrV3yn80ReZMWxOYPPaHzLtDk=');
width: 100%;
height: 40vh;
background-size: cover;
}
button.normal{
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    background-color: rgb(255, 255, 255);
    border-radius: 10px ;
    outline: none;
    transition: 0.2s;
    padding: 15px 30px;
    margin: 25px ;

   
}
button:hover{
    background-color: #088178;
}
#banner h2{
    font-size: 40px;
    color: white;
    font-weight: 600;
}
#banner h4{
    font-size: 25px;
    color: white;
    font-weight: 500;
}
#sm-banner{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: 100vh;
   background-color: rgb(255, 251, 234);
  box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
    margin-top: 100px;
    margin-bottom: 60px;
    /* width: 100%; */
    /* flex-wrap: wrap; */
}
#sm-banner .top-container{
    width: 100%;
    height: 40%;
     display: flex;
    justify-content:space-around;
    align-items: center;
    flex-direction: column;
}
.top-container .content{
    width: 100%;
    height: 30%;
    display: flex;
    justify-content:center;
    align-items: center;
}
#main-heading{
    margin: 30px;
    font-weight: 400;
    font-size: 30px
}
#btn-limited{
    padding: 16px 24px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    border: none;
    background-color: #ff8072;
    border-radius:25px;
}
.content img{
    width: 40px;
    height: 60px;
    object-fit: cover;
}
#sm-banner .banner-box:nth-child(2){
display: flex;
font-size: 40px;
flex-direction: column;
align-items: center;
justify-content: center;
height: 40vh;
background-size: cover;
background-image: url(https://static.vecteezy.com/system/resources/previews/027/550/118/non_2x/girl-with-shopping-bag-free-photo.jpg);
}
#sm-banner .banner-box:nth-child(3){
display: flex;
font-size: 40px;
flex-direction: column;
align-items: center;
justify-content: center;
  
background-image: url(https://static.vecteezy.com/system/resources/previews/017/342/705/non_2x/excited-young-women-enjoying-shopping-carrying-many-bags-of-many-colors-free-photo.jpg);
 
height: 40vh;
background-size: cover;
}
#sm-banner .banner-box:nth-child(4){
   
    display: flex;
    font-size: 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url(https://static.vecteezy.com/system/resources/previews/027/550/117/non_2x/girl-with-shopping-bag-free-photo.jpg);
    height: 40vh;
    opacity: 0.9;
    background-size: cover;
    }
#sm-banner h4{
    font-size:30px;
    font-weight: 300;
    color: #fff;
}
#sm-banner h2{
    font-size:40px;
    font-weight: 800;
    color: #fff;
}
#sm-banner .banner-box:nth-child(2) h4{
    font-size:30px;
    font-weight: 500;
    color: white;
}
#sm-banner .banner-box:nth-child(2) h2{
    font-size:40px;
    font-weight: 800;
    color: #ffffff;
}
#banner-3{
    display: flex;
    align-items: center;
    justify-content: space-between;
   
   /* width: 100%; */
}
#banner-3 .banner-box{
   
    display: flex;
    
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
     padding: 5px 10px;
    background-image: url('https://images.unsplash.com/photo-1534180003648-8f8d6c814cdb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NHx8c3VtbWVyJTIwc3ByaW5nJTIwY2xvdGglMjBjb2xsZWN0aW9ufGVufDB8fDB8fHww&auto=format&fit=crop&w=900&q=60');
    
    height: 30vh;
    background-size: cover;
    }
#banner-3 .banner-box:nth-child(2){
   
    display: flex;
    
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
     
    background-image: url('https://media.istockphoto.com/id/1152527286/photo/boutique-shoes-in-a-store.jpg?s=1024x1024&w=is&k=20&c=otWKoDPRjFO7J2B8uvpRJ9KSx_EPm_dVDANtxWrkQd8=');
    
    height: 30vh;
    background-size: cover;
    }
#banner-3 .banner-box:nth-child(3){
   
    display: flex;
    
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
     
    background-image: url('https://media.istockphoto.com/id/1317910493/photo/harrington-jacket-mockup-front-side-and-back-views.jpg?s=612x612&w=0&k=20&c=Nwt91mqrXRsQsCoCIsv0MK9d2PXR8yMwImQxHZsQgsE=');
   
    height: 30vh;
    background-size: cover;
    }
    #banner-3 h2{
        color:#e8f6ea;
        font-weight: 600;
        font-size: 30px;
    }
    #banner-3 h3{
        color:#e8f6ea;
        font-weight: 500;
        font-size: 20px;
    }
/* Base footer styling */
footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #505252;
    color: #ffffff;
    padding: 40px 20px;
    font-size: 16px;
    margin: 0;
    font-family: 'Noto Serif', serif;
}

/* Column styling */
footer .col {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    align-items: flex-start;
    padding: 0;
    margin-right: 30px;
    flex: 1;
}

footer .footer-logo {
    width: 150px;
    height: 50px;
    margin-bottom: 10px;
}

footer .col h4 {
    color: #5bf8fd;
    margin-bottom: 10px;
}

footer .col p {
    display: flex;
    align-items: center;
    margin: 3px 0;
    font-size: 16px;
    color: #ffffff;
}

footer .col i {
    margin-right: 10px;
    color: #ffffff;
    font-size: 18px;
}

footer .col a {
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 5px;
}

footer .col a:hover {
    text-decoration: underline;
}

/* Follow section styling */
.follow {
    margin-top: 15px;
    font-size: 20px;
}

footer .col .icon a {
    color: #ffffff;
    margin-right: 10px;
}

/* Install section styling */
.install .row img {
    margin: 20px 0;
    border-color: #088178; /* Assuming this was intended as a border color */
}

/* Footer bottom styling */
footer .footer-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    border-top: 1px solid #ffffff;
    padding: 10px;
    flex-wrap: wrap;
}

.footer-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
}

/* General button styling */
.btn {
    color: #ffffff;
    padding: 10px 25px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: 'Noto Serif', serif;
    font-size: 20px;
    margin-left: 10px;
    margin-top: 15px;
    transition: background-color 0.3s, outline-color 0.3s;
    border-radius: 5px;
}

/* Specific button styling */
.sign-in {
    background-color: #20b9bb;
    outline: 2px solid #20b9bb;
}

.contact-us {
    background-color: #808080;
    outline: 2px solid #20b9bb;
}

/* Hover effects */
.btn:hover {
    background-color: #666666;
}

.sign-in:hover {
    outline-color: #ffffff;
}

.contact-us:hover {
    background-color: #666666;
    outline-color: #ffffff;
}

.install .row img{
    border: #088178;;
    margin: 20px 0;
    padding: 2px;
    width: 150px;
    height: 40px;
    border-radius: 5px;
}
.install img:hover{
    border: #088178;
}
#page-header.shop-header {
    background-image: url('https://images.unsplash.com/photo-1472851294608-062f824d29cc?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8c2hvcHxlbnwwfHwwfHx8MA%3D%3D&auto=format&fit=crop&w=900&q=60');
    width: 100%;
    height: 45vh;
    background-size: cover;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;

}
#page-header h2{
    color: #fff;
    font-size: 40px;
}
#page-header p{
    color: #fff;
    font-size: 20px;
}
#pagination{
     text-align: center;
     margin: 50px ;
     font-size: 25px;
}
#pagination a{
    text-decoration: none;
    background-color: #088178;
    padding: 15px 20px;
    border-radius: 4px;
    color: #fff;
    font-weight: 600;
}
#pagination a i{
    font-size: 16px;
    font-weight: 600;
}
#prodetails{
    display: flex;
    margin-top: 50px;
    padding-top: 70px;
}
#product-image{
    height: 500px;
}
#prodetails .single-pro-img a span{
margin-top: 15px ;
margin-bottom: 15px;
}
#prodetails .single-pro-img{
    width: 50%;
    height: 20%;
    margin-right: 10%;
    /* margin-bottom: ; */
    margin-left: 30px;
}
.small-img-grp{
display:flex;
margin-top: 20px;
flex-direction: row;
justify-content: space-between;
}
.small-img-col{
    flex-basis: 24%;
    cursor: pointer;
}
#prodetails .single-pro-details{
    width: 70%;
    margin-top: 50px;
     /* margin-bottom: ; */  
}
#prodetails .single-pro-details h6{
    padding: 40px 0 5px 0;
     font-size: 18px;
     /* margin-bottom: ; */  
}
#prodetails .single-pro-details h4{
     
     font-size: 36px;
     /* margin-bottom: ; */  
}
#prodetails .single-pro-details h2{
     font-size: 26px;
     margin-bottom: 12px;
     /* margin-bottom: ; */  
}
#prodetails .single-pro-details span{
     font-size: 26px;
     
     /* margin-bottom: ; */  
}
#prodetails .single-pro-details select{
     display: block;
     padding: 5px 10px;
     margin-bottom: 10px;
     font-size: 20px;
}
#prodetails .single-pro-details input{
    width: 50px;
    height: 47px;
    padding-left: 10px;
    font-size: 16px;
}
#prodetails .single-pro-details input:focus{
    outline: none;
}
 .about-header{
background-image: url('https://images.unsplash.com/photo-1564944062924-57874442ddea?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8OXx8c2ltcGxlJTIwYmFja2dyb3VuZHxlbnwwfHwwfHx8MA%3D%3D&auto=format&fit=crop&w=900&q=60');
width: 100%;
height: 45vh;
background-size: cover;
display: flex;
justify-content: center;
text-align: center;
flex-direction: column;
}
 .contact-header{
background-image: url('https://images.unsplash.com/photo-1682687218982-6c508299e107?ixlib=rb-4.0.3&ixid=M3wxMjA3fDF8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2940&q=80');
width: 100%;
height: 45vh;
background-size: cover;
display: flex;
justify-content: center;
text-align: center;
flex-direction: column;
}
 .cart-header{
background-image: url('https://images.unsplash.com/photo-1682686580433-2af05ee670ad?ixlib=rb-4.0.3&ixid=M3wxMjA3fDF8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=3087&q=80');
width: 100%;
height: 45vh;
background-size: cover;
display: flex;
justify-content: center;
text-align: center;
flex-direction: column;
}

#about-head {
    display: flex;
    align-items: center;
}
#about-head img{
    width: 50%;
    height: auto;
}
.section{
    margin: 40px 50px;
}
#about-head div{
    padding-left: 40px;
}
#about-head div h2{
 font-size: 40px;
 font-weight: 600;
 margin-bottom: 30px;
}
abbr {
    text-decoration: underline dotted;
}
#about-app{
    text-align: center;
    font-size: 40px;
}
#contact-detail{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#contact-detail .detail{
    width: 50%;
}
#contact-detail .detail span {
     font-size: 15px;
}
#contact-detail .detail h2{
     font-size: 26px;
     line-height: 35px;
     padding: 20px 0;
}
#contact-detail .detail h3{
     font-size: 16px;
     padding-bottom: 15px;
      
}
#contact-detail .detail li{
display: flex;
list-style: none;
padding: 9px 0;
}
#contact-detail .detail li i{
 padding-right: 14px;
 font-size: 14px;
}
#contact-detail .detail li p{
 margin: 0;
 font-size: 14px;
}
#contact-detail .map{
    width: 55%;
    height: 400px;
}
#contact-detail .map iframe{
    width: 100%;
    height: 100%;
}
 
#form-detail{
    display: flex;
     flex-direction: column;
    margin-left: 40px;
    margin-top: 10px;
    padding: 15px;
    margin-bottom: 10px;
    /* margin-right: 40%; */
}
#form-detail span {
    font-size: 15px;
}
#form-detail h2{
    font-size: 26px;
    line-height: 35px;
    padding: 20px 0;
}
#form-detail input{
    font-size: 20px;
    padding: 10px 0;
    margin: 15px 0;
}
#form-detail textarea{
    font-size:20px;
    margin: 15px 0;
}
#form-detail button{
    width: 200px;
    background-color: rgb(236, 212, 180);
   margin-left: 40%;
}
#form-detail button:hover{
    background-color: #088178;
}
#cart{
    overflow-x: auto;
}
#cart table{
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    white-space: nowrap;
}
#cart table img{
    width: 70px;
}
#cart table td:nth-child(1){
    width: 100px;
    text-align: center;
}
#cart table td:nth-child(2){
    width: 150px;
    text-align: center;
}
#cart table td:nth-child(3){
    width: 250px;
    text-align: center;
}
#cart table td:nth-child(4),
#cart table td:nth-child(5),
#cart table td:nth-child(6)
{
    width: 150px;
    text-align: center;
}
#cart table td:nth-child(5) input{
width: 70px;
padding: 10px 5px 10px 15px;
}
#cart table thead{
    border: 1px solid #e2e9e1;
    border-left: none;
    border-right: none;
}
#cart table thead td{
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
     padding: 18px 0;    
}
#cart table tbody tr td{
    padding-top: 15px;
}
#cart-add{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
 #coupon{
width: 50%;
margin-bottom: 30px;
}
#coupon h3,
#subtotal h3{
padding-bottom: 15px;
}
#coupon input{
    padding: 10px 20px ;
    outline: none;
    width: 60%;
    font-size: 20px;
    margin-right: 10px;
    border: 1px solid #e2e9e1;
}
#coupon button,
#Subtotal button{
    background-color: bisque;
    color: #1a1a1a;
    padding: 12px 20px;
}
#coupon button:hover,
#Subtotal button:hover{
    background-color: #088178;
}
#Subtotal{
    width: 50%;
    margin-bottom: 30px;
    border: 1px solid #e2e9e1;
    padding: 30px;
}
#Subtotal table{
    border-collapse: collapse;
    width: 100%;
    font-size: 20px;
    margin-bottom: 20px;
}
#Subtotal table td{
    border: 1px solid #e2e9e1;
    width: 50%;
  padding: 10px;
  font-size: 13px;
}


#signbg {
    background-image: url('https://cdn.pixabay.com/photo/2015/04/23/22/00/tree-736885__480.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
#signbg a{
    text-decoration: none;
}
#signbg a span{
    font-size: 20px ;
    margin: 15px 20%;
    border: 3px solid rgb(245, 179, 191);
}
/* Sign-up form styles */
.signup-form {
    background-color: rgba(255, 255, 255, 0.8); /* Background color with transparency */
    width: 400px;
    height: 400px;
    padding: 20px;
    border-radius: 5px;
}

.signup-form h2 {
    text-align: center;
    margin-bottom: 20px;
}

.signup-form label {
    /* display: block; */
    margin-bottom: 8px;
}

.signup-form input[type="text"],
.signup-form input[type="email"],
.signup-form input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 25px;
}

.signup-form button {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    font-size: 28px;
    cursor: pointer;
}
.btn{
    display: flex;
    justify-content: space-between;

}
#reset{
    background-color: #df3535;
}
.signup-form button:hover {
    background-color: rgba(110, 199, 22, 0.789);
    color: #1a1a1a;
}
#already_acc{
    display:flex;
    justify-content:space-between;
    margin-bottom:10px;
}
/* Styles for the result message */
.hidden {
    display: none;
}

.success {
    color: green;
}

.error {
    color: red;
}

@media(max-width:799px){
    .header {
        width: 100%;
        display: flex;
         
     
        justify-content:space-between;
        background-color: rgba(4, 18, 5, 0.822);
        color: white;
       padding: 0;
       margin: 0;
        box-shadow: 0 20px 20px rgba(0, 0, 0, 0.912);
            position:fixed;
       
    }
    #navbar {
        display: flex;
        flex-direction: column;
        
        align-items: flex-start;
        justify-content: flex-start;
        
         position: fixed;
         top: 0;
         right: -300px;
         height: 100vh;
         width: 300px;
         background-color: #1c100a;
         box-shadow: 0 40px 60px rgb(0,0,0,0.1);
         padding: 80px 0 0 10px;
         transition: 0.3s;
    }
    #navbar.active{
        right: 0;
    }
    .navibar li{
        margin-bottom: 25px;
    }
    #mobile{ 
        display: flex;
        align-items: center;
    }  
    #mobile i{ 
        color:#4bb6bed0;
        font-size: 24px;
        margin: 20px;
        padding-left: 20px;
        }
    #close{  position: absolute;
            top: 30px;
            display:inline;
            left: 30px;
            color: white;
            font-size: 24px;
        }
       #lg-bag{
        display: none;
       }
       
       #product1 .product-container  {
    flex-direction: column;
}

}

/* Section Styling */
.section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 50px 20px;
  background-color: #f5f5f5;
}

/* Banner Boxes */
.banner-box {
  background: linear-gradient(135deg, #ffffff, #f0f0f0);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  flex: 1 1 300px; /* responsive boxes */
  max-width: 350px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.banner-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0,0,0,0.15);
}

.banner-box h4 {
  font-size: 18px;
  color: #555;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.banner-box h2 {
  font-size: 28px;
  color: #222;
  margin-bottom: 15px;
}

.banner-box h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 20px;
}
/* Dark mode styles */
body.dark-mode .section {
  background-color: #1c1c1c; /* dark background */
}

body.dark-mode .banner-box {
  background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

body.dark-mode .banner-box h4,
body.dark-mode .banner-box h2,
body.dark-mode .banner-box h3 {
  color: #f0f0f0; /* light text for dark mode */
}


/* Fancy Button */
.fancy-btn {
  display: inline-block;
  padding: 10px 25px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(45deg, #ff6b6b, #ff8e53);
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}

.fancy-btn:hover {
  background: linear-gradient(45deg, #ff8e53, #ff6b6b);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

body.dark-mode .fancy-btn {
  background: linear-gradient(45deg, #444, #666);
  color: #fff;
}

body.dark-mode .fancy-btn:hover {
  background: linear-gradient(45deg, #666, #444);
  box-shadow: 0 8px 15px rgba(0,0,0,0.5);
}

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

/* Footer Styling */
.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #1b1b1b;
  color: #fff;
  padding: 50px 20px;
  gap: 20px;
  font-family: Arial, sans-serif;
}

.footer .col {
  flex: 1 1 220px; /* responsive column */
  margin-bottom: 20px;
}

.footer .footer-logo {
  height: 50px;
  margin-bottom: 15px;
  border-radius: 5px;
}

.footer h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #ff8e53;
}

.footer p, 
.footer a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 5px;
  display: block;
  transition: 0.3s;
}

.footer a:hover {
  color: #fff;
}

.footer .follow .icon {
  display: flex;
  gap: 10px;
  margin-top: 5px;
}

.footer .icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: #333;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s;
}

.footer .icon a:hover {
  background-color: #ff8e53;
  color: #fff;
  transform: translateY(-3px);
}

/* App Store / Google Play buttons */
.footer .install .row {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.footer .install .store-btn {
  height: 40px;
  transition: transform 0.3s;
}

.footer .install .store-btn:hover {
  transform: scale(1.05);
}

/* Light Mode Footer (default) */
body.light-mode .footer {
  background-color: #f6f6f6;
  color: #1b1b1b;
}

body.light-mode .footer h4 {
  color: #ff8e53;
}

body.light-mode .footer p,
body.light-mode .footer a {
  color: #333;
}

body.light-mode .footer .icon a {
  background-color: #ccc;
  color: #1b1b1b;
}

body.light-mode .footer .icon a:hover {
  background-color: #ff8e53;
  color: #fff;
}


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

  .footer .col {
    width: 100%;
  }

  .footer .install .row {
    flex-direction: column;
  }

  .footer .install .store-btn {
    width: 150px;
  }
}

/* Header Section */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    background-color: #222;
    color: #fff;
    flex-wrap: wrap;
}

.header img {
    height: 50px;
}

.header details summary {
    cursor: pointer;
    margin-left: 20px;
    font-weight: bold;
}

.header input {
    padding: 6px 12px;
    margin-left: 20px;
    border-radius: 20px;
    border: 1px solid #ccc;
    outline: none;
}

.header .search-icon {
    cursor: pointer;
    margin-left: 5px;
    font-size: 18px;
}

/* Navigation */
.navibar {
    display: flex;
    gap: 15px;
    list-style: none;
}

.navibar li a {
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
}

.navibar li a.active {
    color: #088178;
}

/* About Header */
.about-header {
    text-align: center;
    padding: 60px 20px;
    background-color: #f4f4f4;
}

.about-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.about-header p {
    font-size: 18px;
    color: #555;
}
/* Dark Mode */
body.dark-mode .about-header {
    background-color: #1b1b1b;
    color: #f4f4f4;
}

body.dark-mode .about-header h2 {
    color: #fff;
}

body.dark-mode .about-header p {
    color: #ccc;
}


/* About Section */
.about-section {
    display: flex;
    gap: 40px;
    padding: 60px 20px;
    align-items: center;
    flex-wrap: wrap;
}

.about-section img {
    max-width: 500px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.about-content {
    flex: 1;
    max-width: 600px;
}

.about-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #222;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.about-content abbr {
    display: block;
    font-style: italic;
    margin-bottom: 15px;
    color: #888;
}

.about-content marquee {
    padding: 8px;
    background-color: #eee;
    color: #333;
    font-weight: bold;
}
/* Dark Mode About Section */
body.dark-mode .about-section {
    background-color: #121212;
    color: #e0e0e0;
}

body.dark-mode .about-section img {
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}

body.dark-mode .about-content h2 {
    color: #fff;
}

body.dark-mode .about-content p {
    color: #ccc;
}

body.dark-mode .about-content abbr {
    color: #aaa;
}

body.dark-mode .about-content marquee {
    background-color: #1e1e1e;
    color: #f4f4f4;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .about-section img {
        margin-bottom: 20px;
    }

    .header {
        justify-content: center;
    }

    .navibar {
        flex-wrap: wrap;
        justify-content: center;
    }
}
/* About App Section */
#about-app {
    text-align: center;
    padding: 60px 20px;
    background-color: #f4f4f4;
}

#about-app h1 {
    font-size: 36px;
    color: #222;
}

#about-app a {
    color: #f39c12;
    text-decoration: none;
    transition: color 0.3s ease;
}

#about-app a:hover {
    color: #e67e22;
}
/* About App Section */
#about-app {
    text-align: center;
    padding: 60px 20px;
    background-color: #f4f4f4;
}

#about-app h1 {
    font-size: 36px;
    color: #222;
}

#about-app a {
    color: #f39c12;
    text-decoration: none;
    transition: color 0.3s ease;
}

#about-app a:hover {
    color: #e67e22;
}

/* Feature Section */
#feature {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 50px 20px;
    background-color: #fff;
}

.fe-box {
    flex: 1 1 180px;
    max-width: 220px;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.fe-box img {
    max-width: 100px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.fe-box h6 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.fe-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.fe-box:hover img {
    transform: scale(1.1);
}

/* Dark Mode Feature Section */
body.dark-mode #feature {
    background-color: #1e1e1e;
}

body.dark-mode .fe-box {
    background-color: #2a2a2a;
    color: #e0e0e0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

body.dark-mode .fe-box h6 {
    color: #fff;
}

body.dark-mode .fe-box:hover {
    box-shadow: 0 10px 20px rgba(255,255,255,0.1);
}

body.dark-mode .fe-box:hover img {
    transform: scale(1.1);
}


/* Responsive */
@media screen and (max-width: 768px) {
    #feature {
        gap: 20px;
    }

    .fe-box {
        flex: 1 1 45%;
    }
}

@media screen and (max-width: 480px) {
    .fe-box {
        flex: 1 1 100%;
    }
}
/* Contact Header Section */
.contact-header {
    background: linear-gradient(to right, #394787, #74a7b4); /* gradient background */
    color: #fff; /* white text */
    padding: 100px 20px;
    text-align: center;
    position: relative;
}

.contact-header .container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header p {
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-header {
        padding: 70px 15px;
    }

    .contact-header h2 {
        font-size: 2rem;
    }

    .contact-header p {
        font-size: 1rem;
    }
}
/* Contact Detail Section */
#contact-detail {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding: 4rem 2rem;
    background-color: #f9f9f9;
    font-family: 'Arial', sans-serif;
}

#contact-detail .detail {
    flex: 1 1 400px;
}

#contact-detail .detail span {
    display: block;
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#contact-detail .detail h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #222;
}

#contact-detail .detail h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

#contact-detail .contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

#contact-detail .contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    background-color: #fff;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

#contact-detail .contact-info li:hover {
    transform: translateY(-3px);
}

#contact-detail .contact-info i {
    font-size: 1.5rem;
    color: #ff6f61;
    margin-right: 1rem;
}

#contact-detail .contact-info p {
    margin: 0;
    font-size: 1rem;
    color: #555;
}

/* Map Styling */
#contact-detail .map {
    flex: 1 1 400px;
    min-height: 300px;
}

#contact-detail .map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 900px) {
    #contact-detail {
        flex-direction: column;
    }

    #contact-detail .map {
        margin-top: 2rem;
        min-height: 250px;
    }
}

/* FORM DETAIL SECTION */
#form-detail {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

#form-detail .form-header span {
    display: block;
    font-size: 16px;
    color: #ff6b6b;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

#form-detail .form-header h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}

#contactForm {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}
/* Dark Mode Contact Header */
body.dark-mode .contact-header {
    background: linear-gradient(to right, #1e1e1e, #2a2a2a);
    color: #fff;
}

body.dark-mode .contact-header h2,
body.dark-mode .contact-header p {
    color: #fff;
}

/* Dark Mode Contact Detail Section */
body.dark-mode #contact-detail {
    background-color: #121212;
}

body.dark-mode #contact-detail .detail h2,
body.dark-mode #contact-detail .detail h3,
body.dark-mode #contact-detail .detail span,
body.dark-mode #contact-detail .contact-info p {
    color: #e0e0e0;
}

body.dark-mode #contact-detail .contact-info {
    background-color: #1e1e1e;
}

body.dark-mode #contact-detail .contact-info li {
    background-color: #1e1e1e;
    box-shadow: 0 4px 10px rgba(255,255,255,0.05);
}

body.dark-mode #contact-detail .contact-info li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255,255,255,0.1);
}

body.dark-mode #contact-detail .contact-info i {
    color: #ff8e53;
}

/* Dark Mode Map */
body.dark-mode #contact-detail .map iframe {
    filter: brightness(0.8);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(255,255,255,0.05);
}

/* Dark Mode Form Detail Section */
body.dark-mode #form-detail {
    background-color: #1b1b1b;
    color: #e0e0e0;
}

body.dark-mode #form-detail .form-header span,
body.dark-mode #form-detail .form-header h2 {
    color: #ff8e53;
}

body.dark-mode #contactForm input,
body.dark-mode #contactForm textarea {
    background-color: #2a2a2a;
    color: #fff;
    border: 1px solid #444;
}

body.dark-mode #form-detail button {
    background-color: #ff8e53;
    color: #fff;
}

body.dark-mode #form-detail button:hover {
    background-color: #ff6b6b;
    color: #fff;
}


.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ff6b6b;
    box-shadow: 0 0 8px rgba(255, 107, 107, 0.3);
}

textarea {
    resize: none;
}

#submit-button {
    background-color: #ff6b6b;
    color: #fff;
    padding: 14px 30px;
    font-size: 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

#submit-button:hover {
    background-color: #ff4757;
}

/* Dark Mode Form Group */
body.dark-mode .form-group input,
body.dark-mode .form-group textarea {
    background-color: #2a2a2a;
    color: #e0e0e0;
    border: 1px solid #555;
}

body.dark-mode .form-group input:focus,
body.dark-mode .form-group textarea:focus {
    border-color: #ff8e53;
    box-shadow: 0 0 8px rgba(255, 142, 83, 0.5);
}

/* Dark Mode Submit Button */
body.dark-mode #submit-button {
    background-color: #ff8e53;
    color: #fff;
}

body.dark-mode #submit-button:hover {
    background-color: #ff6b6b;
}

/* Responsive */
@media (max-width: 768px) {
    #form-detail .form-header h2 {
        font-size: 28px;
    }

    #submit-button {
        width: 100%;
    }
}


/* Cart Header Section */
.cart-header {
    width: 100%;
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(to right, #ff7e5f, #feb47b); /* Warm gradient */
    color: #fff;
    font-family: 'Arial', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Paragraph styling */
.cart-header p {
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 500;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Heading styling */
.cart-header h2 {
    font-size: 42px;
    margin: 0;
    font-weight: 700;
}

/* Optional: Add subtle animated background shapes */
.cart-header::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    top: -50px;
    left: -50px;
    animation: float 6s ease-in-out infinite;
}

.cart-header::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite alternate;
}

/* Floating animation */
@keyframes float {
    0% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(20px) translateX(20px); }
    100% { transform: translateY(0px) translateX(0px); }
}

/* Dark Mode Cart Header */
body.dark-mode .cart-header {
    background: linear-gradient(to right, #2c2c2c, #3d3d3d); /* Dark gradient */
    color: #fff;
}

body.dark-mode .cart-header p {
    color: #ccc;
}

body.dark-mode .cart-header h2 {
    color: #ffb87c; /* Warm accent for heading in dark mode */
}

/* Subtle animated shapes for dark mode */
body.dark-mode .cart-header::after,
body.dark-mode .cart-header::before {
    background: rgba(255, 184, 124, 0.1); /* Dimmed warm overlay */
}

/* Responsive */
@media (max-width: 768px) {
    .cart-header h2 {
        font-size: 32px;
    }

    .cart-header p {
        font-size: 16px;
    }
}
/* General Section Styling */
.section {
    padding: 50px 20px;
    font-family: 'Arial', sans-serif;
}

/* Cart Table */
.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
}

.cart-table th,
.cart-table td {
    text-align: center;
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

.cart-table th {
    background-color: #f4f4f4;
    font-weight: 600;
}

.cart-table img {
    width: 80px;
    height: auto;
    border-radius: 5px;
}

/* Quantity Input */
.cart-table input[type="number"] {
    width: 60px;
    padding: 5px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Remove Icon */
.cart-table a i {
    color: red;
    font-size: 18px;
    cursor: pointer;
}
/* Dark Mode Cart Section */
body.dark-mode .section {
    background-color: #1e1e1e;
    color: #ddd;
}

/* Cart Table */
body.dark-mode .cart-table th {
    background-color: #2c2c2c;
    color: #fff;
}

body.dark-mode .cart-table td {
    border-bottom: 1px solid #444;
    color: #ccc;
}

body.dark-mode .cart-table input[type="number"] {
    background-color: #2c2c2c;
    color: #fff;
    border: 1px solid #555;
}

body.dark-mode .cart-table a i {
    color: #ff6b6b;
}

/* Images stay the same, maybe add subtle border */
body.dark-mode .cart-table img {
    border: 1px solid #444;
}

/* Coupon Section */
#coupon {
    margin-bottom: 30px;
}

#coupon h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.coupon-box {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.coupon-box input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.coupon-box button {
    padding: 10px 20px;
    border: none;
    background-color: #ff7e5f;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.coupon-box button:hover {
    background-color: #feb47b;
}
/* Dark Mode Coupon Section */
body.dark-mode #coupon {
    color: #ddd;
}

body.dark-mode #coupon h3 {
    color: #fff;
}

body.dark-mode .coupon-box input {
    background-color: #2c2c2c;
    color: #fff;
    border: 1px solid #555;
}

body.dark-mode .coupon-box button {
    background-color: #ff7e5f;
    color: #fff;
}

body.dark-mode .coupon-box button:hover {
    background-color: #feb47b;
}


/* Subtotal Section */
#subtotal {
    max-width: 400px;
    margin-top: 20px;
}

.subtotal-table {
    width: 100%;
    margin-bottom: 15px;
}

.subtotal-table td {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

#subtotal button {
    width: 100%;
    padding: 12px;
    background-color: #ff7e5f;
    border: none;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#subtotal button:hover {
    background-color: #feb47b;
}
/* Dark Mode Subtotal Section */
body.dark-mode #subtotal {
    background-color: #1e1e1e;
    color: #ddd;
    padding: 20px;
    border-radius: 8px;
}

body.dark-mode .subtotal-table td {
    border-bottom: 1px solid #444;
    color: #ddd;
}

body.dark-mode #subtotal button {
    background-color: #ff7e5f;
    color: #fff;
}

body.dark-mode #subtotal button:hover {
    background-color: #feb47b;
}


/* Responsive */
@media (max-width: 768px) {
    .cart-table th, .cart-table td {
        font-size: 14px;
        padding: 10px;
    }

    .cart-table img {
        width: 60px;
    }

    .coupon-box input {
        flex: 100%;
    }

    #subtotal {
        max-width: 100%;
    }
}
/* Container */
#prodetails {
    max-width: 1200px;
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Main product image */
.single-pro-img #product-image {
    width: 400px;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    margin-bottom: 20px;
}

/* Product title */
.single-pro-img #product-title {
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: center;
}

/* Back to shop link */
.single-pro-img .back-to-shop {
    display: inline-block;
    margin-bottom: 30px;
    text-decoration: none;
    color: #2575fc;
    font-weight: bold;
    transition: color 0.3s;
}
.single-pro-img .back-to-shop:hover {
    color: #6a11cb;
}

/* Small image group */
.small-img-grp {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Individual small images */
.small-img-col {
    width: 80px;
    cursor: pointer;
}
.small-img-col img {
    width: 100%;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: transform 0.3s, border 0.3s;
}
.small-img-col img:hover {
    transform: scale(1.1);
    border: 2px solid #2575fc;
}
.single-pro-details {
    max-width: 500px;
    margin: 30px auto;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
/* Dark Mode for Product Details */
body.dark-mode #prodetails {
    background-color: #121212;
    color: #ddd;
}

body.dark-mode .single-pro-img #product-title {
    color: #fff;
}

body.dark-mode .single-pro-img .back-to-shop {
    color: #6a9cff;
}

body.dark-mode .single-pro-img .back-to-shop:hover {
    color: #a17bff;
}

body.dark-mode .small-img-col img {
    border: 2px solid transparent;
}

body.dark-mode .small-img-col img:hover {
    border: 2px solid #6a9cff;
}

body.dark-mode .single-pro-details {
    background-color: #1e1e1e;
    color: #ddd;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}


/* Product actions: select, quantity, button */
.product-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.product-actions select,
.product-actions input[type="number"] {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 1rem;
    min-width: 120px;
}

.product-actions input[type="number"] {
    width: 80px;
}

.product-actions button.normal {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    background: #2575fc;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.product-actions button.normal:hover {
    background: #6a11cb;
}

/* Product info section */
.product-info h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.product-info span {
    display: block;
    text-align: center;
    color: #555;
    line-height: 1.6;
}

/* Dark Mode for Product Actions */
body.dark-mode .product-actions {
    background-color: #1e1e1e;
    padding: 15px;
    border-radius: 12px;
}

body.dark-mode .product-actions select,
body.dark-mode .product-actions input[type="number"] {
    background-color: #2c2c2c;
    color: #ddd;
    border: 1px solid #555;
}

body.dark-mode .product-actions button.normal {
    background: #6a9cff;
    color: #fff;
}

body.dark-mode .product-actions button.normal:hover {
    background: #a17bff;
}

/* Dark Mode for Product Info */
body.dark-mode .product-info h4 {
    color: #fff;
}

body.dark-mode .product-info span {
    color: #ccc;
}

.dark-mode-toggle {
  position: absolute; /* inside header */
  right: 20px;
  top: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  user-select: none;
  transition: transform 0.3s;
}

/* Optional: slight bounce animation when toggled */
.dark-mode-toggle:active {
  transform: scale(1.2);
}



/* Dark mode body styles */
body.dark-mode {
  background-color: #121212;
  color: #f0f0f0;
}

header.dark-mode {
  background-color: #1f1f1f;
}
/* Category Filter Buttons Container */
#category-filters {
    text-align: center;
    margin: 3rem 0 2rem 0;
}
/* Optional: Ripple Animation on Click */
.filter-btn::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255,255,255,0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50px;
}
.filter-btn:active::after {
    opacity: 1;
    transition: 0s;
}
/* Dark Mode Adjustments */
body.dark .filter-btn {
    background: linear-gradient(145deg, #555, #777);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
body.dark .filter-btn:hover {
    background: linear-gradient(145deg, #666, #888);
}
body.dark .filter-btn.active {
    background: linear-gradient(145deg, #ff4b5c, #ff6b6b);
}

/* sign-in page */
#sign-in_body{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("https://cdn.pixabay.com/photo/2015/04/23/22/00/tree-736885__480.jpg") no-repeat center center/cover;
    font-family: Arial, sans-serif;
  }
  
  .signin-box {
    width: 350px;
    padding: 25px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.6);
    text-align: center;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2); /* slight shadow */
  }
  .signin-heading {
    margin-bottom: 20px;
  }
  
  .signin-form label {
    display: block;
    text-align: left;
    margin: 10px 0 5px;
    font-weight: bold;
  }
  
  .signin-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #aaa;
    border-radius: 5px;
  }
  
  .signin-forgot-text {
    margin-bottom: 20px;
    font-size: 14px;
    text-align: left;
  }
  
  .signin-forgot-text a {
    margin-left: 70px;
    text-decoration: none;
    color: blue;
  }
  
  .signin-btn {
    width: 100%;
    padding: 12px;
    background: #333;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .signin-btn:hover {
    background: #555;
  }
  .login-btn {
    display: inline-block;
    text-align: center;
    background-color: #007bff;  
    color: white;                
    padding: 12px 20px;     
    border-radius: 6px;       
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;   
    width: 100%;                
    box-sizing: border-box;      
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .login-btn:hover {
    background-color: #0056b3;   
    transform: scale(1.03);      
  }

/* forgot password page */
#resetpass-body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: url("https://cdn.pixabay.com/photo/2015/04/23/22/00/tree-736885__480.jpg") no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#resetpass-form {
    background-color: rgba(255, 255, 255, 0.6); 
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
    width: 350px;
    text-align: center;
}

#resetpass-heading {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

#resetpass-form label {
    display: block;
    text-align: left;
    margin-bottom: 6px;
    font-weight: bold;
    color: #222;
}

.resetpass-password-wrapper {
    position: relative;
    margin-bottom: 15px;
}

.resetpass-password-wrapper input {
    width: 100%;
    padding: 10px 35px 10px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
}

.resetpass-email-wrapper input{
    width: 100%;
    padding: 10px 35px 10px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
}
.resetpass-password-wrapper input:focus {
    border-color: #007BFF;
}
.resetpass-toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    user-select: none;
}

#resetpass-button {
    margin-top: 15px;
    width: 100%;
    padding: 12px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

#resetpass-button:hover {
    background-color: #0056b3;
    transform: scale(1.02);
}

/* === Sidebar Filters === */
.shop-container {
  display: flex;
   align-items: flex-start; 
  gap: 20px;
  padding: 20px;
}
.products {
  flex: 1;                /* take up the rest of the width */
  display: grid;          /* product cards in grid */
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

/* Sidebar */
.filters {
  width: 220px;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  height: fit-content;
  position: sticky;
  top: 80px; /* stays visible while scrolling */
}

.filters h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
  color: #333;
}

/* Individual filter groups */
.filter-group {
  margin-bottom: 20px;
}

.filter-group h4 {
  font-size: 15px;
  margin-bottom: 10px;
  color: #444;
}

.filter-group label {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #555;
}

.filter-group input[type="checkbox"],
.filter-group input[type="radio"] {
  margin-right: 8px;
}

/* Price Slider */
input[type="range"] {
  width: 100%;
  accent-color: #ff3e6c; /* Myntra pink */
}

/* Clear button */
#clear-filters {
  display: inline-block;
  width: 100%;
  margin-top: 10px;
  background: #ff3e6c;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease;
}

#clear-filters:hover {
  background: #e7325d;
}

/* === Product Section === */
.category-filter {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.category-filter button {
  border: 1px solid #ddd;
  padding: 6px 12px;
  border-radius: 20px;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.category-filter button:hover {
  background: #ff3e6c;
  color: #fff;
  border-color: #ff3e6c;
}
