
/* RESET */
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
    color: #000;
}

/* BODY LAYOUT */
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
}

/* FADE-IN */
.fade-in {
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* LOGO CENTER */
.header-center {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.logo-img {
    width: 180px;
    border-radius: 12px;
    border: 3px solid #f5e6d0;
    box-shadow: 0 0 25px rgba(245, 230, 208, 0.3);
}

/* MAIN LAYOUT */
.main-layout {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 40px;
    width: 95%;
    margin: 40px auto;
}

/* SIDEBAR */
.product-sidebar {
    width: 260px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* PRODUCT CARD */
.product-card {
    background: #fff;
    border: 1px solid #000;
    border-radius: 12px;
    width: 100%;
    padding: 15px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
}
.product-card:hover {
    transform: scale(1.05);
}

.product-card img {
    width: 150px;
    border-radius: 10px;
}

.product-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0;
}

.open-btn {
    text-decoration: none;
    color: black;
    display: block;
}

/* ⭐ ABOUT SECTION — CENTERED PERFECTLY */
.about-section {
    width: 100%;
    max-width: 900px;
    min-height: 80vh;

    display: flex;
    flex-direction: column;
    justify-content: center;   /* vertical center */
    align-items: center;       /* horizontal center */
    text-align: center;

    background: #f9f4ec;
    border-left: 6px solid gold;
    padding: 50px 60px;
    border-radius: 16px;
    box-shadow: 0 0 25px rgba(0,0,0,0.15);

    font-size: 18px;
    line-height: 1.9;
    color: #333;
}

.about-section h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.about-section h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-section .p1,
.about-section .p2 {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 12px;
    font-weight: 500;
}

.about-section .p2 {
    font-style: italic;
    font-weight: 600;
    color: #000;
}

/* FOOTER */
.footer {
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    padding: 20px 0;
    margin-top: 40px;
}
.footer p {
    margin: 5px 0;
}

/* WHATSAPP BUTTON */
.whatsapp-wrap {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.whatsapp-btn {
    background: #000;
    color: #fff;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 40px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}
.whatsapp-btn:hover {
    transform: translateY(-3px);
}

/* MOBILE FIX */
@media (max-width: 768px) {

    .main-layout {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: stretch;
        gap: 20px;
    }

    .product-sidebar {
        width: 45%;
        align-items: center;
    }

    .about-section {
        width: 90%;
        padding: 25px;
        font-size: 16px;
        line-height: 1.6;
        margin-top: 20px;
        min-height: 100vh; /* full screen */
    }

    .product-card img {
        width: 100%;
    }
}
