:root {
    --dark: #202020;
    --dark-deep: #151515;
    --gold: #b8ae7b;
    --gold-dark: #948a59;
    --gold-light: #d7ce9a;
    --green: #25301d;
    --cream: #f5f4ee;
    --white: #ffffff;
    --text: #565656;
    --border: #e3e1d9;
    --container: 1160px;
    --header-height: 104px;
    --transition: 220ms ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background: var(--white);
    color: var(--text);
    font-family: "Montserrat", Arial, sans-serif;
    line-height: 1.7;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.site-main {
    min-height: 50vh;
}

/* HEADER */

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(29, 29, 29, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition:
        height var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

.site-header.is-scrolled {
    height: 74px;
    background: rgba(20, 20, 20, 0.98);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

.header-container {
    width: min(calc(100% - 40px), 1260px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-inline: auto;
}

.restaurant-logo {
    width: auto;
    height: auto;
    min-width: 0;
    min-height: 0;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    outline: 0;
    color: inherit;
    line-height: 1;
    text-align: left;
    transform: none;
    box-shadow: none;
    overflow: visible;
}

.restaurant-logo:hover,
.restaurant-logo:focus,
.restaurant-logo:active {
    background: transparent;
    border: 0;
    outline: 0;
    transform: none;
    box-shadow: none;
}

.restaurant-logo::before,
.restaurant-logo::after {
    display: none;
    content: none;
}

.restaurant-logo__image {
    width: auto;
    height: 92px;
    max-width: 150px;
    display: block;
    object-fit: contain;
    object-position: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    outline: 0;
    box-shadow: none;
    transform: none;
    transition: height var(--transition);
}

.site-header.is-scrolled .restaurant-logo__image {
    height: 62px;
}

.main-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-left: auto;
}

.main-navigation a {
    position: relative;
    padding-block: 28px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.55px;
    text-transform: uppercase;
    transition: color var(--transition);
}

.main-navigation a::after {
    position: absolute;
    right: 0;
    bottom: 19px;
    left: 0;
    height: 2px;
    background: var(--gold);
    content: "";
    opacity: 0;
    transform: scaleX(0);
    transition:
        opacity var(--transition),
        transform var(--transition);
}

.main-navigation a:hover,
.main-navigation a.is-active {
    color: var(--gold);
}

.main-navigation a:hover::after,
.main-navigation a.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.reservation-button {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 23px;
    background: var(--gold);
    border-radius: 999px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    transition:
        background var(--transition),
        transform var(--transition);
}

.reservation-button:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links a {
    width: 36px;
    height: 36px;
    display: grid;
    flex: 0 0 36px;
    place-items: center;
    padding: 0;
    color: #ffffff;
    background: transparent;
    border: 0;
    border-radius: 50%;
    line-height: 0;
    transition:
        color var(--transition),
        background var(--transition),
        transform var(--transition);
}

.social-links a:hover,
.social-links a:focus-visible {
    color: var(--gold-light);
    background: rgba(255, 255, 255, 0.08);
    outline: none;
    transform: translateY(-2px);
}

.social-links svg {
    width: 22px;
    height: 22px;
    display: block;
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.social-links .social-icon-dot {
    fill: currentColor;
    stroke: none;
}

.social-links .social-icon-phone {
    fill: currentColor;
    stroke: none;
}

.mobile-menu-button {
    width: 44px;
    height: 44px;
    display: none;
    padding: 9px;
    background: transparent;
    cursor: pointer;
}

.mobile-menu-button span {
    width: 100%;
    height: 2px;
    display: block;
    margin-block: 6px;
    background: #ffffff;
    transition:
        opacity var(--transition),
        transform var(--transition);
}

/* BUTTONS */

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 25px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.75px;
    text-transform: uppercase;
    transition:
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        transform var(--transition);
}

.button:hover {
    transform: translateY(-2px);
}

.button-gold {
    background: var(--gold);
    color: #ffffff;
}

.button-gold:hover {
    background: var(--gold-dark);
}

.button-outline {
    background: rgba(0, 0, 0, 0.14);
    border-color: rgba(255, 255, 255, 0.68);
    color: #ffffff;
}

.button-outline:hover {
    background: #ffffff;
    color: var(--dark);
}

.button-dark {
    background: var(--dark);
    color: #ffffff;
}

.button-dark:hover {
    background: var(--gold);
}

/* HERO */

.hero-section {
    --hero-poster: none;

    position: relative;
    min-height: 100vh;
    display: grid;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            rgba(7, 7, 7, 0.84),
            rgba(7, 7, 7, 0.22)
        ),
        var(--hero-poster) center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0.46)
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-block: 110px;
    color: #ffffff;
}

.hero-eyebrow {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.6px;
    text-transform: uppercase;
}

.hero-content h1 {
    max-width: 800px;
    color: #ffffff;
    font-size: clamp(52px, 7.5vw, 98px);
    font-weight: 900;
    letter-spacing: -4px;
    line-height: 0.94;
    text-transform: uppercase;
}

.hero-content p {
    max-width: 620px;
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 35px;
}

.hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    z-index: 4;
    width: 30px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 999px;
    transform: translateX(-50%);
}

.hero-scroll span {
    position: absolute;
    top: 10px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: #ffffff;
    border-radius: 99px;
    transform: translateX(-50%);
    animation: scrollIndicator 1.8s infinite;
}

