/*
|--------------------------------------------------------------------------
| DEPPO HOME HERO
|--------------------------------------------------------------------------
*/

.hero {
    width: 100%;
    min-height: auto !important;
    height: auto !important;
    padding: 70px 0 80px;
    position: relative;
    overflow: hidden;

    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #f7f8fa 55%,
        #f1f3f5 100%
    ) !important;

    background-image: none !important;
    background-attachment: initial !important;
    background-position: initial !important;
    background-size: initial !important;

    color: #1d1d1f;
}

.hero::before,
.hero::after {
    display: none !important;
    content: none !important;
}

.hero .overlay {
    display: none !important;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero .row {
    min-height: 570px;
}

/*
|--------------------------------------------------------------------------
| Hero yazıları
|--------------------------------------------------------------------------
*/

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 9px 16px;
    color: #b42318;
    background-color: #fff1f0;
    border: 1px solid #ffd2ce;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
}

.hero-badge i {
    font-size: 16px;
}

.hero h1 {
    margin: 0 0 8px;
    color: #151515;
    font-size: clamp(48px, 6vw, 82px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -3px;
}

.hero h2 {
    max-width: 650px;
    margin: 18px 0 20px;
    color: #262626;
    font-size: clamp(27px, 3vw, 43px);
    font-weight: 750;
    line-height: 1.18;
    letter-spacing: -1px;
}

.hero-description {
    max-width: 630px;
    margin: 0 0 25px;
    color: #5c5c5c;
    font-size: 18px;
    line-height: 1.8;
}

/*
|--------------------------------------------------------------------------
| Hero listesi
|--------------------------------------------------------------------------
*/

.hero-list {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.hero-list > div {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #313131;
    font-size: 16px;
    font-weight: 650;
}

.hero-list i {
    color: #f4b400;
    font-size: 20px;
}

/*
|--------------------------------------------------------------------------
| Butonlar
|--------------------------------------------------------------------------
*/

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 54px;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
}

.hero-buttons .btn-warning {
    color: #181818;
    background-color: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 12px 25px rgba(255, 193, 7, 0.25);
}

.hero-buttons .btn-outline-dark {
    color: #212529;
    background-color: rgba(255, 255, 255, 0.92);
    border-color: #212529;
}

.hero-buttons .btn-outline-dark:hover,
.hero-buttons .btn-outline-dark:focus,
.hero-buttons .btn-outline-dark:active {
    color: #ffffff !important;
    background-color: #212529 !important;
    border-color: #212529 !important;
}

/*
|--------------------------------------------------------------------------
| Hero resmi
|--------------------------------------------------------------------------
*/

.hero-image-wrapper {
    width: 100%;
    max-width: 680px;
    margin-left: auto;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #eceff2;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.16),
        0 5px 16px rgba(0, 0, 0, 0.08);
}

.hero-image {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;

    aspect-ratio: var(--hero-image-ratio, 16 / 9);

    object-fit: var(--hero-image-fit, cover);

    object-position: var(
        --hero-image-position,
        50% 50%
    );

    background: #eceff2;
}

/*
|--------------------------------------------------------------------------
| Resim üzerindeki mağaza etiketi
|--------------------------------------------------------------------------
*/

.hero-image-label {
    display: flex;
    align-items: center;
    gap: 13px;
    width: calc(100% - 48px);
    position: absolute;
    right: 24px;
    bottom: 24px;
    padding: 15px 18px;
    color: #ffffff;
    background-color: rgba(18, 18, 18, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.hero-image-label-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 48px;
    flex-shrink: 0;
    padding: 5px;
    overflow: hidden;
    background: #ffffff;
    border-radius: 10px;
}

.hero-image-label-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-image-label div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-image-label strong {
    font-size: 17px;
    line-height: 1.2;
}

.hero-image-label span {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
}

/*
|--------------------------------------------------------------------------
| Tablet
|--------------------------------------------------------------------------
*/

@media (max-width: 991.98px) {

    .hero {
        padding: 55px 0 65px;
        text-align: center;
    }

    .hero .row {
        min-height: auto;
    }

    .hero h2,
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-list {
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-wrapper {
        margin: 15px auto 0;
    }
}

/*
|--------------------------------------------------------------------------
| Telefon
|--------------------------------------------------------------------------
*/

@media (max-width: 575.98px) {

    .hero {
        padding: 42px 0 50px;
    }

    .hero h1 {
        font-size: 46px;
        letter-spacing: -2px;
    }

    .hero h2 {
        font-size: 28px;
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-image-wrapper {
        border-radius: 17px;
    }

    .hero-image-label {
        width: calc(100% - 28px);
        right: 14px;
        bottom: 14px;
        padding: 12px;
    }

    .hero-image-label span {
        font-size: 11px;
    }
}