body {
    margin: 0;
    font-family: Arial;
    background: #f5f5f5;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: #131921;
    color: white;
}

.navbar input {
    padding: 8px;
    width: 300px;
}

/* Hero */
.hero {
    background: linear-gradient(to right, #ff9900, #ff5e62);
    color: white;
    padding: 40px;
    text-align: center;
}

/* Products */
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    width: 220px;
    background: white;
    margin: 10px;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.card img {
    width: 100%;
}

/* Button */
.btn {
    display: block;
    background: #ff9900;
    padding: 10px;
    text-align: center;
    color: white;
    border-radius: 5px;
    text-decoration: none;
}

/* Chatbot */
.chatbot {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 250px;
    background: white;
    padding: 10px;
    border-radius: 10px;
}