:root {
    --white: #ffffff;
    --section-bg: #f8f8f8;
    --heading: #222222;
    --text: #666666;
    --red: #c62828;
    --red-dark: #a61e1e;
    --border: #e5e5e5;
    --shadow: 0 20px 60px rgba(34, 34, 34, 0.09);
    --transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--heading);
    background: var(--white);
    font-family: "DM Sans", sans-serif;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 3px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
}

.language-option {
    min-width: 30px;
    padding: 4px 6px;
    border: 0;
    border-radius: 999px;
    color: var(--text);
    background: transparent;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
}

.language-option.active {
    color: var(--white);
    background: var(--red);
}

@media (max-width: 1050px) and (min-width: 821px) {
    .header .nav-menu {
        gap: 14px;
    }

    .language-option {
        min-width: 25px;
        padding-inline: 3px;
    }
}

html[dir="rtl"] .detail-specifications li {
    padding-right: 16px;
    padding-left: 0;
}

html[dir="rtl"] .detail-specifications li::before {
    right: 0;
    left: auto;
}

html[dir="rtl"] .product-detail-page .product-detail {
    direction: ltr;
}

html[dir="rtl"] .product-detail-page .product-detail-visual {
    direction: ltr;
}

html[dir="rtl"] .product-detail-page .product-detail-content {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .product-detail-page .detail-divider {
    margin-right: 0;
    margin-left: auto;
}

html[dir="rtl"] .product-detail-page .detail-actions {
    direction: rtl;
    justify-content: flex-start;
}

html[dir="rtl"] .fa-arrow-right,
html[dir="rtl"] .fa-arrow-left,
html[dir="rtl"] .fa-chevron-right {
    transform: scaleX(-1);
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.section {
    padding: 100px 0;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 42px;
}

.section-heading h2,
.about-content h2,
.newsletter h2 {
    color: var(--heading);
    font-family: "Playfair Display", serif;
    font-size: clamp(36px, 5vw, 52px);
    line-height: 1.1;
}

.section-heading p {
    max-width: 520px;
    margin-top: 12px;
    color: var(--text);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--heading);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.text-link:hover {
    color: var(--red);
    border-color: var(--red);
}

/* ÜRÜN DETAY SAYFASI */

.product-detail-page {
    background: #f8f7f5;
}

.product-detail-page .header {
    background: var(--white);
}

.product-detail-main {
    min-height: 75vh;
    padding: 110px 0 90px;
}

.detail-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 28px;
    color: var(--text);
    font-size: 12px;
}

.detail-breadcrumb i {
    font-size: 10px;
}

.detail-breadcrumb a:hover {
    color: var(--red);
}

.product-detail {
    display: grid;
    grid-template-columns: 600px minmax(0, 1fr);
    align-items: start;
    gap: clamp(32px, 4vw, 56px);
}

.product-detail-visual {
    width: min(600px, 100%);
    aspect-ratio: 3 / 2;
    background: var(--white);
}

.product-detail-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-content {
    padding-top: 20px;
}

.product-detail-content h1 {
    max-width: 650px;
    margin-top: 12px;
    font-family: "Cormorant Infant", serif;
    font-size: clamp(33px, 3.3vw, 46px);
    font-weight: 700;
    letter-spacing: -0.012em;
    line-height: 1.1;
}

.detail-divider {
    width: 65px;
    height: 2px;
    margin: 24px 0;
    background: var(--red);
}

.detail-specifications h2 {
    margin: 22px 0 8px;
    color: var(--heading);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.025em;
    line-height: 1.3;
}

.detail-specifications h2:first-child {
    margin-top: 0;
}

.detail-specifications ul {
    display: grid;
    gap: 9px;
    max-height: 390px;
    padding-right: 12px;
    overflow-y: auto;
    list-style: none;
}

.detail-specifications li {
    position: relative;
    padding-left: 16px;
    color: #444444;
    font-size: 13px;
    line-height: 1.55;
}

.product-detail-page .detail-specifications p {
    color: #444444;
}

.detail-specifications li::before {
    content: "";
    position: absolute;
    top: .65em;
    left: 0;
    width: 4px;
    height: 4px;
    background: var(--red);
    border-radius: 50%;
}

.detail-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 30px;
}

.detail-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 11px 18px;
    color: var(--red);
    background: var(--white);
    border: 1px solid var(--red);
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition);
}

.detail-back:hover {
    color: var(--white);
    background: var(--red);
    transform: translateY(-2px);
}

.detail-not-found {
    display: none;
    padding: 100px 20px;
    text-align: center;
}

.detail-not-found.show {
    display: block;
}

.detail-not-found i {
    color: var(--red);
    font-size: 42px;
}

.detail-not-found h1 {
    margin: 15px 0 8px;
    font-family: "Playfair Display", serif;
}

.detail-not-found p {
    margin-bottom: 25px;
    color: var(--text);
}

/* REFERANSLAR SAYFASI */

.references-page {
    background: #f8f7f5;
}

.references-main {
    min-height: 70vh;
    padding-top: 72px;
}

.references-hero {
    padding: 24px 0 26px;
    background: linear-gradient(120deg, #f3efed 0%, #fff 72%);
}

.references-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 12px;
    color: var(--text);
    font-size: 12px;
}

.references-breadcrumb i {
    font-size: 8px;
}

.references-breadcrumb a:hover {
    color: var(--red);
}

.references-hero h1 {
    margin-bottom: 8px;
    color: var(--heading);
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 3.5vw, 46px);
    line-height: 1.05;
}

.references-hero .eyebrow {
    margin-bottom: 8px;
    font-size: 10px;
}

.references-hero p {
    max-width: 650px;
    color: var(--text);
    font-size: 13px;
    line-height: 1.55;
}

.references-content {
    padding: 70px 0 95px;
}

.references-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.references-logo-card {
    display: grid;
    place-items: center;
    min-height: 210px;
    padding: 34px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.references-logo-card:hover {
    border-color: rgba(198, 40, 40, .28);
    box-shadow: 0 18px 42px rgba(34, 34, 34, .1);
    transform: translateY(-5px);
}

.references-logo-card img {
    width: min(210px, 85%);
    max-height: 90px;
    object-fit: contain;
}

/* İLETİŞİM SAYFASI */

.contact-page {
    background: #f7f5f3;
}

.contact-main {
    min-height: 72vh;
    padding-top: 72px;
}

.contact-hero {
    padding-top: 34px;
}

.contact-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 26px;
    color: var(--text);
    font-size: 11px;
    text-align: left;
}

.contact-breadcrumb i {
    font-size: 7px;
}

.contact-hero-media {
    position: relative;
    height: clamp(300px, 36vw, 460px);
    overflow: hidden;
    border-radius: 16px;
}

.contact-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .48), rgba(0, 0, 0, .30), rgba(0, 0, 0, .46));
}

.contact-hero-media > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: blur(.35px);
    transform: scale(1.01);
}

.contact-hero-copy {
    position: absolute;
    top: 40%;
    left: 50%;
    z-index: 2;
    width: min(680px, calc(100% - 40px));
    color: var(--white);
    text-align: center;
    transform: translate(-50%, -50%);
}

.contact-hero-copy .eyebrow {
    color: #f05252;
}

.contact-hero h1 {
    margin-bottom: 10px;
    color: var(--white);
    font-family: "Playfair Display", serif;
    font-size: clamp(38px, 4.8vw, 62px);
    line-height: 1.05;
    text-shadow: 0 4px 24px rgba(0, 0, 0, .35);
}

.contact-hero-copy p {
    max-width: 620px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .9);
    font-size: 14px;
    line-height: 1.65;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
    gap: 24px;
    align-items: start;
    padding-top: 34px;
    padding-bottom: 72px;
}

.contact-details,
.contact-form-panel {
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 18px 55px rgba(34, 34, 34, .06);
}

.contact-details {
    display: grid;
    gap: 12px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.contact-detail-item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: start;
    gap: 15px;
    padding: 22px;
    background: #eceae8;
    border-radius: 12px;
    text-align: left;
}

.contact-detail-item + .contact-detail-item {
    border-top: 0;
}

.contact-detail-item > i {
    color: var(--red);
    font-size: 21px;
}

.contact-detail-item h3 {
    margin-bottom: 6px;
    font-family: "Playfair Display", serif;
    font-size: 17px;
}

