.bg-whitesmoke {
    background-color: #f5f5f5 !important;
}

/* === POPULAR PRODUCTS IMAGE FIX === */
.popular-product-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
}

.popular-product-image {
    width: 100%;
    aspect-ratio: 4 / 3; /* 🔥 Tüm görseller aynı oran */
    overflow: hidden;
    background-color: #f4f4f4;
}

.popular-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 🔥 Oran bozulmaz, kayma olmaz */
    display: block;
}

/* Overlay stabil kalsın */
.team-overlay {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-box {
    transition: transform .2s ease, box-shadow .2s ease;
}

.contact-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

/* ===== REELS SECTION ===== */

#reels-section {
    background: #e6f0ef !important;
}

.reel-card {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 9 / 16;
    border-radius: 24px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 40px rgba(0,0,0,.35);
    position: relative;
}

.reel-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Instagram hissi için hafif çerçeve */
.reel-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
    pointer-events: none;
}
