
/* ---------------- HERO FLOATING IMAGES ---------------- */
.hero {
    position: relative;
    overflow: visible; /* Changed from hidden to allow images to overflow nicely if needed */
}

.hero-float-container {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(150px, 15vw, 250px);
    z-index: 10;
    pointer-events: none; /* So it doesn't block clicks */
}

.left-float {
    left: 5%;
    animation: floatLeft 6s ease-in-out infinite;
}

.right-float {
    right: 5%;
    animation: floatRight 7s ease-in-out infinite reverse;
}

.hero-float-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
    border-radius: var(--radius-md);
}

.hero-float-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255,107,0,0.4) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
    opacity: 0.6;
    animation: pulseGlow 4s ease-in-out infinite alternate;
}

@keyframes floatLeft {
    0% { transform: translateY(-50%) translateX(0) rotate(-5deg); }
    50% { transform: translateY(-55%) translateX(10px) rotate(-2deg); }
    100% { transform: translateY(-50%) translateX(0) rotate(-5deg); }
}

@keyframes floatRight {
    0% { transform: translateY(-50%) translateX(0) rotate(5deg); }
    50% { transform: translateY(-45%) translateX(-10px) rotate(2deg); }
    100% { transform: translateY(-50%) translateX(0) rotate(5deg); }
}

@keyframes pulseGlow {
    0% { opacity: 0.4; transform: translate(-50%, -50%) scale(0.9); }
    100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

/* Hide floating images on smaller screens to keep it clean */
@media (max-width: 1200px) {
    .hero-float-container {
        display: none;
    }
}

/* ---------------- FIX PREMIUM PRODUCTS GRID ---------------- */
/* Override Bootstrap for the home products list to make it a perfect CSS Grid */
#homeProductList.row {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
    gap: 30px !important;
    margin: 0 !important;
}

#homeProductList > [class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    flex: none !important;
}

#homeProductList .kombiListesi {
    margin-bottom: 0 !important;
    height: 100% !important;
    display: flex;
    flex-direction: column;
}