.contact-detail-item p,
.contact-detail-item a {
    color: var(--text);
    font-size: 12px;
    line-height: 1.6;
}

.contact-detail-item a {
    display: inline-block;
    margin-top: 7px;
    color: var(--red);
    font-weight: 700;
}

.contact-form-panel {
    padding: clamp(30px, 4vw, 48px);
}

.contact-form-panel h2 {
    margin-bottom: 24px;
    font-family: "Playfair Display", serif;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.1;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 20px;
}

.contact-form label {
    display: block;
}

.contact-form label > span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 17px 18px;
    color: var(--heading);
    background: #fff;
    border: 1px solid #dedbd9;
    border-radius: 8px;
    outline: 0;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.contact-form textarea {
    min-height: 135px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(198, 40, 40, .08);
}

.contact-subject,
.contact-message,
.contact-form .button,
.contact-form-status {
    grid-column: 1 / -1;
}

.contact-form .button {
    justify-self: start;
    margin-top: 8px;
}

.contact-form-status {
    min-height: 20px;
    color: var(--text);
    font-size: 12px;
}

.contact-email-directory {
    padding: 64px 0 72px;
    background: #f0eeec;
}

.contact-email-heading {
    max-width: 680px;
    margin-bottom: 34px;
}

.contact-email-heading h2 {
    margin: 8px 0 10px;
    font-family: "Playfair Display", serif;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.12;
}

.contact-email-heading p {
    color: var(--text);
    font-size: 13px;
}

.contact-email-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 38px;
}

.contact-email-list a {
    padding: 13px 0;
    overflow-wrap: anywhere;
    color: #45413f;
    border-bottom: 1px solid #d8d3cf;
    font-size: 13px;
    transition: color .2s ease, border-color .2s ease;
}

.contact-email-list a:hover {
    color: var(--red);
    border-color: var(--red);
}

.contact-location {
    padding: 68px 0 82px;
    background: var(--white);
    text-align: center;
}

.contact-location h2 {
    margin-bottom: 10px;
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 4vw, 48px);
}

.contact-location > .container > p {
    max-width: 650px;
    margin: 0 auto 28px;
    color: var(--text);
    font-size: 13px;
    line-height: 1.65;
}

.contact-map {
    height: 390px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 14px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

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

    .product-detail-content {
        padding-top: 0;
    }
}

@media (max-width: 900px) {
    .references-logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-details {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-email-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .product-detail-main {
        padding: 98px 0 65px;
    }

    .references-main {
        padding-top: 62px;
    }

    .references-hero {
        padding: 22px 0 24px;
    }

    .references-content {
        padding: 42px 0 65px;
    }

    .references-logo-grid {
        grid-template-columns: 1fr;
    }

    .contact-main {
        padding-top: 62px;
    }

    .contact-layout,
    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-details {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .contact-detail-item {
        padding: 20px;
    }

    .contact-email-directory {
        padding: 48px 0 56px;
    }

    .contact-email-list {
        grid-template-columns: 1fr;
    }

    .contact-subject,
    .contact-message,
    .contact-form .button,
    .contact-form-status {
        grid-column: auto;
    }

    .contact-hero {
        padding-top: 24px;
    }

    .contact-hero-media {
        height: 280px;
    }

    .contact-location {
        padding: 48px 0 58px;
    }

    .contact-map {
        height: 320px;
    }

    .detail-breadcrumb {
        overflow: hidden;
        white-space: nowrap;
    }

    .detail-breadcrumb span {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .product-detail-content h1 {
        font-size: 32px;
    }
}

/* ÜRÜNLER SAYFASI — YATAY KOLEKSİYON DÜZENİ */

.catalog-page .catalog-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    width: min(calc(100% - clamp(120px, 17vw, 320px)), 1520px);
    max-width: 1520px;
    margin-inline: auto;
    padding-inline: 0;
}

.catalog-page .catalog-hero .container {
    width: min(calc(100% - clamp(120px, 17vw, 320px)), 1520px);
    max-width: 1520px;
    margin-inline: auto;
    padding-inline: 0;
}

@media (max-width: 820px) {
    .catalog-page .catalog-hero .container {
        width: min(100% - 28px, 1180px);
    }
}

.catalog-intro {
    padding-bottom: 8px;
}

.catalog-intro .eyebrow {
    margin-bottom: 0;
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: 2.4px;
}

.catalog-intro .catalog-breadcrumb {
    margin-bottom: 8px;
}

.catalog-page .catalog-content {
    margin-top: 20px;
}

.catalog-page .catalog-sidebar {
    position: static;
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 0;
    padding: 0 0 12px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #d8d3d0;
}

.catalog-page .catalog-filter-heading {
    flex: 0 0 auto;
    gap: 16px;
    padding: 0;
    border: 0;
}

.catalog-page .catalog-filter-heading h2 {
    font-size: 20px;
}

.catalog-page .catalog-filters {
    display: flex;
    flex: 1 1 auto;
    gap: 8px;
    min-width: 0;
    overflow: visible;
    padding: 0;
    scrollbar-width: none;
}

.catalog-page .catalog-filters::-webkit-scrollbar {
    display: none;
}

.catalog-page .catalog-filter {
    flex: 0 0 auto;
    justify-content: center;
    width: auto;
    min-height: 42px;
    padding: 9px 13px;
    background: transparent;
    border: 0;
    text-align: center;
    white-space: nowrap;
}

.catalog-page .catalog-filter::before {
    top: auto;
    right: 14px;
    bottom: -1px;
    left: 14px;
    width: auto;
    height: 2px;
    border-radius: 0;
    transform: scaleX(0);
}

.catalog-page .catalog-filter.active::before {
    transform: scaleX(1);
}

.catalog-page .catalog-filter:hover,
.catalog-page .catalog-filter.active,
.catalog-page .catalog-filter.active b {
    color: var(--red);
    background: transparent;
}

.catalog-page .catalog-filter b {
    min-width: auto;
    padding-inline: 2px;
    color: #8b8581;
    background: transparent;
}

.catalog-category-menu {
    position: relative;
    flex: 0 0 auto;
}

.catalog-category-menu>.catalog-filter {
    width: 100%;
}

.catalog-filter>i {
    margin-left: 2px;
    color: #8b8581;
    font-size: 9px;
    transition: transform .25s ease, color .25s ease;
}

.catalog-category-menu:not(.is-selection-closed):hover .catalog-filter>i,
.catalog-category-menu:not(.is-selection-closed):focus-within .catalog-filter>i {
    color: var(--red);
    transform: rotate(180deg);
}

.catalog-subcategories {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 100;
    display: grid;
    width: max-content;
    min-width: 245px;
    max-height: 390px;
    padding: 10px 0;
    overflow-y: auto;
    background: var(--white);
    border-top: 2px solid var(--red);
    box-shadow: 0 18px 42px rgba(32, 29, 27, .15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}

.catalog-subcategories::before {
    content: "";
    position: absolute;
    top: -16px;
    right: 0;
    left: 0;
    height: 16px;
}

.catalog-subcategories-right {
    right: 0;
    left: auto;
}

.catalog-category-menu:not(.is-selection-closed):hover .catalog-subcategories,
.catalog-category-menu:not(.is-selection-closed):focus-within .catalog-subcategories {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.catalog-subcategories button {
    position: relative;
    width: 100%;
    padding: 10px 20px;
    color: #3e3a38;
    background: transparent;
    border: 0;
    text-align: left;
    white-space: nowrap;
    cursor: pointer;
    transition: color .2s ease, background-color .2s ease, padding-left .2s ease;
}

.catalog-subcategories button:hover,
.catalog-subcategories button:focus-visible {
    padding-left: 25px;
    color: var(--red);
    background: #faf5f3;
    outline: 0;
}

.catalog-subcategories button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 13px;
    width: 4px;
    height: 4px;
    background: var(--red);
    border-radius: 50%;
    opacity: 0;
    transform: translateY(-50%);
    transition: opacity .2s ease;
}

.catalog-subcategories button:hover::before,
.catalog-subcategories button:focus-visible::before {
    opacity: 1;
}

.catalog-page .catalog-note {
    display: none;
}

.catalog-page .catalog-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 28px 18px;
}

.catalog-page .catalog-card-image {
    height: auto;
    aspect-ratio: 3 / 2;
    padding: 0;
    background: var(--white);
}

.catalog-page .catalog-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.08);
}

