*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Poppins;
background:#F4F4F4;
}

.background{
padding:40px;
display:flex;
justify-content:center;
}

.card{
background:white;
max-width:1200px;
width:100%;
border-radius:20px;
padding:40px;
box-shadow:0 20px 40px rgba(0,0,0,0.1);
}

/* NAVBAR */

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.logo{
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.logo img{
    height: 40px;
}

.logo a {
    color: inherit;
    text-decoration: none;
}

.logo a:hover {
    text-decoration: underline;
}

.navbar .contact-button {
    background: #4E7F3A;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.navbar .contact-button:hover {
    background: #3A612A;
}

/* COMING SOON */

.coming-soon{
    text-align: center;
    padding: 50px 0;
}

.coming-soon h1{
    font-size: 4em;
    color: #333;
    margin-bottom: 20px;
}

.coming-soon p{
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.component-category{
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.component-category h2{
    font-size: 2.5em;
    color: #4E7F3A;
    margin-bottom: 20px;
}

.component-category img{
    max-width: 100%;
    height: 300px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.component-category p{
    max-width: 600px;
    color: #555;
    line-height: 1.6;
}

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

.hero-left{
max-width:500px;
}

.hero-left h1{
font-size:50px;
margin-bottom:20px;
}

.hero-left span{
color:#4E7F3A;
}

.hero-left p{
font-size:18px;
margin-bottom:25px;
color:#555;
}

.buttons{
display:flex;
gap:15px;
}

.btn-primary{
background:#4E7F3A;
color:white;
padding:12px 25px;
border:none;
border-radius:6px;
cursor:pointer;
}

.btn-outline{
border:2px solid #4E7F3A;
padding:10px 25px;
border-radius:6px;
background:white;
color:#4E7F3A;
cursor:pointer;
}

.hero-right img{
width:100%;
max-width:500px;
}

.contact-button {
    display: inline-block;
    background: #4E7F3A;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 600;
    transition: background 0.3s ease;
}

.contact-button:hover {
    background: #3A612A;
}

/* MOBILE RESPONSIVE */

@media(max-width:900px){

.hero{
flex-direction:column;
text-align:center;
}

.hero-right{
margin-top:30px;
}

nav{
display:none;
flex-direction:column;
position:absolute;
top:80px;
right:40px;
background:white;
padding:20px;
border-radius:10px;
box-shadow:0 10px 20px rgba(0,0,0,0.1);
}

nav.show{
display:flex;
}

.menu-btn{
display:block;
}

.cart{
display:none;
}
}

.footer {
    background: #333;
    color: white;
    padding: 20px 40px;
    text-align: center;
    margin-top: 50px;
}

.footer-content p {
    margin: 5px 0;
    font-size: 1em;
}

.footer-content .whatsapp-button {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    transition: background 0.3s;
}

.footer-content .whatsapp-button:hover {
    background: #1DA851;
}

.footer-content a {
    color: #4E7F3A;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: #3A612A;
}

.footer-copyright {
    margin-top: 20px;
    font-size: 0.9em;
    color: #aaa;
}

.footer-copyright a {
    color: #aaa;
    text-decoration: underline;
    transition: color 0.3s ease;
}

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

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar .contact-button {
        margin-top: 10px;
        align-self: flex-end;
        display: none;
    }

    .coming-soon h1 {
        font-size: 2.5em;
    }

    .coming-soon p {
        font-size: 1em;
    }

    .component-category {
        margin-top: 30px;
    }

    .component-category img {
        height: 200px;
    }

    .footer {
        padding: 15px;
    }

    .footer-content p {
        font-size: 0.9em;
    }

    .footer-content .whatsapp-button {
        padding: 8px 15px;
        font-size: 0.9em;
    }

    .footer-copyright p {
        font-size: 0.8em;
    }
}