:root {
    --page-bg: #f5f2ed;
    --content-bg: #f5f2ed;
    --header-bg: #f5f2ed;
    --announcement-bg: #6f6354;
    --announcement-text: #fdfaf6;
    --accent: #c39a6b;
    --text-primary: #3e3325;
    --text: #3e3325;
    --text-muted: #7b6a54;
    --border-subtle: #e1d6c8;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

html {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE / Edge */
    /* overflow-x burada kullanmayın: viewport dışı taşma kapsayıcısı oluşturur ve
       .site-header (position:absolute) ile birlikte kayar. Yatay taşma body’de */
}

body {
    min-height: 100vh;
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    background-color: var(--page-bg);
    overflow-y: scroll; /* scroll alanı kalsın, bar gizlensin */
    overflow-x: hidden; /* yatay taşma olmasın */
}

body::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

/* HEADER — üst bildirim + menü birlikte; kaydırınca beyaz */

.site-head {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transform: translateY(0);
    transition:
        transform 0.3s ease,
        background-color 0.22s ease,
        box-shadow 0.22s ease;
}

/* Aşağı kaydırırken şerit yukarı kaybolur */
.site-head.site-head--hidden {
    transform: translateY(-100%);
    pointer-events: none;
}

.top-bar {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    background: #656155;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 8px 0;
    font-size: 0.8rem;
    color: #ffffff;
    text-align: center;
    transition:
        background-color 0.22s ease,
        color 0.22s ease,
        border-color 0.22s ease;
}

/* Giriş/çıkış bildirimi (tüm sayfalarda) */
.auth-flash {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, #ebe4db 0%, #e5ddd2 100%);
    color: var(--text-primary);
    text-align: center;
    padding: 0.45rem 1rem;
    font-size: 0.82rem;
    border-bottom: 1px solid var(--border-subtle);
}

.site-header {
    position: relative;
    z-index: 2;
    padding: 1.3rem 3.5rem 1rem;
    transition: background-color 0.22s ease, box-shadow 0.22s ease;
}

/* İç sayfalar: header her zaman opak */
body:not(.page-home) .site-header {
    background-color: #fdfaf6;
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid var(--border-subtle);
}

/* Ana sayfa (hero üstü): şeffaf şerit */
body.page-home .site-header {
    background-color: transparent;
    border-bottom: none;
    box-shadow: none;
}

/* Ana sayfa: hamburger menü açıkken header iç sayfadaki gibi beyaz */
body.page-home.site-drawer-open .site-header {
    background-color: #fdfaf6;
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid var(--border-subtle);
}

body.page-home.site-drawer-open .site-header__logo,
body.page-home.site-drawer-open .nav-icons .icon-link {
    color: var(--text-primary);
}

body.page-home.site-drawer-open .site-header__icon-btn,
body.page-home.site-drawer-open .site-header__icon-btn:hover {
    color: var(--text-primary);
}

body.page-home.site-drawer-open .menu-btn span {
    background: var(--text-primary);
}

.site-header__inner {
    max-width: none;
    width: 100%;
    margin-inline: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.site-header__left {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    z-index: 2;
}

/* Hamburger yan panel — soldan kayarak açılır */
.site-drawer {
    position: fixed;
    inset: 0;
    z-index: 300;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    direction: ltr;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.site-drawer.is-open {
    visibility: visible;
    opacity: 1;
}

.site-drawer__backdrop {
    position: absolute;
    top: var(--site-head-offset, 108px);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 24, 18, 0.45);
    backdrop-filter: blur(2px);
    pointer-events: none;
}

.site-drawer__panel {
    position: absolute;
    left: 0;
    right: auto;
    top: var(--site-head-offset, 108px);
    height: calc(100dvh - var(--site-head-offset, 108px));
    width: min(90vw, 320px);
    max-width: 100%;
    background: #fdfaf6;
    box-shadow: 8px 0 32px rgba(0, 0, 0, 0.12);
    border-right: 1px solid var(--border-subtle);
    /* Kapalı: ekranın sol dışında */
    transform: translate3d(-100%, 0, 0);
    will-change: transform;
    transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1);
    display: flex;
    flex-direction: column;
    pointer-events: none;
}

.site-drawer.is-open .site-drawer__panel {
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
}

.site-drawer.is-open .site-drawer__backdrop {
    pointer-events: auto;
}

.site-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1rem 1rem;
    border-bottom: 1px solid var(--border-subtle);
    flex-shrink: 0;
}