.catalog-page .catalog-card:hover .catalog-card-image img {
    transform: scale(1.12);
}

.catalog-page .catalog-card-body h3 {
    font-size: 18px;
}

.catalog-page .catalog-card-body {
    padding-top: 11px;
}

.catalog-page .catalog-card-body h3 {
    min-height: 42px;
    margin: 5px 0;
    font-family: "Cormorant Infant", serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.catalog-page .catalog-card-body a {
    margin-top: 8px;
    padding-top: 9px;
}

.catalog-page .catalog-card-body a i,
.catalog-page .catalog-editorial a i {
    transition: transform .25s ease;
}

.catalog-page .catalog-card-body a:hover i,
.catalog-page .catalog-card-body a:focus-visible i,
.catalog-page .catalog-editorial a:hover i,
.catalog-page .catalog-editorial a:focus-visible i {
    transform: translateX(4px);
}

.catalog-page .catalog-card.catalog-card-reveal {
    animation: catalog-card-reveal .35s ease both;
    animation-delay: var(--reveal-delay, 0ms);
}

@keyframes catalog-card-reveal {
    from {
        opacity: 0;
        transform: translateY(7px) scale(.992);
    }

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

.catalog-editorial {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(340px, 1.1fr);
    min-height: 360px;
    margin-top: 68px;
    overflow: hidden;
    color: var(--white);
    background: #242424;
}

.catalog-editorial-copy {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: clamp(38px, 5vw, 72px);
}

.catalog-editorial-copy h2 {
    max-width: 520px;
    margin: 10px 0 16px;
    color: var(--white);
    font-family: "Playfair Display", serif;
    font-size: clamp(30px, 3.2vw, 47px);
    line-height: 1.08;
}

.catalog-editorial-copy p {
    max-width: 500px;
    color: rgba(255, 255, 255, .68);
    font-size: 14px;
}

.catalog-editorial-copy a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
    padding-bottom: 5px;
    color: var(--white);
    border-bottom: 1px solid var(--red);
    font-size: 12px;
    font-weight: 700;
}

.catalog-editorial-image {
    min-height: 360px;
    padding: 25px;
    background: #e7e4e2;
}

.catalog-editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 1180px) {
    .catalog-page .catalog-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .catalog-page .catalog-layout {
        width: min(100% - 28px, 1180px);
        padding-inline: 0;
    }

    .catalog-page .catalog-sidebar {
        display: block;
    }

    .catalog-page .catalog-filters {
        overflow-x: auto;
        overflow-y: hidden;
    }

    .catalog-subcategories,
    .catalog-filter>i {
        display: none;
    }

    .catalog-page .catalog-filter-heading {
        display: flex;
        margin-bottom: 2px;
    }

    .catalog-page .catalog-filter {
        border-right: 1px solid #ddd8d5;
    }

    .catalog-page .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalog-editorial {
        grid-template-columns: 1fr 1fr;
        min-height: 320px;
        margin-top: 50px;
    }

    .catalog-editorial-image {
        min-height: 320px;
    }
}

@media (max-width: 620px) {
    .catalog-page .catalog-filter-heading h2 {
        font-size: 17px;
    }

    .catalog-page .catalog-filter {
        min-height: 44px;
    }

    .catalog-page .catalog-card-image {
        aspect-ratio: 3 / 2;
        padding: 0;
    }

    .catalog-page .catalog-grid {
        grid-template-columns: 1fr;
    }

    .catalog-editorial {
        grid-template-columns: 1fr;
        margin-top: 42px;
    }

    .catalog-editorial-copy {
        padding: 38px 26px;
    }

    .catalog-editorial-image {
        min-height: 260px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .catalog-page .catalog-card,
    .catalog-page .catalog-card-image img,
    .catalog-page .catalog-card-body a,
    .catalog-page .catalog-card.catalog-card-reveal {
        animation: none;
        transition: none;
    }
}

.categories .text-link {
    position: relative;
    padding-right: 7px;
    border-bottom-color: var(--heading);
    overflow: hidden;
    transition: color 0.3s ease;
}

.categories .text-link::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--red);
    content: "";
    transform: translateX(-105%);
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.categories .text-link:hover::after,
.categories .text-link:focus-visible::after {
    transform: translateX(0);
}

.categories .text-link i {
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.categories .text-link:hover i,
.categories .text-link:focus-visible i {
    transform: translateX(5px);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 0;
    backdrop-filter: blur(15px);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: none;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    transition: min-height .3s ease;
}

.header.scrolled .navbar {
    min-height: 58px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 155px;
    height: auto;
    display: block;
    transition: .3s;
}

.header.scrolled .logo img {
    width: 125px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-link {
    position: relative;
    padding: 25px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--heading);
    transition: color .3s ease, padding .3s ease;
}

.header.scrolled .nav-link {
    padding-block: 18px;
}

.header.scrolled .nav-link::after {
    bottom: 10px;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--red);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 8px;
}

.account-shortcuts { display: flex; align-items: center; gap: 7px; flex: 0 0 auto; }
.account-link { display: inline-flex; min-height: 36px; align-items: center; justify-content: center; padding: 0 12px; border: 1px solid var(--red); border-radius: 999px; background: var(--red); color: #fff; font-size: 12px; font-weight: 700; white-space: nowrap; }
.account-link-secondary { background: #fff; color: var(--red); }
.account-link:hover { background: #7f171d; color: #fff; }
@media (max-width: 1100px) {
    .account-link { min-height: 32px; padding-inline: 9px; font-size: 11px; }
}

.icon-button,
.menu-button {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: var(--heading);
    background: transparent;
    border: 0;
    border-radius: 50%;
    transition: var(--transition);
}

.icon-button:hover,
.menu-button:hover {
    color: var(--white);
    background: var(--red);
}

.menu-button {
    display: none;
}

.search-area {
    max-height: 0;
    overflow: hidden;
    background: var(--white);
    border-top: 0;
    transition: 0.4s ease;
}

.search-area.open {
    max-height: 100px;
    border-top: 1px solid var(--border);
}

.search-content {
    display: flex;
    gap: 14px;
    padding-top: 18px;
    padding-bottom: 18px;
}

.search-content input {
    width: 100%;
    padding: 14px 18px;
    color: var(--heading);
    background: var(--section-bg);
    border: 1px solid transparent;
    outline: none;
}

.search-content input:focus {
    border-color: var(--red);
}

.search-content button {
    width: 48px;
    color: var(--white);
    background: var(--heading);
    border: 0;
}

.hero {
    --hero-compare-position: 0%;
    --hero-image-position: center 72%;
    position: relative;
    min-height: 92vh;
    padding-top: 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--heading);
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--hero-image-position);
}

.hero-compare-image {
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--hero-image-position);
    clip-path: inset(0 calc(100% - var(--hero-compare-position)) 0 0);
}

.hero-compare-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--hero-compare-position);
    z-index: 5;
    width: 2px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.18);
    cursor: ew-resize;
    touch-action: none;
    transform: translateX(-1px);
}

.hero-compare-divider::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 44px;
    content: "";
    transform: translateX(-50%);
}

.hero-compare-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #514842;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
    font-size: 13px;
    transform: translate(-50%, -50%);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.hero-compare-divider:hover .hero-compare-handle,
.hero-compare-divider:focus-visible .hero-compare-handle {
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.28);
    transform: translate(-50%, -50%) scale(1.05);
}

.hero-compare-divider:focus-visible {
    outline: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: rgba(20, 12, 8, 0.18);
}

.hero-content{
    position:relative;
    top:-66px;
    z-index:4;

    width:min(880px, calc(100% - 40px));

    margin-right:auto;
    margin-left:auto;

    padding: 20px;

    text-align:center;

    color:#fff;
}

.hero-content .eyebrow {
    position: relative;
    top: 12px;
    color: var(--white);
    font-weight: 400;
    letter-spacing: 0.24em;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.hero-content h1 {
    margin: 18px 0 24px;
    color: var(--white);
    font-family: "Bodoni Moda", "Playfair Display", serif;
    font-size: clamp(52px, 6.5vw, 86px);
    font-weight: 400;
    font-style: italic;
    letter-spacing: -0.045em;
    line-height: 1.02;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.42), 0 8px 30px rgba(0, 0, 0, 0.28);
}

.hero-content h1 span {
    display: block;
    color: var(--white);
}

