/* GENERAL */

body{
    font-family:Arial;
    margin:0;
    background:#f5f7f6;
    }
    
    .container{
    width:90%;
    max-width:1200px;
    margin:auto;
    }
    
    /* HEADER */
    
    header{
    background:#0E2F1F;
    color:white;
    padding:8px 0;
    }
    
    header .nav{
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
    }
    
    .nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    }
    
    .logo{
    height:100px;
    width:auto;
    display:flex;
    align-items:center;
    text-decoration:none;
    }
    
    .logo img{
    height:100px;
    width:auto;
    object-fit:contain;
    }
    
    nav{
    flex:1;
    margin-left:20px;
    }
    
    nav a{
    color:white;
    margin:0 15px;
    text-decoration:none;
    font-weight:500;
    transition:0.3s;
    }
    
    nav a:hover{
    color:#25D366;
    text-decoration:underline;
    }
    
    /* WHATSAPP BUTTON */
    
    .whatsapp-btn{
    background:#25D366;
    color:white;
    padding:10px 18px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
    }
    
    .whatsapp-btn:hover{
    background:#1ebe5d;
    }
    
    /* HERO SECTION */
    
    .hero{
    position:relative;
    height:500px;
    overflow:hidden;
    }
    
    .hero-carousel{
    position:relative;
    height:100%;
    }
    
    .hero-slide{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    opacity:0;
    transition:opacity 0.5s ease;
    display:flex;
    align-items:center;
    }
    
    .hero-slide.active{
    opacity:1;
    }
    
    .hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.4);
    }
    
    .hero-content{
    position:relative;
    z-index:2;
    color:white;
    max-width:600px;
    }
    
    .hero-content h1{
    font-size:2.5rem;
    margin-bottom:20px;
    }
    
    .hero-content p{
    font-size:1.2rem;
    margin-bottom:30px;
    line-height:1.6;
    }
    
    /* CAROUSEL DOTS */
    
    .carousel-dots{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:10px;
    z-index:3;
    }
    
    .dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:white;
    cursor:pointer;
    opacity:0.6;
    transition:opacity 0.3s;
    }
    
    .dot.active{
    opacity:1;
    }
    
    .dot:hover{
    opacity:0.8;
    }
    
    /* PRIMARY BUTTON */
    
    .btn-primary{
    background:#1F8F4E;
    color:white;
    padding:12px 22px;
    text-decoration:none;
    border-radius:6px;
    display:inline-block;
    margin-top:10px;
    }
    
    /* CATEGORIES */
    
    .categories{
    padding:60px 0;
    }
    
    /* CAROUSEL */
    
    .carousel-wrapper{
    display:flex;
    align-items:center;
    position:relative;
    }
    
    .carousel{
    display:flex;
    gap:20px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
    padding:20px 0;
    }
    
    .carousel::-webkit-scrollbar{
    display:none;
    }
    
    /* CATEGORY CARD */
    
    .cat-card{
    min-width:150px;
    background:white;
    padding:20px;
    border-radius:10px;
    text-align:center;
    box-shadow:0 4px 10px rgba(0,0,0,0.05);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    }
    
    .cat-card img{
    width:120px;
    height:120px;
    object-fit:contain;
    margin-bottom:10px;
    transition:transform 0.3s ease;
    }
    
    .cat-card img:hover{
    transform:scale(1.2);
    }
    
    /* CAROUSEL BUTTONS */
    
    .carousel-btn{
    background:#1F8F4E;
    color:white;
    border:none;
    padding:10px 15px;
    cursor:pointer;
    border-radius:6px;
    font-size:18px;
    margin:0 5px;
    }
    
    /* ABOUT SECTION */
    
    .about{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:80px 0;
    gap:40px;
    }
    
    .about-text{
    flex:1;
    }
    
    .about-image{
    flex:1;
    }
    
    .about-image img{
    max-width:400px;
    width:100%;
    }
    
    /* PRODUCTS */
    
    .products{
    padding:80px 0;
    }
    
    .section-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
    }
    
    .product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    }
    
    /* PRODUCT CARD */
    
    .product-card{
    background:white;
    padding:20px;
    border-radius:10px;
    text-align:center;
    box-shadow:0 3px 8px rgba(0,0,0,0.05);
    }
    
    .product-card img{
    width:100%;
    max-width:180px;
    transition:transform 0.3s ease;
    }
    
    .product-card img:hover{
    transform:scale(1.1);
    }
    
    /* BUTTON */
    
    button{
    background:#1F8F4E;
    color:white;
    border:none;
    padding:10px 20px;
    border-radius:5px;
    cursor:pointer;
    margin-top:10px;
    }
    
    /* PAYMENT SECTION */
    
    .payment{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    padding:80px 0;
    }
    
    .payment-text{
    flex:1;
    }
    
    .payment-text p{
    margin-bottom:10px;
    }
    
    .payment-image{
    flex:1;
    display:flex;
    justify-content:center;
    }
    
    .payment-image img{
    max-width:350px;
    width:100%;
    }

    
    /* MAP CONTAINER */
    
    .map-container{
    margin:40px 0;
    text-align:center;
    }
    
    .map-container h2{
    margin-bottom:20px;
    color:#0E2F1F;
    }
    
    .map-container iframe{
    border-radius:10px;
    box-shadow:0 4px 15px rgba(0,0,0,0.1);
    }
    
    /* FOOTER */
    
    footer{
    background:#0E2F1F;
    color:white;
    padding:40px 0;
    margin-top:50px;
    }
    
    .footer-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    }
    
    /* SOCIAL ICONS */
    
    .social-links{
    display:block;
    }
    
    .social-links a{
    display:block;
    margin:6px 0;
    }
    
    .social-icon{
    font-size:16px;
    text-decoration:none;
    color:white;
    transition:transform 0.2s, opacity 0.2s;
    padding:0 5px;
    }
    
    .social-icon:hover{
    transform:scale(1.1);
    opacity:0.8;
    }
    
    footer a{
    color:white;
    text-decoration:none;
    }
    
    footer p{
    margin:6px 0;
    }
    
    .copyright{
    text-align:center;
    margin-top:20px;
    font-size:14px;
    }
    
    /* FOOTER QUICK LINKS ANIMATION */
    
    @keyframes fadeInUp {
    from {opacity:0; transform:translateY(20px);} 
    to {opacity:1; transform:translateY(0);} 
    }
    
    .home .footer-grid .quick-links a {
    display:block;
    opacity:0;
    animation: fadeInUp 0.6s forwards;
    }
    
    .home .footer-grid .quick-links a:nth-child(1) { animation-delay:0.2s; }
