:root {
    --sage-900: #34483b;
    --sage-800: #405746;
    --sage-700: #526b58;
    --sage-600: #6f8973;
    --sage-500: #8fa590;
    --sage-400: #aebfad;
    --sage-300: #cbd7c8;
    --sage-200: #dfe7dc;
    --sage-100: #edf2ea;

    --cream-500: #eee5d6;
    --cream-400: #f3ebdf;
    --cream-300: #f7f1e7;
    --cream-200: #fbf7f0;
    --cream-100: #fffdf8;

    --white: #ffffff;

    --text-primary: #334037;
    --text-secondary: #657168;
    --text-soft: #879188;

    --border: #d9e1d7;
    --border-soft: #e8ece5;

    --gold: #b89a63;
    --gold-soft: #eadfc8;

    --success: #527b5d;
    --danger: #a65656;

    --shadow-soft:
        0 12px 35px rgba(52, 72, 59, 0.08);

    --shadow-medium:
        0 20px 55px rgba(52, 72, 59, 0.13);

    --radius-small: 10px;
    --radius-medium: 16px;
    --radius-large: 24px;
    --radius-xl: 32px;

    --container-width: 1240px;
}

/*
|--------------------------------------------------------------------------
| Genel
|--------------------------------------------------------------------------
*/

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;

    background: var(--cream-200);
    color: var(--text-primary);
    line-height: 1.6;
}

body,
button,
input,
select,
textarea {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button {
    color: inherit;
}

.storefront-container {
    width: min(
        var(--container-width),
        calc(100% - 40px)
    );

    margin: 0 auto;
}

/*
|--------------------------------------------------------------------------
| Üst Bilgi Çubuğu
|--------------------------------------------------------------------------
*/

.storefront-topbar {
    background:
        linear-gradient(
            90deg,
            var(--sage-900),
            var(--sage-700)
        );

    color: var(--cream-100);
}

.storefront-topbar__inner {
    min-height: 38px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;
}

.storefront-topbar__group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 10px;

    font-size: 12px;
}

.storefront-topbar__group--right {
    justify-content: flex-end;
}

.storefront-topbar__item {
    color: rgba(255, 255, 255, 0.88);
    white-space: nowrap;
}

.storefront-topbar__separator {
    color: rgba(255, 255, 255, 0.35);
}

/*
|--------------------------------------------------------------------------
| Header
|--------------------------------------------------------------------------
*/

.storefront-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 253, 248, 0.96);
    backdrop-filter: blur(14px);

    border-bottom: 1px solid var(--border-soft);
}

.storefront-header__inner {
    min-height: 96px;

    display: grid;
    grid-template-columns: minmax(260px, 1fr) auto minmax(150px, auto);
    align-items: center;

    gap: 32px;
}

.storefront-logo {
    display: inline-flex;
    align-items: center;

    gap: 14px;

    color: var(--text-primary);
    text-decoration: none;
}

.storefront-logo__image {
    width: 118px;
    max-height: 70px;

    object-fit: contain;
    object-position: left center;

    border-radius: 10px;
}

.storefront-logo__content {
    min-width: 0;
}

.storefront-logo__content strong {
    display: block;

    color: var(--sage-800);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 24px;
    font-weight: 500;
    line-height: 1.1;
}

.storefront-logo__content small {
    display: block;

    max-width: 285px;

    margin-top: 6px;

    overflow: hidden;

    color: var(--text-secondary);

    font-size: 10px;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/*
|--------------------------------------------------------------------------
| Ana Menü
|--------------------------------------------------------------------------
*/

.storefront-navigation {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 28px;
}

.storefront-navigation__link {
    position: relative;

    padding: 10px 0;

    color: var(--text-primary);
    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.storefront-navigation__link::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;

    height: 2px;

    border-radius: 999px;

    background: var(--sage-600);

    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.2s ease;
}

.storefront-navigation__link:hover {
    color: var(--sage-700);
}

.storefront-navigation__link:hover::after {
    transform: scaleX(1);
}

/*
|--------------------------------------------------------------------------
| Header İşlem Düğmeleri
|--------------------------------------------------------------------------
*/

.storefront-header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 9px;
}

