:root{
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color:#75cc4a;
    --light-color: #ecf0f1;
    --dark-color:#2c3e50;
    --text-color:#333;
    --text-light:#7f8c8d;
}

*{
    margin:0 ;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    background: color #f8f8f8;;
    color:#333;
    line-height: 1.6;   
}

header h1 { margin: 0; font-size: 28px; margin-right: 65%; }
        .brand { margin: 0; font-size: 28px; height: 40px; width: auto;}


/* header{
   background-color: white;
   padding: 20px 0;
   box-shadow: 0 2px 10px rgb(0, 0, 0, 0.1);
   position: sticky;
   top: 0;
   z-index: 100;
} */

.container {
    width: 100;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; 
}

.nav-top{
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 15px;
}

.nav-top a{
    text-decoration: none;
    color: #333;
    font-weight: 30px;
    font-size: 14px;
    text-transform: uppercase;
}

.logo{
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 2px;
}
.nav-main{
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.nav-main a{
    text-decoration: none;
    color: #666;
    font-size: 14px;
}

.sale-tag{
    color: red;
}

.products-container{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;

}

.product-card{
    background-color: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgb(0, 0, 0, 0.1);
    transition:transform 03s ease;
    
}
.product-card:hover{
    transform: translateY(-5px);
}

.product-image{
height: 300px;
background-color: #f5f5f5;
position: relative;
overflow: hidden;
}

.product-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-info{
    padding: 15px;
}

.style{
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px ;
}

.product-name{
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.prices{
    display: flex;
    gap:10px;
    align-items: center;
    margin-bottom: 15px;
}
.current-price {
font-weight: bold;
}

.original-price{
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
}
.discount {
    color: red;
    font-size: 14px;
}

.buy-now-btn {
    background-color:#000;
    color: white;
    border: none;
    padding: 10px 15px;
    width:100%;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition:background-color 0.3s;
    
}
.buy-now-btn:hover {
    background-color: #333;
}

/* purchase Form styles */
.purchase-form {
   display: none; 
   background-color: white;
   padding: 30px;
   border-radius: 8px;
   box-shadow: 0 5px 15px rgba(0,0,0,0.1);
   max-width: 600px;
   margin: 40px auto;
}
.purchase-form h2{
    text-align: center;
    margin-bottom: 20px;
}
.form-group{
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group texterea {
 width: 100%;
 padding: 10px;
 border: 1px solid #ddd;
 border-radius: 4px;
 font-size: 16px;

}

.submit-btn{
    background-color:#000 ;
    color: white;
    border: none;
    padding: 12px 20px;
    width: 100%;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition:background-color 0.3s;

}
.submit-btn:hover{
    background-color: #333;
}

.product-sumary {
display: flex;
align-items: center;
gap: 15px;
padding:15px;
background-color: #f9f9f9;
border-radius: 8px;
margin-bottom: 20px;
}

.product-sumary img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    
}
.thank-you {
    display: none;
    text-align: center;
    padding: 40px;
    background-color: white;
    border-bottom: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 40px auto;

}

.thank-you i {
    font-size: 50px;
    color: #4caf50;
    margin-bottom: 20px;
}

/* Email instructions */
.email-instructions {
    background-color: #f0f7ff;
    padding:20px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid #4a90e2;
}
.email-instructions h3{
    color:#4a90e2;
    margin-bottom:10px;
}

/* Responsive adjustment */

@media(max-width: 786px){
    .nav-top, .nav-main{
        flex-wrap: wrap;
        gap: 15px;
    }

    .products-container{
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        padding: 20px;
        gap: 20px;
    }
    
    .product-image{
        height: 250px;
    }
}
#mc_embed_shell{
            text-align: center;
            align-items: center;
        }

        .popup-container{
            position: fixed;
            top: 0;
            left: 0;    
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 14, 0.299); 
            backdrop-filter: blur(2px);    
            z-index: 10000 ;
            display: flex ;  
            justify-content: center;
            align-items: center;
        }   
/* SUBSCRIBE BUTTON STYLING */
#mc-embedded-subscribe{
    background: #f0ca07;
    color: #f0ca07;
    border: none;
    padding: 12px 30px;
    font-size: 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

/* CLOSE (X) BUTTON */
.close-popup{
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    color: #111;
    background: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

        /* .popup-content{
            background: white;
            padding: 20px;
            border-radius: 5px;
            text-align: center;
            width: 300px;
            position: relative; 
        } */


/* Footer */

/* footer {
   background: #111; 
   color: white;
   text-align:centre;
   padding:20px;
   margin-top: 40px 
 } */

 /* =========> cookies <==========  */
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 50%;
            width: 90%;
            transform: translateX(-50%);
            max-width: 600px;
            background: rgba(0, 0, 14, 0.85);
            color: #fff;
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border-radius: 15px;
            padding: 20px;
            z-index: 9999;
            animation: slideUp 0.6s ease;
        }

        .cookie-content {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .cookie-buttons {
            display: flex;
            gap: 10px;
            justify-content: flex-end;
        }

        .btn-accept {
            background: linear-gradient(45deg, #00c853, #64dd17);
            border: none;
            padding: 10px 18px;
            border-radius: 8px;
            color: white;
            cursor: pointer;
            font-weight: bold;
        }

        .btn-decline {
            background: transparent;
            border: 1px solid #ccc;
            padding: 10px 18px;
            border-radius: 8px;
            color: white;
            cursor: pointer;
        }

        @keyframes slideUp {
            from { transform: translate(-50%, 100%); opacity: 0; }
            to { transform: translate(-50%, 0); opacity: 1; }
        }

  /* Footer */
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 60px 0 30px;
            text-align: center;
        }

        .footer-content {
            display: flex;
            text-align: center;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-section h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }
        
        .footer-section p, .footer-section li {
            margin-bottom: 1rem;
        }
        
        .footer-section a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section a:hover {
            color: var(--primary);
        }
        
        .footer-section ul {
            list-style: none;
        }


        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 1.5rem;
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background: var(--primary);
            color: #ddd;
            transform: translateY(-3px);
        }
        
        .copyright {
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            font-size: 0.9rem;
            color: #aaa;
        }

       

        .footer-line{
        border: none;
        border-top: 1px solid #cfcece;
        margin: 20px 0;
        }

        .copy{
        font-size: x-small;
        }
        


       @media(max-width: 768px){ 
        .nav-main{
        display: none;
       }
    }  
        .burger{
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        color: #312f2f;  /*make sure it's visible*/

       }
    .nav-main.active{
       display: flex;
      flex-direction: column;
    }

   header h1{margin-right: 31%;
    
    }