.hero-content > p {
    max-width: 620px;
    margin: 0 auto 34px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.hero-actions{
    display:flex;
    justify-content:center;
    gap:15px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 24px;
    border: 1px solid;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.button-primary {
    color: var(--white);
    background: var(--red);
    border-color: var(--red);
}

.button-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-3px);
}

.hero .button-outline {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.8);
}

.hero .button-outline:hover {
    color: var(--heading);
    background: var(--white);
    border-color: var(--white);
}

/* HERO GİRİŞ ANİMASYONU */

.hero-content .eyebrow {
    opacity: 0;
    transform: translateY(18px);
    animation: heroFadeUp 0.7s ease forwards;
    animation-delay: 0.1s;
}

.hero-content h1 {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 0.8s ease forwards;
    animation-delay: 0.25s;
}

.hero-content > p {
    opacity: 0;
    transform: translateY(24px);
    animation: heroFadeUp 0.8s ease forwards;
    animation-delay: 0.45s;
}

.hero-actions {
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s ease forwards;
    animation-delay: 0.65s;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}






.categories {
    background: var(--white);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
    margin-top: 40px;
}

.category-card,
.category-large {
    position: relative;
    height: 430px;
    min-height: 0;
    aspect-ratio: auto;
    overflow: hidden;
    border-radius: 18px;
    background: var(--heading);
    grid-row: auto;
    grid-column: auto;
    box-shadow: 0 14px 35px rgba(34, 34, 34, 0.10);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
    transition: transform 0.7s ease;
}

.category-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(0, 0, 0, 0.58) 34%,
        rgba(0, 0, 0, 0.18) 68%,
        rgba(0, 0, 0, 0) 100%
    );
}

.category-content {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    z-index: 2;
    width: auto;
    padding: 0;
    color: var(--white);
}

.category-content span {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.3px;
    line-height: 1.4;
    text-transform: uppercase;
}

.category-content h3 {
    min-height: 2.36em;
    margin: 0 0 10px;
    color: var(--white);
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.18;
}

.category-content h3::after {
    display: none;
}

.category-heading-split {
    max-width: 210px;
    min-height: 2.36em;
    margin-bottom: 10px;
    font-size: 24px;
}

.category-content .category-heading-split h3 {
    min-height: 0;
    margin: 0;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    color: var(--red);
    background: transparent;
    border: 0;
    backdrop-filter: none;
    font-size: 14px;
    font-weight: 700;
    transition: color 0.3s ease, gap 0.3s ease, transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(34, 34, 34, 0.18);
}

.category-card:hover img {
    transform: scale(1.08);
}

.category-card:hover .category-link,
.category-link:hover {
    color: var(--white);
    gap: 14px;
    transform: translateX(3px);
}

.category-card:nth-child(1) img,
.category-card:nth-child(2) img,
.category-card:nth-child(3) img,
.category-card:nth-child(4) img {
    object-position: center;
}

.products {
    background: var(--section-bg);
}

.products-heading {
    align-items: center;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-button {
    padding: 9px 15px;
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--border);
    font-size: 12px;
    transition: var(--transition);
}

.filter-button:hover,
.filter-button.active {
    color: var(--white);
    background: var(--red);
    border-color: var(--red);
}

.featured-carousel {
    position: relative;
}

.product-grid {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.product-grid::-webkit-scrollbar {
    display: none;
}

.featured-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--heading);
    background: var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .14);
    transform: translateY(-50%);
    transition: var(--transition);
}

.featured-arrow-prev { left: -23px; }
.featured-arrow-next { right: -23px; }
.featured-arrow:hover:not(:disabled) { color: var(--white); background: var(--red); border-color: var(--red); }
.featured-arrow:disabled { opacity: .35; cursor: default; }
.featured-arrow[hidden] { display: none; }

.product-card {
    flex: 0 0 calc((100% - 44px) / 3);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    scroll-snap-align: start;
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-6px);
}

.product-card.hidden {
    display: none;
}

.product-image {
    position: relative;
    height: 300px;
    padding: 0;
    background: var(--section-bg);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 17px;
    left: 17px;
    z-index: 2;
    padding: 7px 10px;
    color: var(--white);
    background: var(--red);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-info {
    padding: 22px;
}

.product-info>span {
    display: block;
    margin-bottom: 8px;
    color: var(--red);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-info h3 {
    min-height: 54px;
    color: var(--heading);
    font-family: "Playfair Display", serif;
    font-size: 20px;
    line-height: 1.35;
}

.product-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 16px;
    color: var(--text);
    border-top: 1px solid var(--border);
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition);
}

.product-link:hover {
    color: var(--red);
}


.benefit-grid article {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 35px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.benefit-grid article:first-child {
    padding-left: 0;
}

.benefit-grid article:last-child {
    padding-right: 0;
    border-right: 0;
}

/* TARİHÇE ZAMAN ÇİZELGESİ */

.timeline-section {
    --timeline-bg: #eee9e7;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    color: var(--white);
    background: var(--timeline-bg);
}

.timeline-heading {
    max-width: 620px;
    margin-bottom: 10px;
}

.timeline-heading .eyebrow {
    color: var(--red);
}

.timeline-heading h2 {
    color: var(--heading);
    font-family: "Playfair Display", serif;
    font-size: clamp(36px, 5vw, 52px);
    line-height: 1.1;
}

.timeline-heading p {
    max-width: 560px;
    margin-top: 15px;
    color: rgba(34, 34, 34, 0.66);
    font-size: 15px;
}

.timeline-scroll {
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    padding: 0 0 5px;
    scrollbar-width: thin;
    scrollbar-color: var(--red) rgba(34, 34, 34, 0.12);
}

.timeline-scroll::-webkit-scrollbar {
    height: 3px;
}

.timeline-scroll::-webkit-scrollbar-track {
    background: rgba(34, 34, 34, 0.12);
    border-radius: 20px;
    margin-inline: clamp(40px, 22vw, 280px);
}

.timeline-scroll::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 20px;
}

.timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    width: 100%;
    min-width: 0;
    height: 355px;
    padding: 0;
}

/* Ortadaki ana beyaz çizgi */

.timeline::before {
    content: "";
    position: absolute;
    top: 160px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(34, 34, 34, 0.3);
}

/* Her tarih alanı */

.timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    min-width: 0;
    height: 355px;
}

/* Yazı kutuları */

.timeline-content {
    position: absolute;
    z-index: 4;
    width: 200px;
    min-height: 0;
}

