/* Kategori Hero v2 (Migration 045) - Nikura tarzi split layout */

.cat-hero {
    background: #f5f3ee;
    overflow: hidden;
    position: relative;
}

.cat-hero__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 15px;
}

.cat-hero__left {
    flex: 1 1 50%;
    max-width: 50%;
    padding-right: 20px;
}

.cat-hero__title {
    font-size: 64px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 24px 0;
    line-height: 1.05;
    letter-spacing: -0.5px;
    font-family: Georgia, 'Times New Roman', serif;
}

.cat-hero__desc {
    font-size: 18px;
    line-height: 1.55;
    color: #3a3a3a;
    margin: 0 0 32px 0;
    max-width: 520px;
}

.cat-hero__icons {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 20px;
}

.cat-hero__icon {
    flex: 0 0 auto;
    text-align: center;
    min-width: 90px;
    color: #1a1a1a;
}

.cat-hero__icon i {
    display: block;
    font-size: 36px;
    margin-bottom: 8px;
    line-height: 1;
}

.cat-hero__icon strong {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    line-height: 1.25;
}

.cat-hero__icon span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    line-height: 1.25;
    color: #1a1a1a;
}

.cat-hero__right {
    flex: 1 1 50%;
    max-width: 50%;
    text-align: right;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.cat-hero__right img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Tablet */
@media (max-width: 991px) {
    .cat-hero__title { font-size: 48px; }
    .cat-hero__desc  { font-size: 16px; }
    .cat-hero__inner { padding: 40px 15px; gap: 24px; }
    .cat-hero__icon i { font-size: 30px; }
}

/* Mobil: stack + 2x2 ikon grid */
@media (max-width: 767px) {
    .cat-hero__inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 15px;
        gap: 20px;
    }
    .cat-hero__left,
    .cat-hero__right {
        flex: 1 1 100%;
        max-width: 100%;
        padding-right: 0;
    }
    .cat-hero__right {
        justify-content: center;
    }
    .cat-hero__title { font-size: 38px; }
    .cat-hero__desc  { font-size: 15px; }
    .cat-hero__icons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .cat-hero__icon  { min-width: 0; width: 100%; }
    .cat-hero__icon i { font-size: 26px; }
}

/* === Sayfa yatay scroll fix (en bastaki "sagda bosluk" sorunu) === */
/* Mobilde .container icindeki .row negative margin (-15px) ile disari tasiyordu.
   Bunu engelleyerek kart container'i viewport icine alalim. */
@media (max-width: 991px) {
    .ps-page,
    .ps-shopping,
    .ps-shopping > .container {
        overflow-x: hidden;
    }
    .ps-shopping .container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
    }
    .ps-shopping .row {
        margin-left: 0;
        margin-right: 0;
    }
    .ps-shopping .row > [class^="col-"],
    .ps-shopping .row > [class*=" col-"] {
        padding-left: 8px;
        padding-right: 8px;
    }
}