.storefront-icon-button {
    position: relative;

    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    padding: 0;

    border: 1px solid var(--border);
    border-radius: 50%;

    background: var(--cream-100);
    color: var(--sage-800);

    cursor: pointer;

    font-size: 19px;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.storefront-icon-button:hover {
    transform: translateY(-2px);

    border-color: var(--sage-500);
    background: var(--sage-100);
    color: var(--sage-900);

    box-shadow: var(--shadow-soft);
}

.storefront-icon-button__count {
    position: absolute;
    top: -4px;
    right: -4px;

    min-width: 18px;
    height: 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 5px;

    border: 2px solid var(--cream-100);
    border-radius: 999px;

    background: var(--sage-700);
    color: var(--white);

    font-size: 10px;
    font-weight: 800;
}

/*
|--------------------------------------------------------------------------
| Mobil Menü Düğmesi
|--------------------------------------------------------------------------
*/

.storefront-mobile-menu-button {
    width: 44px;
    height: 44px;

    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;

    padding: 0;

    border: 1px solid var(--border);
    border-radius: 50%;

    background: var(--cream-100);

    cursor: pointer;
}

.storefront-mobile-menu-button span {
    width: 18px;
    height: 2px;

    border-radius: 999px;

    background: var(--sage-800);
}

.storefront-mobile-navigation {
    display: none;

    border-top: 1px solid var(--border-soft);
    background: var(--cream-100);
}

.storefront-mobile-navigation__inner {
    display: grid;

    padding-top: 10px;
    padding-bottom: 16px;
}

.storefront-mobile-navigation a {
    padding: 12px 0;

    border-bottom: 1px solid var(--border-soft);

    color: var(--text-primary);
    text-decoration: none;

    font-size: 14px;
    font-weight: 700;
}

.storefront-mobile-navigation a:last-child {
    border-bottom: 0;
}

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

.storefront-button {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 0 24px;

    border: 0;
    border-radius: var(--radius-small);

    text-decoration: none;
    font-weight: 800;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.storefront-button:hover {
    transform: translateY(-2px);
}

.storefront-button--primary {
    background:
        linear-gradient(
            135deg,
            var(--sage-700),
            var(--sage-900)
        );

    color: var(--white);

    box-shadow:
        0 12px 28px rgba(52, 72, 59, 0.20);
}

.storefront-button--primary:hover {
    box-shadow:
        0 16px 38px rgba(52, 72, 59, 0.25);
}

.storefront-button--light {
    border: 1px solid var(--border);

    background: var(--cream-100);
    color: var(--sage-800);
}

.storefront-button--light:hover {
    border-color: var(--sage-400);
    background: var(--sage-100);
}

/*
|--------------------------------------------------------------------------
| Genel Bölüm Yapısı
|--------------------------------------------------------------------------
*/

.storefront-section {
    padding: 86px 0;
}

.storefront-section--cream {
    background: var(--cream-300);
}

.storefront-section--light {
    background: var(--cream-100);
}

.storefront-section--sage {
    background: var(--sage-100);
}

.storefront-section-heading {
    max-width: 760px;

    margin: 0 auto 44px;

    text-align: center;
}

.storefront-eyebrow {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--sage-700);

    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.storefront-section-heading h1,
.storefront-section-heading h2 {
    margin: 0;

    color: var(--sage-900);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(34px, 4vw, 48px);
    font-weight: 500;
    line-height: 1.15;
}

.storefront-section-heading p {
    max-width: 680px;

    margin: 15px auto 0;

    color: var(--text-secondary);

    font-size: 16px;
}

/*
|--------------------------------------------------------------------------
| Hero İçin Hazır Sınıflar
|--------------------------------------------------------------------------
*/

.storefront-hero {
    padding: 38px 0 64px;

    background:
        radial-gradient(
            circle at 85% 12%,
            rgba(143, 165, 144, 0.18),
            transparent 32%
        ),
        var(--cream-200);
}

.storefront-hero__card {
    position: relative;
    overflow: hidden;

    min-height: 520px;

    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;

    border: 1px solid var(--border);
    border-radius: var(--radius-xl);

    background:
        linear-gradient(
            125deg,
            var(--cream-300),
            var(--cream-100) 54%,
            var(--sage-200)
        );

    box-shadow: var(--shadow-medium);
}

.storefront-hero__card::before {
    content: "";

    position: absolute;
    width: 390px;
    height: 390px;

    right: -105px;
    top: -95px;

    border-radius: 50%;

    background: rgba(111, 137, 115, 0.11);
}

.storefront-hero__content {
    position: relative;
    z-index: 2;

    padding: 68px 30px 68px 72px;
}

.storefront-hero__label {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 8px 13px;

    border: 1px solid var(--border);
    border-radius: 999px;

    background: rgba(255, 253, 248, 0.85);
    color: var(--sage-800);

    font-size: 13px;
    font-weight: 800;
}

.storefront-hero__title {
    max-width: 610px;

    margin: 22px 0 18px;

    color: var(--sage-900);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(44px, 5vw, 68px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -2px;
}

.storefront-hero__title span {
    color: var(--sage-600);
}

.storefront-hero__description {
    max-width: 570px;

    margin: 0;

    color: var(--text-secondary);

    font-size: 18px;
}

.storefront-hero__actions {
    display: flex;
    flex-wrap: wrap;

    gap: 13px;

    margin-top: 31px;
}

.storefront-hero__notes {
    display: flex;
    flex-wrap: wrap;

    gap: 18px;

    margin-top: 28px;
}

.storefront-hero__note {
    display: flex;
    align-items: center;

    gap: 8px;

    color: var(--text-primary);

    font-size: 13px;
    font-weight: 700;
}

.storefront-hero__note-icon {
    width: 28px;
    height: 28px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border);
    border-radius: 50%;

    background: var(--cream-100);
    color: var(--success);
}

.storefront-hero__visual {
    position: relative;
    z-index: 1;

    min-height: 520px;

    display: grid;
    place-items: center;

    padding: 42px;
}

.storefront-hero__visual-card {
    width: min(100%, 510px);
    min-height: 400px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 34px;

    border-radius:
        48% 52% 45% 55%
        / 45% 45% 55% 55%;

    background:
        radial-gradient(
            circle at center,
            rgba(255, 255, 255, 0.92),
            rgba(203, 215, 200, 0.76)
        );

    box-shadow:
        inset 0 0 0 18px rgba(255, 255, 255, 0.23),
        0 30px 70px rgba(52, 72, 59, 0.15);

    text-align: center;
}

.storefront-hero__placeholder {
    font-size: 132px;
    line-height: 1;
}

.storefront-hero__visual-card strong {
    display: block;

    margin-top: 22px;

    color: var(--sage-900);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 28px;
    font-weight: 500;
}

.storefront-hero__visual-card small {
    margin-top: 7px;
    color: var(--text-secondary);
}

/*
|--------------------------------------------------------------------------
| Hizmet Kartları
|--------------------------------------------------------------------------
*/

.storefront-services {
    position: relative;
    z-index: 10;

    margin-top: -24px;
}

.storefront-services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: var(--radius-medium);

    background: var(--cream-100);

    box-shadow: var(--shadow-medium);
}

.storefront-service-card {
    min-height: 105px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    padding: 22px;

    border-right: 1px solid var(--border-soft);
}

.storefront-service-card:last-child {
    border-right: 0;
}

.storefront-service-card__icon {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    flex: 0 0 auto;

    border-radius: 50%;

    background: var(--sage-100);
    color: var(--sage-800);

    font-size: 22px;
}

.storefront-service-card strong {
    display: block;

    color: var(--sage-900);

    font-size: 14px;
}

.storefront-service-card span {
    display: block;

    margin-top: 2px;

    color: var(--text-secondary);

    font-size: 12px;
}

/*
|--------------------------------------------------------------------------
| Kategori Kartları
|--------------------------------------------------------------------------
*/

.storefront-categories {
    display: grid;
    grid-template-columns: repeat(6, 1fr);

    gap: 17px;
}

.storefront-category-card {
    min-height: 175px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 22px;

    border: 1px solid var(--border);
    border-radius: var(--radius-medium);

    background: var(--cream-100);

    text-align: center;
    text-decoration: none;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.storefront-category-card:hover {
    transform: translateY(-6px);

    border-color: var(--sage-400);
    background: var(--white);

    box-shadow: var(--shadow-medium);
}

.storefront-category-card__icon {
    width: 66px;
    height: 66px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--sage-100);

    font-size: 31px;
}

.storefront-category-card h3 {
    margin: 16px 0 4px;

    color: var(--sage-900);

    font-size: 15px;
}

.storefront-category-card p {
    margin: 0;

    color: var(--text-secondary);

    font-size: 12px;
}

/*
|--------------------------------------------------------------------------
| Ürün Kartları
|--------------------------------------------------------------------------
*/

.storefront-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 22px;
}

