*{
    margin:0;
    padding:0;
    box-sizing:border-box;
 }
   
body{
    font-family: Arial, Helvetica, sans-serif;
    background-color:#fffaf3;
    color:#2b2118;
    line-height:1.6;
    font-size:1rem;
}

.container{
    width:min(1200px,92%);
    margin:auto;
}
.skip-link{
    position:absolute;
    left:-9999px;
    background:#ffffff;
    color:#3b2414;
    padding:10px;
    z-index:100;
}

.skip-link:focus{
    left:15px;
    top:15px;
    outline:3px solid #f4c542;
}
header{
    background:#3b2414;
    color:white;
    padding:1rem 0;
}

.header-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:1rem;
}

h1{
    font-size:2rem;
}

h2{
    color:#3b2414;
    margin-bottom:1rem;
}

h3{
    color:#2b2118;
}
nav ul{
    display:flex;
    list-style:none;
    gap:1rem;
    flex-wrap:wrap;
}

nav a{
    color:white;
    text-decoration:none;
    font-weight:bold;
    padding:8px 14px;
    border-radius:8px;
    transition:.3s;
}

nav a:hover,
nav a:focus,
nav a[aria-current="page"]{
    background:white;
    color:#3b2414;
}
.hero{
    background:#f3e2c7;
    padding:3rem 0;
}

.hero-flex{
    display:flex;
    gap:2rem;
    align-items:center;
}

.hero article,
.hero figure{
    flex:1;
}

.hero img{
    width:100%;
    border-radius:16px;
}
.btn{
    display:inline-block;
    margin-top:1rem;
    background:#6b3f1d;
    color:white;
    text-decoration:none;
    padding:12px 20px;
    border-radius:10px;
    font-weight:bold;
    transition:.3s;
}

.btn:hover,
.btn:focus{
    background:#4a2b13;
    outline:3px solid #f4c542;
}
.cards{
    display:flex;
    flex-wrap:wrap;
    gap:1.5rem;
    padding:2rem 0;
}

.card{
    flex:1 1 280px;
    background:white;
    border:1px solid #d6c4ad;
    border-radius:16px;
    padding:1.4rem;
    box-shadow:0 5px 14px rgba(0,0,0,.08);
}
.page-title{
    padding:2rem 0 1rem;
}

.product-grid{
    display:flex;
    gap:2rem;
    flex-wrap:wrap;
    justify-content:center;
    align-items:stretch;
    padding:2rem 0;
}

.product-card{
    text-align: center;
    flex:1 1 300px;
    max-width:360px;

    display:flex;
    flex-direction:column;

    background:white;
    border:1px solid #d6c4ad;
    border-radius:18px;
    overflow:hidden;

    box-shadow:0 6px 18px rgba(0,0,0,.10);

    transition:.3s ease;
}

.product-card:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 22px rgba(0,0,0,.16);
}

.product-card img{
    width:100%;
    height:320px;

    object-fit:cover;
    object-position:center;

    background:#f8ead7;
    padding:15px;
}

.product-card-content{
    padding:1.4rem;

    display:flex;
    flex-direction:column;
    flex-grow:1;
}

.product-card h3{
    font-size:1.5rem;
    margin-bottom:.8rem;
}

.product-card p{
    flex-grow:1;
    margin-bottom:1rem;
}

.product-card strong{
    font-size:1.3rem;
    color:#3b2414;
}
.promo{
    background:white;
    border-left:6px solid #6b3f1d;
    padding:1.5rem;
    margin:2rem auto;
    border-radius:10px;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
}
.contact-layout{
    display:flex;
    gap:2rem;
    padding:2rem 0;
    align-items:flex-start;
}

.contact-layout section{
    flex:2;
}

.info{
    flex:1;
}

form,
.info{
    background:white;
    border:1px solid #d6c4ad;
    border-radius:16px;
    padding:1.5rem;
    box-shadow:0 4px 14px rgba(0,0,0,.08);
}

form{
    display:flex;
    flex-direction:column;
    gap:.8rem;
}

label{
    font-weight:bold;
}

input,
select,
textarea{
    width:100%;
    padding:12px;
    border:2px solid #bca893;
    border-radius:10px;
    font:inherit;
}

input:focus,
select:focus,
textarea:focus{
    outline:3px solid #f4c542;
    border-color:#3b2414;
}
.media-section{
    padding:2rem 0;
}

video{
    width:100%;
    border-radius:16px;
}

footer{
    background:#2b2118;
    color:white;
    text-align:center;
    padding:1.5rem;
    margin-top:3rem;
}

@media (max-width:900px){

    .hero-flex,
    .contact-layout{
        flex-direction:column;
    }

}

@media (max-width:768px){

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

    nav ul{
        flex-direction:column;
        width:100%;
    }

    nav a{
        display:block;
    }

    .product-grid{
        flex-direction:column;
        align-items:center;
    }

    .product-card{
        width:100%;
        max-width:420px;
    }

    .product-card img{
        height:280px;
    }

}

@media (max-width:480px){

    body{
        font-size:.95rem;
    }

    h1{
        font-size:1.6rem;
    }

    h2{
        font-size:1.4rem;
    }

    .btn{
        width:100%;
        text-align:center;
    }

}