@keyframes scrollIndicator {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }

    35% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 17px);
    }
}

/* ORTAK BAŞLIKLAR */

.section-eyebrow {
    display: inline-block;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 800;
}

.section-eyebrow--light {
    color: var(--gold-light);
}

.section-heading {
    max-width: 730px;
    margin-bottom: 44px;
}

.section-heading--center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading h2 {
    margin-top: 8px;
    color: var(--green);
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 900;
    letter-spacing: -2.2px;
    line-height: 1.05;
}

.section-heading p {
    margin-top: 16px;
    color: #777777;
    font-size: 13px;
}

/* HİKÂYE */

.story-section {
    padding-block: 88px;
    background: var(--cream);
}

.story-layout {
    display: grid;
    grid-template-columns: 0.86fr 1.3fr 0.86fr;
    gap: 24px;
}

.story-image {
    min-height: 520px;
    overflow: hidden;
    background: #dddddd;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms ease;
}

.story-image:hover img {
    transform: scale(1.045);
}

.story-card {
    min-height: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 55px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 18px 55px rgba(33, 33, 33, 0.06);
}

.story-card h2 {
    margin-top: 10px;
    color: var(--green);
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 900;
    letter-spacing: -2.5px;
    line-height: 1.02;
}

.story-card p {
    max-width: 620px;
    margin-top: 21px;
    color: #777777;
    font-size: 13px;
}

.story-card .button {
    margin-top: 31px;
}

/* YÖRESEL BÖLÜM */

.regional-section {
    position: relative;
    min-height: 540px;
    display: grid;
    align-items: center;
    background:
        url("https://images.unsplash.com/photo-1555939594-58d7cb561ad1?auto=format&fit=crop&w=2000&q=85")
        center / cover no-repeat;
}

.regional-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(20, 20, 20, 0.96),
        rgba(20, 20, 20, 0.58),
        rgba(20, 20, 20, 0.28)
    );
}

.regional-content {
    position: relative;
    z-index: 2;
    padding-block: 90px;
    color: #ffffff;
}

.regional-content h2 {
    max-width: 750px;
    margin-top: 12px;
    color: #ffffff;
    font-size: clamp(48px, 7vw, 82px);
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 0.98;
    text-transform: uppercase;
}

.regional-content p {
    max-width: 550px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
}

.regional-content .button {
    margin-top: 30px;
}

/* GALERİ */

.home-gallery-section {
    padding-block: 92px;
    background: #ffffff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    min-height: 280px;
    overflow: hidden;
    background: #e4e4e4;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms ease;
}

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(24, 24, 24, 0.67);
    color: #ffffff;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-item__overlay {
    opacity: 1;
}

.gallery-item__overlay small {
    color: var(--gold-light);
}

.section-button {
    margin-top: 38px;
    text-align: center;
}

/* VİDEO */

.video-section {
    padding-block: 88px;
    background: var(--cream);
}

.video-cover {
    position: relative;
    max-width: 900px;
    min-height: 460px;
    margin-inline: auto;
    overflow: hidden;
    background: #222222;
}

.video-cover::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(17, 17, 17, 0.27);
    content: "";
}

.video-cover img,
.video-cover__video {
    width: 100%;
    height: 460px;
    display: block;
    object-fit: fill;
    object-position: center center;
    background: transparent;
}


.video-cover__text {
    position: absolute;
    right: 30px;
    bottom: 28px;
    left: 30px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    color: #ffffff;
}

.video-cover__text span {
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.video-cover__text strong {
    font-size: 19px;
}

/* YORUM */

.testimonial-section {
    padding-block: 85px;
    background: #ffffff;
}

.testimonial-card {
    max-width: 840px;
    text-align: center;
}

.quote-mark {
    display: block;
    height: 65px;
    color: var(--gold);
    font-family: Georgia, serif;
    font-size: 90px;
    line-height: 1;
}

.testimonial-card p {
    color: var(--green);
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 700;
}

.testimonial-card strong {
    display: block;
    margin-top: 25px;
    color: var(--dark);
    font-size: 12px;
    text-transform: uppercase;
}

.testimonial-card > span:last-child {
    display: block;
    color: #999999;
    font-size: 11px;
}

/* FOOTER */

.site-footer {
    padding-top: 58px;
    background: var(--dark);
    color: #ffffff;
}

.footer-logo-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 25px;
}

.footer-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.restaurant-logo--footer {
    width: auto;
    height: auto;
}

.restaurant-logo--footer .restaurant-logo__image {
    height: 88px;
    max-width: 145px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 50px;
    padding-block: 50px;
}

.footer-grid h3 {
    margin-bottom: 15px;
    font-size: 12px;
}

.footer-grid p,
.footer-grid a,
.footer-grid strong {
    display: block;
    color: #a8a8a8;
    font-size: 10px;
}

.footer-grid .footer-instagram-title {
    display: inline-block;
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    transition: color var(--transition);
}

.footer-grid .footer-instagram-title:hover {
    color: var(--gold-light);
}

.footer-instagram {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
}

.footer-instagram a {
    display: block;
    overflow: hidden;
    background: #151515;
}

.footer-instagram img {
    width: 100%;
    height: 58px;
    display: block;
    object-fit: cover;
    transition:
        opacity var(--transition),
        transform var(--transition);
}

.footer-instagram a:hover img {
    opacity: 0.82;
    transform: scale(1.06);
}

