* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
#menu {
    background-color: #0be164;
    height: 100px;
    display: flex;
    align-items: center;
    outline: 5px solid rgb(255, 153, 0);
    position: relative;
    z-index: 99;
}
.menu-img {
    height: 100%;
}
.menu-img img {
    height: 100%;
    width: auto;
    display: block;
}
.menu-items {
    display: flex;
    margin-left: 300px;
}
.log-sign {
    display: flex;
    margin-left: 200px;
}
.cart {
    margin-left: auto;
    margin-right: 20px;
}
.menu-items a, 
.log-in a, 
.sign-up a, 
.cart a {
    background-color: #d46f0a;
    border-radius: 20px;
    font-size: 10px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    margin-left: 20px;
    display: inline-block;
    text-transform: uppercase;
}
.slider {
    width: 100%;
    height: 400px;
    overflow: hidden;
}
.slides {
    display: flex;
    width: 300%;
    height: 100%;
    animation: slideAuto 15s infinite ease-in-out;
}
.slides img {
    width: 33.333%;
    height: 100%;
    object-fit: cover;
}
@keyframes slideAuto {
    0%, 25% { transform: translateX(0); }
    33%, 58% { transform: translateX(-33.333%); }
    66%, 91% { transform: translateX(-66.666%); }
    100% { transform: translateX(0); }
}
.best-seller-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}
.section-title {
    color: #e03a3a;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff9900;
    margin-bottom: 30px;
}
.product-list {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}
.product-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 20px;
    width: 33.333%;
    text-align: center;
    position: relative;
    border: 1px solid #f3e9e1;
}
.badge-hot {
    background-color: #ff0000;
    color: white;
    font-size: 9px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 8px;
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 2;
}
.product-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}
.product-name {
    font-size: 14px;
    color: #000000;
    margin-bottom: 10px;
    font-weight: bold;
}
.product-price {
    color: #e03a3a;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 15px;
}
.btn-add {
    background-color: #ff7300;
    color: white;
    border: none;
    font-size: 11px;
    font-weight: bold;
    padding: 10px 22px;
    border-radius: 20px;
}
#footer {
    background-color: #0be164;
    border-top: 5px solid #ff9900;
    padding: 30px 0;
    margin-top: 50px;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
}
.footer-col {
    width: 30%;
}
.footer-logo {
    height: 45px;
    margin-bottom: 10px;
}
.footer-col, .footer-title {
    font-size: 14px;
    color: #000;
    margin-bottom: 15px;
}
.footer-title {
    color: #ff9500;
    padding-left: 10px;
    border-left: 3px solid #ff9500;
}
.footer-col p, .footer-col li, .footer-col a {
    font-size: 13px;
    color: #1a1a1a;
    text-decoration: none;
    line-height: 1.6;
}
.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-copyright {
    text-align: center;
    margin-top: 30px;
    font-size: 11px;
}
.contact-wrapper {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}
.contact-info {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-brand {
    color: #b71c1c;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 35px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.contact-item {
    font-size: 16px;
    color: #1a1a1a;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 15px;
}
.contact-icon {
    font-size: 24px;
    color: #e03a3a;
    width: 30px;
    text-align: center;
}
.contact-item a {
    color: #b71c1c;
    text-decoration: none;
}
.contact-map {
    width: 50%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}
.about-banner {
    background: linear-gradient(rgba(11, 225, 100, 0.15), rgba(255, 149, 0, 0.15));
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 50px;
}
.about-banner h1 {
    color: #e03a3a;
    font-size: 32px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.about-banner p {
    font-size: 16px;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}
.about-container {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}
.about-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 20px;
}
.about-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    width: 33.333%;
    text-align: center;
    border: 1px solid #f3e9e1;
}
.card-icon {
    font-size: 45px;
    margin-bottom: 20px;
}
.card-title {
    font-size: 20px;
    color: #ff7300;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px dashed #f3e9e1;
}
.card-desc {
    font-size: 14px;
    color: #4a4a4a;
    line-height: 1.7;
    text-align: justify;
}
.auth-container {
    max-width: 400px;
    margin: 60px auto;
    padding: 30px 20px;
    background-color: #ffffff;
    border: 1px solid #f3e9e1;
    border-radius: 15px;
}
.auth-form h2 {
    color: #e03a3a;
    text-align: center;
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: bold;
}
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    font-size: 13px;
    color: #000;
    font-weight: bold;
    margin-bottom: 5px;
}
.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 13px;
    outline: none;
}
.btn-auth {
    width: 100%;
    background-color: #ff7300;
    color: white;
    border: none;
    font-size: 14px;
    font-weight: bold;
    padding: 12px;
    border-radius: 20px;
    margin-top: 10px;
}
.auth-redirect {
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
}
.auth-redirect a {
    color: #ff7300;
    text-decoration: none;
    font-weight: bold;
}
.cart-wrapper-page {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    border: 1px solid #f3e9e1;
    border-radius: 10px;
}
.cart-wrapper-page h2 {
    color: #e03a3a;
    text-align: center;
    margin-bottom: 20px;
}
.cart-table {
    width: 100%;
    border-collapse: collapse;
}
.cart-table th, .cart-table td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #f3e9e1;
}
.cart-table th {
    background-color: #0be164;
    color: white;
}
.btn-qty {
    background-color: #f3e9e1;
    border: none;
    padding: 2px 8px;
    border-radius: 3px;
}
.btn-delete {
    background-color: #e03a3a;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
}
.cart-summary {
    text-align: right;
    margin-top: 20px;
}
#btn-checkout {
    background-color: #ff7300;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 30px;
    border-radius: 20px;
    margin-top: 10px;
}
@media (max-width: 992px) {
    .menu-items {
        margin-left: 50px;
    }
    .log-sign {
        margin-left: 50px;
    }
    .product-list {
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .product-card {
        width: 45%;
        margin-bottom: 20px;
    }
    .about-grid {
        flex-wrap: wrap;
        justify-content: center;
    }
    .about-card {
        width: 45%;
    }
}

@media (max-width: 768px) {
    #menu {
        height: auto;
        flex-direction: column;
        padding: 15px;
    }
    .menu-img {
        height: 60px;
        margin-bottom: 15px;
    }
    .menu-items, .log-sign, .cart {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 10px;
    }
    .menu-items a, .log-in a, .sign-up a, .cart a {
        margin: 5px;
        padding: 8px 15px;
    }
    .slider {
        height: 200px;
    }
    .product-list {
        flex-direction: column;
        align-items: center;
    }
    .product-card {
        width: 100%;
        max-width: 350px;
    }
    .contact-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    .contact-info, .contact-map {
        width: 100%;
    }
    .contact-map {
        height: 300px;
    }
    .about-banner h1 {
        font-size: 24px;
    }
    .about-grid {
        flex-direction: column;
        align-items: center;
    }
    .about-card {
        width: 100%;
        max-width: 400px;
    }
    .cart-wrapper-page {
        padding: 10px;
        overflow-x: auto;
    }
    .footer-container {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    .footer-col {
        width: 100%;
    }
    .footer-title {
        border-left: none;
        border-bottom: 2px solid #ff9500;
        display: inline-block;
        padding-left: 0;
        padding-bottom: 5px;
    }
}