/* General */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #7b1e1e;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar .nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s;
}

.navbar .nav-links li a:hover {
    color: #7b1e1e;
}

/* Hero Section */
.hero {
    height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 50px;
    border-radius: 10px;
    color: #fff;
}

.hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-overlay button {
    margin-top: 20px;
    padding: 12px 25px;
    background: #fff;
    color: #7b1e1e;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Sections */
.section {
    max-width: 1000px;
    margin: auto;
    padding: 60px 20px;
}

.section h2 {
    color: #7b1e1e;
    margin-bottom: 20px;
}

/* Products */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.product-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.product-card button {
    margin-top: 10px;
    padding: 10px 20px;
    background: #7b1e1e;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* CTA / Order */
.cta {
    background: #7b1e1e;
    color: white;
    text-align: center;
}

.cta-buttons a {
    display: inline-block;
    margin: 10px;
    padding: 12px 25px;
    background: white;
    color: #7b1e1e;
    text-decoration: none;
    border-radius: 5px;
}

/* Order Form */
.order-form {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.order-form input,
.order-form select,
.order-form button {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.order-form button {
    background: #7b1e1e;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.order-form button:hover {
    background: #a82a2a;
}

/* Footer */
footer {
    background: #222;
    color: #ccc;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
}

/* Chatbot */
#chatbot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    max-height: 400px;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

#chatbot-header {
    background: #7b1e1e;
    color: white;
    padding: 12px;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    text-align: center;
    font-weight: bold;
}

#chatbot-body {
    display: none;
    background: white;
    border: 1px solid #7b1e1e;
    border-radius: 0 0 10px 10px;
    display: flex;
    flex-direction: column;
    height: 350px;
}

#chatbot-messages {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    font-size: 14px;
}

#chatbot-messages div {
    margin-bottom: 10px;
}

#chatbot-messages .bot-msg {
    color: white;
    background: #7b1e1e;
    padding: 6px 10px;
    border-radius: 10px;
    display: inline-block;
}

#chatbot-messages .user-msg {
    background: #f0f0f0;
    padding: 6px 10px;
    border-radius: 10px;
    display: inline-block;
    /* float: right; */
}

#chatbot-input {
    border: none;
    border-top: 1px solid #ccc;
    padding: 10px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    outline: none;
}

/* Responsive */
@media(max-width:768px) {
    .navbar .nav-links {
        display: none;
    }
}