﻿/* 
---------------------------------------------
Ürünler Sayfası
--------------------------------------------- 
*/

.page-heading {
    margin-top: 160px;
    margin-bottom: 30px;
    background-image: url(../images/anasayfa/ag-smell-world-ürünler.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

    .page-heading .inner-content {
        padding: 150px 0px;
        text-align: center;
    }

        .page-heading .inner-content h2 {
            font-size: 52px;
            color: #fff;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .page-heading .inner-content span {
            font-size: 16px;
            font-weight: 500;
            color: #fff;
            font-style: italic;
        }

#products .section-heading {
    text-align: center;
    margin-bottom: 60px;
    margin-top: 80px;
}

#products .item {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, opacity 0.5s ease;
    height: 100%;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

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

#products .item:hover {
    transform: translateY(-5px);
}

#products .thumb {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

    #products .thumb img {
        width: 100%;
        height: auto;
        aspect-ratio: 370 / 390;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    #products .thumb .hover-content {
        position: absolute;
        bottom: 10px;
        right: 10px;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    #products .thumb:hover .hover-content {
        opacity: 1;
    }

    #products .thumb .hover-content ul li {
        display: inline-block;
    }

        #products .thumb .hover-content ul li a {
            background: #25D366;
            color: #fff;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            text-align: center;
            line-height: 38px;
            font-size: 18px;
            display: inline-block;
            box-shadow: 0 2px 6px rgba(0,0,0,0.2);
        }

#products .down-content {
    text-align: center;
    margin-top: 15px;
}

    #products .down-content h4 {
        font-size: 18px;
        color: #22521B;
        font-weight: 600;
        margin-bottom: 5px;
    }

    #products .down-content span {
        font-size: 14px;
        color: #555;
    }

@media (max-width: 768px) {
    #products .thumb img {
        aspect-ratio: 1 / 1.1;
    }

    #products .item {
        margin-bottom: 20px;
    }
}