.footer-bottom {
    position: relative;
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom p {
    color: #858585;
    font-size: 9px;
}

.go-to-top {
    position: absolute;
    right: 0;
    color: #ffffff;
    font-size: 28px;
}

/* LIGHTBOX */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 50px 80px;
    background: rgba(10, 10, 10, 0.95);
}

.lightbox.is-open {
    display: flex;
}

.lightbox-content {
    max-width: min(1100px, 90vw);
    max-height: 82vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 76vh;
    margin-inline: auto;
    object-fit: contain;
}

.lightbox-content figcaption {
    margin-top: 14px;
    color: #ffffff;
    font-weight: 700;
}

.lightbox-close,
.lightbox-arrow {
    position: absolute;
    z-index: 3;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
}

.lightbox-close {
    top: 20px;
    right: 30px;
    font-size: 45px;
}

.lightbox-arrow {
    top: 50%;
    font-size: 65px;
    transform: translateY(-50%);
}

.lightbox-arrow--left {
    left: 25px;
}

.lightbox-arrow--right {
    right: 25px;
}

/* TABLET */

@media (max-width: 1080px) {
    .main-navigation {
        gap: 18px;
    }

    .social-links {
        display: none;
    }

    .story-layout {
        grid-template-columns: 0.8fr 1.25fr;
    }

    .story-image--right {
        display: none;
    }
}

/* MOBİL MENÜ */

@media (max-width: 850px) {
    :root {
        --header-height: 82px;
    }

    .mobile-menu-button {
        display: block;
        margin-left: auto;
    }

    .main-navigation {
        position: fixed;
        top: var(--header-height);
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        margin: 0;
        padding: 25px;
        background: rgba(25, 25, 25, 0.99);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-20px);
        transition:
            opacity var(--transition),
            transform var(--transition);
    }

    .main-navigation.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .main-navigation a {
        padding: 18px 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 13px;
    }

    .main-navigation a::after {
        display: none;
    }

    .reservation-button {
        display: none;
    }

    .story-layout {
        grid-template-columns: 1fr;
    }

    .story-image--right {
        display: block;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* TELEFON */

@media (max-width: 600px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .header-container {
        width: calc(100% - 26px);
    }

    .restaurant-logo__image {
        height: 68px;
        max-width: 112px;
    }

    .site-header.is-scrolled .restaurant-logo__image {
        height: 58px;
    }

    .hero-section {
        min-height: 720px;
        background-position: 63% center;
    }

    .hero-content h1 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .hero-buttons {
        max-width: 250px;
        flex-direction: column;
    }

    .story-section,
    .home-gallery-section,
    .video-section,
    .testimonial-section {
        padding-block: 68px;
    }

    .story-layout {
        gap: 14px;
    }

    .story-image {
        min-height: 370px;
    }

    .story-card {
        padding: 38px 24px;
    }

    .story-card h2 {
        font-size: 42px;
    }

    .regional-section {
        min-height: 600px;
    }

    .regional-content h2 {
        font-size: 49px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        min-height: 300px;
    }

    .video-cover,
    .video-cover img,
    .video-cover__video {
        min-height: 330px;
        height: 330px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .lightbox {
        padding: 55px 18px;
    }

    .lightbox-arrow {
        display: none;
    }
}
/* HAKKIMIZDA SAYFASI */

.page-hero {
    position: relative;
    min-height: 430px;
    display: grid;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

.page-hero--about {
    background-image:
        url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1900&q=85");
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(15, 15, 15, 0.58),
            rgba(15, 15, 15, 0.78)
        );
}

.page-hero__content {
    position: relative;
    z-index: 2;
    padding-block: 85px;
    color: #ffffff;
    text-align: center;
}

.page-hero__content span {
    display: inline-block;
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.page-hero__content h1 {
    margin-top: 10px;
    color: #ffffff;
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1;
    text-transform: uppercase;
}

.page-hero__content p {
    max-width: 620px;
    margin: 18px auto 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* HAKKIMIZDA DETAY */

.about-detail-section {
    padding-block: 88px;
    overflow: hidden;
    background: #ffffff;
}

.about-detail-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(0, 0.92fr);
    align-items: center;
    gap: clamp(48px, 6vw, 88px);
}

.about-detail-images {
    position: relative;
    min-width: 0;
    min-height: 560px;
}

.about-detail-image {
    overflow: hidden;
    background: #ebe9e1;
}

.about-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.about-detail-image--large {
    width: 82%;
    height: 510px;
    margin: 0;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.09);
}

.about-detail-image--small {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 52%;
    height: 275px;
    margin: 0;
    border: 10px solid #ffffff;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
}

.about-detail-content {
    min-width: 0;
}

.about-detail-content h2 {
    margin-top: 10px;
    color: var(--green);
    font-size: clamp(42px, 5vw, 62px);
    font-weight: 900;
    letter-spacing: -2.5px;
    line-height: 1.04;
}

.about-detail-content p {
    max-width: 640px;
    margin-top: 20px;
    color: #777777;
    font-size: 13px;
}

.about-detail-content blockquote {
    max-width: 640px;
    margin-top: 28px;
    padding: 22px 25px;
    background: var(--cream);
    border-left: 4px solid var(--gold);
    color: var(--green);
    font-size: 15px;
    font-weight: 700;
}

/* DEĞERLERİMİZ */

.values-section {
    padding-block: 90px;
    background: var(--cream);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.value-card {
    min-height: 280px;
    padding: 38px;
    background: #ffffff;
    border: 1px solid var(--border);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.value-card:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    transform: translateY(-6px);
}

.value-card__number {
    display: inline-block;
    color: var(--gold);
    font-size: 14px;
    font-weight: 900;
}

.value-card h3 {
    margin-top: 34px;
    color: var(--green);
    font-size: 22px;
    font-weight: 800;
}

.value-card p {
    margin-top: 13px;
    color: #777777;
    font-size: 12px;
}

/* HAKKIMIZDA ALT ÇAĞRI */

.about-callout-section {
    position: relative;
    min-height: 540px;
    display: grid;
    align-items: center;
    background:
        url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1900&q=85")
        center / cover no-repeat;
}

.about-callout-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(20, 20, 20, 0.94),
            rgba(20, 20, 20, 0.55),
            rgba(20, 20, 20, 0.28)
        );
}

.about-callout-content {
    position: relative;
    z-index: 2;
    padding-block: 90px;
    color: #ffffff;
}

.about-callout-content h2 {
    max-width: 800px;
    margin-top: 12px;
    color: #ffffff;
    font-size: clamp(46px, 6vw, 76px);
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1;
    text-transform: uppercase;
}

.about-callout-content p {
    max-width: 580px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
}

.about-callout-content .button {
    margin-top: 30px;
}

/* HAKKIMIZDA TABLET */

@media (max-width: 850px) {
    .about-detail-grid {
        grid-template-columns: 1fr;
        gap: 58px;
    }

    .about-detail-images {
        width: min(100%, 720px);
        min-height: 535px;
        margin-inline: auto;
    }

    .about-detail-image--large {
        width: 84%;
        height: 480px;
    }

    .about-detail-image--small {
        width: 48%;
        height: 245px;
    }

    .about-detail-content {
        max-width: 720px;
        margin-inline: auto;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        min-height: auto;
    }
}

/* HAKKIMIZDA TELEFON */

@media (max-width: 600px) {
    .page-hero {
        min-height: 380px;
    }

    .page-hero__content h1 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .about-detail-section,
    .values-section {
        padding-block: 64px;
    }

    .about-detail-grid {
        gap: 42px;
    }

    .about-detail-images {
        min-height: 405px;
    }

    .about-detail-image--large {
        width: 90%;
        height: 365px;
    }

    .about-detail-image--small {
        width: 56%;
        height: 195px;
        border-width: 7px;
    }

    .about-detail-content h2 {
        font-size: 42px;
    }

    .about-detail-content blockquote {
        padding: 19px 20px;
        font-size: 14px;
    }

    .about-callout-section {
        min-height: 560px;
    }

    .about-callout-content h2 {
        font-size: 46px;
        letter-spacing: -2px;
    }
}
/* MENÜ SAYFASI */

.page-hero--menu {
    background-image:
        url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1900&q=85");
}

/* MENÜ İÇERİĞİ */

.menu-section {
    padding-block: 95px;
    background: var(--cream);
}

.menu-category + .menu-category {
    margin-top: 90px;
}

.menu-category__heading {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 55px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #d8d6cc;
}

.menu-category__heading h2 {
    margin-top: 6px;
    color: var(--green);
    font-size: clamp(40px, 5vw, 58px);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
}

.menu-category__heading p {
    color: #777777;
    font-size: 13px;
}

.menu-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 65px;
}

