/* ===== BAZAAR STYLES ===== */
:root {
    --primary-blue: rgba(37, 150, 190, 1);
    --primary-dark: #2a8aca;
    --gradient-start: rgba(37, 150, 190, 1);
    --gradient-end: #2a8aca;
    --price-blue: #0061FE;
}

/* ===== MOBILE FILTER BUTTON ===== */
.mobile-filter-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background: #1a1a1a;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.mobile-filter-btn:hover {
    transform: scale(1.1);
    background: #333;
}

.mobile-filter-btn i {
    pointer-events: none;
}

.filter-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9997;
    backdrop-filter: blur(3px);
}

.filter-overlay.active {
    display: block;
}

@media (max-width: 992px) {
    .mobile-filter-btn {
        display: flex;
    }
}

@media (min-width: 993px) {
    .mobile-filter-btn {
        display: none !important;
    }
    .filter-overlay {
        display: none !important;
    }
}

/* ===== SECTION 1: CARROUSEL HERO ===== */
.hero-carousel {
    margin-top: 0;
    position: relative;
}

.carousel-item {
    height: 500px;
    background: #f8f9fa;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    filter: brightness(0.8);
}

.carousel-caption {
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    left: 0;
    right: 0;
    bottom: 0;
    padding: 50px 20px;
    text-align: center;
}

.carousel-caption h3 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: white;
}

.carousel-caption p {
    font-size: 18px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    color: white;
}

.carousel-caption .btn {
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border: none;
    transition: all 0.3s ease;
}

.carousel-caption .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 150, 190, 0.4);
    background: linear-gradient(135deg, var(--gradient-end), var(--gradient-start));
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-carousel:hover .carousel-control-prev,
.hero-carousel:hover .carousel-control-next {
    opacity: 1;
}

.carousel-indicators {
    bottom: 20px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: white;
    opacity: 0.5;
}

.carousel-indicators button.active {
    opacity: 1;
    transform: scale(1.2);
}

/* ===== SECTION 2: OFFRE D'AUJOURD'HUI ===== */
.today-offers {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 30px 0;
}

.offers-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.offer-badge {
    display: inline-block;
    background: #ff4b2b;
    color: white;
    padding: 4px 12px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
    box-shadow: 0 3px 10px rgba(255,75,43,0.3);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.offers-section-subtitle {
    font-size: 14px;
    color: #6c757d;
    text-align: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.offers-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 15px 0;
}

.offers-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: white;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offers-nav-btn:hover {
    background: #0061fe;
    color: white;
    border-color: #0061fe;
    transform: scale(1.1);
}

.offers-carousel-container {
    position: relative;
    margin-top: 15px;
    overflow: hidden;
}

.offers-carousel {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 5px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.offers-carousel::-webkit-scrollbar {
    display: none;
}

.offer-item {
    flex: 0 0 auto;
    width: 200px;
}

.offer-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    cursor: pointer;
}

.offer-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,97,254,0.1);
    border-color: #0061fe;
}

.offer-image {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
    background: #f8f9fa;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.offer-card:hover .offer-image img {
    transform: scale(1.05);
}

.offer-details {
    padding: 10px 8px;
    text-align: left;
}

.offer-title {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 34px;
}

.offer-price {
    font-size: 15px;
    font-weight: 700;
    color: #0061fe;
    margin: 0;
}

/* ===== SECTION 3: BOUTIQUES EN VEDETTE ===== */
.featured-shops {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.featured-shops::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(37, 150, 190, 0.03) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.shop-card {
    perspective: 1000px;
    height: 100%;
}

.shop-card-inner {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
}

.shop-card:hover .shop-card-inner {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(37, 150, 190, 0.3);
}

.shop-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.shop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.shop-card:hover .shop-image img {
    transform: scale(1.1);
}

.shop-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 150, 190, 0.9), rgba(42, 138, 202, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.shop-card:hover .shop-overlay {
    opacity: 1;
}

.shop-stats {
    display: flex;
    gap: 20px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.shop-card:hover .shop-stats {
    transform: translateY(0);
}

.stat-item {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    padding: 10px 15px;
    border-radius: 30px;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.3);
}

.stat-item i {
    font-size: 16px;
}

.shop-content {
    padding: 20px;
    text-align: center;
    background: white;
    position: relative;
}

.shop-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-blue);
    background: rgba(37, 150, 190, 0.1);
    padding: 5px 12px;
    border-radius: 30px;
    margin-bottom: 10px;
}

.shop-name {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.shop-card:hover .shop-name {
    color: var(--primary-blue);
}

.shop-rating {
    margin-bottom: 15px;
}

.shop-rating i {
    font-size: 14px;
    margin: 0 2px;
}

.rating-text {
    font-size: 13px;
    color: #6c757d;
    margin-left: 5px;
}

.shop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 25px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    width: 100%;
}

.shop-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.shop-btn:hover::before {
    width: 300px;
    height: 300px;
}

.shop-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 150, 190, 0.4);
}

.shop-btn i {
    transition: transform 0.3s ease;
}

.shop-btn:hover i {
    transform: translateX(5px);
}

.btn-view-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: white;
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--primary-blue);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-view-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-view-more:hover::before {
    left: 0;
}

.btn-view-more:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 150, 190, 0.3);
}