.storefront-product-card {
    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: var(--radius-medium);

    background: var(--cream-100);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.storefront-product-card:hover {
    transform: translateY(-5px);

    border-color: var(--sage-400);

    box-shadow: var(--shadow-medium);
}

.storefront-product-card__image {
    position: relative;

    height: 285px;

    display: grid;
    place-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            var(--cream-100) 0 27%,
            transparent 28%
        ),
        linear-gradient(
            145deg,
            var(--sage-100),
            var(--cream-300)
        );
}

.storefront-product-card__image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.storefront-product-card__placeholder {
    color: var(--sage-700);
    font-size: 92px;
}

.storefront-product-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;

    padding: 7px 11px;

    border-radius: 999px;

    background: var(--sage-700);
    color: var(--white);

    font-size: 11px;
    font-weight: 900;
}

.storefront-product-card__favorite {
    position: absolute;
    top: 14px;
    right: 14px;

    width: 37px;
    height: 37px;

    display: grid;
    place-items: center;

    padding: 0;

    border: 1px solid var(--border);
    border-radius: 50%;

    background: var(--cream-100);
    color: var(--sage-700);

    cursor: pointer;

    font-size: 17px;
}

.storefront-product-card__content {
    padding: 21px;
}

.storefront-product-card__category {
    color: var(--sage-700);

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.storefront-product-card__title {
    min-height: 52px;

    margin: 8px 0 6px;

    color: var(--sage-900);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
}

.storefront-product-card__description {
    min-height: 42px;

    margin: 0;

    color: var(--text-secondary);

    font-size: 13px;
}

.storefront-product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-top: 19px;
}

.storefront-product-card__price {
    color: var(--sage-900);

    font-size: 20px;
    font-weight: 900;
}

.storefront-product-card__button {
    min-height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 16px;

    border-radius: 8px;

    background: var(--sage-800);
    color: var(--white);

    text-decoration: none;
    font-size: 12px;
    font-weight: 800;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.storefront-product-card__button:hover {
    transform: translateY(-2px);
    background: var(--sage-900);
}

/*
|--------------------------------------------------------------------------
| Boş Ürün Durumu
|--------------------------------------------------------------------------
*/

.storefront-empty-state {
    padding: 55px 30px;

    border: 1px dashed var(--sage-400);
    border-radius: var(--radius-large);

    background: var(--cream-100);

    text-align: center;
}

.storefront-empty-state__icon {
    display: block;

    margin-bottom: 18px;

    font-size: 60px;
}

.storefront-empty-state h3 {
    margin: 0;

    color: var(--sage-900);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 27px;
    font-weight: 500;
}

.storefront-empty-state p {
    max-width: 600px;

    margin: 12px auto 0;

    color: var(--text-secondary);
}

/*
|--------------------------------------------------------------------------
| Hakkımızda Alanı
|--------------------------------------------------------------------------
*/

.storefront-about {
    background:
        linear-gradient(
            135deg,
            var(--sage-900),
            #28372d
        );

    color: var(--white);
}

.storefront-about__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;

    gap: 64px;
}