.menu-item {
    padding-block: 27px;
    border-bottom: 1px solid #d8d6cc;
}

.menu-item__title-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.menu-item h3 {
    flex: 0 0 auto;
    color: var(--green);
    font-size: 17px;
    font-weight: 800;
}

.menu-item__line {
    flex: 1;
    border-bottom: 1px dotted #aaa58e;
}

.menu-item strong {
    flex: 0 0 auto;
    color: var(--gold-dark);
    font-size: 15px;
    font-weight: 900;
}

.menu-item p {
    max-width: 500px;
    margin-top: 9px;
    color: #858585;
    font-size: 12px;
}

/* MENÜ ALT REZERVASYON BÖLÜMÜ */

.menu-callout-section {
    position: relative;
    min-height: 520px;
    display: grid;
    align-items: center;
    background:
        url("https://images.unsplash.com/photo-1555939594-58d7cb561ad1?auto=format&fit=crop&w=1900&q=85")
        center / cover no-repeat;
}

.menu-callout-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(20, 20, 20, 0.94),
            rgba(20, 20, 20, 0.58),
            rgba(20, 20, 20, 0.3)
        );
}

.menu-callout-content {
    position: relative;
    z-index: 2;
    padding-block: 90px;
    color: #ffffff;
}

.menu-callout-content h2 {
    margin-top: 12px;
    color: #ffffff;
    font-size: clamp(48px, 7vw, 78px);
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1;
    text-transform: uppercase;
}