.timeline-content h3 {
    position: absolute;
    left: 0;
    width: 100%;
    margin: 5px 0 8px;
    color: var(--heading);
    font-family: "Playfair Display", serif;
    font-size: 19px;
    line-height: 1.2;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.timeline-content p {
    position: absolute;
    left: 0;
    width: 100%;
    color: rgba(34, 34, 34, 0.7);
    font-size: 14px;
    line-height: 1.55;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.timeline-year {
    display: inline-block;
    color: var(--red);
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

/* Dikey bağlantı çizgileri */

.timeline-line {
    width: 1px;
    height: 62px;
    background: rgba(34, 34, 34, 0.3);
}

/* Kırmızı noktalar */

.timeline-dot {
    position: relative;
    z-index: 3;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    background: var(--red);
    border: 4px solid var(--timeline-bg);
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--red);
    transition: 0.3s ease;
    cursor: pointer;
}

.timeline-dot:hover,
.timeline-dot:focus-visible,
.timeline-item.is-open .timeline-dot {
    background: var(--heading);
    box-shadow:
        0 0 0 2px var(--red),
        0 0 25px rgba(198, 40, 40, 0.75);
    transform: scale(1.2);
}

.timeline-dot:focus-visible {
    outline: 2px solid var(--heading);
    outline-offset: 5px;
}

.timeline-item:hover .timeline-year {
    color: var(--heading);
}

/* Başlık ve açıklama ilgili noktaya tıklanınca görünür. */

.timeline-item.is-open .timeline-content h3,
.timeline-item.is-open .timeline-content p {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* İlk noktadaki hafif önizleme, zamanların tıklanabilir olduğunu anlatır. */

.timeline-item.show-hint .timeline-content h3,
.timeline-item.show-hint .timeline-content p {
    opacity: 0.12;
    visibility: visible;
    transform: translateY(0);
    animation: timeline-hint-text 1.5s ease-in-out infinite;
}

.timeline-item.show-hint .timeline-dot {
    animation: timeline-hint-pulse 1.5s ease-in-out infinite;
}

@keyframes timeline-hint-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 2px var(--red), 0 0 0 0 rgba(198, 40, 40, 0.38);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 0 2px var(--red), 0 0 0 17px rgba(198, 40, 40, 0);
        transform: scale(1.24);
    }
}

@keyframes timeline-hint-text {
    0%,
    100% {
        opacity: 0.12;
    }

    50% {
        opacity: 0.52;
    }
}

/* Üstte bulunan tarih noktaları */

.timeline-top {
    justify-content: flex-start;
    padding-top: 0;
}

.timeline-top .timeline-content {
    top: 112px;
    margin: 0;
}

.timeline-top .timeline-line {
    position: absolute;
    top: 126px;
    height: 26px;
}

.timeline-top .timeline-dot {
    position: absolute;
    top: 152px;
}

.timeline-top .timeline-content h3 {
    bottom: 36px;
}

.timeline-top .timeline-content p {
    bottom: 66px;
}

/* Uzun 2013 başlığının açıklamayla üst üste gelmesini engeller. */

.timeline-item:nth-child(7) .timeline-content h3 {
    font-size: 17px;
    white-space: nowrap;
}

.timeline-item:first-child .timeline-content {
    left: 0;
}

.timeline-item:last-child .timeline-content {
    right: 0;
}

/* Altta bulunan tarih noktaları */

.timeline-bottom {
    justify-content: flex-start;
    padding-top: 0;
}

.timeline-bottom .timeline-line {
    position: absolute;
    top: 170px;
    height: 26px;
}

.timeline-bottom .timeline-dot {
    position: absolute;
    top: 152px;
}

.timeline-bottom .timeline-content {
    top: 207px;
    margin: 0;
}

.timeline-bottom .timeline-content h3 {
    top: 31px;
}

.timeline-bottom .timeline-content p {
    top: 61px;
}

/* Arapcada yalnizca metin yonu degisir; cizgi ve tarih sirasi Turkceyle ayni kalir. */
html[dir="rtl"] .timeline {
    direction: ltr;
}

html[dir="rtl"] .timeline-content {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .timeline-content h3,
html[dir="rtl"] .timeline-content p {
    right: 0;
    left: auto;
}


.benefit-grid h3 {
    margin-bottom: 3px;
    font-family: "Playfair Display", serif;
    font-size: 19px;
}

.benefit-grid p {
    color: #bdbdbd;
    font-size: 12px;
}

.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 80px;
}

.about-image {
    position: relative;
}

.about-image img {
    height: 480px;
    object-fit: cover;
    object-position: center;
    border-radius: 14px;
}

.year-box {
    display: none;
}

.about-content>p {
    margin: 22px 0;
    color: var(--text);
}

.about-content ul {
    display: grid;
    gap: 14px;
    margin-bottom: 30px;
    list-style: none;
}

.about-content li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--heading);
    font-size: 14px;
    font-weight: 500;
}

.about-content li i {
    display: grid;
    place-items: center;
    width: 25px;
    height: 25px;
    color: var(--white);
    background: var(--red);
    border-radius: 50%;
    font-size: 10px;
}

.legacy-section {
    padding: 78px 0;
    background: #fcf9f8;
}

.legacy-grid {
    display: grid;
    grid-template-columns: 0.8fr 2fr;
    align-items: center;
    gap: clamp(70px, 10vw, 170px);
}

.legacy-title {
    position: relative;
    padding: 16px 0 16px 28px;
    border-left: 4px solid var(--red);
}

.legacy-title h2 {
    color: #171717;
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 2.8vw, 46px);
    line-height: 1;
}

.legacy-title span {
    display: block;
    margin-top: 10px;
    color: var(--red);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.legacy-copy {
    max-width: 820px;
    color: #5f4040;
    font-size: 16px;
    line-height: 1.8;
}

/* REFERANSLAR */

.references-section {
    overflow: hidden;
    padding: 0;
    background: var(--white);
    border-top: 1px solid #ececec;
}

.references-track {
    display: flex;
    width: max-content;
    background: #fff;
    animation: references-flow 28s linear infinite;
    will-change: transform;
}

.references-section:hover .references-track {
    animation-play-state: paused;
}

.references-group {
    display: grid;
    flex: 0 0 100vw;
    grid-template-columns: repeat(5, minmax(210px, 1fr));
    min-width: 1180px;
}

.reference-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    height: 130px;
    padding: 28px clamp(24px, 3vw, 46px);
    background: #fff;
}

.reference-item img {
    display: block;
    width: 140px;
    max-width: 100%;
    height: 56px;
    object-fit: contain;
}

@keyframes references-flow {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .references-track {
        animation-play-state: paused;
    }
}

.footer {
    padding-top: 75px;
    background: var(--section-bg);
}

.whatsapp-float {
    position: fixed;
    right: max(20px, env(safe-area-inset-right));
    bottom: max(20px, env(safe-area-inset-bottom));
    z-index: 1000;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 2px solid rgba(255, 255, 255, .92);
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .24);
    font-size: 31px;
    line-height: 1;
    text-decoration: none;
    transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover {
    background: #1fb85a;
    color: #fff;
    box-shadow: 0 13px 32px rgba(0, 0, 0, .3);
    transform: translateY(-3px);
}

.whatsapp-float:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

@media (max-width: 600px) {
    .whatsapp-float {
        right: max(14px, env(safe-area-inset-right));
        bottom: max(14px, env(safe-area-inset-bottom));
        width: 52px;
        height: 52px;
        font-size: 28px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .whatsapp-float { transition: none; }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.6fr 0.7fr 0.75fr 0.95fr;
    gap: 38px;
    padding-bottom: 60px;
}

.footer-logo img {
    width: 180px;
    height: auto;
}

.footer-brand>p {
    max-width: 330px;
    margin-top: 20px;
    color: var(--text);
    font-size: 13px;
}

.social-links {
    display: flex;
    gap: 9px;
    margin-top: 22px;
}

.social-links a {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    color: var(--heading);
    background: var(--white);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--white);
    background: var(--red);
    border-color: var(--red);
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-column h3 {
    margin-bottom: 10px;
    color: var(--heading);
    font-family: "Playfair Display", serif;
    font-size: 18px;
}

.footer-column a,
.footer-column p {
    color: var(--text);
    font-size: 13px;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--red);
}

.footer-contact a,
.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.footer-contact i {
    margin-top: 4px;
    color: var(--red);
}

.footer-bottom {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 23px 0;
    color: var(--text);
    border-top: 1px solid var(--border);
    font-size: 11px;
}

.footer-bottom div {
    display: flex;
    gap: 25px;
}

.footer-bottom a {
    color: inherit;
}

.footer-bottom a:hover {
    color: var(--red);
}

.footer-credit {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0;
    color: var(--text);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-align: center;
    transform: translate(-50%, -50%);
}

.toast {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 1500;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    color: var(--white);
    background: var(--heading);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(100px);
    transition: 0.4s ease;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast i {
    color: var(--red);
}

/* ÜRÜN KATALOĞU */

.catalog-page {
    background: #f7f5f4;
}

.catalog-page .header {
    background: var(--white);
}

.catalog-hero {
    position: relative;
    padding: 86px 0 8px;
    background: linear-gradient(105deg, #f4f1ef 0%, #fbfaf9 48%, #fff 100%);
    border-bottom: 0;
}

.catalog-hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 34%;
    height: 1px;
    background: var(--red);
    display: none;
}

.catalog-hero .container {
    width: 100%;
    max-width: none;
    margin-left: 0;
    padding-inline: 30px;
}

.catalog-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 7px;
    color: var(--text);
    font-size: 12px;
}

.catalog-breadcrumb a:hover {
    color: var(--red);
}

.catalog-breadcrumb i {
    font-size: 8px;
}

.catalog-hero h1 {
    margin: 2px 0 6px;
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 3.3vw, 44px);
    line-height: 1.04;
    letter-spacing: -.025em;
}

.catalog-hero p {
    max-width: 650px;
    margin-top: 5px;
    color: var(--text);
    font-size: 14px;
}

.catalog-section {
    padding: 92px 0 96px;
    background: #f8f7f5;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 245px minmax(0, 1fr);
    align-items: start;
    gap: 36px;
    width: 100%;
    max-width: none;
    margin-left: 0;
    padding-right: max(28px, calc((100vw - 1180px) / 2));
}

