/* ==========================================
   PETTY'S FINAL HOMEPAGE
========================================== */

body{
    margin:0;
    background:#FCFAF4;
    font-family:Georgia, serif;
    color:#3B2A1E;
}

.hero-final{
    display:grid;
    grid-template-columns: 32% 36% 32%;
    align-items:center;
    min-height:380px;
    padding:25px 4%;
    background:#F1DFCF;
    overflow:hidden;
}
.hero-left{
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-left img{
    width:115%;
    height:auto;
    max-width:none;
    transform:none;
}
.hero-main{
    width:100%;
    max-width:700px;
    margin:0 auto;
    text-align:center;
}

.hero-main h1{
    font-size:76px;
    line-height:1.05;
    margin:0;
    font-weight:400;
    
}
.hero-nature{
    margin-top:-8px;
    margin-bottom:8px;
}

.hero-nature span{
    color:#556B2F;
}

.hero-main span{
    color:#556B2F;
}

.hero-main h2{
    margin-top:15px;
    font-size:56px;
    font-weight:normal;
    color:#B78B43;
}

.hero-main p{
    font-size:20px;
    line-height:1.8;
    color:#666;
    margin:30px 0;
}

.hero-final-btn{
    display:inline-block;
    background:#556B2F;
    color:white;
    text-decoration:none;
    padding:16px 38px;
    border-radius:30px;
    font-weight:bold;
    transition:.3s;
}

.hero-final-btn:hover{
    background:#465725;
}

.hero-right{
    display:flex;
    justify-content:flex-end;
    align-items:center;
}
.hero-right img{
    width:120%;
    height:auto;
    max-width:none;
    transform:none;
}
.collection-final{
    width:100%;
    text-align:center;
    padding:10px 7% 60px;
    box-sizing:border-box;
    background:#F1DFCF;
    border-top:20px solid rgba(85,107,47,0.25);
}
.collection-final h2{
    color:#556B2F;
    font-size:28px;
    letter-spacing:2px;
    margin-bottom:30px;
    text-align:center;
}

.product-row-final{
    display:flex;
    justify-content:center;
    align-items:flex-start;
    gap:30px;
    flex-wrap:nowrap;
}
.product-image-link{
    display:block;
    overflow:hidden;
    border-radius:14px;
}

.product-image-link img{
    width:100%;
    transition:transform .35s ease;
    cursor:pointer;
}

.product-card-final{
    transition:transform .35s ease, box-shadow .35s ease;
}

.product-card-final:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.18);
}

.product-card-final:hover .product-image-link img{
    transform:scale(1.08);
}
.product-card-final{
    width:310px;
    background:white;
    border-radius:16px;
    padding:16px;
    box-shadow:0 8px 22px rgba(0,0,0,.08);
    text-align:center;
}

.product-card-final img{
    width:100%;
    height:220px;
    object-fit:contain;
    margin-bottom:20px;
}

.product-card-final h3{
    font-size:16px;
    margin-bottom:10px;
}

.product-card-final strong{
    display:block;
    color:#3B2A1E;
    margin-bottom:10px;
}
.product-card-final a:not(.product-image-link){
    display:inline-block;
    background:#556B2F;
    color:white;
    text-decoration:none;
    padding:8px 18px;
    border-radius:20px;
    font-size:13px;
}
/* ==========================
   MOBILE HOMEPAGE FIX
========================== */

@media (max-width: 768px) {
    .hero-final {
        display: flex;
        flex-direction: column;
        padding: 35px 18px;
        gap: 20px;
        text-align: center;
    }

    .hero-main {
        order: 1;
    }

    .hero-left {
        order: 2;
    }

    .hero-right {
        order: 3;
    }

    .hero-side img {
        max-width: 260px;
    }

    .hero-main h1 {
        font-size: 42px;
    }

    .hero-main h2 {
        font-size: 28px;
    }

    .hero-main p {
        font-size: 16px;
        line-height: 1.6;
    }

    .product-row-final {
        flex-wrap: wrap;
        gap: 16px;
    }

    .product-card-final {
        width: 45%;
        max-width: 170px;
    }
}
.product-image-link{
    display:block;
    overflow:hidden;
    border-radius:14px;
}

.product-image-link img{
    width:100%;
    transition:transform .35s ease;
    cursor:pointer;
}

.product-card-final{
    transition:transform .35s ease, box-shadow .35s ease;
}

.product-card-final:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.18);
}

.product-card-final:hover .product-image-link img{
    transform:scale(1.08);
}