.storefront-about__content h2 {
    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 44px;
    font-weight: 500;
    line-height: 1.15;
}

.storefront-about__content p {
    margin: 18px 0 0;

    color: rgba(255, 255, 255, 0.76);

    font-size: 16px;
}

.storefront-about__slogan {
    margin-top: 24px;
    padding: 19px 22px;

    border-left: 3px solid var(--gold);

    background: rgba(255, 255, 255, 0.07);

    color: var(--gold-soft);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 18px;
    font-style: italic;
}

.storefront-about__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 15px;
}

.storefront-stat-card {
    min-height: 145px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 25px;

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius-medium);

    background: rgba(255, 255, 255, 0.08);
}

.storefront-stat-card strong {
    color: var(--gold-soft);
    font-size: 30px;
}

.storefront-stat-card span {
    margin-top: 5px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 13px;
}

/*
|--------------------------------------------------------------------------
| CTA
|--------------------------------------------------------------------------
*/

.storefront-cta {
    padding: 90px 0;
}

.storefront-cta__card {
    min-height: 280px;

    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;

    gap: 45px;

    padding: 55px 65px;

    border-radius: var(--radius-large);

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(255, 255, 255, 0.16),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--sage-700),
            var(--sage-900)
        );

    color: var(--white);

    box-shadow: var(--shadow-medium);
}

.storefront-cta__card h2 {
    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 42px;
    font-weight: 500;
    line-height: 1.15;
}

.storefront-cta__card p {
    margin: 13px 0 0;

    color: rgba(255, 255, 255, 0.80);
}

.storefront-cta__actions {
    display: flex;
    justify-content: flex-end;
}

/*
|--------------------------------------------------------------------------
| Footer
|--------------------------------------------------------------------------
*/

.storefront-footer {
    padding: 66px 0 24px;

    background:
        linear-gradient(
            135deg,
            #26342b,
            var(--sage-900)
        );

    color: var(--white);
}

.storefront-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);

    gap: 45px;
}

.storefront-footer__brand {
    min-width: 0;
}

.storefront-footer__logo {
    display: inline-flex;

    padding: 10px;

    border-radius: 12px;

    background: var(--cream-100);

    text-decoration: none;
}

.storefront-footer__logo-image {
    width: 185px;
    max-height: 68px;

    object-fit: contain;
}

.storefront-footer__description {
    max-width: 385px;

    margin: 19px 0 0;

    color: rgba(255, 255, 255, 0.70);

    font-size: 14px;
}

.storefront-footer__slogan {
    max-width: 420px;

    margin: 18px 0 0;
    padding-left: 15px;

    border-left: 2px solid var(--gold);

    color: var(--gold-soft);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 14px;
    font-style: italic;
}

.storefront-footer__title {
    margin: 0 0 18px;

    color: var(--gold-soft);

    font-size: 15px;
}

.storefront-footer__links {
    display: grid;

    gap: 10px;
}

.storefront-footer__links a {
    color: rgba(255, 255, 255, 0.70);
    text-decoration: none;

    font-size: 14px;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.storefront-footer__links a:hover {
    transform: translateX(3px);
    color: var(--white);
}

.storefront-footer__contact-list {
    display: grid;

    gap: 16px;
}

.storefront-footer__contact-item {
    display: flex;
    align-items: flex-start;

    gap: 11px;
}

.storefront-footer__contact-icon {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    flex: 0 0 auto;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.07);

    font-size: 15px;
}

.storefront-footer__contact-item strong {
    display: block;

    color: var(--white);

    font-size: 13px;
}

.storefront-footer__contact-item span {
    display: block;

    margin-top: 2px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 12px;
}

.storefront-footer__service-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    margin-top: 48px;

    overflow: hidden;

    border-top: 1px solid rgba(255, 255, 255, 0.11);
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.storefront-footer__service {
    min-height: 102px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 13px;

    padding: 20px;

    border-right: 1px solid rgba(255, 255, 255, 0.11);
}

.storefront-footer__service:last-child {
    border-right: 0;
}

.storefront-footer__service > span {
    font-size: 24px;
}

.storefront-footer__service strong {
    display: block;

    color: var(--white);

    font-size: 13px;
}

.storefront-footer__service small {
    display: block;

    margin-top: 2px;

    color: rgba(255, 255, 255, 0.62);

    font-size: 11px;
}

.storefront-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding-top: 22px;

    color: rgba(255, 255, 255, 0.52);

    font-size: 12px;
}

.storefront-footer__bottom p {
    margin: 0;
}

.storefront-footer__bottom-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 16px;
}

.storefront-footer__bottom-links a {
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;

    transition: color 0.2s ease;
}

.storefront-footer__bottom-links a:hover {
    color: var(--white);
}

/*
|--------------------------------------------------------------------------
| Responsive — Tablet
|--------------------------------------------------------------------------
*/