.menu-callout-content p {
    max-width: 590px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.menu-callout-content .button {
    margin-top: 30px;
}

/* MENÜ TABLET */

@media (max-width: 850px) {
    .menu-category__heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .menu-list {
        grid-template-columns: 1fr;
    }

    .menu-category + .menu-category {
        margin-top: 70px;
    }
}

/* MENÜ TELEFON */

@media (max-width: 600px) {
    .menu-section {
        padding-block: 68px;
    }

    .menu-category + .menu-category {
        margin-top: 58px;
    }

    .menu-category__heading {
        margin-bottom: 15px;
    }

    .menu-category__heading h2 {
        font-size: 42px;
    }

    .menu-item {
        padding-block: 22px;
    }

    .menu-item__title-row {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .menu-item__line {
        display: none;
    }

    .menu-item strong {
        margin-left: auto;
    }

    .menu-callout-section {
        min-height: 540px;
    }

    .menu-callout-content h2 {
        font-size: 48px;
        letter-spacing: -2px;
    }
}
/* GALERİ SAYFASI */

.page-hero--gallery {
    background-image:
        url("https://images.unsplash.com/photo-1559339352-11d035aa65de?auto=format&fit=crop&w=1900&q=85");
}

/* GALERİ İÇERİĞİ */

.gallery-page-section {
    padding-block: 95px;
    background: #ffffff;
}

.gallery-grid--full {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid--full .gallery-item {
    min-height: 320px;
}

.gallery-grid--full .gallery-item:nth-child(2),
.gallery-grid--full .gallery-item:nth-child(5),
.gallery-grid--full .gallery-item:nth-child(8) {
    min-height: 390px;
}

.gallery-grid--full .gallery-item:nth-child(1),
.gallery-grid--full .gallery-item:nth-child(6) {
    grid-row: span 2;
    min-height: 655px;
}

.gallery-grid--full .gallery-item__overlay strong {
    font-size: 18px;
    font-weight: 800;
}

.gallery-grid--full .gallery-item__overlay small {
    margin-top: 4px;
    font-size: 11px;
}

/* GALERİ ALT BÖLÜMÜ */

.gallery-callout-section {
    position: relative;
    min-height: 540px;
    display: grid;
    align-items: center;
    background:
        url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1900&q=85")
        center / cover no-repeat;
}

.gallery-callout-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(20, 20, 20, 0.95),
            rgba(20, 20, 20, 0.58),
            rgba(20, 20, 20, 0.28)
        );
}

.gallery-callout-content {
    position: relative;
    z-index: 2;
    padding-block: 90px;
    color: #ffffff;
}

.gallery-callout-content h2 {
    max-width: 820px;
    margin-top: 12px;
    color: #ffffff;
    font-size: clamp(48px, 7vw, 78px);
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1;
    text-transform: uppercase;
}

.gallery-callout-content p {
    max-width: 580px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.gallery-callout-content .button {
    margin-top: 30px;
}

/* GALERİ TABLET */

@media (max-width: 850px) {
    .gallery-grid--full {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-grid--full .gallery-item,
    .gallery-grid--full .gallery-item:nth-child(1),
    .gallery-grid--full .gallery-item:nth-child(2),
    .gallery-grid--full .gallery-item:nth-child(5),
    .gallery-grid--full .gallery-item:nth-child(6),
    .gallery-grid--full .gallery-item:nth-child(8) {
        grid-row: auto;
        min-height: 340px;
    }
}

/* GALERİ TELEFON */

@media (max-width: 600px) {
    .gallery-page-section {
        padding-block: 68px;
    }

    .gallery-grid--full {
        grid-template-columns: 1fr;
    }

    .gallery-grid--full .gallery-item,
    .gallery-grid--full .gallery-item:nth-child(1),
    .gallery-grid--full .gallery-item:nth-child(2),
    .gallery-grid--full .gallery-item:nth-child(5),
    .gallery-grid--full .gallery-item:nth-child(6),
    .gallery-grid--full .gallery-item:nth-child(8) {
        min-height: 320px;
    }

    .gallery-callout-section {
        min-height: 560px;
    }

    .gallery-callout-content h2 {
        font-size: 46px;
        letter-spacing: -2px;
    }
}
/* İLETİŞİM SAYFASI */

.page-hero--contact {
    background-image:
        url("https://images.unsplash.com/photo-1550966871-3ed3cdb5ed0d?auto=format&fit=crop&w=1900&q=85");
}

/* İLETİŞİM BİLGİ KARTLARI */

.contact-information-section {
    padding-block: 95px;
    background: #f4f4f4;
}

.contact-cards {
    max-width: 980px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    margin-inline: auto;
}

.contact-card {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 38px;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    text-align: center;
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.contact-card:hover {
    z-index: 2;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.contact-card--featured {
    z-index: 1;
    min-height: 330px;
    border-color: transparent;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.12);
}

.contact-card__icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    background: var(--cream);
    border-radius: 50%;
    color: #a82728;
    font-size: 29px;
}

.contact-card h3 {
    margin-top: 20px;
    color: var(--dark);
    font-size: 20px;
    font-weight: 800;
}

.contact-card p,
.contact-card a,
.contact-card strong {
    margin-top: 10px;
    color: #777777;
    font-size: 12px;
}

.contact-card a {
    transition: color var(--transition);
}

.contact-card a:hover {
    color: var(--gold-dark);
}

.contact-card strong {
    color: var(--green);
    font-size: 15px;
}

/* REZERVASYON FORMU */

.contact-form-section {
    padding-block: 100px;
    background: #ffffff;
}

.contact-form-layout {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    align-items: start;
    gap: 80px;
}

.contact-form-intro {
    padding-top: 30px;
}

.contact-form-intro h2 {
    margin-top: 10px;
    color: var(--green);
    font-size: clamp(42px, 5vw, 62px);
    font-weight: 900;
    letter-spacing: -2.5px;
    line-height: 1.04;
}

.contact-form-intro p {
    margin-top: 22px;
    color: #777777;
    font-size: 13px;
}

.contact-form-intro .button {
    margin-top: 30px;
}

.contact-form {
    padding: 42px;
    background: var(--cream);
    border: 1px solid #e4e2d9;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 20px;
    color: var(--dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    margin-top: 9px;
    padding: 15px 16px;
    background: #ffffff;
    border: 1px solid #dcdad1;
    border-radius: 0;
    color: var(--dark);
    outline: none;
    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 174, 123, 0.14);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #a0a0a0;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form select {
    cursor: pointer;
}

.contact-form .button {
    margin-top: 5px;
}

/* KONUM BÖLÜMÜ */

.contact-map-section {
    position: relative;
    min-height: 470px;
    display: grid;
    align-items: center;
    background:
        linear-gradient(
            rgba(245, 244, 238, 0.94),
            rgba(245, 244, 238, 0.94)
        ),
        url("https://images.unsplash.com/photo-1526778548025-fa2f459cd5c1?auto=format&fit=crop&w=1900&q=80")
        center / cover no-repeat;
}

.contact-map-content {
    max-width: 760px;
    padding-block: 85px;
    text-align: center;
}

.contact-map-content h2 {
    margin-top: 10px;
    color: var(--green);
    font-size: clamp(42px, 5vw, 62px);
    font-weight: 900;
    letter-spacing: -2.5px;
    line-height: 1.04;
}

.contact-map-content p {
    max-width: 560px;
    margin: 20px auto 0;
    color: #777777;
    font-size: 13px;
}

.contact-map-content .button {
    margin-top: 28px;
}

/* İLETİŞİM TABLET */

@media (max-width: 850px) {
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-card,
    .contact-card--featured {
        min-height: 250px;
    }

    .contact-form-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-form-intro {
        padding-top: 0;
    }
}

/* İLETİŞİM TELEFON */

@media (max-width: 600px) {
    .contact-information-section,
    .contact-form-section {
        padding-block: 68px;
    }

    .contact-card {
        padding: 30px 22px;
    }

    .contact-form-intro h2,
    .contact-map-content h2 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .contact-form {
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-map-section {
        min-height: 500px;
    }

    .contact-map-content {
        padding-block: 68px;
    }
}
.contact-whatsapp-link {
    margin-top: 20px !important;
    padding: 11px 20px;
    background: var(--gold);
    border-radius: 999px;
    color: #ffffff !important;
    font-size: 10px !important;
    font-weight: 800;
    text-transform: uppercase;
    transition:
        background var(--transition),
        transform var(--transition);
}

.contact-whatsapp-link:hover {
    background: var(--gold-dark);
    color: #ffffff !important;
    transform: translateY(-2px);
}
/* =========================================================
   ANA SAYFA ARKA PLAN VİDEOSU
   ========================================================= */

.hero-section {
    position: relative;
    isolation: isolate;
    background-color: #111111;
}

/*
 * Video, hero bölümünün tamamını kaplar.
 */

.hero-background-video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;

    background:
        var(--hero-poster)
        center center / cover
        no-repeat;

    pointer-events: none;
}

/*
 * Karartma videosunun üzerinde,
 * yazıların altında kalır.
 */

.hero-section .hero-overlay {
    z-index: 1;
}

/*
 * Ana başlık ve butonlar videonun üzerinde kalır.
 */

.hero-section .hero-content {
    position: relative;
    z-index: 2;
}

/*
 * Aşağı kaydırma simgesi en üstte kalır.
 */

.hero-section .hero-scroll {
    z-index: 3;
}

/*
 * Telefonda video ekranı tamamen kaplamaya devam eder.
 */

@media (max-width: 600px) {
    .hero-background-video {
        object-position: center center;
    }
}

/* =========================================================
   HER SAYFADA SABİT WHATSAPP İKONU
   ========================================================= */

/*
 * SVG dosyasının kendi yeşil dairesi, beyaz telefon işareti,
 * konuşma kuyruğu ve gri gölgesi aynen korunur.
 * Bu nedenle ikona border-radius uygulanmaz.
 */

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 2800;

    width: 86px;
    height: 86px;
    display: block;

    padding: 0;
    margin: 0;

    background: transparent;
    border: 0;
    border-radius: 0;
    outline: 0;
    line-height: 0;
    overflow: visible;

    cursor: pointer;

    transition:
        transform var(--transition),
        filter var(--transition);
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
    outline: none;
    transform: translateY(-4px) scale(1.04);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.22));
}

