/* General styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff7e6; /* Warm light tone */
    color: #333;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 240, 200, 0.9));
    background-size: cover;
    background-attachment: fixed;
}

/* Header styles */
header {
    background: linear-gradient(to right, #ff6600, #ff9933); /* Bright orange gradient */
    color: white;
    padding: 15px 0;
}

.navbar {
    background-color: #ec6b06;
}
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: #ffffff !important;
}

.navbar-nav .nav-link {
    color: #ffffff;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #ffe680; /* Light yellow hover */
}
.store-header {
    text-align: center;
    margin-bottom: 20px;
}

.store-header img {
    border-radius: 8px;
    margin-bottom: 15px;
}

.d-flex.overflow-auto {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    scrollbar-width: thin;
}

.d-flex.overflow-auto::-webkit-scrollbar {
    height: 8px;
}

.d-flex.overflow-auto::-webkit-scrollbar-thumb {
    background-color: #020381;
    border-radius: 5px;
}

.product-card {
    flex: 0 0 auto;
    min-width: 250px;
    max-width: 250px;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.product-card img {
    height: 150px;
    object-fit: cover;
}

.btn-primary {
    background-color: #020381;
    border: none;
    transition: background-color 0.2s;
    border-radius: 0;
}

.btn-primary:hover {
    background-color: #0000a3;
}

.btn-primary:focus {
    outline: 3px solid #ffd700;
}
/* Footer styles */
footer {
    background-color: #ff6600;
    color: white;
    padding: 20px 0;
    font-size: 0.9rem;
    text-align: center;
}

/* Section Headings */
h1, h2 {
    color: #ff6600;
    font-weight: bold;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

/* Search bar */
.input-group {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.form-control {
    border: none;
    border-radius: 0;
}

.btn-primary {
    background-color: #ff6600;
    border: none;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background-color: #ff9933;
    transform: translateY(-2px);
}

/* Card styles */
.card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.card img {
    border-radius: 8px 8px 0 0;
    object-fit: cover;
    height: 150px;
}

.card-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
}

.card-text {
    font-size: 0.9rem;
    color: #666;
}

/* Horizontal scrolling for categories and stores */
.d-flex.overflow-auto {
    scrollbar-width: thin;
    -ms-overflow-style: none; /* IE 10+ */
    overflow-y: hidden;
    padding-bottom: 15px;
    gap: 1.2rem;
}

.d-flex.overflow-auto::-webkit-scrollbar {
    height: 8px;
}

.d-flex.overflow-auto::-webkit-scrollbar-thumb {
    background-color: #ff6600;
    border-radius: 5px;
}

.d-flex.overflow-auto::-webkit-scrollbar-track {
    background: #ffe6cc;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    .card {
        margin-bottom: 20px;
    }

    footer p {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .card {
        min-width: 100%;
    }
}