@media (max-width: 1120px) {
    .storefront-header__inner {
        grid-template-columns: minmax(250px, 1fr) auto;
    }

    .storefront-navigation {
        display: none;
    }

    .storefront-mobile-menu-button {
        display: flex;
    }

    .storefront-categories {
        grid-template-columns: repeat(3, 1fr);
    }

    .storefront-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .storefront-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/*
|--------------------------------------------------------------------------
| Responsive — Küçük Tablet
|--------------------------------------------------------------------------
*/

@media (max-width: 900px) {
    .storefront-hero__card,
    .storefront-about__grid,
    .storefront-cta__card {
        grid-template-columns: 1fr;
    }

    .storefront-hero__content {
        padding: 54px 38px 22px;

        text-align: center;
    }

    .storefront-hero__description {
        margin-left: auto;
        margin-right: auto;
    }

    .storefront-hero__actions,
    .storefront-hero__notes {
        justify-content: center;
    }

    .storefront-hero__visual {
        min-height: 420px;
        padding-top: 6px;
    }

    .storefront-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .storefront-service-card:nth-child(2) {
        border-right: 0;
    }

    .storefront-service-card:nth-child(-n+2) {
        border-bottom: 1px solid var(--border-soft);
    }

    .storefront-about__grid {
        text-align: center;
    }

    .storefront-cta__card {
        text-align: center;
    }

    .storefront-cta__actions {
        justify-content: center;
    }

    .storefront-footer__service-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .storefront-footer__service:nth-child(2) {
        border-right: 0;
    }

    .storefront-footer__service:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    }
}

/*
|--------------------------------------------------------------------------
| Responsive — Mobil
|--------------------------------------------------------------------------
*/

@media (max-width: 680px) {
    .storefront-container {
        width: min(
            100% - 26px,
            var(--container-width)
        );
    }

    .storefront-topbar__inner {
        justify-content: center;
    }

    .storefront-topbar__group--right {
        display: none;
    }

    .storefront-topbar__group {
        justify-content: center;

        font-size: 11px;
    }

    .storefront-header__inner {
        min-height: 78px;

        grid-template-columns: minmax(0, 1fr) auto;

        gap: 14px;
    }

    .storefront-logo__image {
        width: 92px;
        max-height: 56px;
    }

    .storefront-logo__content strong {
        font-size: 20px;
    }

    .storefront-logo__content small {
        display: none;
    }

    .storefront-icon-button:nth-child(1),
    .storefront-icon-button:nth-child(2) {
        display: none;
    }

    .storefront-hero {
        padding-top: 20px;
    }

    .storefront-hero__card {
        min-height: auto;
    }

    .storefront-hero__content {
        padding: 43px 22px 18px;
    }

    .storefront-hero__title {
        font-size: 41px;
        letter-spacing: -1px;
    }

    .storefront-hero__visual {
        min-height: 330px;
        padding: 20px;
    }

    .storefront-hero__visual-card {
        min-height: 285px;
    }

    .storefront-hero__placeholder {
        font-size: 92px;
    }

    .storefront-services {
        margin-top: 14px;
    }

    .storefront-services__grid,
    .storefront-categories,
    .storefront-products-grid,
    .storefront-about__stats,
    .storefront-footer__grid,
    .storefront-footer__service-row {
        grid-template-columns: 1fr;
    }

    .storefront-service-card,
    .storefront-footer__service {
        border-right: 0;
        border-bottom: 1px solid var(--border-soft);
    }

    .storefront-service-card:last-child,
    .storefront-footer__service:last-child {
        border-bottom: 0;
    }

    .storefront-service-card:nth-child(-n+2),
    .storefront-footer__service:nth-child(-n+2) {
        border-bottom: 1px solid var(--border-soft);
    }

    .storefront-category-card {
        min-height: 150px;
    }

    .storefront-product-card__image {
        height: 250px;
    }

    .storefront-section {
        padding: 66px 0;
    }

    .storefront-about__content h2 {
        font-size: 35px;
    }

    .storefront-cta__card {
        padding: 41px 23px;
    }

    .storefront-cta__card h2 {
        font-size: 34px;
    }

    .storefront-footer__bottom {
        flex-direction: column;

        text-align: center;
    }

    .storefront-footer__bottom-links {
        justify-content: center;
    }
}

/*
|--------------------------------------------------------------------------
| Responsive — Küçük Mobil
|--------------------------------------------------------------------------
*/

@media (max-width: 440px) {
    .storefront-logo__content {
        display: none;
    }

    .storefront-hero__actions {
        flex-direction: column;
    }

    .storefront-hero__actions .storefront-button {
        width: 100%;
    }

    .storefront-section-heading h1,
    .storefront-section-heading h2 {
        font-size: 32px;
    }

    .storefront-product-card__footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .storefront-product-card__button {
        width: 100%;
    }
}
/*
|--------------------------------------------------------------------------
| Header Aktif Menü ve Pasif İşlem Düğmeleri
|--------------------------------------------------------------------------
*/

.storefront-navigation__link.is-active {
    color: var(--sage-700);
}

.storefront-navigation__link.is-active::after {
    transform: scaleX(1);
}

.storefront-icon-button[disabled] {
    opacity: 0.48;
    cursor: not-allowed;
}

.storefront-icon-button[disabled]:hover {
    transform: none;
    border-color: var(--border);
    background: var(--cream-100);
    color: var(--sage-800);
    box-shadow: none;
}
/*
|--------------------------------------------------------------------------
| Ürün Detay Sayfası
|--------------------------------------------------------------------------
*/

.storefront-product-detail-page {
    padding: 70px 0 90px;
    background: var(--cream-200);
}

.storefront-product-detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    gap: 64px;
}

.storefront-product-detail__visual {
    position: relative;
    min-height: 570px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(
            circle at center,
            var(--cream-100) 0 26%,
            transparent 27%
        ),
        linear-gradient(
            145deg,
            var(--sage-100),
            var(--cream-300)
        );
    box-shadow: var(--shadow-medium);
}

