/* Anasayfa — Ürün vitrini (görsel yükseklik: 360px korunur) */
.home-products {
    padding-top: 60px;
    padding-bottom: 50px;
}

.home-products--series-end {
    padding-top: 48px;
    padding-bottom: 20px;
    background: linear-gradient(180deg, #fff8f8 0%, #f7f7f7 100%);
}

.home-products__eyebrow--series-end {
    color: #b91c1c;
    background: #fef2f2;
    padding: 4px 12px;
    border-radius: 999px;
}

.home-products__badge--series-end {
    background: #b91c1c !important;
    font-size: 10px;
    letter-spacing: 0.04em;
}

.home-products__item--series-end .home-products__pic {
    box-shadow: 0 6px 24px rgba(202, 21, 21, 0.12);
}

.home-products__price--sale {
    color: #ca1515;
}

.home-products__price--sale span {
    color: #aaa;
    text-decoration: line-through;
}

.home-products__empty {
    text-align: center;
    color: #888;
    font-family: 'Montserrat', sans-serif;
    padding: 40px 16px;
}

.home-products__header {
    text-align: center;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-products__header.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.home-products__eyebrow {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ca1515;
    margin-bottom: 10px;
}

.home-products__heading {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #111;
    margin: 0 0 8px;
}

.home-products__heading::after {
    display: block;
    content: "";
    width: 48px;
    height: 3px;
    background: #ca1515;
    margin: 14px auto 0;
}

.home-products__subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #777;
    margin: 12px 0 0;
}

.home-products__footer {
    text-align: center;
    margin-top: 8px;
    padding-bottom: 28px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-products__footer.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.home-products__view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    border: 2px solid #111;
    background: #111;
    color: #fff !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: background 0.25s, border-color 0.25s, color 0.25s, box-shadow 0.25s;
}

.home-products__view-all i {
    transition: transform 0.25s ease;
}

.home-products__view-all:hover {
    background: #ca1515;
    border-color: #ca1515;
    color: #fff !important;
    box-shadow: 0 8px 24px rgba(202, 21, 21, 0.22);
}

.home-products__view-all:hover i {
    transform: translateX(4px);
}

.home-products__view-all--series-end {
    background: #ca1515;
    border-color: #ca1515;
}

.home-products__view-all--series-end:hover {
    background: #a81212;
    border-color: #a81212;
}

.home-products__item {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    margin-bottom: 35px;
}

.home-products__item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.home-products__item:hover {
    transform: translateY(-4px);
}

.home-products__item.is-visible:hover {
    transform: translateY(-4px);
}

.home-products__pic {
    height: 360px;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: #f3f3f3;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.45s ease;
}

.home-products__item:hover .home-products__pic {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.home-products__pic-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: var(--hp-bg);
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.home-products__item:hover .home-products__pic-bg {
    transform: scale(1.06);
}

.home-products__pic-shine {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        120deg,
        transparent 30%,
        rgba(255, 255, 255, 0.12) 50%,
        transparent 70%
    );
    transform: translateX(-120%);
    transition: transform 0.85s ease;
    pointer-events: none;
}

.home-products__item:hover .home-products__pic-shine {
    transform: translateX(120%);
}

.home-products__pic::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.35) 100%);
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
}

.home-products__item:hover .home-products__pic::after {
    opacity: 1;
}

.home-products__badge {
    z-index: 3;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    border-radius: 6px;
    padding: 4px 10px;
}

.home-products .product__hover {
    z-index: 12;
}

.home-products .product__hover li {
    top: 0;
}

.home-products .product-link-overlay {
    z-index: 6;
}

.home-products__text {
    text-align: center;
    padding-top: 20px;
    transition: transform 0.35s ease;
}

.home-products__item:hover .home-products__text {
    transform: translateY(-2px);
}

.home-products__brand {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ca1515;
    margin-bottom: 6px;
}

.home-products__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    line-height: 1.4;
    position: relative;
    z-index: 8;
}

.home-products__code {
    color: #666;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.home-products__meta-sep {
    color: #ccc;
    font-weight: 400;
}

.home-products__collection {
    color: #888;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.25s ease;
}

.home-products__collection:hover {
    color: #ca1515;
}

.home-products__name {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    margin: 0 0 8px;
}

.home-products__text .product-ai-tags {
    margin: 10px 0 0;
}

.home-products__text .product-ai-tags--compact .product-ai-tags__list {
    justify-content: center;
}

.home-products__name a {
    color: #111;
    text-decoration: none;
    transition: color 0.25s ease;
}

.home-products__name a:hover {
    color: #ca1515;
}

.home-products .rating {
    margin-bottom: 8px;
}

.home-products .rating i {
    color: #f59e0b;
    font-size: 12px;
}

.home-products .product__price {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #111;
}

.home-products .product__price span {
    font-size: 13px;
    font-weight: 500;
    color: #aaa;
    margin-left: 6px;
}

.home-products__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ca1515;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.35s ease, transform 0.35s ease, gap 0.3s ease;
}

.home-products__item:hover .home-products__cta {
    opacity: 1;
    transform: translateY(0);
    gap: 12px;
}

.home-products__cta i {
    font-size: 11px;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-products__item:hover .home-products__cta i {
    transform: translateX(3px);
}

@media (prefers-reduced-motion: reduce) {
    .home-products__header,
    .home-products__footer,
    .home-products__item,
    .home-products__pic-bg,
    .home-products__pic-shine,
    .home-products__pic::after,
    .home-products__text,
    .home-products__cta {
        transition: none !important;
    }

    .home-products__header.is-visible,
    .home-products__footer.is-visible,
    .home-products__item.is-visible {
        opacity: 1;
        transform: none;
    }

    .home-products__item:hover {
        transform: none;
    }

    .home-products__cta {
        opacity: 1;
        transform: none;
    }
}