.catalog-sidebar {
    position: sticky;
    top: 105px;
    padding: 6px 28px 30px 30px;
    background: transparent;
    border-right: 1px solid #ddd8d5;
}

.catalog-filter-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid #d8d3d0;
}

.catalog-filter-heading h2 {
    font-family: "Playfair Display", serif;
    font-size: 21px;
}

.catalog-filter-heading button {
    color: var(--red);
    background: transparent;
    border: 0;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity .25s ease;
}

.catalog-filter-heading button:hover {
    opacity: .6;
}

.catalog-filter-heading-actions {
    justify-content: flex-end;
}

.catalog-filters {
    display: grid;
    gap: 2px;
    padding: 14px 0 18px;
}

.catalog-filter {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 12px 8px 12px 15px;
    color: var(--text);
    background: transparent;
    border: 0;
    text-align: left;
    cursor: pointer;
    transition: color .25s ease, background-color .25s ease;
}

.catalog-filter::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 4px;
    height: 4px;
    background: var(--red);
    border-radius: 50%;
    opacity: 0;
    transform: translateY(-50%) scale(0);
    transition: opacity .25s ease, transform .25s ease;
}

.catalog-filter b {
    display: grid;
    place-items: center;
    min-width: 22px;
    height: 20px;
    color: var(--text);
    background: var(--section-bg);
    border-radius: 10px;
    font-size: 10px;
}

.catalog-filter:hover,
.catalog-filter.active {
    color: var(--red);
    background: rgba(198, 40, 40, .035);
}

.catalog-filter.active {
    font-weight: 700;
}

.catalog-filter.active::before {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.catalog-filter.active b {
    color: var(--red);
    background: rgba(198, 40, 40, .09);
}

.catalog-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding-top: 18px;
    color: var(--text);
    border-top: 1px solid var(--border);
    font-size: 11px;
    line-height: 1.55;
}

.catalog-note i {
    margin-top: 3px;
    color: var(--red);
}

.catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
    padding: 0 0 16px;
    background: transparent;
    border-bottom: 1px solid #d8d3d0;
}

.catalog-toolbar>div {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.catalog-toolbar strong {
    color: var(--heading);
    font-family: "Playfair Display", serif;
    font-size: 22px;
}

.catalog-toolbar span {
    color: var(--text);
    font-size: 12px;
}

.catalog-search {
    display: flex;
    align-items: center;
    gap: 10px;
    width: min(300px, 100%);
    padding: 10px 14px;
    background: var(--white);
    border: 1px solid #d8d3d0;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.catalog-search:focus-within {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(198, 40, 40, .08);
}

.catalog-search i {
    color: var(--red);
    font-size: 13px;
}

.catalog-search input {
    width: 100%;
    background: transparent;
    border: 0;
    outline: 0;
    font: inherit;
    font-size: 12px;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 24px;
}

.catalog-card {
    overflow: hidden;
    border-radius: 14px;
    background: transparent;
    border: 0;
    cursor: pointer;
    transition: transform .3s ease;
}

.catalog-card:hover {
    box-shadow: none;
    transform: translateY(-4px);
}

.catalog-card.hidden {
    display: none;
}

.catalog-card-image {
    position: relative;
    display: block;
    height: 275px;
    padding: 24px;
    background: #eeecea;
    border: 1px solid transparent;
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .3s ease, box-shadow .3s ease;
}

.catalog-card:hover .catalog-card-image,
.catalog-card:focus-within .catalog-card-image {
    border-color: #d5cfcc;
    box-shadow: 0 14px 32px rgba(38, 34, 32, .07);
}

.catalog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0.82) contrast(1.04);
    transition: transform 0.45s ease, filter 0.35s ease;
}

.catalog-card:hover .catalog-card-image img {
    transform: scale(1.035);
    filter: brightness(0.94) contrast(1.02);
}

