/* Background Image with Dark and Blur Effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://i.pinimg.com/1200x/b4/8f/68/b48f6857ad251d20e726cf5c6dd661c0.jpg') no-repeat center center/cover;
    filter: blur(8px) brightness(50%);
    z-index: -1;
}


@media (max-width: 768px) {
    .navbar-brand {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto; /* ทำให้โลโก้อยู่ตรงกลาง */
    }
    .navbar-toggler {
        position: absolute;
        right: 15px; /* จัดปุ่มให้ชิดขวา */
        top: 10px;
    }
    .container {
        position: relative; /* จัดการตำแหน่งให้สัมพันธ์ */
    }
    .navbar-collapse {
        text-align: center; /* จัดข้อความในเมนูให้อยู่ตรงกลาง */
    }
}
@media (min-width: 769px) {
    .navbar-brand {
        margin-left: 0; /* จัดโลโก้ชิดซ้าย */
        padding-right: 600px; /* เพิ่มระยะห่างด้านซ้ายเล็กน้อย */
    }
    .container {
        display: flex;
        justify-content: flex-start; /* ทำให้โลโก้ชิดซ้าย */
        align-items: center;
    }
}
/* Main Content Styles */
body {
    color: #fff;
    position: relative;
    margin: 0;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Optional background color for fallback */
}

h1.product-title {
    color: #ffffff !important;
}

p.product-description {
    color: #ffffff !important;
}

.navbar {
    background-color: #000;
}

.navbar-nav .nav-link {
    color: #fff !important;
}

.navbar-brand {
    margin: 0 auto;
    text-align: center;
}

.navbar-brand img {
    max-height: 60px;
}

.product-image {
    max-width: 100%;
    border-radius: 10px;
}

.product-details {
    margin-top: 20px;
}

.original-price {
    font-size: 23px;
    color: #d6d6d6;
    text-decoration: line-through;
}

.discounted-price {
    font-size: 30px;
    color: #00ff73;
}

.btn-add-to-cart {
    background-color: #dc3545 !important;
    color: white;
}

.btn-add-to-cart:hover {
    background-color: #c82333 !important;
}

footer {
    background-color: #000;
    color: #fff;
}

.sign-up-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto 20px auto;
}

.line-contact {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto 20px auto;
}

@media (min-width: 768px) {
    .sign-up-image {
        width: 400px;
        height: 121px;
    }
}

.quantity-input {
    width: 50px !important;
    text-align: center;
}
.form-label {
    color: #fff !important;
}