.floating-whatsapp:active {
    transform: translateY(-1px) scale(0.98);
}

.floating-whatsapp img {
    width: 86px;
    height: 86px;
    max-width: none;
    display: block;

    object-fit: contain;
    object-position: center;

    padding: 0;
    margin: 0;

    background: transparent;
    border: 0;
    border-radius: 0;
    outline: 0;
    box-shadow: none;
    filter: none;

    pointer-events: none;
}

@media (max-width: 600px) {
    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
        width: 72px;
        height: 72px;
    }

    .floating-whatsapp img {
        width: 72px;
        height: 72px;
    }
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
    outline: none;
    transform: translateY(-4px) scale(1.06);
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.34));
}

.floating-whatsapp:active {
    transform: translateY(-1px) scale(0.98);
}

.floating-whatsapp img {
    width: 64px;
    height: 64px;
    display: block;

    object-fit: contain;

    padding: 0;
    margin: 0;

    border: 0;
    border-radius: 50%;

    pointer-events: none;
}

@media (max-width: 600px) {
    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 56px;
        height: 56px;
    }

    .floating-whatsapp img {
        width: 56px;
        height: 56px;
    }
}

/* ================================================================
   ANA SAYFA: ADMİN GALERİSİNDEN RASTGELE 6 FOTOĞRAF
   Masaüstünde eşit boyutlu 3 sütun x 2 satır oluşturur.
================================================================ */