.site-drawer__title {
    font-family: "Poppins", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-primary);
}

.site-drawer__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    border-radius: 0.25rem;
    transition: background 0.15s ease;
}

.site-drawer__close:hover {
    background: rgba(62, 51, 37, 0.08);
}

.site-drawer__close-icon {
    font-size: 1.75rem;
    line-height: 1;
    font-weight: 300;
}

.site-drawer__list {
    list-style: none;
    margin: 0;
    padding: 1rem 0 1.5rem;
}

.site-drawer__list li {
    margin: 0;
    border-bottom: 1px solid rgba(225, 214, 200, 0.6);
}

.site-drawer__link {
    display: block;
    padding: 1rem 1.25rem;
    font-family: "Poppins", sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--text-primary);
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.site-drawer__link:hover {
    background: rgba(195, 154, 107, 0.12);
    color: var(--accent);
}

body.site-drawer-open {
    overflow: hidden;
}

/* Sepet yan paneli — sağdan açılır */
.site-cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 320;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.site-cart-drawer.is-open {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
}

.site-cart-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(30, 24, 18, 0.4);
    backdrop-filter: blur(2px);
}

.site-cart-drawer__panel {
    position: absolute;
    right: 0;
    left: auto;
    top: 0;
    bottom: 0;
    width: min(90vw, 380px);
    max-width: 100%;
    background: #fdfaf6;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.14);
    border-left: 1px solid var(--border-subtle);
    transform: translate3d(100%, 0, 0);
    will-change: transform;
    transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1);
    display: flex;
    flex-direction: column;
}

.site-cart-drawer.is-open .site-cart-drawer__panel {
    transform: translate3d(0, 0, 0);
}

.site-cart-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem 0.9rem;
    border-bottom: 1px solid var(--border-subtle);
    flex-shrink: 0;
}

.site-cart-drawer__flash {
    margin: 0;
    padding: 0.65rem 1rem;
    font-size: 0.8rem;
    text-align: center;
    color: #2d4a3e;
    background: rgba(45, 74, 62, 0.09);
    border-bottom: 1px solid rgba(45, 74, 62, 0.16);
}

.site-cart-drawer__title {
    font-family: "Poppins", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-primary);
}

.site-cart-drawer__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    border-radius: 0.25rem;
    transition: background 0.15s ease;
}

.site-cart-drawer__close:hover {
    background: rgba(62, 51, 37, 0.08);
}

.site-cart-drawer__close-icon {
    font-size: 1.75rem;
    line-height: 1;
    font-weight: 300;
}

.site-cart-drawer__body {
    padding: 0.9rem 1rem 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.site-cart-drawer__empty-title {
    margin: 0 0 1rem;
    font-family: "Poppins", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-primary);
}

.site-cart-drawer__status {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.site-cart-drawer__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow-y: auto;
    padding-right: 0.1rem;
}

.site-cart-drawer__item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 0.65rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(225, 214, 200, 0.6);
}

.site-cart-drawer__thumb-wrap {
    display: block;
}

.site-cart-drawer__thumb {
    width: 72px;
    height: 90px;
    object-fit: cover;
    border: 1px solid var(--border-subtle);
    background: #ebe4dc;
}