.storefront-product-detail__visual::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    top: -90px;
    right: -90px;
    border-radius: 50%;
    background: rgba(111, 137, 115, 0.11);
}

.storefront-product-detail__placeholder {
    position: relative;
    z-index: 1;
    color: var(--sage-700);
    font-size: 138px;
    line-height: 1;
}

.storefront-product-detail__badge {
    position: absolute;
    z-index: 2;
    top: 22px;
    left: 22px;
    padding: 8px 13px;
    border-radius: 999px;
    background: var(--sage-700);
    color: var(--white);
    font-size: 11px;
    font-weight: 900;
}

.storefront-product-detail__content {
    padding-top: 4px;
}

.storefront-product-detail__back {
    display: inline-flex;
    margin-bottom: 28px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
}

.storefront-product-detail__back:hover {
    color: var(--sage-800);
}

.storefront-product-detail__title {
    margin: 7px 0 0;
    color: var(--sage-900);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: clamp(42px, 5vw, 62px);
    font-weight: 500;
    line-height: 1.06;
    letter-spacing: -1.5px;
}

.storefront-product-detail__description {
    margin: 22px 0 0;
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.8;
}

.storefront-product-detail__price {
    margin-top: 28px;
    color: var(--sage-900);
    font-size: 38px;
    font-weight: 900;
}

.storefront-product-detail__notice {
    margin-top: 28px;
    padding: 20px 22px;
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    background: var(--cream-100);
}

.storefront-product-detail__notice strong {
    color: var(--sage-900);
    font-size: 15px;
}

.storefront-product-detail__notice p {
    margin: 7px 0 0;
    color: var(--text-secondary);
    font-size: 14px;
}

.storefront-product-detail__features {
    display: grid;
    gap: 0;
    margin-top: 25px;
}

.storefront-product-detail__feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-soft);
}

.storefront-product-detail__feature-icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--sage-100);
    color: var(--sage-800);
    font-size: 20px;
}

.storefront-product-detail__feature div {
    display: grid;
    gap: 2px;
}

.storefront-product-detail__feature strong {
    color: var(--sage-900);
    font-size: 14px;
}

.storefront-product-detail__feature span {
    color: var(--text-secondary);
    font-size: 12px;
}

.storefront-product-detail__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 32px;
}

.storefront-product-card__image,
.storefront-product-card__title-link {
    color: inherit;
    text-decoration: none;
}

.storefront-product-card__title-link:hover {
    color: var(--sage-700);
}

@media (max-width: 900px) {
    .storefront-product-detail {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .storefront-product-detail__visual {
        min-height: 440px;
    }
}

@media (max-width: 680px) {
    .storefront-product-detail-page {
        padding: 38px 0 66px;
    }

    .storefront-product-detail__visual {
        min-height: 340px;
        border-radius: var(--radius-large);
    }

    .storefront-product-detail__placeholder {
        font-size: 96px;
    }

    .storefront-product-detail__title {
        font-size: 39px;
    }

    .storefront-product-detail__actions {
        flex-direction: column;
    }

    .storefront-product-detail__actions .storefront-button {
        width: 100%;
    }
}
/*
|--------------------------------------------------------------------------
| Bitki Bakımı Sayfası
|--------------------------------------------------------------------------
*/

.storefront-care-highlight {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    align-items: center;
    gap: 48px;
    padding: 54px;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: var(--cream-100);
    box-shadow: var(--shadow-medium);
}

.storefront-care-highlight__content h2,
.storefront-care-note h2 {
    margin: 0;
    color: var(--sage-900);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 500;
    line-height: 1.15;
}

.storefront-care-highlight__content p,
.storefront-care-note p {
    margin: 17px 0 0;
    color: var(--text-secondary);
}

.storefront-care-highlight__visual {
    min-height: 280px;
    display: grid;
    place-items: center;
    border-radius: var(--radius-large);
    background:
        radial-gradient(
            circle at center,
            var(--cream-100) 0 28%,
            transparent 29%
        ),
        linear-gradient(
            145deg,
            var(--sage-200),
            var(--cream-300)
        );
}

.storefront-care-highlight__visual span {
    font-size: 110px;
    line-height: 1;
}

.storefront-care-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.storefront-care-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.storefront-care-card {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    background: var(--cream-100);
    box-shadow: var(--shadow-soft);
}

.storefront-care-card__icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--sage-100);
    font-size: 27px;
}

.storefront-care-card h3,
.storefront-care-step h3,
.storefront-care-problem h3 {
    margin: 20px 0 0;
    color: var(--sage-900);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 23px;
    font-weight: 500;
}

.storefront-care-card p,
.storefront-care-step p,
.storefront-care-problem p {
    margin: 11px 0 0;
    color: var(--text-secondary);
    font-size: 14px;
}

.storefront-care-card ul {
    display: grid;
    gap: 8px;
    margin: 18px 0 0;
    padding-left: 20px;
    color: var(--text-secondary);
    font-size: 13px;
}

.storefront-care-steps {
    display: grid;
    gap: 14px;
    max-width: 920px;
    margin: 0 auto;
}

.storefront-care-step {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 20px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    background: var(--cream-100);
}

.storefront-care-step > span {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--sage-700);
    color: var(--white);
    font-size: 13px;
    font-weight: 900;
}

