/* Admin Paneli için özel stiller */
.admin-container {
    width: 90%;
    margin: auto;
    padding-top: 20px;
}

/* Ürün detay sayfası için özel stiller */
.product-gallery img {
    width: 100px;
    height: auto;
    cursor: pointer;
    border: 2px solid #ddd;
    border-radius: 5px;
    transition: 0.3s;
}

.product-gallery img:hover {
    border-color: #333;
}

/* Önerilen ürünler */
.recommended-products .card {
    border: 1px solid #ddd;
    padding: 10px;
    transition: 0.3s;
}

.recommended-products .card:hover {
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.performance-hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 640px;
    overflow: hidden;
    background: #111820;
}

.performance-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.72) 100%);
}

.performance-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.performance-hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 96px 15px;
}

.performance-hero-content p {
    margin: 0 0 14px;
    color: #f2c94c;
    font-weight: 700;
    letter-spacing: 0;
}

.performance-hero-content h1 {
    max-width: 760px;
    margin: 0 0 16px;
    color: #fff;
    font-size: 54px;
    line-height: 1.08;
}

.performance-hero-content span {
    display: block;
    max-width: 680px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    line-height: 1.6;
}

.performance-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.card-img-top {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.dlab-gallery-box .dlab-thum {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f3f5f8;
}

.dlab-gallery-box .dlab-thum img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 767px) {
    .performance-hero {
        min-height: 520px;
    }

    .performance-hero-content {
        padding: 72px 15px;
    }

    .performance-hero-content h1 {
        font-size: 36px;
        line-height: 1.12;
    }

    .performance-hero-content span {
        font-size: 16px;
    }
}