.site-cart-drawer__thumb-ph {
    display: grid;
    place-items: center;
    width: 72px;
    height: 90px;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    border: 1px solid var(--border-subtle);
    background: #ebe4dc;
    text-align: center;
    padding: 0.3rem;
}

.site-cart-drawer__item-main {
    min-width: 0;
}

.site-cart-drawer__item-top {
    display: flex;
    justify-content: space-between;
    gap: 0.45rem;
    align-items: flex-start;
}

.site-cart-drawer__item-name {
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text-primary);
}

.site-cart-drawer__item-price {
    flex-shrink: 0;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
}

.site-cart-drawer__qty-row {
    margin-top: 0.55rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.site-cart-drawer__mini-form {
    margin: 0;
}

.site-cart-drawer__qty-btn {
    min-width: 26px;
    height: 26px;
    border: 1px solid var(--border-subtle);
    border-radius: 0.2rem;
    background: #fff;
    color: var(--text-primary);
    cursor: pointer;
}

.site-cart-drawer__qty-value {
    min-width: 1.35rem;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
}

.site-cart-drawer__mini-form--remove {
    margin-left: auto;
}

.site-cart-drawer__remove-btn {
    min-width: 26px;
    height: 26px;
    border: 1px solid transparent;
    border-radius: 0.2rem;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
}

.site-cart-drawer__remove-btn:hover {
    color: #8b2942;
    border-color: #e5c7c7;
    background: #fdf5f5;
}

.site-cart-drawer__summary {
    margin-top: auto;
    border-top: 1px solid var(--border-subtle);
    padding-top: 0.8rem;
}

.site-cart-drawer__subtotal {
    margin: 0 0 0.7rem;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.7rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.site-cart-drawer__subtotal strong {
    font-size: 1rem;
    color: var(--text-primary);
}

.site-cart-drawer__empty-note {
    margin: 1.2rem 0 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.site-cart-drawer__login-link {
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: underline;
}

.site-cart-drawer__login-link:hover {
    color: var(--accent);
}

.site-confirm-modal[hidden] {
    display: none !important;
}

.site-confirm-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.site-confirm-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.site-confirm-modal__dialog {
    position: relative;
    width: min(430px, 100%);
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: 0.45rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
    padding: 1rem;
}

.site-confirm-modal__title {
    margin: 0 0 0.45rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.site-confirm-modal__text {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.site-confirm-modal__actions {
    margin-top: 0.9rem;
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}

.site-confirm-modal__btn {
    min-height: 38px;
    border-radius: 0.25rem;
    border: 1px solid transparent;
    padding: 0.45rem 0.9rem;
    font-size: 0.86rem;
    font-weight: 600;
    cursor: pointer;
}

.site-confirm-modal__btn--ghost {
    background: #fff;
    border-color: var(--border-subtle);
    color: var(--text-primary);
}

.site-confirm-modal__btn--primary {
    background: var(--text-primary);
    color: #fff;
}

body.site-confirm-modal-open {
    overflow: hidden;
}

.site-cart-drawer__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    padding: 0.72rem 0.95rem;
    border-radius: 0.25rem;
    border: 1px solid transparent;
    font-family: "Poppins", sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.site-cart-drawer__btn + .site-cart-drawer__btn {
    margin-top: 0.55rem;
}

.site-cart-drawer__btn--primary {
    background: #2a2218;
    border-color: #2a2218;
    color: #fdfaf6;
}

.site-cart-drawer__btn--primary:hover {
    background: #1a1510;
}

.site-cart-drawer__btn--ghost {
    background: transparent;
    border-color: #3e3325;
    color: #3e3325;
}

.site-cart-drawer__btn--ghost:hover {
    background: rgba(62, 51, 37, 0.06);
}

body.site-cart-drawer-open {
    overflow: hidden;
}

.site-header__logo {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-primary);
}

body.page-home .site-header__logo {
    color: #ffffff;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-header__icon-btn {
    background: transparent;
    border: none;
    padding: 4px;
    margin: 0;
    cursor: pointer;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.site-header__icon-btn--bag {
    font-size: 1.3rem;
}

.site-header__icon-btn:hover {
    color: var(--text-primary);
}

body.page-home .site-header__icon-btn,
body.page-home .site-header__icon-btn:hover {
    color: #ffffff;
}

/* Yukarı kaydırınca: sadece menü şeridi beyaz; üst bildirim rengi aynı kalır */
.site-head.site-head--scrolled {
    background-color: transparent;
    box-shadow: none;
}

.site-head.site-head--scrolled .top-bar {
    background: #656155;
    color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.site-head.site-head--scrolled .site-header {
    background-color: #ffffff;
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.07);
}

.site-head.site-head--scrolled .site-header__logo,
.site-head.site-head--scrolled .nav-icons .icon-link {
    color: var(--text-primary);
}

.site-head.site-head--scrolled .menu-btn span {
    background: var(--text-primary);
}

.site-head.site-head--scrolled .site-header:hover {
    background-color: #ffffff;
    box-shadow: none;
}

.site-head.site-head--scrolled .site-header:hover .site-header__logo,
.site-head.site-head--scrolled .site-header:hover .nav-icons .icon-link {
    color: var(--text-primary);
}

.site-head.site-head--scrolled .site-header:hover .menu-btn span {
    background: var(--text-primary);
}

/* Ana sayfa — en üstte: hero üzerinde şeffaf; hover ile beyaz (scroll yokken) */
body.page-home .site-head:not(.site-head--scrolled) .site-header:hover {
    background-color: #ffffff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

body.page-home .site-head:not(.site-head--scrolled) .site-header:hover .site-header__icon-btn {
    color: #000000;
}

body.page-home .site-head:not(.site-head--scrolled) .site-header:hover .site-header__logo {
    color: #000000;
}

body.page-home .site-head:not(.site-head--scrolled) .site-header:hover .nav-icons .icon-link {
    color: #000000;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-link {
    position: relative;
    color: var(--text-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

body.page-home .icon-link {
    color: #ffffff;
}

.icon-link svg {
    display: block;
}

.cart-badge {
    position: absolute;
    right: -8px;
    top: -7px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--accent, #c39a6b);
    color: #fdfaf6;
    font-size: 10px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

/* MENU BUTTON (HAMBURGER) */

.menu-btn {
    position: relative;
    width: 24px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-right: 8px;
}

.menu-btn span {
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 999px;
    transform-origin: center;
    transition: transform 0.3s ease, opacity 0.25s ease, background 0.2s ease;
}

body.page-home .menu-btn span {
    background: #ffffff;
}

.menu-btn span:nth-child(1) {
    top: 4px;
}

.menu-btn span:nth-child(2) {
    top: 8px;
}

.menu-btn span:nth-child(3) {
    top: 12px;
}

.menu-btn[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

.menu-btn[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.4);
}

.menu-btn[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
}

body.page-home .site-head:not(.site-head--scrolled) .site-header:hover .menu-btn span {
    background: #000000;
}

/* HERO */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-inline: 0;
    /* Sabit üst şerit (bildirim + header) içeriğin üstünü kapatmasın */
    padding-top: 6.75rem;
    padding-bottom: 3rem;
    color: var(--text-primary);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 800ms ease;
    z-index: -2;
}

.hero__bg.is-active {
    opacity: 1;
}

/* PRODUCTS */

.products {
    padding: 3rem 2rem 4rem;
    background-color: var(--content-bg);
}

.products__inner {
    max-width: none;
    width: 100%;
    margin: 0;
}

.products__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr);
    gap: 2.2rem;
    align-items: stretch;
}

.products__image-column {
    border-radius: 24px;
    overflow: hidden;
}

.products__hero-image {
    width: 100%;
    height: 100%;
    min-height: 700px;
    background-image: url("../img/hero-3.jpg");
    background-size: cover;
    background-position: center;
}

.products__cards-column {
    flex: 1;
    min-height: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.product-card {
    display: grid;
    grid-template-columns: 1.1fr 1.6fr;
    align-items: stretch;
    gap: 0;
    border-radius: 20px;
    padding: 4px 8px;
    overflow: hidden;
}

.product-card--light {
    background-color: #e2dfda; /* Ürün 1 */
}

.product-card--dark {
    background-color: #a0907a; /* Ürün 2 */
}

.product-card__content {
    flex: 1;
    min-width: 0;
    padding: 32px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.product-card__thumb {
    width: 100%;
    height: 100%;
    min-height: 220px;
    background-size: cover;
    background-position: center 75%;
}

.product-card__thumb--first {
    background-image: url("../img/product/product-2.jpg");
}

.product-card__thumb--second {
    background-image: url("../img/product/product-3.jpg");
}

.product-card__title {
    margin: 0;
    font-family: "Outfit", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

.product-card__desc {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #5a5a5a;
}

.product-card__button {
    flex-shrink: 0;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-primary);
    background: transparent;
    border: 1.5px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.product-card__button:hover {
    background-color: #ece1d4;
    border-color: rgba(0, 0, 0, 0.35);
}

.products__text {
    margin-top: auto;
    max-width: 480px;
}

.products__text-title {
    margin: 0 0 0.5rem;
    font-size: 1.4rem;
}

.products__text-body {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* PRODUCTS GRID (ALT KISIM) */

.products-grid {
    margin-top: 3rem;
}

.products-grid__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.products-grid__title {
    margin: 0;
    font-size: 1.2rem;
}

.products-grid__nav {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.products-grid__arrow {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(62, 51, 37, 0.22);
    background: #fff;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, opacity 0.15s ease;
}

.products-grid__arrow:hover {
    background: rgba(62, 51, 37, 0.06);
    border-color: rgba(62, 51, 37, 0.38);
}

.products-grid__arrow:disabled {
    opacity: 0.45;
    cursor: default;
}

.products-grid__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.products-grid__viewport::-webkit-scrollbar {
    display: none;
}

.products-grid__list {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.2rem;
}

.products-grid__list > .products-grid__card {
    flex: 0 0 calc((100% - (1.2rem * 2.5)) / 3.5);
    max-width: calc((100% - (1.2rem * 2.5)) / 3.5);
}

.products-grid__card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

a.products-grid__card--link {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

a.products-grid__card--link:hover {
    opacity: 1;
}

/* Ürün kartı: iki görsel varsa hover’da ikinciye geçiş */
.products-grid__image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    margin-bottom: 1rem;
    overflow: hidden;
    background-color: #e2dfda;
}

.products-grid__image {
    position: absolute;
    inset: 0;
    border-radius: 0;
    background-color: #e2dfda;
    background-size: cover;
    background-position: center;
}

.products-grid__image--secondary {
    opacity: 0;
    transition: opacity 0.45s ease;
    z-index: 1;
}

.products-grid__image-wrap--dual:hover .products-grid__image--secondary {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .products-grid__image--secondary {
        transition-duration: 0.05s;
    }
}

.products-grid__name {
    margin: 0;
    font-family: "Outfit", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.products-grid__body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-top: 0.35rem;
}

.products-grid__desc {
    margin: 0;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.products-grid__price {
    margin: 0.35rem 0 0;
    font-size: 0.85rem;
    font-weight: 500;
}

/* VIDEO STRIP */

.video-strip {
    margin-top: 1.5rem;
}

.video-strip__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.video-strip__title {
    margin: 0;
    font-size: 1.4rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.video-strip__nav {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.video-strip__arrow {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(62, 51, 37, 0.22);
    background: #fff;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, opacity 0.15s ease;
}

.video-strip__arrow:hover {
    background: rgba(62, 51, 37, 0.06);
    border-color: rgba(62, 51, 37, 0.38);
}

.video-strip__arrow:disabled {
    opacity: 0.45;
    cursor: default;
}

.video-strip__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.video-strip__viewport::-webkit-scrollbar {
    display: none;
}

.video-strip__row {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.75rem;
}

.video-strip__row > .video-card {
    flex: 0 0 calc((100% - (0.75rem * 3.5)) / 4.5);
    max-width: calc((100% - (0.75rem * 3.5)) / 4.5);
}

.video-card {
    position: relative;
}

.video-card__thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    /* Video yüklenemezse (#ddd) — dosya yok / URL hatalı */
    background-color: #ddd;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Video şeridi: üzerine gelince oynat (play ikonu yok) */
.video-card__thumb--hover-play {
    cursor: pointer;
}

.video-card__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ABOUT PRODUCTS */

.about-products {
    margin-top: 2rem;
    padding: 0 3rem 0;
    background-color: var(--content-bg);
    position: relative;
}

.about-products__cards-wrap {
    background-color: #4f4b40 !important;
}

.about-products__cards-wrap {
    background-color: #656155;
    position: relative;
}

.about-products__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.about-products__left-cards {
    position: absolute;
    z-index: 6;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    width: min(720px, calc(100vw - 2rem));
    max-width: none;
    display: flex;
    gap: 1rem;
    box-sizing: border-box;
}

.about-products__left-card {
    flex: 1 1 0;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 1.25rem 1.25rem;
    border-radius: 16px;
    margin-bottom: 0;
}

.about-products__left-card-title {
    margin: 0 0 0.5rem;
    font-family: "Outfit", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #fff;
}

.about-products__left-card-text {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.about-products__title {
    margin: 0 0 0.5rem;
    font-size: 1.45rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-align: center;
}

.about-products__lead {
    margin: 0 0 1.5rem;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-muted);
    text-align: center;
}

.about-products__cards {
    display: flex;
    gap: 0;
    align-items: stretch;
    min-height: 200px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2; /* kartlar her zaman görselin üstünde */
    background: transparent;
    padding: 1.25rem;
}

.about-products__card {
    flex: 0 1 120px;
    min-width: 100px;
    padding: 1.5rem 1.25rem;
    background-color: #e8e2d9;
    border: 1px solid var(--border-subtle);
    border-right: none;
    cursor: default;
    transition: flex 0.35s ease, min-width 0.35s ease, background-color 0.25s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.about-products__card:last-child {
    border-right: 1px solid var(--border-subtle);
}

.about-products__card-title {
    margin: 0 0 0.5rem;
    font-family: "Outfit", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--text-primary);
    white-space: nowrap;
    flex-shrink: 0;
    /* Kapalı kartlarda yazı yan (dikey) dursun */
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    margin-right: auto;
    margin-bottom: auto;
    transition: margin 0.25s ease;
}

.about-products__card-text {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-muted);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.35s ease, max-height 0.4s ease;
}

/* Açık kart: class ile veya hover ile */
.about-products__card--open,
.about-products__card:hover {
    flex: 1 1 380px;
    min-width: 280px;
    background-color: #f0ebe4;
}

.about-products__card--open .about-products__card-title,
.about-products__card:hover .about-products__card-title {
    white-space: normal;
    writing-mode: horizontal-tb;
    transform: rotate(0deg);
    margin: 0 0 0.5rem;
    margin-right: 0;
    margin-bottom: 0.5rem;
}

.about-products__card--open .about-products__card-text,
.about-products__card:hover .about-products__card-text {
    opacity: 1;
    max-height: 120px;
}

.about-products__cards-wrap {
    position: relative;
    margin-top: 2.5rem;
    min-height: 480px;

    /* Full-bleed — margin calc ile hizala (eski left:-50vw ikilisi scrollbar’da taşma yapabiliyordu) */
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    box-sizing: border-box;

    border-radius: 0;
    overflow: visible; /* görseller taşabilsin; yatay kaydırma html’de kapatıldı */

    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.about-products__feature-img {
    display: none; /* Sadece yazılı yuvarlak kalsın */
    display: block;
    position: absolute;
    z-index: 3;
    border-radius: 0; /* yuvarlak mask */
    /* Görsel doğal boyutunu korusun (taşarsa sadece max genişlik sınırı) */
    width: 360px;
    height: 540px;
    max-width: none;
    object-fit: cover;
    margin: 0;
    /* Alttan background'a sıfır, biraz yukarı taşsın */
    transform: translateY(0);
    right: -20px;
    bottom: 0;
}

.about-products__feature-img--2 {
    z-index: 4;
    left: -100px;
    right: auto;
    bottom: 0;
    width: 540px;
    height: 480px;
    transform: translateY(0);
}

.about-products__circle-text {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    pointer-events: none;
}


.about-products__circle-svg {
    width: 460px;
    height: 460px;
    overflow: visible;
    animation: aboutCircleSpin 16s linear infinite;
    position: absolute;
    right: -120px;
    transform: translateY(-50%);
}

.about-products__circle-text-el {
    fill: none;
    stroke: #ffffff;
    stroke-width: 1;
}

.about-products__circle-text-el textPath {
    fill: #ffffff;
}

.about-products__circle-rotator {
    animation: aboutCircleSpin 1.7s linear infinite;
    transform-origin: center;
}

@keyframes aboutCircleSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* TESTIMONIALS */

.testimonials {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    box-sizing: border-box;
    margin-top: 70px;
    padding: 6.2rem 2.4rem 5.8rem;
    box-sizing: border-box;
    background-color: var(--page-bg);
    background-image: url("../img/review.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.testimonials__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonials__header {
    text-align: center;
    margin-bottom: 2rem;
    color: #fff;
}

.testimonials__title {
    margin: 0 0 0.5rem;
    font-size: 1.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
}

.testimonials__subtitle {
    margin: 0;
    font-size: 1.05rem;
    color: #fff;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.85rem;
}

.testimonial-card {
    background-color: #f0ebe4;
    border-radius: 18px;
    padding: 2rem 2.1rem;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.testimonial-card__text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.8;
    color: #5a5a5a;
}

.testimonial-card__meta {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    font-size: 0.95rem;
    margin-top: auto;
}

.testimonial-card__author {
    font-weight: 600;
}

.testimonial-card__detail {
    color: var(--text-muted);
}

.hero::before {
    content: none;
}

.hero::after {
    content: none;
}

.hero__overlay {
    display: none;
    pointer-events: none;
}

.hero__content {
    position: relative;
    width: min(1120px, calc(100% - 3rem));
    text-align: left;
    padding: 1.75rem 1.75rem;
    border-radius: 1.75rem;
    backdrop-filter: blur(14px);
    background: rgba(245, 242, 237, 0.72);
    border: 1px solid rgba(62, 51, 37, 0.12);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.hero__content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 600ms ease;
}

.hero__content.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero__content--a {
    text-align: center;
    max-width: 720px;
}

/* Slide 2: Banner üstünde beyaz yazı + şeffaf alan */
.hero__content--b {
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
}

.hero__content--b .hero__title,
.hero__content--b .hero__text,
.hero__content--b .hero__feature-title,
.hero__content--b .hero__feature-text {
    color: rgba(255, 255, 255, 0.95);
}

.hero__content--b .hero__text {
    color: rgba(255, 255, 255, 0.82);
}

.hero__content--b .hero__feature-icon {
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.6rem;
}

.hero__content--b .hero__card {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
}

.hero__layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: center;
}

.hero__left {
    padding: 0.5rem 0.25rem;
}

.hero__subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: none;
    color: rgba(62, 51, 37, 0.75);
}

.hero__subtitle::before {
    content: "";
    width: 32px;
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(to right, rgba(62, 51, 37, 0.1), rgba(195, 154, 107, 0.95));
}

.hero__title {
    margin: 0.75rem 0 0.4rem;
    font-size: clamp(1.9rem, 2.6vw, 2.4rem);
    letter-spacing: 0.06em;
    text-transform: none;
    font-weight: 600;
    color: #3e3325;
}

.hero__text {
    margin: 0 0 1.9rem;
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(62, 51, 37, 0.78);
}

.hero__features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1rem;
}

.hero__feature {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 0.75rem;
    align-items: center;
}

.hero__feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(79, 75, 64, 0.12);
    border: 1px solid rgba(79, 75, 64, 0.18);
    color: rgba(79, 75, 64, 0.95);
    font-size: 1.25rem;
}

.hero__feature-title {
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #3e3325;
    margin-bottom: 0.15rem;
}

.hero__feature-text {
    font-size: 0.88rem;
    line-height: 1.45;
    color: rgba(62, 51, 37, 0.72);
}

.hero__right {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
}

.hero__card {
    border-radius: 18px;
    border: 1px solid rgba(62, 51, 37, 0.16);
    background-color: rgba(255, 255, 255, 0.55);
    background-size: cover;
    background-position: center;
    min-height: 160px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.hero__card--1 {
    background-image: url("../img/hero-3.jpg");
}

.hero__card--2 {
    background-image: url("../img/banner.png");
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-width: 9.5rem;
    padding: 0.95rem 1.75rem;
    border-radius: 999px;
    border: 1px solid rgba(249, 115, 22, 0.85);
    background: radial-gradient(circle at top, #f97316, #ea580c);
    color: #0f172a;
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow:
        0 18px 40px rgba(248, 113, 22, 0.8),
        0 0 0 1px rgba(251, 146, 60, 0.35);
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.hero__cta:hover {
    transform: translateY(-1px);
    box-shadow:
        0 24px 55px rgba(248, 113, 22, 0.95),
        0 0 0 1px rgba(248, 250, 252, 0.18);
}

.hero__cta:active {
    transform: translateY(0);
    box-shadow:
        0 14px 30px rgba(248, 113, 22, 0.85),
        0 0 0 1px rgba(15, 23, 42, 0.9);
}

/* FOOTER */

.site-footer {
    position: relative;
    z-index: 10;
    padding: 1.6rem 3.5rem 2rem;
    margin-top: -2.5rem;
}

.site-footer__inner {
    max-width: 1200px;
    margin-inline: auto;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(148, 163, 184, 0.38);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.site-footer__nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.site-footer__link {
    position: relative;
}

.site-footer__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.15rem;
    width: 0;
    height: 1px;
    background: linear-gradient(to right, rgba(148, 163, 184, 0.2), rgba(249, 115, 22, 0.9));
    transition: width 160ms ease;
}

.site-footer__link:hover::after {
    width: 100%;
}

/* Sağ altta sabit yukarı çık (viewport ile birlikte “hareket eder”) */
.scroll-top-fab {
    position: fixed;
    right: 1.25rem;
    bottom: 1.5rem;
    z-index: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    padding: 0;
    border: 1px solid rgba(62, 51, 37, 0.12);
    border-radius: 999px;
    background: rgba(245, 242, 237, 0.95);
    color: var(--text-primary);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.15s ease,
        opacity 0.25s ease;
}

.scroll-top-fab:hover {
    background: #fff;
    color: var(--accent);
    border-color: rgba(195, 154, 107, 0.45);
    box-shadow:
        0 8px 28px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.scroll-top-fab:active {
    transform: translateY(1px);
}

.scroll-top-fab i {
    font-size: 1.35rem;
    line-height: 1;
}

.scroll-top-fab[hidden] {
    display: none !important;
}