.storefront-care-step h3 {
    margin-top: 0;
}

.storefront-care-problems {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.storefront-care-problem {
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    background: var(--cream-100);
}

.storefront-care-problem h3 {
    margin-top: 0;
    font-size: 20px;
}

.storefront-care-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 46px 52px;
    border: 1px solid var(--border);
    border-radius: var(--radius-large);
    background: var(--cream-100);
    box-shadow: var(--shadow-soft);
}

.storefront-care-note > div {
    max-width: 820px;
}

.storefront-care-note__icon {
    flex: 0 0 auto;
    font-size: 78px;
    line-height: 1;
}

@media (max-width: 1000px) {
    .storefront-care-grid--three,
    .storefront-care-problems {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {
    .storefront-care-highlight {
        grid-template-columns: 1fr;
        padding: 36px 28px;
    }

    .storefront-care-grid,
    .storefront-care-grid--three,
    .storefront-care-problems {
        grid-template-columns: 1fr;
    }

    .storefront-care-note {
        align-items: flex-start;
        flex-direction: column;
        padding: 36px 28px;
    }
}

@media (max-width: 520px) {
    .storefront-care-step {
        grid-template-columns: 1fr;
    }

    .storefront-care-highlight__visual {
        min-height: 220px;
    }

    .storefront-care-highlight__visual span {
        font-size: 86px;
    }
}
/*
|--------------------------------------------------------------------------
| Mobil Menü
|--------------------------------------------------------------------------
*/

.storefront-mobile-navigation {
    display: none;
    border-top: 1px solid rgba(217, 223, 210, 0.75);
    background: #ffffff;
    box-shadow: 0 18px 35px rgba(34, 48, 38, 0.08);
}

.storefront-mobile-navigation.is-open {
    display: block;
}

.storefront-mobile-navigation__inner {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 14px;
    padding-bottom: 18px;
}

.storefront-mobile-navigation a {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    color: #27352b;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.storefront-mobile-navigation a:hover {
    background: #f3f6ef;
    color: #46634d;
}

.storefront-mobile-menu-button.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.storefront-mobile-menu-button.is-active span:nth-child(2) {
    opacity: 0;
}

.storefront-mobile-menu-button.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 901px) {
    .storefront-mobile-navigation {
        display: none !important;
    }
}
.storefront-product-card__photo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.storefront-product-card__image {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 320px;
}
.storefront-product-detail__photo{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    border-radius:20px;
}

.storefront-product-detail__visual{
    overflow:hidden;
}
/* =========================================================
   DİNAMİK HERO / VİTRİN KAYDIRICISI
   ========================================================= */

.storefront-hero--slider {
    padding: 28px 0 20px;
}

.storefront-hero-slider {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    border-radius: 30px;
    background: #16382d;
    box-shadow: 0 24px 60px rgba(25, 54, 44, 0.16);
    isolation: isolate;
}

.storefront-hero-slider__slides {
    position: relative;
    min-height: inherit;
}

.storefront-hero-slide {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: inherit;
}

.storefront-hero-slide[hidden] {
    display: none;
}

.storefront-hero-slide.is-active {
    animation: storefrontHeroFadeIn 0.55s ease both;
}

@keyframes storefrontHeroFadeIn {
    from {
        opacity: 0;
        transform: scale(1.01);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Görsel */

.storefront-hero-slide__picture {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.storefront-hero-slide__image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: center;
}

/* Metin okunabilirlik katmanı */

.storefront-hero-slide__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(10, 30, 23, 0.82) 0%,
            rgba(10, 30, 23, 0.58) 38%,
            rgba(10, 30, 23, 0.16) 72%,
            rgba(10, 30, 23, 0.05) 100%
        );
}

.storefront-hero-slide--center .storefront-hero-slide__overlay {
    background:
        linear-gradient(
            90deg,
            rgba(10, 30, 23, 0.3) 0%,
            rgba(10, 30, 23, 0.67) 50%,
            rgba(10, 30, 23, 0.3) 100%
        );
}

.storefront-hero-slide--right .storefront-hero-slide__overlay {
    background:
        linear-gradient(
            270deg,
            rgba(10, 30, 23, 0.82) 0%,
            rgba(10, 30, 23, 0.58) 38%,
            rgba(10, 30, 23, 0.16) 72%,
            rgba(10, 30, 23, 0.05) 100%
        );
}

/* İçerik alanı */

.storefront-hero-slide__body {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 520px;
    padding: 68px 76px 82px;
}

.storefront-hero-slide__content {
    width: min(590px, 55%);
    color: #ffffff;
}

.storefront-hero-slide__content--left {
    margin-right: auto;
    text-align: left;
}

.storefront-hero-slide__content--center {
    width: min(700px, 72%);
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.storefront-hero-slide__content--right {
    margin-left: auto;
    text-align: right;
}

.storefront-hero-slide__title {
    margin: 0 0 20px;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4.6vw, 70px);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.035em;
    text-wrap: balance;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.28);
}

.storefront-hero-slide__description {
    max-width: 580px;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(16px, 1.4vw, 20px);
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.24);
}

.storefront-hero-slide__content--center
.storefront-hero-slide__description {
    margin-right: auto;
    margin-left: auto;
}

.storefront-hero-slide__content--right
.storefront-hero-slide__description {
    margin-left: auto;
}

.storefront-hero-slide__actions {
    display: flex;
    margin-top: 30px;
}