.home-gallery-section .home-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
}

.home-gallery-section .home-gallery-item {
    width: 100%;
    min-width: 0;
    min-height: 0;
    aspect-ratio: 4 / 3;
    border: 0;
}

.home-gallery-section .home-gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.home-gallery-empty-state {
    max-width: 760px;
    margin: 0 auto;
    padding: 42px 28px;
    background: #f5f3ec;
    border: 1px solid rgba(28, 28, 28, 0.1);
    text-align: center;
}

.home-gallery-empty-state strong {
    display: block;
    color: #1b2818;
    font-size: 21px;
    font-weight: 800;
}

.home-gallery-empty-state p {
    max-width: 560px;
    margin: 12px auto 0;
    color: #777777;
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 850px) {
    .home-gallery-section .home-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .home-gallery-section .home-gallery-grid {
        grid-template-columns: 1fr;
    }

    .home-gallery-section .home-gallery-item {
        aspect-ratio: 4 / 3;
    }
}

/* ================================================================
   ANA SAYFA - TELEFONLARDA HİKÂYE VE GALERİ BÖLÜMLERİNİ GİZLE

   Amaç:
   - Telefonların dikey görünümünde (767px ve altı) gizler.
   - Telefonların yatay görünümünde (950px genişlik / 500px yükseklik
     sınırına kadar) gizler.
   - Tabletlerde bölümler görünmeye devam eder.
================================================================ */

@media screen and (max-width: 767px),
       screen and (orientation: landscape) and (max-width: 950px) and (max-height: 500px) {
    body.home-page .story-section,
    body.home-page .home-gallery-section,
    .story-section,
    .home-gallery-section {
        display: none !important;
    }
}

/* ================================================================
   TÜM EKRANLARDA SABİT SEPET KISAYOLU

   - Masaüstü, tablet ve telefonda görünür.
   - Sayfa kaydırılsa bile WhatsApp ikonunun üstünde sabit kalır.
   - Sepette en az bir ürün varsa sol üst köşede pembe nokta görünür.
================================================================ */

.floating-cart {
    position: fixed;
    right: 22px;
    bottom: 122px;
    z-index: 2801;

    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    margin: 0;

    color: #ffffff;
    background: #171717;
    border: 2px solid #b8ae7b;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);

    text-decoration: none;
    line-height: 0;
    cursor: pointer;

    transition:
        transform var(--transition),
        background-color var(--transition),
        box-shadow var(--transition);
}

.floating-cart:hover,
.floating-cart:focus-visible {
    color: #ffffff;
    background: #2a2a2a;
    outline: none;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
}

.floating-cart:active {
    transform: translateY(-1px) scale(0.97);
}

.floating-cart svg {
    width: 31px;
    height: 31px;
    display: block;
    overflow: visible;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;

    pointer-events: none;
}

.floating-cart svg circle {
    fill: currentColor;
    stroke: none;
}

/*
 * Sepet doluluk göstergesi.
 * Varsayılan olarak gizli; JavaScript .has-items sınıfını eklediğinde görünür.
 */
.floating-cart__status-dot {
    position: absolute;
    top: -2px;
    left: -2px;
    z-index: 2;

    width: 16px;
    height: 16px;

    display: block;

    border: 3px solid #ffffff;
    border-radius: 50%;
    background: #ff4f9a;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.30),
        0 0 0 3px rgba(255, 79, 154, 0.15);

    opacity: 0;
    visibility: hidden;
    transform: scale(0.45);

    pointer-events: none;

    transition:
        opacity 150ms ease,
        visibility 150ms ease,
        transform 180ms ease;
}

