body {
    font-family: "Sarabun", sans-serif;
    background-color: #0b151e;
    color: #fff;
}

/* การตั้งค่าสำหรับขนาดหน้าจอขนาดใหญ่ขึ้น */
.container {
    margin-top: 78px;
    /* เพิ่ม margin-top เพื่อเว้นที่สำหรับ header-bar */
    margin-bottom: 69px;
    /* เว้นที่ด้านล่างสำหรับ bottom-bar */
    max-width: 800px;
    padding: 0px;
}

/* การตั้งค่าหัวข้อและไอคอนด้านบน */
.header-bar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    /* ให้ตรงกับ max-width ของ container */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1px 20px;
    background-color: #0b151e;
    z-index: 1000;
    box-shadow: #577691 0px 25px 20px -20px;
}

.header-bar .logo {
    font-size: 1.5em;
    font-weight: bold;
}

.header-bar .logo img {
    max-height: 80px;
}

.header-bar a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5em;
}

/* การตั้งค่าสำหรับส่วนเนื้อหาภายใน */
.product-image {
    width: 100%;
    margin-bottom: 0px;
}

/* การตั้งค่าแถบติดขอบล่าง */
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    /* ให้ตรงกับ max-width ของ container */
    background-color: #333;
    display: flex;
    justify-content: space-around;
    padding: 0px;
    z-index: 1000;
}


.bottom-bar a {
    flex: 1;
    font-size: 2rem;
    text-align: center;
    padding: 15px 0;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.line-button {
    background-color: #00c300;
    /* สีพื้นหลังปุ่ม LINE */
}

.order-button {
    background-color: #ff5722;
    /* สีพื้นหลังปุ่มสั่งซื้อ */
}

.line-button:hover {
    background-color: #009b00;
    /* สีเขียวเข้มขึ้นเมื่อ hover */
}

.order-button:hover {
    background-color: #e64a19;
    /* สีส้มแดงเข้มขึ้นเมื่อ hover */
}

p {
    box-shadow: rgb(24 44 62) 0px 30px 60px -12px inset, rgb(14 26 38) 0px 18px 36px -18px inset;
    padding: 20px;
    font-size: 1.25rem;
}

/* รองรับการแสดงผลบนมือถือ */
@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0px;
        margin-bottom: 54px;
    }

    .bottom-bar a {
        font-size: 1.25rem;
    }

    .header-bar .logo img {
        max-height: 70px;
    }

    p {
        padding: 10px;
    }
}