.catalog-card-image>span {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 5px 8px;
    color: var(--red);
    background: rgba(255, 255, 255, .92);
    border-left: 2px solid var(--red);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.catalog-card-body {
    padding: 17px 3px 0;
}

.catalog-card-body small {
    color: var(--red);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.catalog-card-body h3 {
    min-height: 48px;
    margin: 8px 0;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    line-height: 1.25;
}

.catalog-card-body p {
    min-height: 57px;
    color: var(--text);
    font-size: 12px;
    line-height: 1.55;
}

.stock-status,
.detail-stock {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 26px;
    margin: 8px 0 2px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #eaf6ee;
    color: #237440;
    font-size: 11px;
    font-weight: 700;
}

.stock-status {
    display: none;
}

.stock-status.low-stock,
.detail-stock.low-stock {
    background: transparent;
    color: #956200;
}

.stock-status.low-stock {
    margin-top: 2px;
    padding-right: 0;
    padding-left: 0;
}

.stock-status.out-of-stock,
.detail-stock.out-of-stock {
    background: #f5e8e8;
    color: #a22c2c;
}

.order-status {
    min-height: 0 !important;
    margin: 7px 0 0;
    color: #a22c2c !important;
    font-size: 11px !important;
    font-weight: 700;
}

.detail-stock {
    margin: 0 0 22px;
    font-size: 13px;
}

.order-quantity { display: inline-grid; gap: 5px; color: var(--text); font-size: 12px; font-weight: 700; }
.order-quantity input { width: 82px; height: 44px; padding: 0 10px; border: 1px solid #ddd; border-radius: 8px; font: inherit; }
.order-message { margin: 12px 0 0; color: var(--red); font-size: 13px; }
.orders-page { background: #f7f5f2; }
.orders-main { min-height: 100vh; padding-top: 88px; }
.orders-hero { padding: 70px 0 58px; border-bottom: 1px solid #e1dcd7; background: linear-gradient(135deg, #fff 0%, #f3efeb 100%); }
.orders-hero h1 { margin: 12px 0 14px; color: var(--heading); font-family: "Playfair Display", serif; font-size: clamp(42px, 6vw, 72px); line-height: 1; }
.orders-hero p { max-width: 680px; color: var(--text); line-height: 1.7; }
.user-orders { width: min(980px, calc(100% - 40px)); margin: 42px auto 90px; }
.orders-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 22px; }
.orders-shop-link { color: var(--red); font-size: 13px; font-weight: 700; }
.orders-toolbar span { color: var(--text); font-size: 13px; font-weight: 700; }
.orders-message { margin: 12px 0 20px; color: var(--text); }
.orders-message.error { color: var(--red); }
.orders-list { display: grid; gap: 20px; }
.user-order-card { overflow: hidden; border: 1px solid #dfdad5; border-radius: 18px; background: #fff; box-shadow: 0 14px 40px rgba(32, 26, 22, .06); }
.user-order-card header { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 26px; border-bottom: 1px solid #eee9e5; background: #fcfbfa; }
.user-order-card header div { display: grid; gap: 5px; }
.order-number { color: var(--heading); font-family: "Playfair Display", serif; font-size: 22px; font-weight: 700; }
.user-order-card time { color: #817a74; font-size: 12px; }
.order-status-badge { padding: 8px 12px; border-radius: 999px; background: #f1eee9; color: #625d58; font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.order-status-badge.approved, .order-status-badge.completed { background: #e7f5eb; color: #277044; }
.order-status-badge.preparing { background: #fff3d8; color: #8a6115; }
.order-status-badge.cancelled { background: #f8e8e8; color: #9d2e32; }
.order-items { padding: 8px 26px; }
.order-item { display: flex; justify-content: space-between; gap: 20px; padding: 15px 0; border-bottom: 1px solid #eee9e5; color: var(--text); }
.order-item:last-child { border-bottom: 0; }
.order-item strong { flex: 0 0 auto; color: var(--heading); }
.user-order-card footer { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 18px 26px; border-top: 1px solid #eee9e5; background: #fcfbfa; }
.user-order-card footer > span { color: #817a74; font-size: 12px; }
.order-cancel-button, .order-delete-button { min-height: 40px; padding: 0 16px; border: 1px solid #d9aeb0; border-radius: 8px; background: #fff; color: var(--red); font: inherit; font-size: 12px; font-weight: 750; cursor: pointer; }
.order-delete-button { background: var(--red); color: #fff; }
.order-cancel-button:hover { background: #fff5f5; }
.order-delete-button:hover { background: #9d1f25; }
.order-cancel-button:disabled, .order-delete-button:disabled { cursor: wait; opacity: .55; }
@media (max-width: 640px) { .user-order-card header, .user-order-card footer { align-items: flex-start; flex-direction: column; } .order-item { align-items: flex-start; flex-direction: column; gap: 6px; } }

.button.disabled,
.button[aria-disabled="true"] {
    pointer-events: none;
    opacity: .55;
    filter: grayscale(.35);
}

.catalog-card-body a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    padding-top: 12px;
    color: var(--red);
    border-top: 1px solid #ddd8d5;
    font-size: 12px;
    font-weight: 700;
    opacity: .48;
    transform: translateY(3px);
    transition: opacity .25s ease, transform .25s ease, color .25s ease;
}

.catalog-card:hover .catalog-card-body a,
.catalog-card-body a:hover,
.catalog-card-body a:focus-visible {
    opacity: 1;
    transform: translateY(0);
}

.catalog-filter:focus-visible,
.catalog-filter-heading button:focus-visible,
.catalog-card-body a:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 3px;
}

.catalog-empty {
    display: none;
    padding: 80px 20px;
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--border);
    text-align: center;
}

.catalog-empty.show {
    display: block;
}

.catalog-empty i {
    margin-bottom: 15px;
    color: var(--red);
    font-size: 38px;
}

.catalog-empty h3 {
    margin-bottom: 6px;
    color: var(--heading);
    font-family: "Playfair Display", serif;
}

.catalog-pagination {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #d8d3d0;
}

.catalog-pagination.show {
    display: flex;
}

.catalog-pagination button {
    display: grid;
    place-items: center;
    width: 48px;
    height: 42px;
    color: var(--heading);
    background: var(--white);
    border: 1px solid #d8d3d0;
    border-radius: 8px;
    font-size: 18px;
    transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s ease;
}

.catalog-pagination button:hover:not(:disabled) {
    color: var(--white);
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-2px);
}

.catalog-pagination button:disabled {
    cursor: default;
    opacity: .32;
}

.catalog-pagination span {
    min-width: 58px;
    color: var(--text);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

@media (max-width: 1000px) {

    .catalog-layout {
        grid-template-columns: 210px minmax(0, 1fr);
        gap: 24px;
    }

    .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .timeline-scroll {
        overflow-x: auto;
    }

    .timeline {
        grid-template-columns: repeat(8, 190px);
        width: auto;
        min-width: 1520px;
        padding-inline: 20px;
    }

    .timeline::before {
        left: 20px;
        right: 20px;
    }

    .timeline-item {
        min-width: 190px;
    }

    .timeline-item:first-child .timeline-content {
        left: auto;
    }

    .timeline-item:last-child .timeline-content {
        right: auto;
    }

    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    

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

    .product-card {
        flex-basis: calc((100% - 22px) / 2);
    }

    .about-grid {
        gap: 45px;
    }

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

@media (max-width: 820px) {

    .header.scrolled .navbar {
        min-height: 62px;
    }

    .header.scrolled .logo img {
        width: 128px;
    }

    .header.scrolled .nav-menu {
        top: 62px;
        height: calc(100vh - 62px);
    }

    .catalog-hero {
        padding: 86px 0 14px;
    }

    .catalog-layout {
        grid-template-columns: 1fr;
        width: min(100% - 28px, 1180px);
        margin-inline: auto;
        padding-right: 0;
    }

    .catalog-sidebar {
        position: static;
        overflow: hidden;
        padding: 0;
        border-right: 0;
        border-bottom: 1px solid #d8d3d0;
    }

    .catalog-filters {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding: 12px 0 18px;
        scrollbar-width: none;
    }

    .catalog-filters::-webkit-scrollbar {
        display: none;
    }

    .catalog-filter {
        flex: 0 0 auto;
        width: auto;
        min-height: 42px;
        padding: 10px 13px;
        background: transparent;
        border: 0;
        border-right: 1px solid #ddd8d5;
        white-space: nowrap;
    }

    .catalog-filter::before {
        display: none;
    }

    .catalog-filter.active {
        color: var(--red);
        background: rgba(198, 40, 40, .05);
    }

    .catalog-filter-heading {
        padding-top: 2px;
    }

    .catalog-note {
        display: none;
    }

    .catalog-card-body a {
        opacity: 1;
        transform: none;
    }
    .menu-button {
        display: grid;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        right: -100%;
        z-index: 999;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: min(330px, 85%);
        height: calc(100vh - 72px);
        padding: 35px;
        gap: 0;
        background: var(--white);
        box-shadow: -20px 20px 50px rgba(34, 34, 34, 0.12);
        transition: 0.4s ease;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 16px 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-link::after {
        display: none;
    }

    .hero {
        min-height: 680px;
        padding-top: 80px;
    }

    .hero-content {
        padding: 55px 0 40px;
    }

    

    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
        margin-top: 40px;
    }

    .category-card,
    .category-large {
        height: 400px;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .benefit-grid article,
    .benefit-grid article:first-child,
    .benefit-grid article:last-child {
        padding: 0;
        border-right: 0;
    }

    .about-grid,
    .legacy-grid {
        grid-template-columns: 1fr;
    }

    .legacy-grid {
        gap: 38px;
    }

    .year-box {
        right: 20px;
    }

    .references-section {
        overflow: hidden;
    }

    .reference-item {
        height: 118px;
        padding: 24px 30px;
    }
}

@media (max-width: 620px) {

    .catalog-hero .container {
        width: min(100% - 28px, 1180px);
        margin-inline: auto;
        padding-inline: 0;
    }

    .catalog-section {
        padding: 88px 0 65px;
    }

    .catalog-hero {
        padding: 84px 0 12px;
    }

    .catalog-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .catalog-search {
        width: 100%;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .catalog-card-image {
        height: 285px;
    }
    .timeline-section {
    padding: 18px 0 22px;
}

.timeline-heading {
    margin-bottom: 10px;
}

.timeline {
    grid-template-columns: repeat(8, 190px);
    min-width: 1520px;
    height: 335px;
    padding: 0 20px;
}

.timeline::before {
    left: 20px;
    right: 20px;
    top: 150px;
}

.timeline-content {
    width: 180px;
}

.timeline-content h3 {
    font-size: 17px;
}

.timeline-year {
    font-size: 25px;
}

.timeline-item:nth-child(7) .timeline-content h3 {
    font-size: 15px;
}

.timeline-bottom {
    padding-top: 0;
}

.timeline-item {
    height: 335px;
}

.timeline-top .timeline-content {
    top: 102px;
}

.timeline-top .timeline-line {
    top: 116px;
}

.timeline-top .timeline-dot,
.timeline-bottom .timeline-dot {
    top: 142px;
}

.timeline-bottom .timeline-line {
    top: 160px;
}

.timeline-bottom .timeline-content {
    top: 197px;
}

    .category-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .category-card,
    .category-large {
        height: 410px;
    }


    .hero-content {
        width: min(100% - 28px, 760px);
        padding: 45px 0 35px;
    }

    .hero-content > p {
        font-size: 15px;
    }

    .hero-actions {
        gap: 10px;
    }

    .container {
        width: min(100% - 28px, 1180px);
    }

    .section {
        padding: 75px 0;
    }

    .section-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero {
        min-height: 620px;
    }

    

    .hero-content h1 {
        font-size: 48px;
    }

    

    

    

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        flex-basis: 100%;
    }

    .featured-arrow-prev { left: 10px; }
    .featured-arrow-next { right: 10px; }

    .product-image {
        height: 330px;
    }

    .about-image img {
        height: 390px;
    }

    .legacy-section {
        padding: 55px 0;
    }

    .legacy-title {
        padding-left: 22px;
    }

    .references-section {
        padding: 0;
    }

    .reference-item {
        height: 105px;
        padding: 21px 25px;
    }

    .reference-item img {
        width: 125px;
        height: 52px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .footer-bottom div {
        flex-wrap: wrap;
    }

    .footer-credit {
        position: static;
        transform: none;
    }
}

.category-card:focus-visible {
    outline: 3px solid rgba(198, 40, 40, .35);
    outline-offset: 4px;
}

/* HAKKIMIZDA SAYFASI */

.about-page { background: #fff; }
.about-main { overflow: hidden; }
.about-hero {
    position: relative;
    display: flex;
    min-height: 660px;
    align-items: flex-end;
    overflow: hidden;
    background: #171717;
}
.about-hero-image {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15,15,15,.68) 0%, rgba(15,15,15,.38) 48%, rgba(15,15,15,.10) 100%);
}
.about-hero-content {
    position: relative;
    z-index: 1;
    padding-bottom: 130px;
    color: #fff;
    text-align: center;
}
.about-hero-content .eyebrow { color: #ef8a8f; }
.about-hero-content h1 {
    max-width: 720px;
    margin: 0 auto;
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 5.2vw, 68px);
    line-height: 1.02;
    letter-spacing: -.035em;
}
.about-hero-content p {
    max-width: 650px;
    margin: 22px auto 0;
    color: rgba(255,255,255,.8);
    font-size: 16px;
    line-height: 1.7;
}

.about-identity { background: #fff; }
.about-identity-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
    align-items: center;
    gap: clamp(55px, 8vw, 110px);
}
.about-identity-copy h2,
.about-section-heading h2,
.about-achievement-copy h2,
.about-purpose-heading h2 {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -.025em;
}
.about-identity-copy > p {
    margin: 22px 0 0;
    color: var(--text);
    line-height: 1.85;
}
.about-signature {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.about-signature strong {
    color: var(--red);
    font-family: "Playfair Display", serif;
    font-size: 28px;
}
.about-signature span { color: var(--text); font-size: 12px; }
.about-identity-media {
    position: relative;
    min-height: 560px;
    margin: 0;
}
.about-identity-media img {
    height: 560px;
    border-radius: 3px;
    object-fit: cover;
}
.about-identity-media figcaption {
    position: absolute;
    right: -22px;
    bottom: -22px;
    display: grid;
    min-width: 190px;
    padding: 25px;
    background: var(--red);
    color: #fff;
    box-shadow: var(--shadow);
}
.about-identity-media figcaption strong { font-size: 40px; line-height: 1; }
.about-identity-media figcaption span { margin-top: 8px; font-size: 12px; }

.about-story { background: #f7f5f3; }
.about-story-heading {
    margin: 0 auto 45px;
    text-align: center;
}
.about-story-heading h2 {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -.025em;
}
.about-story-copy {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(38px, 6vw, 80px);
}
.about-story-copy p {
    margin: 0;
    color: #55504d;
    font-size: clamp(16px, 1.35vw, 18px);
    line-height: 2;
    text-align: justify;
    text-align-last: left;
    hyphens: auto;
}
.about-story-divider {
    width: 100%;
    height: clamp(300px, 38vw, 520px);
    margin: 0;
    overflow: hidden;
    background: #f8f5f1;
}
.about-story-divider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 72%;
}

.about-history { background: #f7f5f3; }
.about-section-heading { max-width: 720px; margin-bottom: 52px; }
.about-section-heading > p {
    max-width: 600px;
    margin: 18px 0 0;
    color: var(--text);
}
.about-history-scroll { overflow-x: auto; padding: 5px 0 18px; scrollbar-width: thin; }
.about-history-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, minmax(220px, 1fr));
    min-width: 1180px;
    gap: 0;
}
.about-history-track::before {
    content: "";
    position: absolute;
    top: 58px;
    right: 0;
    left: 0;
    height: 1px;
    background: #d9d4d1;
}
.about-history-item {
    position: relative;
    padding: 0 28px 0 0;
}
.about-history-item::before {
    content: "";
    position: absolute;
    top: 51px;
    left: 0;
    width: 15px;
    height: 15px;
    border: 4px solid #f7f5f3;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 1px var(--red);
}
.about-history-item time {
    display: block;
    margin-bottom: 56px;
    color: var(--red);
    font-size: 25px;
    font-weight: 700;
}
.about-history-item h3 {
    margin: 0 0 10px;
    font-family: "Playfair Display", serif;
    font-size: 21px;
}
.about-history-item p {
    margin: 0;
    color: var(--text);
    font-size: 13px;
    line-height: 1.65;
}

.about-achievement { background: #fff; }
.about-achievement-grid {
    display: grid;
    grid-template-columns: minmax(420px, 1fr) minmax(0, .9fr);
    align-items: center;
    gap: clamp(55px, 8vw, 105px);
}
.about-achievement-media { min-height: 570px; }
.about-achievement-media img { height: 570px; object-fit: cover; }
.about-achievement-copy > p {
    margin: 22px 0 0;
    color: var(--text);
    line-height: 1.85;
}
.about-achievement-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    margin-top: 34px;
    background: var(--border);
    border: 1px solid var(--border);
}
.about-achievement-stats div { padding: 24px; background: #fff; }
.about-achievement-stats strong { display: block; color: var(--red); font-size: 30px; }
.about-achievement-stats span { display: block; margin-top: 7px; color: var(--text); font-size: 12px; line-height: 1.5; }

.about-purpose {
    color: var(--heading);
    background: #f3f1ed;
}
.about-purpose-heading {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.about-purpose-heading .eyebrow { color: var(--red); }
.about-purpose-heading h2 {
    position: relative;
    padding-bottom: 25px;
}
.about-purpose-heading h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 70px;
    height: 4px;
    background: var(--red);
    transform: translateX(-50%);
}
.about-purpose-heading > p {
    max-width: 680px;
    margin: 20px auto 0;
    color: var(--text);
    font-size: 16px;
    line-height: 1.75;
}
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 52px;
}
.about-values-grid article {
    min-height: 290px;
    padding: 36px 32px;
    border: 1px solid rgba(27,27,27,.04);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 35px rgba(44,39,34,.06);
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease;
}
.about-values-grid article:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 42px rgba(44,39,34,.11);
}
.about-values-grid article > span {
    display: grid;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    place-items: center;
    border-radius: 10px;
    color: var(--heading);
    background: #e1edda;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
}
.about-values-grid article:nth-child(2) > span {
    background: #ffddd2;
}
.about-values-grid article:nth-child(3) > span {
    background: #e9e7e3;
}
.about-values-grid h3 {
    margin: 24px 0 14px;
    font-family: "Playfair Display", serif;
    font-size: 25px;
}
.about-values-grid p {
    max-width: 245px;
    margin: 0 auto;
    color: var(--text);
    font-size: 15px;
    line-height: 1.7;
}

html[dir="rtl"] .about-hero-overlay {
    background: linear-gradient(270deg, rgba(15,15,15,.68) 0%, rgba(15,15,15,.38) 48%, rgba(15,15,15,.10) 100%);
}
html[dir="rtl"] .about-identity-media figcaption { right: auto; left: -22px; }
html[dir="rtl"] .about-history-track { direction: ltr; }
html[dir="rtl"] .about-history-item { direction: rtl; padding: 0 0 0 28px; text-align: right; }

@media (max-width: 900px) {
    .about-hero { min-height: 570px; }
    .about-identity-grid,
    .about-achievement-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-identity-media,
    .about-identity-media img,
    .about-achievement-media,
    .about-achievement-media img { min-height: 0; height: 480px; }
    .about-achievement-copy { order: -1; }
    .about-story-copy { grid-template-columns: 1fr; gap: 24px; }
    .about-values-grid { grid-template-columns: 1fr; }
    .about-values-grid article { min-height: 200px; }
}

@media (max-width: 620px) {
    .about-hero { min-height: 540px; }
    .about-hero-content { padding-bottom: 90px; }
    .about-hero-content h1 { font-size: 36px; }
    .about-hero-content p { font-size: 14px; }
    .about-identity-media,
    .about-identity-media img,
    .about-achievement-media,
    .about-achievement-media img { height: 360px; }
    .about-identity-media figcaption {
        right: 14px;
        bottom: -18px;
        min-width: 165px;
        padding: 20px;
    }
    html[dir="rtl"] .about-identity-media figcaption { right: auto; left: 14px; }
    .about-section-heading { margin-bottom: 38px; }
    .about-history-track { grid-template-columns: repeat(6, 210px); min-width: 1260px; }
    .about-achievement-stats { grid-template-columns: 1fr; }
    .about-values-grid { margin-top: 38px; }
    .about-story-copy p {
        text-align: left;
        hyphens: none;
    }
}

.contact-form-status.success { color: #277a43; }
.contact-form-status.error { color: var(--red); }
.contact-form .button:disabled { cursor: wait; opacity: .65; }