.btn-view-more:hover i {
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* ===== SECTION 4: MEGA PROMO ===== */
.mega-promo {
    background: linear-gradient(135deg, #0B1120, #1A1F2F);
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

.mega-promo::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,97,254,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.promo-wrapper {
    background: transparent;
    position: relative;
    z-index: 2;
}

.promo-content {
    text-align: left;
}

.promo-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0061FE, #00C6FF);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0,97,254,0.3);
}

.promo-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    margin: 0;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.countdown-wrapper {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.countdown-timer {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.countdown-item {
    flex: 1;
    text-align: center;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 20px 10px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
    border-color: #0061FE;
    box-shadow: 0 10px 25px rgba(0,97,254,0.2);
}

.countdown-value {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: #0061FE;
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 0 20px rgba(0,97,254,0.5);
}

.countdown-label {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== SECTION 5: PRODUITS POPULAIRES ===== */
.featured-products {
    background: #ffffff;
    position: relative;
    padding: 60px 0;
}

.featured-products .section-title {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.featured-products .section-subtitle {
    font-size: 16px;
    color: #6c757d;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(37, 150, 190, 0.15);
    border-color: transparent;
}

.product-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 300px;
    background: #f8f9fa;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #f8f9fa;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.03);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s ease;
    z-index: 2;
}

.product-card:hover .product-overlay {
    opacity: 1;
    transform: translateY(0);
}

.product-category {
    display: inline-block;
    background: white;
    color: var(--primary-blue);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.product-info {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: white;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 44px;
}

.product-shop {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.product-shop i {
    font-size: 12px;
    color: var(--primary-blue);
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--price-blue) !important;
}

.product-link {
    font-size: 12px;
    color: #333;
    font-weight: 500;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
}

.product-card:hover .product-link {
    opacity: 1;
    transform: translateX(0);
    color: var(--primary-blue);
}

.product-link i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.product-card:hover .product-link i {
    transform: translateX(3px);
}

/* ===== SECTION 6: MARKET STATS ===== */
.market-stats {
    padding: 80px 0;
    background: #f4f6fb;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-circle {
    width: 100%;
    max-width: 200px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    cursor: pointer;
}

.stat-circle::before {
    content: '';
    position: absolute;
    width: 85%;
    height: 85%;
    border: 2px dashed #000;
    border-radius: 50%;
    transition: 0.5s;
}

.circle-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 15px;
}

.circle-content i {
    font-size: clamp(24px, 4vw, 28px);
    margin-bottom: 10px;
    color: var(--primary-blue, #2596be);
}

.circle-content p {
    margin: 0;
    font-size: clamp(13px, 2vw, 15px);
    color: #666;
}

.circle-content h2 {
    font-size: clamp(24px, 4vw, 30px);
    font-weight: 700;
    margin-top: 5px;
    color: var(--price-blue, #0061FE);
}

.stat-circle:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,97,254,0.15);
}

.stat-circle:hover::before {
    border-color: var(--primary-blue, #2596be);
    transform: rotate(180deg);
}

/* ===== ANIMATIONS ===== */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition-property: opacity, transform;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(30px);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .carousel-item {
        height: 400px;
    }
    
    .carousel-caption h3 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .product-image {
        height: 240px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-circle {
        max-width: 220px;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        height: 350px;
    }
    
    .carousel-caption {
        padding: 30px 15px;
    }
    
    .carousel-caption h3 {
        font-size: 28px;
    }
    
    .carousel-caption p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
        padding: 0 15px;
    }
    
    .shop-name {
        font-size: 18px;
    }
    
    .shop-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
    
    .featured-products {
        padding: 40px 0;
    }
    
    .featured-products .section-title {
        font-size: 28px;
    }
    
    .product-name {
        font-size: 14px;
        min-height: 40px;
    }
    
    .product-price {
        font-size: 15px;
    }
    
    .product-shop {
        font-size: 12px;
    }
    
    .offers-section-title {
        font-size: 22px;
    }
    
    .offer-badge {
        font-size: 12px;
        padding: 3px 10px;
    }
    
    .offers-section-subtitle {
        font-size: 13px;
    }
    
    .offer-item {
        width: 110px;
    }
    
    .offer-image {
        height: 80px;
    }
    
    .offer-details {
        padding: 6px 5px;
    }
    
    .offer-title {
        font-size: 10px;
        min-height: 26px;
        margin-bottom: 3px;
    }
    
    .offer-price {
        font-size: 11px;
    }
    
    .offers-nav {
        gap: 8px;
        margin: 10px 0;
    }
    
    .offers-nav-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .carousel-item {
        height: 250px;
    }
    
    .carousel-caption {
        padding: 20px 10px;
    }
    
    .carousel-caption h3 {
        font-size: 20px;
    }
    
    .carousel-caption p {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .carousel-caption .btn {
        padding: 8px 20px;
        font-size: 12px;
    }
    
    .shop-image {
        height: 160px;
    }
    
    .stat-item {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-image img {
        object-fit: cover;
    }
    
    .product-info {
        padding: 10px;
    }
    
    .product-name {
        font-size: 13px;
        min-height: 36px;
    }
    
    .product-price {
        font-size: 14px;
    }
    
    .product-link {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stat-circle {
        max-width: 200px;
    }
    
    .offer-item {
        width: 95px;
    }
    
    .offer-image {
        height: 70px;
    }
    
    .offer-title {
        font-size: 9px;
        min-height: 22px;
    }
    
    .offer-price {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .offer-item {
        width: 85px;
    }
    
    .offer-image {
        height: 65px;
    }
}

@media (max-width: 375px) {
    .stat-circle {
        max-width: 180px;
    }
}