/* ============================================================
   CONTACT PAGE BASE
============================================================ */
.page-contact {
    background: var(--bg-color);
}

/* ============================================================
   HEADER SECTION
============================================================ */
.page-contact .products-section{
    background: var(--bg-color);
    padding: 60px 20px 30px;
    margin-top: 90px;
    text-align: center;
}

.page-contact .section-title{
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-color);
}

.page-contact .section-subtitle{
    font-size: 1rem;
    color: var(--description-color);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================================
   CONTACT INFO SECTION
============================================================ */
.page-contact .contact-section{
    background: var(--card-bg-color);
    border-radius: 20px;
    margin: 40px auto;
    padding: 50px 20px;
}

.page-contact .message-away{
    font-size: 28px;
    font-weight: 600;
    color: var(--text-color);
}

.page-contact .message-away-subsection{
    font-size: 15px;
    line-height: 1.6;
    color: var(--description-color);
}

/* Icons */
.page-contact .contact-section i{
    color: var(--button-color);
    font-size: 18px;
}

/* Right Image */
.page-contact .styled-image{
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
}

/* ============================================================
   BEST SELLERS
============================================================ */
.page-contact .best-sellers-section{
    background: var(--card-bg-color);
}

.page-contact .best-title{
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-color);
}

.page-contact .best-subtitle{
    text-align: center;
    color: var(--description-color);
    margin-bottom: 30px;
}

/* Product Card */
.page-contact .product-card{
    background: #f8f8f8;
    border-radius: 18px;
    padding: 14px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s ease;
}

.page-contact .product-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.page-contact .product-img{
    width: 100%;
    height: 220px;
    object-fit: contain;
    border-radius: 14px;
    background: var(--card-bg-color);
}

.page-contact .product-header{
    margin-top: 10px;
}

.page-contact .product-name{
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
}

.page-contact .product-price{
    font-size: 15px;
    font-weight: 600;
    color: var(--button-color);
}

/* WhatsApp Button */
.page-contact .whatsapp-btn{
    margin-top: 12px;
    width: 100%;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    background-color: var(--button-color);
    color: var(--bg-color);
}

/* ============================================================
   TASTE / CTA SECTION
============================================================ */
/* ============================================================
   TASTE SECTION (tt-section)
   Unified Design System Version
   Scoped + Non-colliding
============================================================ */

.page-contact .tt-section{
    padding: 80px 0;
    background: var(--bg-color);
}

/* ==============================
   WRAPPER LAYOUT
============================== */

.page-contact .tt-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* ==============================
   IMAGE
============================== */

.page-contact .tt-image-wrap{
    display: flex;
    justify-content: center;
}

.page-contact .tt-image-wrap img{
    width: 100%;
    max-width: 520px;
    border-radius: 18px;                /* same radius system */
    object-fit: contain;
    background: #f7f7f7;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

/* ==============================
   CONTENT
============================== */

.page-contact .tt-content{
    display: flex;
    flex-direction: column;
}

/* ==============================
   TEXT
============================== */

.page-contact .tt-title{
    font-size: 2.1rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.2;
}

.page-contact .tt-description{
    font-size: 15px;
    color: var(--description-color);
    margin: 14px 0 26px;
    line-height: 1.7;
    max-width: 520px;
}

/* ==============================
   BUTTON
============================== */

.page-contact .tt-btn{
    display: inline-block;
    align-self: flex-start;
    padding: 12px 26px;
    border-radius: 12px;
    background: var(--button-color);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all .25s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.page-contact .tt-btn:hover{
    transform: translateY(-2px);
    opacity: .95;
}

/* ==============================
   RESPONSIVE
============================== */

@media(max-width: 992px){
    .page-contact .tt-wrapper{
        gap: 36px;
    }

    .page-contact .tt-title{
        font-size: 1.9rem;
    }
}

@media(max-width: 768px){
    .page-contact .tt-wrapper{
        grid-template-columns: 1fr;
        text-align: center;
    }

    .page-contact .tt-image-wrap img{
        max-width: 420px;
    }

    .page-contact .tt-content{
        align-items: center;
    }

    .page-contact .tt-description{
        max-width: 100%;
    }

    .page-contact .tt-btn{
        align-self: center;
    }
}

@media(max-width: 480px){
    .page-contact .tt-section{
        padding: 60px 0;
    }

    .page-contact .tt-title{
        font-size: 1.6rem;
    }

    .page-contact .tt-description{
        font-size: 14px;
    }

    .page-contact .tt-image-wrap img{
        max-width: 100%;
        padding: 12px;
    }

    .page-contact .tt-btn{
        font-size: 14px;
        padding: 10px 22px;
    }
}

/* ============================================================
   MAP SECTION
============================================================ */
.page-contact .location-section{
    padding: 60px 0;
    background: var(--bg-color);
}

.page-contact .location-title{
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-color);
}

.page-contact .map-wrap{
    width: 100%;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
}

.page-contact .map-wrap iframe{
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media(max-width: 992px){

    .page-contact .tt-wrapper{
        grid-template-columns: 1fr;
        text-align: center;
    }

    .page-contact .styled-image{
        margin-top: 20px;
    }

}

@media(max-width: 768px){

    .page-contact .contact-section{
        padding: 30px 16px;
    }

    .page-contact .product-img{
        height: 180px;
    }

    .page-contact .map-wrap{
        height: 260px;
    }

    .page-contact .products-section{
        padding-top: 40px;
    }

}

@media(max-width: 480px){

    .page-contact .section-title{
        font-size: 1.6rem;
    }

    .page-contact .best-title{
        font-size: 1.6rem;
    }

    .page-contact .tt-title{
        font-size: 1.7rem;
    }

}
