:root{
    --cream:#f8f4ee;
    --brown:#4a312d;
    --accent:#9b3b34;
    --card:#ffffff;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:var(--cream);
    color:var(--brown);
    font-family:'Inter',sans-serif;
    line-height:1.6;
}

.container{
    width:min(1100px,90%);
    margin:auto;
}

.hero{
    padding:60px 0 30px;
    text-align:center;
}

.logo{
    width:90px;
    margin-bottom:20px;
}

.brand{
    font-family:'Cormorant Garamond',serif;
    font-size:4rem;
    font-weight:600;
}

.tagline{
    font-size:1.1rem;
    opacity:.8;
    margin-top:10px;
}

.hero-image{
    width:100%;
    max-width:700px;
    border-radius:20px;
    margin:40px auto;
    display:block;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.card{
    background:var(--card);
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    margin-bottom:40px;
}

.product-title{
    font-family:'Cormorant Garamond',serif;
    font-size:3rem;
    margin-bottom:10px;
}

.price{
    color:var(--accent);
    font-size:2rem;
    font-weight:600;
    margin-bottom:20px;
}

.details{
    margin-bottom:25px;
}

.details ul{
    padding-left:20px;
}

.order-btn{
    display:inline-block;
    background:var(--accent);
    color:white;
    text-decoration:none;
    padding:16px 32px;
    border-radius:999px;
    font-weight:600;
    transition:.2s;
}

.order-btn:hover{
    transform:translateY(-2px);
}

.info{
    text-align:center;
    margin-bottom:50px;
}

.info h3{
    font-family:'Cormorant Garamond',serif;
    font-size:2rem;
    margin-bottom:10px;
}

.payment-box{
    background:#fff;
    border-radius:20px;
    padding:30px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.payment-box h3{
    margin-bottom:15px;
}

footer{
    text-align:center;
    padding:40px 0;
    opacity:.7;
}

body{
    background-color: #f8f4ee;
    color: var(--brown);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

body::before{
    content: "";
    position: fixed;
    inset: 0;

    background-image: url("../media/itacate_logo.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 1200px;

    opacity: 0.025;

    pointer-events: none;
    z-index: -1;
}

.form-card{
    background:#ffffff;
    border-radius:20px;
    padding:24px;
    margin-bottom:40px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.form-title{
    font-family:'Cormorant Garamond',serif;
    font-size:2.6rem;
    text-align:center;
    margin-bottom:20px;
}

.google-form{
    width:100%;
    height:1800px;
    border:0;
}

@media(max-width:768px){
    .form-card{
        padding:14px;
        border-radius:18px;
    }

    .form-title{
        font-size:2.2rem;
    }

    .google-form{
        height:3400px;
    }
}

@media(max-width:768px){

    .container{
        width:min(100% - 28px, 1100px);
    }

    .hero{
        padding:35px 0 20px;
    }

    .logo{
        width:80px;
        margin-bottom:10px;
    }

    .brand{
        font-size:3.4rem;
        line-height:1;
    }

    .tagline{
        font-size:1rem;
        padding:0 20px;
    }

    .hero-image{
        margin:28px auto;
        border-radius:18px;
        max-height:430px;
        object-fit:cover;
    }

    .card{
        max-width:700px;
        margin:0 auto 40px;
    }

    .product-title{
        font-size:2.45rem;
        line-height:1.05;
    }

    .price{
        font-size:1.8rem;
    }

    .order-btn{
        display:block;
        width:100%;
        text-align:center;
        padding:17px 24px;
        font-size:1.05rem;
    }

    .info{
        margin-bottom:30px;
    }

    .info h3{
        font-size:1.8rem;
    }

    .payment-box{
        padding:24px 20px;
        border-radius:18px;
    }

    body::before{
        background-size:700px;
        opacity:0.025;
    }
}

@media(max-width:480px){

    .brand{
        font-size:3rem;
    }

    .product-title{
        font-size:2.15rem;
    }

    .hero-image{
        max-height:390px;
    }

    .details ul{
        padding-left:18px;
    }

    footer{
        padding:30px 0;
    }
}