/* Body Styling */
body {
    margin: 0;
    font-family: 'Georgia', serif;
    background-color: #f5f1ea; /* soft beige */
    color: #111;
    text-align: center;
}

/* Logo Section */
.logo-header {
    padding: 40px 20px 20px 20px;
}

.logo {
    width: 250px;
    max-width: 80%;
}

/* Headings */
h1, h2, h3 {
    letter-spacing: 2px;
    font-weight: normal;
}

/* Product Section */
.product {
    background: white;
    padding: 20px;
    margin: 20px auto;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-radius: 8px;
}

/* Buttons */
button {
    background-color: #111;
    color: white;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    font-family: 'Georgia', serif;
}

button:hover {
    background-color: #333;
}
/* Instagram Button */
.instagram-btn {
    display: inline-block;
    background-color: #E1306C;
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
}

.instagram-btn:hover {
    background-color: #c42b5a;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1000;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
}

.wa-icon {
    width: 30px;
    height: 30px;
}

/* Map Styling */
.map-container {
    margin-top: 30px;
}
.map-container {
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
/* Top Scrolling Sale Banner */
.top-banner {
    width: 100%;
    background-color: #2b2b2b; /* charcoal */
    overflow: hidden;
    white-space: nowrap;
}

.banner-text {
    display: inline-block;
    color: red;
    font-weight: bold;
    padding: 10px 0;
    animation: scrollText 12s linear infinite;
}

@keyframes scrollText {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}