/* -------------------------
   Main Content
------------------------- */
.main-content {
    margin-top: 80px; /* Leaves room for fixed header */
}

/* Banner Section */
.banner-section {
    text-align: center;
    margin: 40px 0;
}

.banner-section h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

/* Banner Container (split layout) */
.banner-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    height: 300px;
    margin-bottom: 20px;
}

.banner-item {
    flex: 1;
    background-color: #eee;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Controls below banner */
.controls-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

/* Shop Now button */
.shop-now-button {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.shop-now-button:hover {
    background-color: #333;
    transform: translateY(-2px);
}

/* Carousel dots (placeholder styling) */
.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dots::before {
    content: '● ● ●';
    font-size: 14px;
    color: #888;
}

/* -------------------------
   Toast Notifications
------------------------- */
#toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background-color: #333;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 0.95rem;
    min-width: 220px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    opacity: 0.95;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Toast variations */
.toast.success {
    background-color: #28a745;
}

.toast.error {
    background-color: #dc3545;
}

.toast.info {
    background-color: #007bff;
}

/* -------------------------
   Responsive
------------------------- */
@media (max-width: 768px) {
    .banner-container {
        flex-direction: column;
        height: auto;
    }

    .banner-item {
        height: 180px;
    }

    .shop-now-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