.home .footer-grid .quick-links a:nth-child(2) { animation-delay:0.4s; }
.home .footer-grid .quick-links a:nth-child(3) { animation-delay:0.6s; }

.footer-grid .social-links .social-icon {
    display:inline-block;
    opacity:0;
    animation: fadeInUp 0.6s forwards;
}
.footer-grid .social-links .social-icon:nth-child(1) { animation-delay:0.8s; }
.footer-grid .social-links .social-icon:nth-child(2) { animation-delay:1.0s; }
.footer-grid .social-links .social-icon:nth-child(3) { animation-delay:1.2s; }
    /* QR POPUP */
    
    .qr-popup{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    }
    
    .qr-box{
    background:white;
    padding:40px;
    width:300px;
    /* bring popup higher on screen */
    margin:100px auto;
    text-align:center;
    border-radius:10px;
    }
    /* ensure qr image fits and buttons remain visible */
    .qr-box img{
    max-width:100%;
    max-height:300px;
    display:block;
    margin:0 auto 20px;
    }
    .qr-box button{
    display:block;
    width:80%;
    margin:10px auto;
    }
    
    /* CONTACT PAGE */
    
    .contact{
    padding:80px 0;
    text-align:center;
    }
    
    .contact p{
    font-size:18px;
    margin:10px 0;
    }
    
    /* RESPONSIVE */
    
    @media(max-width:900px){
    
    .hero{
    flex-direction:column;
    text-align:center;
    }
    
    .payment{
    flex-direction:column;
    text-align:center;
    }
    
    .product-grid{
    grid-template-columns:repeat(2,1fr);
    }
    
    .footer-grid{
    grid-template-columns:1fr;
    text-align:center;
    }
    
    }
