/* Main CSS file */
body {
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}

/* Hero Slider */
.hero-slider-item {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 15px;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* Category Icons */
.category-scroll {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 20px;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.category-scroll::-webkit-scrollbar {
    display: none;
}

.category-card {
    display: inline-block;
    width: 120px;
    text-align: center;
    margin-right: 15px;
    vertical-align: top;
}

.category-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.category-card:hover .category-icon-wrapper {
    background: #6B00B6;
    color: white;
    transform: translateY(-5px);
}

.category-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

/* Product Cards */
.listing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.listing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
}

.listing-img-wrapper {
    overflow: hidden;
    height: 200px;
}

.listing-img-wrapper img {
    transition: transform 0.5s ease;
}

.listing-card:hover .listing-img-wrapper img {
    transform: scale(1.1);
}

/* Stats Section */
.stat-card {
    border: none;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}