.floating-cart.has-items .floating-cart__status-dot {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

@media screen and (max-width: 600px) {
    .floating-cart {
        right: 16px;
        bottom: 84px;
        width: 56px;
        height: 56px;
    }

    .floating-cart svg {
        width: 27px;
        height: 27px;
    }

    .floating-cart__status-dot {
        width: 14px;
        height: 14px;
        border-width: 2px;
    }
}

/* ================================================================
   GALERİ LIGHTBOX - MOBİL BAŞLIK VE AÇIKLAMA DÜZENİ

   Fotoğraf/video büyütüldüğünde:
   - Başlık ayrı satırda görünür.
   - Açıklama başlığın altında ayrı satırda görünür.
   - Uzun metinler ekran dışına taşmaz.
================================================================ */

.lightbox-caption {
    width: 100%;
}

@media screen and (max-width: 600px) {
    .lightbox {
        padding: 54px 14px 22px;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .lightbox-content {
        width: 100%;
        max-width: calc(100vw - 28px);
        max-height: none;
        margin: 0;
    }

    .lightbox-media {
        width: 100%;
        max-height: calc(100vh - 190px);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .lightbox-media img,
    .lightbox-media video {
        max-width: 100%;
        max-height: calc(100vh - 190px);
        object-fit: contain;
    }

    .lightbox-caption {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 7px;
        margin-top: 14px;
        padding: 0 6px;
        text-align: center;
    }

    .lightbox-caption strong,
    .lightbox-caption span {
        width: 100%;
        display: block;
        margin: 0;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .lightbox-caption strong {
        color: #ffffff;
        font-size: 18px;
        font-weight: 800;
        line-height: 1.35;
    }

    .lightbox-caption span {
        color: rgba(255, 255, 255, 0.82);
        font-size: 14px;
        font-weight: 500;
        line-height: 1.55;
    }

    .lightbox-close {
        top: 8px;
        right: 15px;
    }
}

/* ================================================================
   GALERİ SAYFASI - 24 EŞİT KARE / 3 SÜTUN X 8 SATIR

   - En fazla 24 medya gösterilir.
   - Her satırda 3 medya bulunur.
   - 24 medya bulunduğunda toplam 8 satır oluşur.
   - Önceki masonry / uzun-kısa kart kuralları tamamen sıfırlanır.
   - Fotoğraf ve videolar aynı boyutta kırpılarak gösterilir.
================================================================ */

.gallery-page-section .gallery-grid--full {
    width: 100%;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    grid-auto-flow: row;
    grid-auto-rows: auto;
    align-items: stretch;
    gap: 15px;
}

.gallery-page-section .gallery-grid--full .gallery-item,
.gallery-page-section .gallery-grid--full .gallery-item:nth-child(1),
.gallery-page-section .gallery-grid--full .gallery-item:nth-child(2),
.gallery-page-section .gallery-grid--full .gallery-item:nth-child(5),
.gallery-page-section .gallery-grid--full .gallery-item:nth-child(6),
.gallery-page-section .gallery-grid--full .gallery-item:nth-child(8) {
    width: 100%;
    min-width: 0;
    min-height: 0 !important;
    height: auto !important;

    grid-column: auto !important;
    grid-row: auto !important;

    aspect-ratio: 4 / 3;

    padding: 0;
    border: 0;
    overflow: hidden;
}

/* Controller zaten 24 kayıtla sınırlar.
   Bu kural, farklı bir controller kullanılırsa da 24'ten fazlasını gizler. */
.gallery-page-section
.gallery-grid--full
.gallery-item:nth-child(n + 25) {
    display: none !important;
}

.gallery-page-section .gallery-grid--full .gallery-item img,
.gallery-page-section .gallery-grid--full .gallery-item video {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    border: 0;
}

/* Tabletlerde de 3 sütun korunur. */
@media screen and (max-width: 1024px) {
    .gallery-page-section .gallery-grid--full {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 10px;
    }

    .gallery-page-section .gallery-grid--full .gallery-item,
    .gallery-page-section .gallery-grid--full .gallery-item:nth-child(1),
    .gallery-page-section .gallery-grid--full .gallery-item:nth-child(2),
    .gallery-page-section .gallery-grid--full .gallery-item:nth-child(5),
    .gallery-page-section .gallery-grid--full .gallery-item:nth-child(6),
    .gallery-page-section .gallery-grid--full .gallery-item:nth-child(8) {
        min-height: 0 !important;
        grid-row: auto !important;
        aspect-ratio: 4 / 3;
    }
}

/* Telefonlarda da kullanıcının istediği 3'lü satır düzeni korunur. */
@media screen and (max-width: 600px) {
    .gallery-page-section .container {
        width: 100%;
        padding-inline: 8px;
    }

    .gallery-page-section .gallery-grid--full {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 6px;
    }

    .gallery-page-section .gallery-grid--full .gallery-item,
    .gallery-page-section .gallery-grid--full .gallery-item:nth-child(1),
    .gallery-page-section .gallery-grid--full .gallery-item:nth-child(2),
    .gallery-page-section .gallery-grid--full .gallery-item:nth-child(5),
    .gallery-page-section .gallery-grid--full .gallery-item:nth-child(6),
    .gallery-page-section .gallery-grid--full .gallery-item:nth-child(8) {
        min-height: 0 !important;
        grid-row: auto !important;
        aspect-ratio: 1 / 1;
    }

    .gallery-page-section .gallery-item__overlay {
        padding: 6px;
    }

    .gallery-page-section .gallery-item__overlay strong {
        font-size: 10px;
        line-height: 1.2;
    }

    .gallery-page-section
    .gallery-item__overlay
    .gallery-item__description,
    .gallery-page-section .gallery-item__overlay small {
        display: none;
    }
}

/* ================================================================
   FOOTER - YASAL BİLGİLENDİRME BAĞLANTILARI
================================================================ */

.footer-legal-links {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 160ms ease;
}

.footer-legal-links a:hover,
.footer-legal-links a:focus-visible {
    color: #d8c77f;
}

@media (max-width: 700px) {
    .site-footer .footer-bottom {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 13px;
    }

    .site-footer .footer-bottom > p,
    .site-footer .footer-bottom .footer-legal-links {
        grid-column: 1 / -1;
        justify-self: center;
        text-align: center;
    }

    .site-footer .footer-bottom .go-to-top {
        grid-column: 2;
        grid-row: 1 / span 2;
        align-self: center;
    }
}

/* Masaüstünde sepet ikonunu WhatsApp ikonu ile aynı hizaya getir */
@media screen and (min-width: 601px) {
    .floating-cart {
        right: 44px;
    }
}