.storefront-hero-slide__content--center
.storefront-hero-slide__actions {
    justify-content: center;
}

.storefront-hero-slide__content--right
.storefront-hero-slide__actions {
    justify-content: flex-end;
}

.storefront-hero-slide__actions .storefront-button--primary {
    min-width: 168px;
    padding: 14px 24px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.storefront-hero-slide__actions .storefront-button--primary:hover {
    transform: translateY(-2px);
}

/* Önceki / sonraki okları */

.storefront-hero-slider__arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    color: #ffffff;
    background: rgba(18, 48, 38, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 50%;
    cursor: pointer;
    font-family: inherit;
    font-size: 38px;
    line-height: 1;
    backdrop-filter: blur(8px);
    transform: translateY(-50%);
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.storefront-hero-slider__arrow:hover {
    background: rgba(18, 48, 38, 0.88);
    border-color: rgba(255, 255, 255, 0.7);
}

.storefront-hero-slider__arrow:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.85);
    outline-offset: 3px;
}

.storefront-hero-slider__arrow--previous {
    left: 18px;
}

.storefront-hero-slider__arrow--next {
    right: 18px;
}

.storefront-hero-slider__arrow--previous:hover {
    transform: translate(-2px, -50%);
}

.storefront-hero-slider__arrow--next:hover {
    transform: translate(2px, -50%);
}

/* Alt navigasyon noktaları */

.storefront-hero-slider__dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 9px 12px;
    background: rgba(10, 30, 23, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    backdrop-filter: blur(8px);
    transform: translateX(-50%);
}

.storefront-hero-slider__dot {
    width: 9px;
    height: 9px;
    padding: 0;
    background: rgba(255, 255, 255, 0.52);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    transition:
        width 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}

.storefront-hero-slider__dot:hover {
    background: rgba(255, 255, 255, 0.84);
    transform: scale(1.12);
}

.storefront-hero-slider__dot.is-active {
    width: 28px;
    background: #ffffff;
}

.storefront-hero-slider__dot:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

/* Tablet */

@media (max-width: 1024px) {
    .storefront-hero-slider,
    .storefront-hero-slider__slides,
    .storefront-hero-slide,
    .storefront-hero-slide__body,
    .storefront-hero-slide__image {
        min-height: 470px;
    }

    .storefront-hero-slide__body {
        padding: 54px 60px 76px;
    }

    .storefront-hero-slide__content {
        width: min(570px, 68%);
    }

    .storefront-hero-slide__content--center {
        width: min(680px, 82%);
    }
}

/* Mobil */

@media (max-width: 767px) {
    .storefront-hero--slider {
        padding: 16px 0 12px;
    }

    .storefront-hero-slider {
        min-height: 540px;
        border-radius: 22px;
    }

    .storefront-hero-slider__slides,
    .storefront-hero-slide,
    .storefront-hero-slide__image {
        min-height: 540px;
    }

    .storefront-hero-slide__image {
        object-position: center;
    }

    .storefront-hero-slide__overlay,
    .storefront-hero-slide--center
    .storefront-hero-slide__overlay,
    .storefront-hero-slide--right
    .storefront-hero-slide__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(8, 25, 19, 0.1) 0%,
                rgba(8, 25, 19, 0.27) 36%,
                rgba(8, 25, 19, 0.88) 100%
            );
    }

    .storefront-hero-slide__body {
        align-items: flex-end;
        min-height: 540px;
        padding: 44px 28px 78px;
    }

    .storefront-hero-slide__content,
    .storefront-hero-slide__content--center,
    .storefront-hero-slide__content--right {
        width: 100%;
        margin: 0;
        text-align: left;
    }

    .storefront-hero-slide__title {
        margin-bottom: 14px;
        font-size: clamp(34px, 10vw, 48px);
        line-height: 1.05;
    }

    .storefront-hero-slide__description {
        max-width: 100%;
        font-size: 15px;
        line-height: 1.55;
    }

    .storefront-hero-slide__actions,
    .storefront-hero-slide__content--center
    .storefront-hero-slide__actions,
    .storefront-hero-slide__content--right
    .storefront-hero-slide__actions {
        justify-content: flex-start;
        margin-top: 22px;
    }

    .storefront-hero-slider__arrow {
        top: 44%;
        width: 40px;
        height: 40px;
        font-size: 31px;
    }

    .storefront-hero-slider__arrow--previous {
        left: 10px;
    }

    .storefront-hero-slider__arrow--next {
        right: 10px;
    }

    .storefront-hero-slider__dots {
        bottom: 20px;
    }
}

/* Çok küçük ekranlar */

@media (max-width: 480px) {
    .storefront-hero-slider,
    .storefront-hero-slider__slides,
    .storefront-hero-slide,
    .storefront-hero-slide__image,
    .storefront-hero-slide__body {
        min-height: 500px;
    }

    .storefront-hero-slide__body {
        padding: 38px 22px 70px;
    }

    .storefront-hero-slide__title {
        font-size: 34px;
    }

    .storefront-hero-slide__actions
    .storefront-button {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* Hareket hassasiyeti */

@media (prefers-reduced-motion: reduce) {
    .storefront-hero-slide.is-active {
        animation: none;
    }

    .storefront-hero-slider__arrow,
    .storefront-hero-slider__dot,
    .storefront-hero-slide__actions
    .storefront-button--primary {
        transition: none;
    }
}