/* Font optimizations for Safari/Chrome */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Local Font Definitions */
@font-face {
    font-family: "Monstro";
    src: url("font/monstro/monstro.eot");
    src: url("font/monstro/monstro.eot?#iefix") format("embedded-opentype"),
        url("font/monstro/monstro.woff2") format("woff2"),
        url("font/monstro/monstro.woff") format("woff"),
        url("font/monstro/monstro.ttf") format("truetype"),
        url("font/monstro/monstro.svg#Monstro") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Base Neue Condensed';
    src: url('./font/Base_Neue_Med_Cond-500.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Base Neue Condensed';
    src: url('./font/Base_Neue_SemBd-600.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Base Neue Condensed';
    src: url('./font/Base_Neue_Sup_Cond-700.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Base Neue Expanded';
    src: url('./font/Base_Neue_Sup_Exp-700.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* We will use this single variable font for everything to keep 'İ' characters consistent */

:root {
    --primary-orange: #FAA62C;
    --font-base: 'Monstro', 'Inter', sans-serif;
    --font-accent: 'Monstro', sans-serif;
    --font-nav: 'Monstro', 'Oswald', sans-serif;
}



* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
    /* Safari modern fix */
    position: relative;
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    margin: 0;
}



body {
    font-family: var(--font-base);
    background-color: #BA1114;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    /* Set to hero red to prevent white flashes during scroll gaps */
}


.hero-section {
    background-color: #BA1114;
    min-height: 80vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    z-index: 100;
    /* Hero should always be on top of following sections */
}

.hero-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-shape svg {
    width: 100%;
    height: 100%;
}

.hero-container-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-text-top {
    font-family: 'Monstro', sans-serif;
    font-size: clamp(55px, 11vw, 230px);
    color: #BA1114;
    margin: 0;
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
}

.inline-i {
    height: 0.92em;
    width: auto;
    display: inline-block;
    vertical-align: -0.02em;
    margin: 0 0.01em;
    color: inherit;
}

.hero-box-wrapper {
    background-color: #BA1114;
    padding: 10px 40px 35px 40px;
    margin-top: -5px;
    display: inline-block;
    max-width: 95vw;
}

.hero-text-bottom {
    font-family: 'Monstro', sans-serif;
    filter: url(#noiseFilter);
    font-size: clamp(45px, 9.5vw, 200px);
    color: #FFF;
    margin: 0;
    line-height: 1.1;
    letter-spacing: 0;
    white-space: nowrap;
}





@media (max-width: 1400px) {

    .hero-text-top,
    .hero-text-bottom {
        font-size: clamp(60px, 12vw, 240px) !important;
        line-height: 1.1 !important;
    }
}

@media (max-width: 1200px) {

    .hero-text-top,
    .hero-text-bottom {
        font-size: clamp(50px, 10vw, 180px) !important;
        line-height: 1.1 !important;
    }
}

@media (max-width: 992px) {

    .hero-text-top,
    .hero-text-bottom {
        font-size: clamp(40px, 8vw, 140px) !important;
        line-height: 1.1 !important;
    }

    .map-section {
        padding: 60px 20px;
        background-color: #BA1114;
        /* Kırmızıyı koru  */
    }

    .map-bg-shape {
        display: none !important;
        /* Mobilde SVG şekli kaldır  */
    }

    .hero-section {
        padding: 80px 20px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 20px;
        min-height: 60vh;
        background-color: #FAA62C !important;
        /* Kullanıcı talebi: faa62c  */
    }

    .hero-bg-shape {
        display: none !important;
        /* Mobilde şekil gözükmesin  */
    }

    .hero-text-top,
    .hero-text-bottom {
        font-size: clamp(35px, 8vw, 80px) !important;
        /* Biraz daha küçülttüm  taşmasın */
        line-height: 1.1 !important;
    }

    .hero-box-wrapper {
        padding: 5px 20px 10px 20px;
    }
}

@media (max-width: 480px) {

    .hero-text-top,
    .hero-text-bottom {
        font-size: clamp(30px, 7vw, 55px) !important;
        line-height: 1.1 !important;
    }
}

.main-header {
    background-color: var(--primary-orange);
    height: 85px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    /* Always on top of everything */
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.3);  Removed old border */
}

.main-header.scrolled {
    background-color: #FFFFFF;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 80px;
}


.main-header::after {
    content: '';
    position: absolute;
    bottom: 0px;
    /* Moved lower */
    left: 40px;
    right: 40px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.4);
    z-index: 1;
    transition: background-color 0.4s ease;
}

.main-header.scrolled::after {
    background-color: rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 40px;
    height: 100%;
    position: relative;
    z-index: 2;
}

/* Left Side */
.header-left {
    display: flex;
    align-items: center;
    gap: 70px;
    /* Increased to move icons further right */
    flex: 1;
}

.nav-link {
    color: #8B2E24;
    font-family: 'Monstro', sans-serif;
    font-size: 36.45px;
    font-weight: normal;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 5px 15px;
}

.nav-link-main {
    font-family: 'Monstro', sans-serif;
    color: white;
    text-decoration: none;
    font-size: 36.45px;
    letter-spacing: 0;
    transition: color 0.4s ease;
}

.main-header.scrolled .nav-link-main {
    color: #BA1114;
}

.header-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 2;
}

.desktop-main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.desktop-nav-link {
    font-family: 'Monstro', sans-serif;
    color: white;
    text-decoration: none;
    font-size: 23px;
    /* letter-spacing: 1px; */
    transition: color 0.4s ease;
}

.main-header.scrolled .desktop-nav-link {
    color: #BA1114;
}

.desktop-nav-link:hover {
    color: #000000 !important;
}

.social-icons {
    display: flex;
    gap: 35px;
}

/* Social Icons Default (White) */
.social-icons a {
    font-size: 1.5rem;
    transition: transform 0.3s ease, opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    color: white;
}

.social-icons a i {
    transition: color 0.3s ease, filter 0.3s ease, background 0.3s ease;
    color: white;
}

/* Brand Colors - Only on Scrolled */
.main-header.scrolled .social-icons a i {
    color: #BA1114;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    display: inline-block;
}

.social-icons a:hover {
    opacity: 0.8;
    transform: translateY(-3px);
    text-decoration: none !important;
}

/* Center Logo Box */
.header-logo-container {
    position: absolute;
    left: 40px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header.scrolled .header-logo-container {
    align-items: center;
}

.logo-box {
    background-color: #FFF7EC;
    width: 260px;
    height: 160px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 70.6%, 77.1% 75.1%, 62% 79.3%, 49.8% 81.8%, 25% 89.5%, 0% 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* Align logo to the bottom area */
    padding-bottom: 30px;
    /* Space from the slanted edge */
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header.scrolled .logo-box {
    background-color: transparent;
    height: 80px;
    width: 200px;
    clip-path: none;
    box-shadow: none;
    padding-bottom: 0;
    align-items: center;
}

.logo-img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header.scrolled .logo-img {
    max-height: 70px;
}


/* Right Side */
.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: flex-end;
    flex: 1;
}

.menu-trigger {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    color: white;
    transition: color 0.4s ease;
}

.main-header.scrolled .menu-trigger {
    color: #BA1114;
}

.menu-text {
    font-family: var(--font-nav);
    font-size: 28px;
    letter-spacing: 1px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: white;
    transition: background-color 0.4s ease, 0.3s;
}

.main-header.scrolled .hamburger span {
    background-color: #BA1114;
}

/* Lang Switcher */
.lang-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border: 2px solid white;
    border-radius: 50%;
    color: white;
    font-family: var(--font-nav);
    font-weight: 900;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.4s ease;
}

.main-header.scrolled .lang-circle {
    border-color: #BA1114;
    color: #BA1114;
}

.lang-circle:hover {
    background-color: white;
    color: var(--primary-orange);
}

/* Windows %125 zoom fix  — efektif viewport ~1536px'e düşüyor */
@media (max-width: 1536px) {
    .main-header {
        overflow: visible;
    }

    .header-container {
        overflow: visible;
        padding: 0 25px;
    }

    .header-left {
        gap: 25px;
    }

    .social-icons {
        gap: 12px;
        font-size: 1.2rem;
    }

    .nav-link-main {
        font-size: 24px;
    }

    .menu-text {
        font-size: 22px;
    }

    .logo-box {
        width: 220px;
        height: 150px;
        padding-bottom: 35px;
    }

    .logo-img {
        max-height: 80px;
    }

    .header-right {
        gap: 15px;
        flex-shrink: 0;
    }

    .lang-circle {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .hamburger span {
        width: 24px;
    }

    .nav-list a {
        font-size: clamp(2.4rem, 5.5vw, 72px);
    }

    .nav-list li {
        margin-bottom: 10px;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .header-left {
        gap: 30px;
    }

    .social-icons {
        gap: 15px;
    }

    .nav-link-main {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .header-container {
        padding: 0 20px;
    }

    .logo-box {
        width: 240px;
        height: 150px;
        padding-bottom: 30px;
    }

    .logo-img {
        max-height: 70px;
    }

    .nav-link-main {
        font-size: 22px;
    }

    .social-icons {
        gap: 10px;
    }

    .header-left {
        gap: 20px;
    }
}

@media (max-width: 768px) {

    .header-left .nav-link-main,
    .header-left .social-icons {
        display: none;
    }

    .main-header {
        height: 80px;
    }

    .header-logo-container {
        position: relative !important;
        left: 0 !important;
        transform: none !important;
        flex: 0 0 auto;
    }

    .logo-box {
        width: 140px;
        height: 100px;
        padding-bottom: 20px;
        background-color: transparent !important;
        align-items: center;
    }

    .logo-img {
        max-height: 45px;
    }

    .header-left {
        display: none !important;
    }

    .menu-text {
        display: block;
        /* Veya inline-block/flex vb. Görünür yapalım */
        font-size: 18px;
        /* Mobilde biraz daha küçük olabilir */
    }
}

@media (max-width: 480px) {
    .logo-box {
        width: 140px;
        height: 100px;
        padding-bottom: 15px;
    }

    .logo-img {
        max-height: 40px;
    }

    .lang-circle {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
}

/* --- FONT VARIATION PREVIEWS --- */
.hero-v1 {
    font-family: 'Monstro', sans-serif !important;
    font-variation-settings: "wght" 900, "wdth" 85 !important;
    font-weight: 900 !important;
}

.hero-v2 {
    font-family: 'Base Neue Condensed', sans-serif !important;
    font-weight: 700 !important;
    /* Super Condensed */
    font-variation-settings: normal !important;
}

.hero-v3 {
    font-family: 'Base Neue Condensed', sans-serif !important;
    font-weight: 600 !important;
    /* SemiBold Condensed */
    font-variation-settings: normal !important;
}

.hero-v4 {
    font-family: 'Base Neue Condensed', sans-serif !important;
    font-weight: 500 !important;
    /* Medium Condensed */
    font-variation-settings: normal !important;
}

.hero-v5 {
    font-family: 'Base Neue Expanded', sans-serif !important;
    font-weight: 700 !important;
    /* Super Expanded */
    font-variation-settings: normal !important;
}

.preview-item {
    margin-bottom: 80px;
    border-bottom: 3px solid #000;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    width: 90%;
}

/* --- DISCOVER BADGE --- */
.discover-badge {
    position: absolute;
    bottom: 40px;
    left: 40px;
    width: 200px;
    height: 200px;
    z-index: 100;
}

.discover-badge svg {
    width: 100%;
    height: 100%;
}

.rotating-text {
    transform-origin: 131px 138px;
    animation: rotateBadge 15s linear infinite;
}

.discover-badge-text {
    fill: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.static-arrow {
    transform-origin: 131px 138px;
    animation: bounceArrow 2s ease-in-out infinite;
}

@keyframes bounceArrow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

@keyframes rotateBadge {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Ensure the text stays upright or rotates with the badge as desired */
/* In this case, the whole SVG rotates for a classic circular seal effect */

@media (max-width: 1200px) {
    .discover-badge {
        width: 150px;
        height: 150px;
        left: 30px;
        bottom: 30px;
    }
}

@media (max-width: 768px) {
    .discover-badge {
        width: 110px;
        height: 110px;
        left: 20px;
        bottom: 20px;
    }


    .rotating-text,
    .static-arrow {
        transform-origin: 131px 138px;
    }
}

/* Beauty Section */
.beauty-section {
    background-color: #BA1114;
    position: relative;
    width: 100%;
    padding: 0;
    z-index: 50;
    overflow: visible;
    min-height: 100vh;
    display: block;
    border-top-left-radius: clamp(140px, 16vw, 320px);
    transition: background-color 0.24s linear;
}

.beauty-section-product-phase {
    background-color: #f6f1e7;
}

/* Unified Beauty Section handles both layers */
.beauty-section-combined {
    border-top-left-radius: clamp(140px, 16vw, 320px);
}

.beauty-section.has-flow-space {
    min-height: 100vh;
}

.beauty-bg-shape {
    display: none;
}

.beauty-scene-smet {
    position: relative;
    top: 0;
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    overflow: hidden;
    z-index: 3;
    opacity: 1 !important;
    visibility: visible !important;
    will-change: transform;
    transition: transform 0.42s ease;
}

.beauty-scene-product-phase {
    transform: none;
}

.beauty-scene-follow-smet,
.beauty-section-scrolled .beauty-scene-smet {
    position: relative;
}

.beauty-content-wrapper-smet,
.beauty-scene-block-smet {
    position: absolute;
    inset: 0;
}

.beauty-content-wrapper-smet {
    z-index: 2;
}

#block-intro {
    z-index: 2;
}

#block-product {
    z-index: 1;
}

.beauty-scene-copy-product-smet {
    justify-content: flex-end;
    align-items: flex-start;
    padding: clamp(32px, 4vw, 56px) clamp(44px, 6vw, 88px) clamp(42px, 6vh, 72px) clamp(82px, 7vw, 132px);
    z-index: 4;
    text-align: left;
}

.beauty-product-copy-smet {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    margin-left: clamp(16px, 1.6vw, 32px);
}

.beauty-product-title-smet {
    margin: 0;
    color: #6f2722;
    font-family: 'Monstro', sans-serif;
    filter: url(#noiseFilter);
    font-size: clamp(5.3rem, 10.2vw, 168px);
    line-height: 0.86;
    /* font-weight: 900; */
    font-variation-settings: "wght" 900, "wdth" 85;
    letter-spacing: 0.01em;
    text-align: left;
    transition: color 0.42s ease-in-out;
}

.beauty-scene-canvas-smet {
    position: absolute;
    top: -44%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: 140vh;
    object-fit: contain;
    pointer-events: none;
    z-index: 1;
    transition: left 0.42s ease, height 0.42s ease;
}

.beauty-section-product-phase .beauty-scene-canvas-smet {
    height: 100%;
}

.beauty-scene-copy-smet {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
    padding: 0 24px;
    will-change: opacity, transform;
}

.beauty-scene-text-top-smet,
.beauty-scene-text-bottom-smet {
    font-family: 'Monstro', sans-serif;
    filter: url(#noiseFilter);
    font-size: clamp(3rem, 20vw, 240px);
    margin: 0;
    /* font-weight: 900; */
    font-variation-settings: "wght" 900, "wdth" 85;
}

.beauty-scene-text-top-smet {
    color: #FFFFFF;
    line-height: 0.94;
}

.beauty-scene-text-bottom-smet {
    color: #FAA62C;
    line-height: 1.3;
}

.beauty-scene-copy-intro-smet {
    justify-content: center;
    align-items: center;
}

.beauty-scene-intro-headline-smet {
    position: absolute;
    top: 58%;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(100%, 1220px);
    transform: translate3d(-50%, -50%, 0);
    z-index: 2;
}

.beauty-scene-text-top-intro-smet {
    font-size: clamp(4.9rem, 20vw, 254px);
    line-height: 1.2;
    margin-bottom: clamp(4px, 0.7vw, 14px);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.beauty-scene-text-bottom-intro-smet {
    font-size: clamp(6.4rem, 22vw, 308px);
    line-height: 0.88;
    white-space: nowrap;
}

/* Diğer dillerde (EN, DE, RU, FR, AR) başlıklar uzun olduğu için font boyutunu küçültüyoruz  */
html:not([lang="tr"]) .beauty-scene-text-top-intro-smet {
    font-size: clamp(2.2rem, 9.5vw, 130px);
}

html:not([lang="tr"]) .beauty-scene-text-bottom-intro-smet {
    font-size: clamp(2.8rem, 11vw, 150px);
}

.beauty-scene-intro-footer-smet {
    position: absolute;
    left: 50%;
    bottom: clamp(36px, 0vh, 116px);
    transform: translateX(-50%);
    margin-top: 0 !important;
}

.beauty-scene-canvas-ust-smet {
    z-index: 3;
}

@media (max-width: 992px) {
    .beauty-section {
        min-height: auto;
        border-top-left-radius: clamp(80px, 12vw, 180px);
    }
}

@media (max-width: 768px) {
    .beauty-section {
        border-top-left-radius: 0;
        background-color: #BA1114 !important;
        /* Kullanıcı talebi: ba1114  */
    }

    .beauty-scene-smet {
        height: 70vh;
        /* Mobilde daha derli toplu olsun  */
        min-height: 440px;
    }

    .beauty-scene-text-top-smet,
    .beauty-scene-text-bottom-smet {
        font-size: clamp(4rem, 20vw, 100px);
    }

    .beauty-scene-text-top-smet {
        line-height: 0.85;
    }

    .beauty-scene-text-bottom-smet {
        line-height: 1;
    }

    .beauty-scene-intro-headline-smet {
        top: 54%;
        width: calc(100% - 32px);
    }

    .beauty-scene-text-top-intro-smet {
        font-size: clamp(3.8rem, 16vw, 102px);
        margin-bottom: 8px;
    }

    .beauty-scene-text-bottom-intro-smet {
        font-size: clamp(4.2rem, 18vw, 138px);
        line-height: 0.9;
        color: #000000;
    }

    html:not([lang="tr"]) .beauty-scene-text-top-intro-smet {
        font-size: clamp(1.8rem, 8vw, 68px);
    }

    html:not([lang="tr"]) .beauty-scene-text-bottom-intro-smet {
        font-size: clamp(2.2rem, 10vw, 84px);
    }

    .beauty-scene-intro-footer-smet {
        width: calc(100% - 32px);
        bottom: 24px;
        justify-content: center;
        text-align: center;
    }

    .beauty-scene-copy-product-smet {
        padding: 20px 20px 0;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .beauty-product-copy-smet {
        justify-content: flex-start;
        margin-left: 0;
    }

    .beauty-product-title-smet {
        font-size: clamp(3.2rem, 13vw, 80px);
        line-height: 0.9;
        text-align: left;
    }

    .beauty-section-product-phase .beauty-product-title-smet {
        position: relative;
        top: 1em;
    }

    .pin-spacer.pin-spacer-beauty-beauty-scene-master-trigger {
        background-color: #BA1114 !important;
        /* Kullanıcı talebi  */
    }

}

.beauty-container-inner {
    z-index: 3;
    position: relative;
    display: grid;
    align-items: center;
    justify-items: stretch;
    /* Merkezleme baskısını kaldırdık  */
    width: min(100%, 1400px);
    margin: 0 auto;
    pointer-events: auto;
    transition:
        opacity 0.24s ease,
        transform 0.24s ease;
}

.beauty-intro-copy,
.beauty-product-stage {
    grid-area: 1 / 1;
    width: 100%;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.beauty-intro-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.beauty-product-stage {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    opacity: 0;
    pointer-events: none;
    transform: translateY(40px);
    gap: 80px;
    width: 100%;
    max-width: 100%;
    padding-left: 80px;
    /* Şimdi gerçek anlamda sola yaslanacak  */
    margin: 0;
}

.beauty-section.flow-active .beauty-intro-copy {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-40px);
}

.beauty-section.flow-active .beauty-product-stage {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.beauty-product-copy {
    flex: 0 1 auto;
    min-width: 450px;
}

.beauty-product-visual-slot {
    flex: 0 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.beauty-product-img {
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.25));
    transform: translateX(100px) rotate(10deg);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.8s ease;
}

.beauty-section.flow-active .beauty-product-img {
    transform: translateX(0) rotate(0);
    opacity: 1;
    transition-delay: 0.2s;
    /* Metin geldikten sonra görsel gelsin  */
}

#lavas-ust {
    z-index: 5;
    /* Over text */
}

.beauty-text-top {
    font-family: 'Monstro', sans-serif;
    filter: url(#noiseFilter);
    font-size: clamp(3rem, 20vw, 240px);
    color: #FFFFFF;
    margin: 0;
    line-height: 0.94;
    font-weight: 900;
    font-variation-settings: "wght" 900, "wdth" 85;
}

.beauty-text-bottom {
    font-family: 'Monstro', sans-serif;
    filter: url(#noiseFilter);
    font-size: clamp(3rem, 20vw, 240px);
    color: #FAA62C;
    margin: 0;
    line-height: 1.3;
    font-weight: 900;
    font-variation-settings: "wght" 900, "wdth" 85;
}

.info-footer {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #FFFFFF;
}

.info-footer p {
    font-family: 'Monstro', sans-serif;
    filter: url(#noiseFilter);
    font-size: clamp(14px, 2vw, 24px);
    font-weight: 400;
    margin: 0;
    letter-spacing: 2px;
}

.info-footer .bold-text {
    font-weight: 900;
}

.wheat-icon {
    font-size: 28px;
    color: #FAA62C;
}

.beauty-product-stage {
    display: grid;
    grid-template-columns: minmax(260px, 360px) minmax(320px, 560px);
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 5vw, 88px);
    transform: translateY(clamp(-20px, -2.5vh, -64px));
    opacity: 0;
    pointer-events: none;
}

.beauty-product-copy {
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: fit-content;
    max-width: min(100%, 360px);
    text-align: left;
    transform: translateX(clamp(-8px, -0.8vw, -24px));
}

.beauty-product-copy .beauty-text-top,
.beauty-product-copy .beauty-text-bottom {
    font-size: clamp(3rem, 9vw, 132px);
}

.beauty-product-copy .beauty-text-bottom {
    line-height: 0.96;
}

.beauty-product-visual-slot {
    width: clamp(320px, 34vw, 560px);
    height: clamp(220px, 24vw, 360px);
    justify-self: end;
}

.beauty-section.flow-active .beauty-intro-copy {
    opacity: 0;
}

.beauty-section.flow-active .beauty-product-stage {
    opacity: 1;
}

.beauty-section.flow-active .anim-canvas {
    transform: translate(calc(-50% + clamp(140px, 15vw, 300px)),
            calc(-50% - clamp(22px, 2.5vh, 68px))) scale(0.72);
}

.beauty-section.flow-active #lavas-ust {
    opacity: 0;
}

@media (max-width: 992px) {
    .lavash-overlap {
        width: 450px;
        top: -180px;
    }

    .beauty-product-stage {
        grid-template-columns: minmax(240px, 320px) minmax(280px, 460px);
        gap: 32px;
        transform: translateY(clamp(-16px, -2vh, -40px));
    }
}

@media (max-width: 768px) {
    .lavash-overlap {
        width: 300px;
        top: -120px;
    }

    .beauty-product-stage {
        grid-template-columns: 1fr;
        gap: 24px;
        width: calc(100% - 32px);
        transform: translateY(-12px);
    }

    .beauty-product-copy {
        width: 100%;
        max-width: none;
        align-items: center;
        text-align: center;
        transform: none;
    }

    .beauty-product-visual-slot {
        width: clamp(240px, 72vw, 360px);
        height: clamp(160px, 40vw, 240px);
        justify-self: center;
    }

    .beauty-section.flow-active .anim-canvas {
        transform: translate(-50%, calc(-50% - 28px)) scale(0.88);
    }
}

/* Explore Badge */
.explore-badge {
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
    width: 140px;
    height: 140px;
    z-index: 5;
}

.explore-badge svg {
    width: 100%;
    height: 100%;
    animation: rotateText 15s linear infinite;
    fill: #FFFFFF;
}

.explore-badge text {
    fill: #FFFFFF;
    font-weight: 700;
}

.arrow-down {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFFFFF;
    font-size: 24px;
}

@keyframes rotateText {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1200px) {
    .explore-badge {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        margin-bottom: 30px;
    }
}



/* Mobile Specific Global Fixes */
@media (max-width: 768px) {

    /* Header Mobile */
    .menu-text {
        display: none !important;
    }

    .header-container {
        padding: 0 20px;
    }

    .logo-box {
        width: 140px;
        height: 100px;
        padding-bottom: 20px;
    }

    .logo-img {
        max-height: 50px;
    }

    .main-header.scrolled .logo-box {
        width: 120px;
        height: 80px;
    }

    .main-header.scrolled .logo-img {
        max-height: 40px;
    }

    /* Hero Mobile */
    .hero-text-top,
    .hero-text-bottom {
        font-size: clamp(3.5rem, 19vw, 60px) !important;
        line-height: 0.9 !important;
        text-align: center;
    }



    .hero-container-inner {
        padding: 0 20px;
        text-align: center;
    }

    /* Beauty Mobile */
    .beauty-bg-shape {
        display: none !important;
        /* Mobilde şekilleri kaldırdık */
    }


    .beauty-text-top,
    .beauty-text-bottom {
        font-size: clamp(4rem, 20vw, 100px);
        line-height: 0.85;
        text-align: center;
    }

    .beauty-text-top {
        color: white !important;
        /* Üst yazı beyaz */
    }

    .beauty-text-bottom {
        color: #FAA62C !important;
        /* Alt yazı turuncu */
    }

    .info-footer p {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .wheat-icon {
        font-size: 20px;
    }

    .lavas-wrap-container {
        min-height: 500px !important;
        padding: 40px 0 !important;
    }

    .beauty-scene-canvas-smet {
        height: 90% !important;
        /* Mobilde biraz daha kibar dursun  */
    }


}

@media (max-width: 480px) {
    .beauty-section {
        min-height: 80vh;
    }


}






/* History Section Styles */

.history-section {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    z-index: 110;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
}

.history-title-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.history-title-top {
    font-family: 'Monstro', sans-serif;
    filter: url(#noiseFilter);
    font-size: clamp(3rem, 12vw, 160px);
    /* font-weight: 900; */
    color: #BA1114;
    line-height: 1;
    margin: 0;
    font-variation-settings: "wght" 900, "wdth" 75;
    letter-spacing: -2px;
}

.history-title-bottom {
    font-family: 'Monstro', sans-serif;
    filter: url(#noiseFilter);
    font-size: clamp(3rem, 12vw, 160px);
    /* font-weight: 900; */
    color: var(--primary-orange);
    line-height: 1;
    margin: 0;
    font-variation-settings: "wght" 900, "wdth" 75;
    letter-spacing: -2px;
}


.history-img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 10;
}

.history-wheat-left {
    position: absolute;
    bottom: -300px;
    left: 0px;

    z-index: 120;
    pointer-events: none;
}

.partners-section {
    background-color: #FEFBF6;
    padding: 80px 0;
    overflow: hidden;
    position: relative;
    z-index: 100;
}

.partners-container {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
}

/* Elements Section Styles */

/* Elements Section Styles */
.elements-section {
    position: relative;
    width: 100%;
    padding: 60px 10px;
    background-color: #FAA62C;
    /* Turuncu arka plan  */
    color: #BA1114;
    overflow: hidden;
    z-index: 10;
}

.elements-stats-bar {
    /* max-width: 1500px; */
    margin: 0 auto 160px auto;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    position: relative;
    z-index: 20;
    /* Üstte kalması için  */
}

.elements-stat-box {
    flex: 1;
    padding: 0 30px;
    border-right: 1px solid rgba(74, 35, 17, 0.2);
}

.elements-stat-box:last-child {
    border-right: none;
}

.stat-val {
    font-family: 'Monstro', sans-serif;
    filter: url(#noiseFilter);
    font-size: clamp(1.8rem, 3.2vw, 52px);
    margin-bottom: 10px;
    font-variation-settings: "wght" 900, "wdth" 75;
    color: #BA1114;
    white-space: nowrap;
    /* Koyu kırmızımsı  */
}

.stat-lbl {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9rem, 1.2vw, 18px);
    font-weight: 500;
    line-height: 1.4;
    color: #BA1114;
    /* Turuncu üzerinde jilet gibi durması için noise filter kaldırıldı ve weight artırıldı  */
    opacity: 0.95;
    letter-spacing: -0.01em;
}

.elements-container {
    /* max-width: 1500px; */
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 40px;
}

.elements-main-content {
    flex: 1;
    z-index: 2;
}

.elements-title {
    font-family: 'Monstro', sans-serif;
    filter: url(#noiseFilter);
    font-size: clamp(3rem, 8vw, 120px);
    color: #BA1114;
    line-height: 1;
    margin-bottom: 40px;
    font-weight: normal;
}

/* Almanca ve diğer dillerde başlıklar uzun olduğu için font boyutunu küçültüyoruz  */
html:not([lang="tr"]) .elements-title {
    font-size: clamp(2.2rem, 5vw, 70px);
}



.elements-description {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    line-height: 1.5;
    max-width: 600px;
    margin-bottom: 50px;
    color: white;
}

.elements-discover-btn {
    display: inline-flex;
    align-items: center;
    font-family: 'Monstro', sans-serif;
    font-size: 32px;
    color: #fff;
    text-decoration: none;
    gap: 25px;
    /* Ok ile mesafe biraz artsın  */
}

.btn-text {
    position: relative;
    display: inline-block;
    color: #BA1114;
}

.btn-underline {
    position: absolute;
    bottom: -42px;
    left: 0;
    width: 130%;
    height: auto;
    pointer-events: none;
}

.btn-arrow-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 3.5px solid #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.btn-arrow-circle svg {
    width: 20px;
    height: 20px;
    color: #fff;
    margin-left: 4px;
    /* Üçgenin optik olarak ortalanması için  */
}

.elements-discover-btn:hover .btn-arrow-circle {
    background-color: #fff;
}

.elements-discover-btn:hover .btn-arrow-circle svg {
    color: #FAA62C;
}

.elements-visual {
    flex: 1;
    position: relative;
}

.floating-lavash {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.1));
}

.elements-bottom-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    line-height: 0;
}

.elements-bottom-curve svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 991px) {
    .elements-stats-bar {
        flex-wrap: wrap;
        gap: 40px;
    }

    .elements-stat-box {
        flex: 0 0 45%;
        border: none;
    }

    .elements-container {
        flex-direction: column;
        text-align: center;
    }

    .elements-description {
        margin: 0 auto 40px auto;
    }

    .floating-lavash {
        width: 100%;
        transform: none;
        margin-top: 50px;
    }
}

.partners-ticker {
    display: flex;
    overflow: hidden;
    user-select: none;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.ticker-track {
    display: flex;
    gap: 100px;
    padding: 20px 0;
    animation: scrollTicker 40s linear infinite;
    width: max-content;
}

.ticker-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 80px;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(1) opacity(0.6);
}

.ticker-item:hover {
    transform: scale(1.1);
    filter: grayscale(0) opacity(1);
}

.ticker-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes scrollTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 50px));
        /* Half the width + half the gap */
    }
}

/* Mobile Ticker Adjustments */
@media (max-width: 768px) {
    .partners-section {
        padding: 40px 0;
    }

    .ticker-track {
        gap: 50px;
    }

    .ticker-item {
        width: 120px;
        height: 60px;
        filter: grayscale(0) opacity(1);
        /* Keep full color on mobile for visibility */
    }

    @keyframes scrollTicker {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-50% - 25px));
        }
    }
}

/* Master Art Section Styles */
.master-art-section {
    position: relative;
    width: 100%;
    background-color: #FEFBF6;
    padding: 220px 0 80px 0;
    /* Boşlukları daralttım  */
    overflow: hidden;
    z-index: 5;
}

.master-art-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.master-art-grid-lines .line {
    position: absolute;
    background-color: rgba(74, 35, 17, 0.1);
}

.line.vertical-1,
.line.vertical-2 {
    display: none;
}

.line.horizontal-1 {
    top: 310px;
    /* Header'dan hemen sonra  */
    left: 0;
    width: 100%;
    height: 1px;
}

.line.horizontal-2 {
    bottom: 70px;
    /* Navigasyonun üstünde  */
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(74, 35, 17, 0.1);
    position: absolute;
}

.master-art-container {
    margin: 0 auto;
    padding: 0 40px;
    /* Üstteki elementler bölümüyle aynı hizada  */
    position: relative;
    z-index: 2;
}

.master-art-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
}

.master-art-left {
    flex: 0 0 33.33%;
    /* İlk sütun sınırına sabitledim  */
    max-width: 33.33%;
}

.master-art-title {
    font-family: 'Monstro', sans-serif;
    font-size: clamp(2rem, 5vw, 75px);
    /* Çizgiyi geçmemesi için biraz küçülttüm */
    color: #BA1114;
    line-height: 1;
    margin: 0;
    padding-right: 30px;
    /* Çizgiyle arasında mesafe kalsın */
}

html:not([lang="tr"]) .master-art-title {
    font-size: clamp(1.6rem, 3.5vw, 52px);
}

.master-art-right {
    flex: 0 0 45%;
    /* Sağdaki üçüncü sütuna sabitledim  */
    max-width: 45%;
    padding-left: 30px;
    /* Çizginin hemen sağından başlasın */
}

.master-art-desc {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    color: #BA1114;
    line-height: 1.5;
    margin-bottom: 40px;
}

/* Override discover btn for master section */
.master-btn {
    color: #BA1114 !important;
    filter: none !important;
}

.master-btn .btn-arrow-circle {
    border-color: #BA1114 !important;
}

.master-btn .btn-arrow-circle svg {
    color: #BA1114 !important;
}

.master-btn:hover .btn-arrow-circle {
    background-color: #BA1114 !important;
}

.master-btn:hover .btn-arrow-circle svg {
    color: #FEFBF6 !important;
}

.master-product-slider {
    width: 100%;
    overflow: hidden;
    /* Swiper için  */
}

/* Master Product Grid styles moved and updated below in the file */

.product-img-wrap {
    width: 100%;
    max-width: 450px;
}

.product-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.master-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 100px;
    /* Biraz daha aşağı aldım  */
}

.master-nav-btn {
    width: 64px;
    height: 64px;
    border: 2px solid #BA1114;
    border-radius: 50%;
    background: transparent;
    color: #BA1114;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.master-nav-btn svg {
    width: 32px;
    height: 32px;
}

.master-nav-btn:hover {
    background-color: #BA1114;
    color: #FEFBF6;
}

@media (max-width: 1024px) {
    .master-art-section {
        padding: 80px 0;
    }

    .master-art-container {
        padding: 0 25px;
    }

    .master-art-header {
        flex-direction: column;
        gap: 30px;
    }

    .master-art-left,
    .master-art-right {
        flex: 1;
        max-width: 100%;
        padding: 0;
    }

    .master-art-title {
        font-size: 48px;
        /* Biraz büyüttüm  */
        text-align: left;
        padding-right: 0;
        /* Masaüstündeki sağ boşluğu sıfırladım ki uzasın */
        width: 100%;
    }

    .master-art-desc {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .master-product-grid {
        flex-wrap: nowrap;
        /* Yan yana gelmesi için wrap kapalı  */
        gap: 0;
        /* Swiper'ın kendi spacing'ini kullanalım */
    }

    .master-product-item {
        flex-shrink: 0;
        /* Swiper için önemli */
    }

    .master-nav {
        margin-top: 30px;
    }

    .line.vertical-1,
    .line.vertical-2,
    .line.horizontal-1 {
        display: none;
    }
}

/* Master Swiper Pagination Styles */
.master-pagination {
    position: relative !important;
    bottom: 0 !important;
    margin-top: 30px;
}

.master-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #BA1114;
    opacity: 0.3;
}

.master-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #BA1114;
}

@media (min-width: 1025px) {
    .master-pagination {
        display: none;
        /* Masaüstünde noktaları gizleyelim  oklar yeterli */
    }
}

/* --- Mobile Overrides for History & Elements --- */
@media (max-width: 1024px) {

    /* History Section */
    .history-section {
        padding-top: 60px;
    }

    .history-title-top,
    .history-title-bottom {
        font-size: 45px;
        letter-spacing: 1px;
    }

    .history-wheat-left {
        width: 120px;
        bottom: -100px;
        opacity: 0.6;
    }

    /* Elements Section */
    .elements-section {
        padding: 60px 0;
        background-color: #FAA62C;
        /* Rengi koru  */
    }

    .elements-bg-shape-wrap {
        display: none !important;
        /* Mobilde SVG şekli kaldır  */
    }

    .elements-stats-bar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* 2'li 2'li yaptık  */
        gap: 40px 20px;
        margin-bottom: 80px;
        padding: 0;
    }

    .elements-stat-box {
        padding: 0 10px;
        border-right: none;
        border-bottom: none;
        text-align: center;
    }

    .stat-val {
        font-size: 23px;
        /* Sığması için küçülttüm  */
        white-space: nowrap;
        /* Kesinlikle alt satıra geçmesin */
    }

    .elements-container {
        flex-direction: column;
        padding: 0;
        text-align: center;
    }

    .elements-main-content {
        margin-bottom: 50px;
        order: 1;
    }

    .elements-title {
        font-size: 44px;
        line-height: 1.2;
    }

    .elements-description {
        font-size: 16px;
        margin: 0 auto 30px auto;
        max-width: 100%;
    }

    .elements-discover-btn {
        font-size: 22px;
        gap: 12px;
    }

    .btn-underline {
        bottom: -28px;
        width: 115%;
    }

    .elements-visual {
        display: none;
        /* Mobilde bu görsele gerek yok  */
    }
}

/* Elements Background Shape Styles */
.elements-bg-shape-wrap {
    position: absolute;
    top: 130px;
    /* Stats bar'dan hemen sonra  */
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.elements-bg-shape {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: left top;
}

.elements-container {
    position: relative;
    z-index: 5;
    /* İçeriği en üste alalım  */
}

/* Şekil artık turuncu gradyan olduğu için metinleri tekrar beyaza çekelim  */
.elements-description {
    color: white !important;
}

.elements-discover-btn {
    color: white !important;
}

.elements-discover-btn .btn-arrow-circle {
    border-color: #BA1114 !important;
}

.elements-discover-btn .btn-arrow-circle svg {
    color: #BA1114 !important;
}

.elements-discover-btn:hover .btn-arrow-circle {
    background-color: black !important;
}

.elements-discover-btn:hover .btn-arrow-circle svg {
    color: #FAA62C !important;
}


@media (max-width: 1024px) {
    .elements-bg-shape-wrap {
        top: 600px;
        /* Mobilde stats bar daha uzun olduğu için aşağı çektim  */
    }
}

/* Master Art Background Shape */
.master-art-section {
    position: relative;
    background-color: transparent !important;
    overflow: hidden;
}

.master-art-bg-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.master-art-bg-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    /* Köşelerin kaybolmaması için jilet gibi doldursun  */
    object-position: center;
}

.master-art-container {
    position: relative;
    z-index: 10;
}

.master-product-container {
    width: 100%;
    height: 600px;
    margin: 40px auto;
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.master-product-grid {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1500px;
    display: block;
    /* Flex'ten çıkardık  */
}

.master-product-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    /* Daha ipeksi geçiş  */
    will-change: transform, opacity, filter;
}

/* Konum Sınıfları */
.pos-left {
    transform: translate(-140%, -50%) scale(0.6) rotateY(25deg);
    filter: blur(8px);
    opacity: 0.3;
    z-index: 10;
}

.pos-center {
    transform: translate(-50%, -50%) scale(1.35) rotateY(0deg);
    filter: blur(0);
    opacity: 1;
    z-index: 30;
}

.pos-right {
    transform: translate(40%, -50%) scale(0.6) rotateY(-25deg);
    filter: blur(8px);
    opacity: 0.3;
    z-index: 10;
}

@media (max-width: 1024px) {
    .master-product-container {
        height: 400px;
    }

    .master-product-item {
        max-width: 300px;
    }

    .pos-left {
        transform: translate(-125%, -50%) scale(0.55) rotateY(20deg);
    }

    .pos-right {
        transform: translate(25%, -50%) scale(0.55) rotateY(-20deg);
    }

    .pos-center {
        transform: translate(-50%, -50%) scale(1.15);
    }
}

/* Master Art Mobile Overrides  */
@media (max-width: 1024px) {
    .master-art-section {
        padding: 100px 20px 60px 20px !important;
        background-color: #FEFBF6 !important;
        /* Kullanıcı talebi  */
    }

    .master-art-bg-shape,
    .master-art-bg-wrap,
    .master-art-bg-img {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }

    .master-art-header {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 40px !important;
    }

    .master-art-bg-wrap {
        display: none !important;
    }

    .master-art-left,
    .master-art-right {
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding: 0 !important;
    }

    .master-art-title {
        font-size: 33px !important;
        line-height: 1.1 !important;
        padding: 0 !important;
        text-align: center !important;
    }

    .master-art-desc {
        font-size: 16px !important;
        text-align: center !important;
        margin-bottom: 25px !important;
    }

    .master-btn {
        margin: 0 auto !important;
        justify-content: center !important;
    }

    .master-nav {
        margin-top: 60px !important;
        gap: 15px !important;
    }
}

/* Map Section Styles  */
.map-section {
    position: relative;
    width: 100%;
    padding: 100px 0;
    overflow: hidden;
    background-color: #FBF8F1;
    /* Kırmızı şeklin arkası krem olsun ki kavis belli olsun  */
}

.map-bg-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.map-bg-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.map-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    padding: 0 40px;
}

.map-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.map-sub-title {
    font-family: 'Monstro', sans-serif;
    filter: url(#noiseFilter);
    font-size: 127.52px;
    font-weight: 300;
    /* Condensed Bold/Black  */
    color: white;
    margin-bottom: 0px;
    letter-spacing: 0.01em;
    /* 1%  */
    line-height: 122.8px;
    font-variation-settings: "wght" 300, "wdth" 75;


    /* Condensed  */
}

.map-main-title {
    font-family: 'Monstro', sans-serif;
    filter: url(#noiseFilter);
    font-size: 110.52px;
    font-weight: 600;
    color: white;
    margin-bottom: 40px;
    letter-spacing: 0.01em;
    line-height: 122.8px;
    font-variation-settings: "wght" 600, "wdth" 75;

}

.map-visual {
    width: 100%;
    max-width: 800px;
    margin-bottom: 60px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.turkey-map-img {
    width: 100%;
    height: auto;
    display: block;
}

.map-description {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: white;
    max-width: 800px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.map-btn-wrap {
    margin-top: 20px;
}

.map-btn {
    color: white !important;
    font-family: 'Monstro', sans-serif !important;
    font-size: 62.97px !important;
    line-height: 60.6px !important;
    letter-spacing: 0.01em !important;
    font-variation-settings: "wght" 600, "wdth" 75 !important;
}

.map-btn span {
    font-family: inherit;
}

.map-btn .btn-underline {
    background-color: #FAA62C !important;
}

.map-btn .btn-arrow-circle {
    width: 35px !important;
    height: 35px !important;
    border-color: white !important;
    color: white !important;
    /* İkonun beyaz olması için  */
}

.map-btn .btn-arrow-circle svg {
    width: 14px !important;
    /* İkonun içerde dengeli durması için küçülttüm  */
    height: 14px !important;
    margin-left: 3px !important;
    /* Üçgenin optik ortalanması için kritik  */
    margin-top: 0 !important;
}

.map-btn:hover .btn-arrow-circle {
    background-color: white !important;
    border-color: white !important;
}

.map-btn:hover .btn-arrow-circle svg path {
    fill: #BA1114 !important;
    /* Hoverda ikon kırmızı olsun  */
}

@media (max-width: 1024px) {
    .map-section {
        padding: 50px 20px !important;
        background-color: #BA1114 !important;
        /* Kullanıcı talebi  */
    }

    .map-bg-wrap,
    .map-bg-shape {
        display: none !important;
        /* Mobilde şekli komple kaldır  */
    }

    .map-sub-title {
        font-size: 32px !important;
        line-height: 1.1 !important;
        margin-bottom: 5px !important;
    }

    .map-main-title {
        font-size: 42px !important;
        margin-bottom: 25px !important;
        line-height: 1.1 !important;
    }

    .map-visual {
        margin-bottom: 25px !important;
        max-width: 100% !important;
    }

    .map-description {
        font-size: 15px !important;
        padding: 0 !important;
        margin-bottom: 25px !important;
    }

    .map-btn {
        font-size: 36px !important;
        line-height: 1.1 !important;
    }

    .map-btn .btn-arrow-circle {
        width: 30px !important;
        height: 30px !important;
    }
}

/* Noise Effect  */
.map-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
    opacity: 0.05;
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: overlay;
}

/* Text Noise Effect  */
.map-sub-title,
.map-main-title {
    position: relative;
    display: inline-block;
    /* Alanı kaplaması için  */
}

/* Footer Styles  */
.main-footer {
    background-color: #FBF8F1;
    padding: 0px 0 40px 0;
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(74, 29, 31, 0.05);
}

.footer-container {
    margin: 0 auto;
    padding: 20px 40px;
}

/* Top Row: Logo & Wheat */
.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
}

.footer-logo {
    height: 120px;
    /* Dev logo  */
    width: auto;
}

.footer-wheat-area {
    width: 500px;
}

.footer-wheat-img {
    width: 100%;
    height: auto;
    transform: rotate(15deg);
}

/* Middle Row: Columns */
.footer-middle-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(74, 29, 31, 0.1);
}

.footer-col.about p {
    font-family: 'Inter', sans-serif;
    filter: url(#noiseFilter);
    font-size: 18px;
    line-height: 1.5;
    color: #BA1114;
    opacity: 0.7;
    max-width: 300px;
}

.footer-col-title {
    font-family: 'Inter', sans-serif;
    filter: url(#noiseFilter);
    font-size: 18px;
    font-weight: 900;
    color: #BA1114;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #000;
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: #FAA62C;
    padding-left: 5px;
}

.footer-contact-info p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #000;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    font-size: 22px;
    color: #000;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #FAA62C;
}

.footer-lang {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Monstro', sans-serif;
    filter: url(#noiseFilter);
    font-size: 14px;
    font-weight: 900;
    color: #BA1114;
}

.footer-lang a {
    color: #4D4D4D;
    font-weight: 600;
    text-decoration: none;
}

.footer-lang a.active {
    opacity: 1;
    color: #FAA62C;
}

/* Bottom Row: Agency & Legal */
.footer-bottom-row {
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    display: flex;
    align-items: center;
    gap: 30px;
}

.adshub-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.adshub-text {
    font-family: 'Monstro', sans-serif;
    filter: url(#noiseFilter);
    font-size: 24px;
    font-weight: 900;
    color: #000;
    letter-spacing: -1px;
}

.adshub-sub {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: #000;
}

.footer-copy p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #000;
    opacity: 1;
    margin: 0;
    /* Dikeyde kaymaması için marjini sıfırladım  */
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #000;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-legal a:hover {
    opacity: 1;
    color: #FAA62C;
}

@media (max-width: 1024px) {
    .footer-top-row {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .footer-wheat-area {
        width: 100%;
        max-width: 300px;
    }

    .footer-middle-row {
        grid-template-columns: 1fr 1fr;
        gap: 30px 20px;
        text-align: left;
    }

    .footer-col.about {
        grid-column: 1 / -1;
        /* About tam genişlik  */
        text-align: center;
    }

    /* Takip Edin ve Dil Seçimi yan yana kalsın  */

    .footer-col.about p {
        max-width: 100%;
    }


    .footer-bottom-row {
        flex-direction: column-reverse;
        /* Copyright en altta kalsın  */
        gap: 30px;
        text-align: center;
    }

    .footer-copy {
        flex-direction: column;
        gap: 15px;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px 30px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 20px 20px 32px;
    }

    .footer-top-row {
        margin-bottom: 40px;
    }

    .footer-logo {
        height: 88px;
    }

    .footer-middle-row {
        grid-template-columns: 1fr 1fr;
        gap: 22px 16px;
        padding-bottom: 40px;
        text-align: left;
    }

    .footer-col {
        min-width: 0;
    }

    .footer-col.about {
        grid-column: 1 / -1;
    }

    .footer-col.about,
    .footer-col.about p {
        text-align: center;
        max-width: 100%;
    }

    .footer-col-title {
        font-size: 15px;
        margin-bottom: 14px;
    }

    .footer-links a,
    .footer-contact-info p,
    .footer-legal a {
        font-size: 13px;
    }

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-social {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 14px;
    }

    .footer-lang {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 6px;
        row-gap: 8px;
        font-size: 12px;
    }

    .footer-copy p {
        font-size: 14px;
        line-height: 1.5;
        text-align: center;
    }

    .footer-legal {
        gap: 14px 18px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 18px 16px 28px;
    }

    .footer-middle-row {
        gap: 18px 12px;
    }

    .footer-col-title {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .footer-links li {
        margin-bottom: 7px;
    }

    .footer-contact-info p,
    .footer-links a {
        font-size: 12px;
        overflow-wrap: anywhere;
    }

    .footer-lang {
        font-size: 11px;
        gap: 4px;
    }

    .footer-copy {
        gap: 12px;
    }

    .footer-legal a {
        font-size: 12px;
    }
}

/* Contact Section Styles  */
.contact-section {
    position: relative;
    width: 100%;
    padding: 90px 0;
    background-color: #ffffff;
    /* overflow: hidden;  bunu kapattım ki başaklar footer'a taşabilsin */
}

.contact-container {
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.contact-title {
    font-family: 'Monstro', sans-serif;
    font-size: clamp(2rem, 5vw, 85px);
    color: #BA1114;
    line-height: 1;
}


.contact-desc {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #BA1114;
    opacity: 0.7;
    line-height: 1.6;
    margin-bottom: 60px;
    max-width: 500px;
    font-weight: 500;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-label {
    font-family: 'Inter', sans-serif;
    filter: url(#noiseFilter);
    font-size: 24px;
    font-weight: 900;
    color: #FAA62C;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.contact-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #BA1114;
    opacity: 0.8;
    font-weight: 500;
}

.contact-text a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-text a:hover {
    color: var(--primary-orange);
    opacity: 1;
    text-decoration: none;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.form-group label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #78716C;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgb(0, 0, 0);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #BA1114;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: #FAA62C;
}

.form-row.dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    accent-color: #FAA62C;
}

.form-checkbox label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #BA1114;
    opacity: 0.6;
}

.contact-submit-btn {
    width: 200px;
    height: 55px;
    background-color: #FAA62C;
    border: none;
    color: white;
    font-family: 'Monstro', sans-serif;
    font-size: 20px;
    font-weight: 900;
    font-variation-settings: "wght" 900, "wdth" 75;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    margin-top: 20px;
}

.contact-submit-btn:hover {
    background-color: #BA1114;
    transform: translateY(-3px);
}

.contact-wheat-wrap {
    position: absolute;
    bottom: -200px;
    right: -50px;
    width: 700px;
    z-index: 221;
    pointer-events: none;
}

.contact-wheat-img {
    width: 100%;
    height: auto;
    transform: rotate(-10deg);
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-title {
        font-size: 34px;
    }

    .form-row.dual {
        grid-template-columns: 1fr;
    }

    .contact-wheat-wrap {
        width: 330px;
        bottom: -140px;
        left: 110px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 40px 0;
    }
}

.adshub-logo img {
    height: 40px;
    width: auto;
    display: block;
}

/* Full Screen Menu Styles  */
.fullscreen-menu {
    position: fixed;
    inset: 0;
    z-index: 9999;
    visibility: hidden;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullscreen-menu.active {
    visibility: visible;
    pointer-events: auto;
}

.menu-overlay-bg {
    position: absolute;
    inset: 0;
    background-color: #BA1114;
    /* Marka kırmızısı  */
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
}

.fullscreen-menu.active .menu-overlay-bg {
    transform: translateY(0);
}

.menu-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease 0.3s;
}

.fullscreen-menu.active .menu-container {
    opacity: 1;
}

.menu-header {
    display: flex;
    justify-content: flex-end;
}

.menu-close {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    color: #fff;
}

.close-text {
    font-family: 'Monstro', sans-serif;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 2px;
}

.close-icon {
    position: relative;
    width: 30px;
    height: 30px;
}

.close-icon span {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
}

.close-icon span:nth-child(1) {
    transform: rotate(45deg);
}

.close-icon span:nth-child(2) {
    transform: rotate(-45deg);
}

.menu-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 34px;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 35px;
    column-gap: 40px;
}

.nav-list li {
    overflow: hidden;
    margin-bottom: 0;
}

.nav-list a {
    display: inline-block;
    font-family: 'Monstro', sans-serif;

    font-size: clamp(2.4rem, 5vw, 56px);
    color: #fff;
    text-decoration: none;
    line-height: 0.98;
    transform: translateY(110%);
    transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
}

.fullscreen-menu.active .nav-list a {
    transform: translateY(0);
    transition-delay: calc(0.1s * var(--i) + 0.3s);
}

.nav-list a:hover {
    color: #FAA62C;
}

/* Zoom/küçük ekran fix: menü öğelerini dikey alana göre ölçekle  */
@media (max-height: 800px) {
    .nav-list a {
        font-size: clamp(1.8rem, 8vh, 60px);
    }

    .nav-list li {
        margin-bottom: 6px;
    }

    .menu-content {
        gap: 16px;
    }

    .menu-container {
        padding: 20px 40px;
    }

    .menu-footer {
        gap: 16px;
    }

    .menu-social a {
        font-size: 0.85rem;
    }

    .menu-footer-right p {
        font-size: 0.85rem;
    }
}

.menu-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.menu-social {
    display: flex;
    gap: 30px;
}

.menu-social a {
    font-family: 'Monstro', sans-serif;
    filter: url(#noiseFilter);
    font-size: 14px;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.menu-social a:hover {
    opacity: 1;
}

.menu-footer-right p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    margin: 0;
    opacity: 0.6;
    text-align: right;
}

@media (max-width: 768px) {
    .menu-content {
        gap: 26px;
    }

    .nav-list a {
        font-size: clamp(1.4rem, 4vw, 44px);
        line-height: 0.98;
    }

    .nav-list li {
        margin-bottom: 12px;
    }

    .menu-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .menu-footer-right p {
        text-align: left;
    }
}

/* Language Dropdown Styles  */
.lang-switcher {
    position: relative;
    padding: 10px 0;
    /* Hover alanını genişlettik  */
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    min-width: 60px;
    border-radius: 30px;
    /* Tam yuvarlak  */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    z-index: 100;
}

/* Hoverda açılsın  */
.lang-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown a {
    padding: 8px 0;
    color: #BA1114;
    text-decoration: none;
    font-family: 'Monstro', sans-serif;
    filter: url(#noiseFilter);
    font-size: 13px;
    font-weight: 700;
    transition: all 0.2s ease;
    text-align: center;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 2px auto;
}

.lang-dropdown a:hover {
    background-color: #BA1114;
    color: #fff;
}

@media (max-width: 768px) {
    .lang-dropdown {
        right: auto;
        left: -10%;
        transform: translateX(-50%) translateY(10px);
    }

    .lang-switcher.active .lang-dropdown {
        transform: translateX(-50%) translateY(0);
    }

    .lang-dropdown::before {
        right: auto;
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
    }
}

.footer-contact-info a {
    color: inherit;
    text-decoration: none;
}

.footer-contact-info a:hover {
    color: var(--primary-orange);
    text-decoration: none !important;
    opacity: 1;
}

/* Contact Page Specific Styles */
.iletisim-body .main-header {
    background-color: #FFFFFF !important;
}

.iletisim-body .main-header::after {
    background-color: rgba(0, 0, 0, 0.08) !important;
}

.iletisim-body .main-header:not(.scrolled) .logo-box {
    background-color: #BA1114 !important;
}

.iletisim-body .nav-link-main,
.iletisim-body .menu-trigger {
    color: #BA1114 !important;
}

.iletisim-body .hamburger span {
    background-color: #BA1114 !important;
}

.iletisim-body .lang-circle {
    border-color: #BA1114 !important;
    color: #BA1114 !important;
}

.iletisim-body .social-icons a i {
    color: #BA1114 !important;
}

.iletisim-body {
    background-color: #FBF8F1 !important;
}

.iletisim-body .contact-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.iletisim-body .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    min-height: calc(100vh - 100px);
    width: 100%;
    position: relative;
}

.iletisim-body .contact-content-col {
    padding: 10px 80px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.iletisim-body .contact-breadcrumb {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #888;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.iletisim-body .contact-title {
    font-family: 'Monstro', sans-serif;
    font-size: 5rem;
    color: #B11116;
    line-height: 0.95;
    margin: 0 0 45px 0;
    text-transform: uppercase;
    font-weight: normal;
}

.iletisim-body .contact-info-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.iletisim-body .info-block-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #A8A39D;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.iletisim-body .info-block-content {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #2D2D2D;
    line-height: 1.6;
}

.iletisim-body .info-block-content a {
    color: #2D2D2D;
    text-decoration: none;
    transition: color 0.2s;
}

.iletisim-body .info-block-content a:hover {
    color: #B11116;
}

.iletisim-body .contact-form-container {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 45px;
}

.iletisim-body .form-title {
    font-family: 'Monstro', sans-serif;
    font-size: 2.8rem;
    color: #2D2D2D;
    margin-bottom: 35px;
    text-transform: uppercase;
    font-weight: normal;
}

.iletisim-body .contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.iletisim-body .form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.iletisim-body .form-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.iletisim-body .form-input-line {
    width: 100%;
    border: none;
    border-bottom: 1px solid #2D2D2D;
    background: transparent;
    padding: 8px 0;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #2D2D2D;
    outline: none;
    transition: border-color 0.3s;
}

.iletisim-body .form-input-line:focus {
    border-bottom-color: #B11116;
}

.iletisim-body .form-label-float {
    position: absolute;
    left: 0;
    top: 8px;
    color: #888;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    pointer-events: none;
    transition: 0.25s ease all;
}

.iletisim-body .form-input-line:focus~.form-label-float,
.iletisim-body .form-input-line:not(:placeholder-shown)~.form-label-float {
    top: -16px;
    font-size: 12px;
    color: #B11116;
    font-weight: 600;
}

.iletisim-body .submit-btn-wrap {
    margin-top: 15px;
    align-self: flex-start;
}

.iletisim-body .btn-submit-orange {
    background-color: #FAA62C;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    padding: 14px 45px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.iletisim-body .btn-submit-orange:hover {
    background-color: #E08F1E;
    transform: translateY(-2px);
}

.iletisim-body .btn-submit-orange:active {
    transform: translateY(0);
}

.iletisim-body .form-group-checkbox {
    margin: 25px 0 15px 0;
    display: flex;
    align-items: center;
}

.iletisim-body .checkbox-container {
    display: flex;
    align-items: flex-start;
    position: relative;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #555;
    user-select: none;
    padding-left: 30px;
}

.iletisim-body .checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.iletisim-body .checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: transparent;
    border: 1px solid #2D2D2D;
    border-radius: 4px;
    transition: background-color 0.2s, border-color 0.2s;
}

.iletisim-body .checkbox-container:hover input~.checkmark {
    border-color: #FAA62C;
}

.iletisim-body .checkbox-container input:checked~.checkmark {
    background-color: #FAA62C;
    border-color: #FAA62C;
}

.iletisim-body .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.iletisim-body .checkbox-container input:checked~.checkmark:after {
    display: block;
}

.iletisim-body .checkbox-container .checkmark:after {
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.iletisim-body .kvkk-link {
    color: #B11116;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s;
}

.iletisim-body .kvkk-link:hover {
    color: #FAA62C;
}

.iletisim-body .recaptcha-group {
    margin: 15px 0 25px 0;
}

.iletisim-body .kvkk-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.iletisim-body .kvkk-modal.show {
    display: block;
    opacity: 1;
}

.iletisim-body .kvkk-modal-content {
    background-color: #FBF8F1;
    margin: 10% auto;
    padding: 40px;
    border-radius: 20px;
    width: 85%;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
}

.iletisim-body .kvkk-modal.show .kvkk-modal-content {
    transform: translateY(0);
}

.iletisim-body .kvkk-modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 1;
    transition: color 0.2s;
}

.iletisim-body .kvkk-modal-close:hover {
    color: #B11116;
}

.iletisim-body .kvkk-modal h2 {
    font-family: 'Monstro', sans-serif;
    color: #B11116;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 2.2rem;
    text-transform: uppercase;
    font-weight: normal;
}

.iletisim-body .kvkk-modal-body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    max-height: 350px;
    overflow-y: auto;
    padding-right: 15px;
}

.iletisim-body .kvkk-modal-body p {
    margin: 0 0 15px 0;
}

.iletisim-body .contact-map-col {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

.iletisim-body .contact-map-col iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) invert(0.04) contrast(1.15) brightness(0.95);
    display: block;
}

.success-toast {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #2b2b2b;
    border-left: 5px solid #FAA62C;
    color: white;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    font-family: 'Inter', sans-serif;
    z-index: 9999;
    max-width: 400px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-toast.show {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.success-toast h4 {
    margin: 0 0 5px 0;
    font-weight: 700;
    font-size: 1.1rem;
}

.success-toast p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

html[dir="rtl"].iletisim-body .contact-content-col,
html[dir="rtl"] .iletisim-body .contact-content-col {
    padding: 60px 80px 80px 80px;
}

html[dir="rtl"].iletisim-body .form-label-float,
html[dir="rtl"] .iletisim-body .form-label-float {
    left: auto;
    right: 0;
}

html[dir="rtl"].iletisim-body .btn-submit-orange,
html[dir="rtl"] .iletisim-body .btn-submit-orange {
    flex-direction: row-reverse;
}

html[dir="rtl"].iletisim-body .success-toast,
html[dir="rtl"] .iletisim-body .success-toast {
    right: auto;
    left: 40px;
}

@media (max-width: 992px) {
    .iletisim-body .contact-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .iletisim-body .contact-content-col {
        padding: 20px 20px 60px 20px;
    }

    .iletisim-body .contact-title {
        font-size: 4rem;
        margin-bottom: 35px;
    }

    .iletisim-body .contact-map-col {
        height: 450px;
        min-height: 450px;
    }
}

@media (max-width: 576px) {
    .iletisim-body .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .iletisim-body .form-row-2col {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .iletisim-body .contact-title {
        font-size: 3rem;
    }
}

/* Products Page Specific Styles */
.urunler-body .main-header {
    background-color: #FFFFFF !important;
}

.urunler-body .main-header::after {
    background-color: rgba(0, 0, 0, 0.08) !important;
}

.urunler-body .main-header:not(.scrolled) .logo-box {
    background-color: #BA1114 !important;
}

.urunler-body .nav-link-main,
.urunler-body .menu-trigger {
    color: #BA1114 !important;
}

.urunler-body .hamburger span {
    background-color: #BA1114 !important;
}

.urunler-body .lang-circle {
    border-color: #BA1114 !important;
    color: #BA1114 !important;
}

.urunler-body .social-icons a i {
    color: #BA1114 !important;
}

.urunler-body {
    background-color: #FBF8F1 !important;
}

.products-section {
    padding: 110px 40px 40px 40px;
    min-height: 100vh;
}

.products-container {
    width: 100%;
}

.products-breadcrumb {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #888;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.products-title {
    font-family: 'Monstro', sans-serif;
    font-size: 5rem;
    color: #B11116;
    line-height: 0.95;
    margin: 0 0 50px 0;
    text-transform: uppercase;
    font-weight: normal;
}

/* Quality Hero Layout */
.quality-hero-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 90px;
}

.quality-hero-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.orange-circle-bg {
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background-color: #FAA62C;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-product-img {
    width: 460px;
    height: auto;
    object-fit: contain;
    position: absolute;
    transform: rotate(-15deg) translateY(-10px);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.18));
}

.quality-hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 900px;
}

.quality-title {
    font-family: 'Monstro', sans-serif;
    font-size: 3.5rem;
    color: #2D2D2D;
    line-height: 1.05;
    margin: 0 0 25px 0;
    text-transform: uppercase;
    font-weight: normal;
}

.quality-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.75;
    margin: 0;
}

/* Products Grid Layout matching screenshot capsule cards */
.products-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.product-card-new {
    background: linear-gradient(180deg, #FBF8F1 0%, #FFFFFF 100%);
    border-radius: 0 0 500px 500px;
    padding: 10px 30px 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    aspect-ratio: 405 / 738;
}

.product-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(177, 17, 22, 0.05);
}

.product-img-wrap-new {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.product-img-wrap-new img {
    max-width: 90%;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card-new:hover .product-img-wrap-new img {
    transform: scale(1.08) rotate(2deg);
}

.product-info-new {
    margin-bottom: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-cat-new {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #666666;
    margin: 0;
    letter-spacing: 0.5px;
}

.product-spec-new {
    font-family: 'Inter', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #444444;
    margin: 0;
}

.product-btn-new {
    background-color: #FAA62C;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    padding: 15px 50px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.5px;
}

.product-btn-new:hover {
    background-color: #E08F1E;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(250, 166, 44, 0.35);
    color: #FFFFFF;
    text-decoration: none;
}

/* RTL Arabic Overrides */
html[dir="rtl"].urunler-body .products-breadcrumb,
html[dir="rtl"] .urunler-body .products-breadcrumb {
    text-align: right;
}

html[dir="rtl"].urunler-body .products-title,
html[dir="rtl"] .urunler-body .products-title {
    text-align: right;
}

html[dir="rtl"].urunler-body .quality-text,
html[dir="rtl"] .urunler-body .quality-text {
    text-align: right;
}

html[dir="rtl"].urunler-body .quality-title,
html[dir="rtl"] .urunler-body .quality-title {
    text-align: right;
}

html[dir="rtl"].urunler-body .quality-hero-row,
html[dir="rtl"] .urunler-body .quality-hero-row {
    grid-template-columns: 1.2fr 1fr;
}

html[dir="rtl"].urunler-body .quality-hero-left,
html[dir="rtl"] .urunler-body .quality-hero-left {
    order: 2;
}

html[dir="rtl"].urunler-body .quality-hero-right,
html[dir="rtl"] .urunler-body .quality-hero-right {
    order: 1;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .quality-hero-row {
        gap: 40px;
    }

    .orange-circle-bg {
        width: 360px;
        height: 360px;
    }

    .hero-product-img {
        width: 400px;
    }

    .products-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .product-card-new {
        padding: 50px 20px 60px 20px;
    }

    .product-cat-new {
        font-size: 1.35rem;
    }

    .product-spec-new {
        font-size: 1.2rem;
    }

    .product-btn-new {
        font-size: 1rem;
        padding: 12px 42px;
    }
}

@media (max-width: 992px) {
    .quality-hero-row {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    html[dir="rtl"].urunler-body .quality-hero-row,
    html[dir="rtl"] .urunler-body .quality-hero-row {
        grid-template-columns: 1fr;
    }

    html[dir="rtl"].urunler-body .quality-hero-left,
    html[dir="rtl"] .urunler-body .quality-hero-left {
        order: 1;
    }

    html[dir="rtl"].urunler-body .quality-hero-right,
    html[dir="rtl"] .urunler-body .quality-hero-right {
        order: 2;
        text-align: center;
    }

    .quality-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 100px 16px 60px 16px;
    }

    .products-title {
        font-size: 3.5rem;
        margin-bottom: 40px;
    }

    .orange-circle-bg {
        width: 300px;
        height: 300px;
    }

    .hero-product-img {
        width: 350px;
    }

    .products-grid-new {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card-new {
        display: grid;
        grid-template-columns: 100px 1fr;
        grid-template-rows: auto auto;
        gap: 8px 20px;
        aspect-ratio: auto;
        border-radius: 0 75px 75px 0;
        background: linear-gradient(90deg, #FBF8F1 0%, #FFFFFF 100%);
        padding: 18px 35px 18px 18px;
        align-items: center;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .product-img-wrap-new {
        grid-column: 1;
        grid-row: 1 / span 2;
        width: 100px;
        height: 100px;
        min-width: 100px;
        margin-bottom: 0;
        aspect-ratio: 1 / 1;
    }

    .product-img-wrap-new img {
        max-width: 100%;
        filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.1));
    }

    .product-info-new {
        grid-column: 2;
        grid-row: 1;
        margin-bottom: 0;
        text-align: left;
        display: flex;
        flex-direction: column;
        gap: 3px;
    }

    .product-cat-new {
        font-size: 1.2rem;
        font-weight: 600;
        line-height: 1.2;
    }

    .product-spec-new {
        font-size: 1.05rem;
        font-weight: 500;
    }

    .product-btn-new {
        grid-column: 2;
        grid-row: 2;
        justify-self: start;
        font-size: 0.9rem;
        padding: 10px 30px;
        margin-top: 2px;
    }

    /* RTL Arabic support for horizontal card on mobile */
    html[dir="rtl"].urunler-body .product-card-new,
    html[dir="rtl"] .urunler-body .product-card-new {
        grid-template-columns: 1fr 100px;
        border-radius: 75px 0 0 75px;
        background: linear-gradient(270deg, #FBF8F1 0%, #FFFFFF 100%);
        padding: 18px 18px 18px 35px;
    }

    html[dir="rtl"].urunler-body .product-img-wrap-new,
    html[dir="rtl"] .urunler-body .product-img-wrap-new {
        grid-column: 2;
    }

    html[dir="rtl"].urunler-body .product-info-new,
    html[dir="rtl"] .urunler-body .product-info-new {
        grid-column: 1;
        text-align: right;
    }

    html[dir="rtl"].urunler-body .product-btn-new,
    html[dir="rtl"] .urunler-body .product-btn-new {
        grid-column: 1;
        justify-self: end;
    }
}

/* ===== Product Detail Page ===== */
.product-detail-section {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 40px;
    padding-right: 40px;
    background-color: #FBF8F1;
    min-height: 100vh;
}

.detail-breadcrumb {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #666666;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.detail-top-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 100;
    color: #666666;
    margin: 0;
    text-transform: uppercase;
}

/* Circle background for product image */
.detail-circle-bg {
    width: 500px;
    height: 500px;
    background-color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: visible;
}

/* Badge pill - positioned relative to circle wrapper, scales with circle size */
.detail-badge-pill {
    position: absolute;
    top: 10%;
    left: -30%;
    z-index: 5;
    background-color: #B11116;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    padding: 12px 30px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(177, 17, 22, 0.2);
}

/* Product image */
.detail-product-img {
    max-width: 80%;
    height: auto;
    object-fit: contain;
}

/* Main title */
.detail-main-title {
    font-family: 'Monstro', sans-serif;
    font-size: 4.5rem;
    line-height: 0.95;
    margin: 0 0 40px 0;
    text-transform: uppercase;
    font-weight: normal;
    display: flex;
    flex-direction: column;
}

.detail-main-title span {
    color: #B11116;
}

/* Spec cards */
.spec-card {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 18px 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.spec-icon-wrap {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background-color: #FDF4F4;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #B11116;
    font-size: 1.2rem;
}

.spec-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #888888;
    font-weight: 500;
}

.spec-value {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #333333;
    font-weight: 700;
}

@media (max-width: 1200px) {
    .spec-card {
        padding: 12px 14px;
    }

    .spec-icon-wrap {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 1rem;
        margin-right: 10px !important;
    }

    .spec-label {
        font-size: 0.78rem;
    }

    .spec-value {
        font-size: 0.9rem;
    }

    html[dir="rtl"] .spec-icon-wrap {
        margin-right: 0 !important;
        margin-left: 10px !important;
    }
}

@media (max-width: 576px) {
    .spec-card {
        flex-direction: column;
        align-items: flex-start !important;
        padding: 12px 10px;
        gap: 6px;
    }

    .spec-icon-wrap {
        margin-right: 0 !important;
        margin-left: 0 !important;
        margin-bottom: 6px;
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 0.9rem;
    }

    .spec-label {
        font-size: 0.75rem;
    }

    .spec-value {
        font-size: 0.85rem;
    }
}

/* Action buttons */
.btn-action {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 18px 45px;
    border-radius: 50px;
    border: none;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-orange {
    background-color: #FAA62C;
    color: #FFFFFF;
}

.btn-orange:hover {
    background-color: #E08F1E;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(250, 166, 44, 0.3);
    color: #FFFFFF;
    text-decoration: none;
}

.btn-green {
    background-color: #FAA62C;
    color: #FFFFFF;
}

.btn-green:hover {
    background-color: #E08F1E;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(27, 166, 91, 0.3);
    color: #FFFFFF;
    text-decoration: none;
}

/* RTL overrides */
html[dir="rtl"] .detail-badge-pill {
    left: auto;
    right: 4%;
}

html[dir="rtl"] .detail-main-title {
    text-align: right;
}

html[dir="rtl"] .spec-card {
    flex-direction: row-reverse;
}

/* Product Detail Responsive */
@media (max-width: 1400px) {
    .detail-circle-bg {
        width: 420px;
        height: 420px;
    }

    .detail-main-title {
        font-size: 3.8rem;
    }
}

@media (max-width: 1200px) {
    .detail-circle-bg {
        width: 380px;
        height: 380px;
    }

    .detail-main-title {
        font-size: 3.2rem;
    }
}

@media (max-width: 992px) {
    .detail-badge-pill {
        left: 50% !important;
        right: auto !important;
        top: -10px;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .product-detail-section {
        padding-top: 100px;
        padding-bottom: 60px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .detail-circle-bg {
        width: 280px;
        height: 280px;
    }

    .detail-badge-pill {
        font-size: 0.9rem;
        padding: 8px 20px;
    }

    .detail-main-title {
        font-size: 2.5rem;
        margin-bottom: 25px;
    }

    .btn-action {
        width: 100%;
        padding: 14px 20px;
        font-size: 1rem;
    }
}

/* Product Rich Description / SEO Area */
.product-rich-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555555;
    background-color: #fdfdfd;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #f1ece1;
}

.product-rich-description p {
    margin-bottom: 1.5rem;
}

.product-rich-description p:last-child {
    margin-bottom: 0;
}

/* Quality Policy Page */
.quality-policy-page {
    min-height: 100vh;
    padding-top: 118px;
    background:
        radial-gradient(circle at 50% 14%, rgba(255, 255, 255, 0.97), rgba(251, 248, 241, 0.94) 46%, rgba(246, 240, 231, 0.92) 75%, #fbf8f1 100%);
    overflow: hidden;
}

.quality-policy-shell {
    margin: 0 auto;
    border: 1px solid rgba(40, 40, 40, 0.08);
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.9) 0, rgba(252, 248, 241, 0.97) 58%, rgba(245, 239, 228, 0.98) 100%);
    box-shadow: 0 20px 70px rgba(100, 78, 35, 0.07);
}

.quality-policy-top {
    padding: 44px 52px 56px;
}

.quality-policy-breadcrumb {
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #666;
    letter-spacing: 0.03em;
}

.quality-policy-title {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 0;
    font-family: 'Monstro', sans-serif;
    font-size: clamp(3.5rem, 6vw, 5.6rem);
    line-height: 0.94;
    color: #3f3f3f;
    text-transform: uppercase;
}

.quality-policy-title .accent {
    color: #c91316;
}

.quality-commitment-card {
    position: relative;
    margin-top: 8px;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    align-items: center;
    gap: 30px;
    min-height: 610px;
    padding: 96px 56px 92px;
    overflow: hidden;
    isolation: isolate;
}

.quality-commitment-shape {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.quality-commitment-red-corner {
    position: absolute;
    left: -12%;
    bottom: -70px;
    width: 36%;
    height: 400px;
    background: #ba1114;
    border-top-right-radius: 220px;
    z-index: -1;
}

.quality-commitment-copy {
    max-width: 620px;
    position: relative;
    z-index: 1;
}

.quality-commitment-copy h2 {
    margin: 0 0 26px;
    font-family: 'Monstro', sans-serif;
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 0.94;
    color: #3f3f3f;
    text-transform: uppercase;
}

.quality-commitment-copy p {
    margin: 0;
    max-width: 560px;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.35;
    color: #6b6b6b;
}

.quality-commitment-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    position: relative;
    z-index: 1;
}

.quality-visual-stage {
    position: relative;
    width: min(100%, 820px);
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quality-commitment-image {
    width: min(100%, 860px);
    height: auto;
    display: block;
    object-fit: contain;
}

.quality-standards-band {
    position: relative;
    margin-top: -6px;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 30px;
    min-height: 630px;
    padding: 112px 56px 118px;
    background: #FBECD7;
    overflow: hidden;
    isolation: isolate;
}

.quality-standards-shape {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.quality-standards-copy h2 {
    margin: 0 0 28px;
    font-family: 'Monstro', sans-serif;
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 0.94;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.quality-standards-copy p {
    margin: 0;
    max-width: 510px;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 1;
}

.quality-badges-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-content: center;
    position: relative;
    z-index: 1;
    padding-block: 10px;
    max-width: 680px;
    margin-top: -80px;
}

html[dir="rtl"] .quality-badges-grid {
    transform: none;
}

.quality-badge-pill {
    min-height: 128px;
    padding: 24px 20px;
    border: 2px solid rgba(255, 255, 255, 0.88);
    border-radius: 999px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.quality-badge-pill strong {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.5rem, 1.9vw, 2.15rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.quality-badge-pill span {
    margin-top: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

@media (max-width: 1200px) {

    .quality-commitment-card,
    .quality-standards-band {
        grid-template-columns: 1fr;
    }

    .quality-commitment-card {
        min-height: 0;
        padding-top: 72px;
        padding-bottom: 64px;
    }

    .quality-standards-band {
        min-height: 0;
        padding-top: 86px;
        padding-bottom: 88px;
    }

    .quality-commitment-visual {
        min-height: 420px;
    }

    .quality-badges-grid {
        transform: none !important;
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .quality-policy-page {
        padding-top: 104px;
    }

    .quality-policy-top {
        padding: 28px 22px 42px;
    }

    .quality-policy-breadcrumb {
        margin-bottom: 22px;
    }

    .quality-policy-title {
        font-size: clamp(2rem, 9vw, 3rem);
        letter-spacing: -0.03em;
        line-height: 1;
    }

    .quality-commitment-card {
        min-height: 0;
        padding: 52px 22px 46px;
        background: #FBECD7;
        border-radius: 0;
        gap: 18px;
    }

    .quality-commitment-shape,
    .quality-standards-shape,
    .quality-commitment-red-corner {
        display: none;
    }

    .quality-commitment-copy h2,
    .quality-standards-copy h2 {
        font-size: clamp(1.6rem, 8vw, 2.4rem);
        line-height: 1.1;
        letter-spacing: -0.02em;
    }

    .quality-commitment-copy p,
    .quality-standards-copy p {
        font-size: 15px;
    }

    .quality-visual-stage {
        min-height: 340px;
    }

    .quality-commitment-image {
        width: 100%;
        max-width: 560px;
    }

    .quality-standards-band {
        padding: 64px 22px 74px;
        background: #BA1114;
        border-radius: 0;
        gap: 28px;
    }

    .quality-badges-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .quality-badge-pill {
        min-height: 100px;
        border-radius: 36px;
        padding: 20px;
    }

    .quality-badge-pill strong {
        font-size: 1.35rem;
    }

    .quality-badge-pill span {
        margin-top: 6px;
        font-size: 12px;
    }
}

body:has(.blog-page),
body:has(.blog-detail-page) {
    background: #fbf8f1;
}

/* ========================================================================= */
/* PREMIUM SPECIAL PRODUCT ALERTS (PROTORTILLA & TAM BUĞDAY)                 */
/* ========================================================================= */

.premium-product-alert {
    display: flex;
    align-items: flex-start;
    padding: 0 0 30px 0;
    margin-bottom: 20px;
    gap: 20px;
    background: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.premium-alert-icon {
    font-size: 40px;
    line-height: 1;
    margin-top: 8px;
}

.premium-alert-content {
    flex: 1;
}

.premium-alert-title {
    font-family: 'Monstro', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin: 0 0 12px 0;
    text-transform: uppercase;
}

.premium-alert-desc {
    font-family: 'Monstro', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.85;
    color: #333;
}

/* Protortilla Theme */
.protortilla-alert .premium-alert-title {
    color: #f39c12;
    /* Energetic Orange */
}

/* Whole Wheat Theme */
.wholewheat-alert .premium-alert-title {
    color: #8d6e63;
    /* Warm Brown */
}

/* ------------------------------------------------------------------------- */
/* RESPONSIVE Adjustments                                                   */
/* ------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .premium-product-alert {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding-bottom: 20px;
    }

    .premium-alert-icon {
        margin-top: 0;
        margin-bottom: 5px;
    }
}

.blog-page {
    padding: 118px 20px 72px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), rgba(251, 248, 241, 0.92) 34%, rgba(243, 233, 217, 0.88) 78%, #f3ead9 100%);
}

.blog-shell {
    margin: 0 auto;
    border: 1px solid rgba(40, 40, 40, 0.08);
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.9) 0, rgba(252, 248, 241, 0.97) 58%, rgba(245, 239, 228, 0.98) 100%);
    box-shadow: 0 20px 70px rgba(100, 78, 35, 0.07);
}

.blog-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
    margin-bottom: 42px;
}


.blog-hero-copy {
    padding: 25px 44px 12px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 0;
    position: relative;
    overflow: hidden;
}




.blog-breadcrumb,
.blog-eyebrow,
.blog-card-tag,
.blog-card-footer span,
.blog-card-footer a {
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.blog-breadcrumb {
    font-size: 13px;
    font-weight: 800;
    color: #686868;
    margin-bottom: 18px;
}

.blog-eyebrow {
    font-size: 13px;
    font-weight: 800;
    color: #ba1114;
    margin-bottom: 14px;
}

.blog-title {
    margin: 0 0 16px;
    font-family: 'Monstro', sans-serif;
    font-size: clamp(3.5rem, 7vw, 6.2rem);
    line-height: 0.9;
    color: #ba1114;
    text-transform: uppercase;
}

.blog-subtitle,
.blog-featured-content p,
.blog-story-copy p,
.blog-section-heading p {
    font-family: 'Inter', sans-serif;
    color: #666;
}

.blog-subtitle {
    max-width: 760px;
    font-size: 16px;
    line-height: 1.55;
}

.blog-featured-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.blog-featured-card,
.blog-story-card {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid rgba(41, 41, 41, 0.08);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 254, 250, 0.96) 0%, rgba(248, 242, 233, 0.92) 100%);
    box-shadow: 0 18px 50px rgba(101, 76, 30, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.blog-featured-card {
    min-height: 620px;
}

.blog-featured-card:hover,
.blog-story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 56px rgba(101, 76, 30, 0.12);
    border-color: rgba(186, 17, 20, 0.16);
}

.blog-featured-media,
.blog-story-visual {
    position: relative;
    overflow: hidden;
}

.blog-featured-media {
    background: linear-gradient(145deg, #f4ebdb 0%, #f7f0e4 100%);
    min-height: 350px;
    height: 350px;
}

.blog-featured-media img,
.blog-story-visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.blog-featured-media img {
    object-position: center;
}

.blog-featured-content {
    padding: 26px 26px 22px;
    display: grid;
    grid-template-rows: auto auto auto 1fr auto;
    align-content: start;
    background: transparent;
}

.blog-card-tag {
    display: none;
    align-self: flex-start;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(186, 17, 20, 0.08);
    color: #ba1114;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 14px;
}

.blog-featured-content h2,
.blog-story-copy h3 {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #262626;
}

.blog-featured-content h2 {
    max-width: none;
    min-height: 4.2rem;
    font-size: clamp(1.5rem, 1.8vw, 2rem);
    line-height: 1.06;
    margin-bottom: 10px;
}

.blog-featured-content p {
    max-width: none;
    min-height: 3.8rem;
    font-size: 14px;
    line-height: 1.55;
    margin: 0 0 16px;
}

.blog-card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0 0;
    border-top: 1px solid rgba(41, 41, 41, 0.09);
}

.blog-card-footer span {
    font-size: 12px;
    font-weight: 800;
    color: #757575;
}

.blog-card-footer a {
    font-size: 12px;
    font-weight: 900;
    color: #ba1114;
    text-decoration: none;
}

.blog-grid-section {
    display: grid;
    gap: 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.blog-story-card {
    min-height: 560px;
}

.blog-story-card-wide {
    min-height: 560px;
}

.blog-story-card-wide .blog-story-visual {
    min-height: 290px;
    background: linear-gradient(135deg, #f3eadc 0%, #faf3e9 100%);
}

.blog-story-card .blog-story-visual {
    min-height: 290px;
    height: 290px;
    background: linear-gradient(145deg, #f5ede0 0%, #f9f4eb 100%);
}

.blog-story-visual-neutral img {
    object-fit: contain;
    padding: 28px 24px 18px;
    background: linear-gradient(180deg, rgba(255, 250, 243, 0.92), rgba(247, 239, 229, 0.96));
}

.blog-story-card-accent .blog-story-visual {
    background: linear-gradient(140deg, #f8ead4 0%, #fbf4e9 100%);
}

.blog-story-copy {
    display: grid;
    grid-template-rows: auto auto auto 1fr auto;
    align-content: start;
    padding: 24px 24px 22px;
}

.blog-story-copy h3 {
    min-height: 4rem;
    font-size: clamp(1.45rem, 1.75vw, 1.95rem);
    line-height: 1.06;
    margin-bottom: 10px;
}

.blog-story-copy p {
    font-size: 14px;
    line-height: 1.55;
    margin: 0 0 16px;
}

.blog-detail-page {
    padding: 122px 20px 72px;
}

.blog-detail-shell {
    margin: 0 auto;
    border: 1px solid rgba(40, 40, 40, 0.08);
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.9) 0, rgba(252, 248, 241, 0.97) 58%, rgba(245, 239, 228, 0.98) 100%);
    box-shadow: 0 20px 70px rgba(100, 78, 35, 0.07);
}

.blog-detail-top {
    max-width: 980px;
    margin-bottom: 30px;
    padding: 30px;
}

.blog-detail-top .blog-card-tag {
    margin-bottom: 20px;
}

.blog-detail-title {
    margin: 0 0 14px;
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 4.5rem);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: #232323;
}

.blog-detail-meta {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #747474;
    text-transform: uppercase;
}

.blog-detail-hero {
    overflow: hidden;
    border: 1px solid rgba(41, 41, 41, 0.09);
    background: rgba(255, 252, 247, 0.92);
    box-shadow: 0 24px 70px rgba(97, 66, 18, 0.07);
    margin-bottom: 34px;
    border-radius: 32px;
}

.blog-detail-hero img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.blog-detail-content-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: start;
}

.blog-detail-article,
.blog-detail-side-card {
    border: 1px solid rgba(41, 41, 41, 0.09);
    background: rgba(255, 252, 247, 0.88);
    box-shadow: 0 24px 70px rgba(97, 66, 18, 0.07);
    border-radius: 30px;
}

.blog-detail-article {
    padding: 38px 40px 44px;
}

.blog-detail-lead,
.blog-detail-article p,
.blog-detail-side-card p {
    font-family: 'Inter', sans-serif;
    color: #000000;
}

.blog-detail-lead {
    margin: 0 0 22px;
    font-size: 22px;
    line-height: 1.5;
    color: #3a3a3a;
}

.blog-detail-article p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.7;
}

.blog-detail-richtext p:last-child {
    margin-bottom: 0;
}

.blog-detail-article blockquote {
    margin: 28px 0;
    padding: 22px 24px;
    border-left: 4px solid #ba1114;
    background: rgba(186, 17, 20, 0.05);
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    line-height: 1.45;
    font-weight: 700;
    color: #2f2f2f;
}

.blog-detail-side-card {
    padding: 28px 28px 30px;
    position: sticky;
    top: 120px;
}

.blog-detail-side-card h2 {
    margin: 0 0 14px;
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #232323;
}

.blog-detail-side-card p {
    margin: 0 0 22px;
    font-size: 15px;
    line-height: 1.55;
}

.blog-detail-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1.4px solid rgba(66, 66, 66, 0.5);
    color: #ba1114;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

@media (max-width: 1200px) {

    .blog-hero,
    .blog-grid,
    .blog-featured-grid,
    .blog-featured-card,
    .blog-detail-content-wrap {
        grid-template-columns: 1fr;
    }

    .blog-hero-copy,
    .blog-featured-card {
        min-height: 0;
    }

    .blog-featured-media {
        min-height: 360px;
        height: 360px;
    }

    .blog-story-card,
    .blog-story-card-wide {
        min-height: 0;
        height: auto;
    }

    .blog-detail-side-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .blog-page {
        padding: 34px 14px 56px;
    }

    .blog-detail-top {
        padding: 10px;
    }

    .blog-detail-page {
        padding: 34px 14px 56px;
    }

    .blog-hero,
    .blog-grid-section,
    .blog-grid {
        gap: 18px;
    }

    .blog-hero-copy,
    .blog-featured-content,
    .blog-story-copy {
        padding-left: 20px;
        padding-right: 20px;
    }

    .blog-hero-copy {
        min-height: 0;
        padding-top: 28px;
        padding-bottom: 32px;
        border-radius: 24px;
    }

    .blog-breadcrumb {
        margin-bottom: 20px;
    }

    .blog-title {
        font-size: clamp(2.8rem, 16vw, 4.3rem);
    }

    .blog-subtitle,
    .blog-featured-content p,
    .blog-story-copy p {
        font-size: 14px;
        line-height: 1.5;
    }

    .blog-featured-media,
    .blog-story-card .blog-story-visual,
    .blog-story-card-wide .blog-story-visual {
        min-height: 240px;
    }

    .blog-featured-card {
        grid-template-rows: 240px minmax(0, 1fr);
        min-height: 0;
        border-radius: 24px;
    }

    .blog-featured-media {
        height: 240px;
    }

    .blog-featured-content h2,
    .blog-featured-content p,
    .blog-story-copy h3 {
        min-height: 0;
    }

    .blog-story-card {
        min-height: 0;
        border-radius: 24px;
    }

    .blog-card-footer {
        padding-top: 14px;
    }

    .blog-detail-article {
        padding: 24px 20px 28px;
    }

    .blog-detail-lead {
        font-size: 18px;
    }

    .blog-detail-article p {
        font-size: 14px;
        line-height: 1.6;
    }

    .blog-detail-article blockquote {
        padding: 18px 18px;
        font-size: 18px;
    }

    .blog-detail-side-card {
        padding: 22px 20px 24px;
    }

    .blog-card-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-story-card {
        border-radius: 0 0 96px 96px;
    }
}

.blog-media-link {
    display: block;
    width: 100%;
    height: 100%;
}

.blog-title-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.24s ease;
}

.blog-title-link:hover {
    color: #ba1114;
}

/* Force LTR direction on the beauty section and its scroll pin spacers in RTL locales to prevent alignment and animation breakage */
html[dir="rtl"] .beauty-section,
html[dir="rtl"] .pin-spacer-beauty-beauty-scene-master-trigger,
html[dir="rtl"] #beauty-scene-master {
    direction: ltr !important;
}

/* ==========================================================================
   HAKKIMIZDA PAGE SPECIFIC STYLES
   ========================================================================== */
.hakkimizda-body {
    background-color: #FBF8F1 !important;
}

.hakkimizda-hero-section {
    position: relative;
    background-color: #FBF8F1;
    overflow: hidden;
    min-height: 980px;
    width: 100%;
    display: flex;
    align-items: flex-start;
}

.hakkimizda-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hakkimizda-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* object-position: center bottom; */
}

.hakkimizda-grid-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    padding: 110px 40px 40px 40px;
    width: 100%;
}

.hakkimizda-breadcrumb {
    font-size: 0.95rem;
    color: #888;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.hakkimizda-title {
    font-family: 'Monstro', sans-serif;
    font-size: 5.5rem;
    color: #B11116;
    line-height: 0.9;
    margin: 0;
    text-transform: uppercase;
    font-weight: normal;
}

.hakkimizda-right-col {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #666666;
    line-height: 1.7;
    padding-top: 15px;
}

@media (max-width: 992px) {
    .hakkimizda-hero-section {
        display: flex;
        flex-direction: column;
        min-height: auto;
    }

    .hakkimizda-hero-bg {
        position: relative;
        width: 100%;
        height: 350px;
        order: 2;
        z-index: 1;
    }

    .hakkimizda-hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center bottom;
    }

    .hakkimizda-grid-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 120px 20px 40px 20px;
        order: 1;
        position: relative;
        z-index: 2;
    }

    .hakkimizda-title {
        font-size: 4rem;
    }

    .hakkimizda-right-col {
        font-size: 1.1rem;
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    .hakkimizda-hero-section {
        min-height: auto;
    }
}

@media (max-width: 576px) {
    .hakkimizda-hero-bg {
        height: 250px;
    }
}

/* Uretim Section Styles */
.uretim-section {
    background: linear-gradient(to bottom, #FBF8F1 50%, #BA1114 50%);
    overflow: hidden;
    margin-top: -1px;
}

.uretim-card {
    background-color: #FFFFFF;
    border-top-left-radius: 380px;
    border-bottom-left-radius: 380px;
    width: 100%;
    max-width: 100%;
    height: 1313px;
    margin-left: auto;
    margin-right: 0;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.uretim-grid-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
    padding: 220px 40px 60px 40px;
    width: 100%;
}

.uretim-title {
    font-family: 'Monstro', sans-serif;
    font-size: 5rem;
    line-height: 0.95;
    margin: 0;
    text-transform: uppercase;
    font-weight: normal;
    display: flex;
    flex-direction: column;
}

.uretim-title .red-title {
    color: #B11116;
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 8px;
    display: inline-block;
    width: fit-content;
}



.uretim-title .dark-title {
    color: #333333;
}

.uretim-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.uretim-badge {
    background-color: #EFECE6;
    color: #B11116;
    padding: 8px 18px;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.uretim-right-col {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #666666;
    line-height: 1.7;
    padding-top: 15px;
}

.uretim-image-wrap {
    width: 100%;
    height: 750px;
    position: relative;
    overflow: hidden;
}

.uretim-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
}

.factory-overlay {
    position: absolute;
    bottom: 60px;
    left: 110px;
    z-index: 20;
    pointer-events: none;
}

/* Diğer dillerde başlığın konumunu 170px yapıyoruz  */
html:not([lang="tr"]) .factory-overlay {
    left: 170px;
}

.overlay-num {
    font-family: 'Monstro', sans-serif;
    font-size: 5.5rem;
    color: #BA1114;
    line-height: 1;
    letter-spacing: -2px;
}

.overlay-txt {
    font-family: 'Monstro', sans-serif;
    font-size: 3.2rem;
    color: #555555;
    line-height: 1;
    letter-spacing: -1px;
}

@media (max-width: 1400px) {
    .uretim-card {
        border-top-left-radius: 200px;
        border-bottom-left-radius: 200px;
    }

    .uretim-grid-container {
        padding: 120px 40px 60px 40px;
        gap: 40px;
    }

    .factory-overlay {
        left: 40px;
    }
}

@media (max-width: 992px) {

    .uretim-card {
        border-top-left-radius: 40px;
        border-bottom-left-radius: 40px;
        height: auto;
    }

    .uretim-grid-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 60px 20px 40px 20px;
    }

    .uretim-image-wrap {
        width: 100%;
        height: 380px;
        margin: 0 auto 30px auto;
        position: relative;
    }

    .uretim-image-wrap img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain;
        object-position: bottom center;
    }

    .uretim-title {
        font-size: 3.8rem;
    }

    .uretim-right-col {
        font-size: 1.1rem;
        padding-top: 0;
    }

    .factory-overlay {
        position: absolute;
        bottom: 240px;
        left: 20px;
        z-index: 20;
    }

    .overlay-num {
        font-size: 3.2rem;
        letter-spacing: -1px;
    }

    .overlay-txt {
        font-size: 2rem;
        letter-spacing: -0.5px;
    }
}

/* RTL adjustments */
html[dir="rtl"] .uretim-card {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 380px;
    border-bottom-right-radius: 380px;
    margin-left: 0;
    margin-right: auto;
}

html[dir="rtl"] .uretim-grid-container {
    padding: 120px 40px 60px 40px;
}

html[dir="rtl"] .uretim-title .red-title::after {
    left: auto;
    right: 0;
}

html[dir="rtl"] .factory-overlay {
    left: auto;
    right: 40px;
}

/* Arapça (RTL) ve diğer dillerde başlığın sağdan konumunu 170px yapıyoruz  */
html[dir="rtl"]:not([lang="tr"]) .factory-overlay {
    left: auto;
    right: 170px;
}

@media (max-width: 1400px) {
    html[dir="rtl"] .uretim-card {
        border-top-right-radius: 200px;
        border-bottom-right-radius: 200px;
    }

    html[dir="rtl"] .uretim-grid-container {
        padding: 120px 40px 60px 40px;
    }

    html[dir="rtl"] .factory-overlay {
        right: 40px;
    }
}

@media (max-width: 992px) {
    html[dir="rtl"] .uretim-card {
        border-top-right-radius: 40px;
        border-bottom-right-radius: 40px;
    }

    html[dir="rtl"] .uretim-grid-container {
        padding: 60px 20px 40px 20px;
    }

    html[dir="rtl"] .factory-overlay {
        right: 20px;
        left: auto;
    }
}

/* Global Agimiz Section Styles */
.global-section {
    background-color: #FBF8F1;
    overflow: hidden;
    margin-top: -1px;
}

.global-card {
    background-color: #BA1114;
    border-top-right-radius: 380px;
    border-bottom-right-radius: 380px;
    width: 100%;
    max-width: 100%;
    height: 776px;
    margin-right: auto;
    margin-left: 0;
    overflow: hidden;
}

.global-grid-container {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: center;
    height: 100%;
    padding: 60px 80px 60px 40px;
    width: 100%;
}

.global-title {
    font-family: 'Monstro', sans-serif;
    font-size: 5rem;
    line-height: 0.95;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    font-weight: normal;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
}

.global-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 520px;
}

.global-right-col {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.world-img {
    width: 100%;
    max-width: 750px;
    height: auto;
    object-fit: contain;
}

@media (max-width: 1400px) {
    .global-card {
        border-top-right-radius: 200px;
        border-bottom-right-radius: 200px;
        height: 650px;
    }

    .global-grid-container {
        padding: 40px 60px 40px 40px;
    }

    .global-title {
        font-size: 4rem;
    }
}

@media (max-width: 992px) {
    .global-card {
        border-top-right-radius: 0px;
        border-bottom-right-radius: 0px;
        height: auto;
    }

    .global-grid-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 60px 20px 40px 20px;
    }

    .global-title {
        font-size: 3.5rem;
    }

    .global-desc {
        max-width: 100%;
    }

    .world-img {
        max-width: 100%;
    }
}

/* Global Section RTL */
html[dir="rtl"] .global-card {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 380px;
    border-bottom-left-radius: 380px;
    margin-left: auto;
    margin-right: 0;
}

html[dir="rtl"] .global-grid-container {
    padding: 60px 40px 60px 80px;
}

@media (max-width: 1400px) {
    html[dir="rtl"] .global-card {
        border-top-left-radius: 200px;
        border-bottom-left-radius: 200px;
    }

    html[dir="rtl"] .global-grid-container {
        padding: 40px 40px 40px 60px;
    }
}

@media (max-width: 992px) {
    html[dir="rtl"] .global-card {
        border-top-left-radius: 40px;
        border-bottom-left-radius: 40px;
    }

    html[dir="rtl"] .global-grid-container {
        padding: 60px 20px 40px 20px;
    }
}

/* Ozel Uretim Section Styles */
.ozel-section {
    background: linear-gradient(to bottom, #BA1114 50%, #FF9700 50%);
    overflow: hidden;
    margin-top: -1px;
}

.ozel-card {
    background-color: #FFFFFF;
    border-top-left-radius: 380px;
    border-bottom-left-radius: 380px;
    width: 100%;
    max-width: 100%;
    height: 776px;
    margin-left: auto;
    margin-right: 0;
    overflow: hidden;
}

.ozel-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    height: 100%;
    padding: 60px 40px 60px 130px;
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
}

.ozel-img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
}

.ozel-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
}

.ozel-title {
    font-family: 'Monstro', sans-serif;
    font-size: 4.5rem;
    line-height: 0.95;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    font-weight: normal;
    color: #333333;
    display: flex;
    flex-direction: column;
}

.ozel-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 1.7;
    max-width: 520px;
}

@media (max-width: 1400px) {
    .ozel-card {
        border-top-left-radius: 200px;
        border-bottom-left-radius: 200px;
        height: 600px;
    }
}

@media (max-width: 992px) {
    .ozel-section {
        padding: 40px 0;
    }

    .ozel-card {
        border-top-left-radius: 40px;
        border-bottom-left-radius: 40px;
        height: auto;
    }

    .ozel-grid-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 60px 20px 40px 20px;
    }

    .ozel-img-placeholder {
        max-width: 480px;
        margin: 0 auto;
        aspect-ratio: 16/10;
    }

    .ozel-title {
        font-size: 3.2rem;
    }

    .ozel-desc {
        max-width: 100%;
    }
}

/* Ozel Section RTL */
html[dir="rtl"] .ozel-card {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 354px;
    border-bottom-right-radius: 354px;
    margin-left: 0;
    margin-right: auto;
}

@media (max-width: 1400px) {
    html[dir="rtl"] .ozel-card {
        border-top-right-radius: 200px;
        border-bottom-right-radius: 200px;
    }
}

@media (max-width: 992px) {
    html[dir="rtl"] .ozel-card {
        border-top-right-radius: 40px;
        border-bottom-right-radius: 40px;
    }
}

/* Kurumsal Degerler Section */
.degerler-section {
    background-color: #FF9700;
    padding: 72px 40px 84px;
    position: relative;
    overflow: visible;
    margin-top: -1px;
}

.degerler-section .contact-wheat-wrap {
    bottom: -450px;
}

.degerler-container {
    width: 100%;

}

.degerler-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.degerler-label,
.degerler-column-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.degerler-title {
    font-family: 'Monstro', sans-serif;
    font-size: clamp(2.6rem, 4.8vw, 4.0rem);
    font-weight: normal;
    line-height: 1;
    color: #FFFFFF;
    margin: 0;
    text-transform: uppercase;
}

.degerler-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.7);
    margin: 36px 0 52px;
}

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

.degerler-column {
    min-width: 0;
}

.degerler-column-title {
    font-family: 'Monstro', sans-serif;
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: normal;
    line-height: 1.05;
    color: #FFFFFF;
    margin: 14px 0 30px;
    text-transform: uppercase;
}

.degerler-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.degerler-list li {
    position: relative;
    padding-left: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.96);
}

.degerler-list li::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    width: 10px;
    height: 2px;
    background-color: #FFFFFF;
    border-radius: 999px;
}

@media (max-width: 992px) {
    .degerler-section {
        padding: 56px 20px 64px;
    }

    .degerler-divider {
        margin: 28px 0 36px;
    }

    .degerler-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .degerler-column-title {
        margin-bottom: 24px;
    }

    .degerler-list {
        gap: 20px;
    }

    .degerler-list li {
        font-size: 1rem;
        padding-left: 20px;
    }

    .degerler-section .contact-wheat-wrap {
        display: none !important;
    }
}

html[dir="rtl"] .degerler-list li {
    padding-left: 0;
    padding-right: 24px;
}

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

/* Video Modal Styles */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.video-modal-content {
    position: relative;
    width: min(90%, 960px);
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 30px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s, transform 0.2s;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
}

.video-modal-iframe-wrap {
    width: 100%;
    height: 100%;
}

.video-modal-iframe-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --- RUSSIAN LOCALE BEAUTY SCENE FONT ADJUSTMENTS --- */
html[lang="ru"] .beauty-scene-text-top-intro-smet {
    font-size: clamp(1.8rem, 7.5vw, 100px) !important;
}

html[lang="ru"] .beauty-scene-text-bottom-intro-smet {
    font-size: clamp(2.2rem, 9vw, 115px) !important;
}

html[lang="ru"] .beauty-product-title-smet {
    font-size: clamp(3.6rem, 7.2vw, 105px) !important;
}

@media (max-width: 768px) {
    html[lang="ru"] .beauty-scene-text-top-intro-smet {
        font-size: clamp(1.4rem, 6.5vw, 55px) !important;
    }

    html[lang="ru"] .beauty-scene-text-bottom-intro-smet {
        font-size: clamp(1.8rem, 8vw, 65px) !important;
    }

    html[lang="ru"] .beauty-product-title-smet {
        font-size: clamp(2.5rem, 10vw, 50px) !important;
    }
}

/* --- RUSSIAN LOCALE QUALITY STANDARDS FONT ADJUSTMENTS --- */
html[lang="ru"] .quality-standards-copy h2 {
    font-size: clamp(2.2rem, 4.2vw, 4rem) !important;
}

html[lang="ru"] .quality-policy-title {
    font-size: clamp(2.5rem, 4.5vw, 4.2rem) !important;
}

@media (max-width: 768px) {
    html[lang="ru"] .quality-standards-copy h2 {
        font-size: clamp(1.4rem, 6.5vw, 2rem) !important;
    }

    html[lang="ru"] .quality-policy-title {
        font-size: clamp(1.5rem, 6.5vw, 2.3rem) !important;
    }
}

:root {
    color-scheme: light only;
}

@media (prefers-color-scheme: dark) {
    :root {
        background-color: white !important;
        color: black !important;
        filter: none !important;
    }
}

/* ========================================================================= */
/* PREMIUM EDITORIAL BLOCKS & TECH DOCS                                      */
/* ========================================================================= */

.premium-editorial-block {
    border-radius: 32px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.protortilla-editorial {
    background: linear-gradient(135deg, #0a1930 0%, #152e52 100%);
    color: #fff;
    box-shadow: 0 20px 40px rgba(10, 25, 48, 0.2);
}

.tam-bugdayli-tortilla-editorial {
    background: linear-gradient(135deg, #f4e7d3 0%, #dcb38a 100%);
    color: #3e2723;
    box-shadow: 0 20px 40px rgba(141, 110, 99, 0.15);
}

.tam-bugdayli-tortilla-editorial .editorial-subtitle {
    color: #8d6e63;
}

/* Spinach Theme */
.ispanakli-tortilla-editorial {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #1b5e20;
    box-shadow: 0 20px 40px rgba(46, 125, 50, 0.15);
}

.ispanakli-tortilla-editorial .editorial-subtitle {
    color: #388e3c;
}

/* Tomato Theme */
.domatesli-tortilla-editorial {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    color: #b71c1c;
    box-shadow: 0 20px 40px rgba(198, 40, 40, 0.15);
}

.domatesli-tortilla-editorial .editorial-subtitle {
    color: #d32f2f;
}

/* Purple Flour Theme */
.mor-unlu-tortilla-editorial {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    color: #4a148c;
    box-shadow: 0 20px 40px rgba(106, 27, 154, 0.15);
}

.mor-unlu-tortilla-editorial .editorial-subtitle {
    color: #7b1fa2;
}

/* Karakilcik Theme */
.karakilcikli-tortilla-editorial {
    background: linear-gradient(135deg, #efebe9 0%, #d7ccc8 100%);
    color: #3e2723;
    box-shadow: 0 20px 40px rgba(78, 52, 46, 0.15);
}

.karakilcikli-tortilla-editorial .editorial-subtitle {
    color: #5d4037;
}

/* Plain Theme */
.sade-tortilla-editorial {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #212529;
    box-shadow: 0 20px 40px rgba(33, 37, 41, 0.1);
}

.sade-tortilla-editorial .editorial-subtitle {
    color: #495057;
}

/* Wheat Flour Theme */
.bugday-unu-tortillasi-editorial {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    color: #ff6f00;
    box-shadow: 0 20px 40px rgba(255, 143, 0, 0.15);
}

.bugday-unu-tortillasi-editorial .editorial-subtitle {
    color: #ff8f00;
}

/* Lavash Theme */
.dondurulmus-lavas-editorial {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    color: #e65100;
    box-shadow: 0 20px 40px rgba(230, 81, 0, 0.15);
}

.dondurulmus-lavas-editorial .editorial-subtitle {
    color: #ef6c00;
}

.pos-hidden {
    transform: translate(-50%, -50%) scale(0.4) rotateY(0deg);
    filter: blur(10px);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

/* Premium Loader  */
.premium-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #FEFBF6;
    /* Premium krem/beyaz tonu  */
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s cubic-bezier(0.85, 0, 0.15, 1), visibility 0.6s;
}

.premium-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 250px;
}

.loader-logo {
    width: 150px;
    height: auto;
    animation: pulse 2s infinite ease-in-out;
}

.progress-bar-wrap {
    width: 100%;
    height: 3px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background-color: #FAA62C;
    /* Turuncu kurumsal renk kalabilir , harika durur */
    transition: width 0.1s linear;
}

.progress-text {
    color: #212529;
    /* Açık temada okunması için koyu renk  */
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.8;
    }
}

.editorial-image-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.editorial-image-wrapper img {
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.25));
    transform: scale(1.05);
}

.editorial-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.protortilla-editorial .editorial-subtitle {
    color: #f39c12;
}

.wholewheat-editorial .editorial-subtitle {
    color: #8d6e63;
}

.editorial-title {
    font-family: 'Monstro', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.1;
}

.editorial-desc {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Feature Badges in Technical Docs */
.tech-feature-badge {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 20px;
    min-width: 140px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.tech-feature-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.tech-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    display: block;
    letter-spacing: 0.5px;
}

@media (max-width: 991px) {
    .premium-editorial-block .row {
        flex-direction: column;
    }

    .editorial-image-wrapper {
        padding: 40px 20px 0;
    }

    .editorial-image-wrapper img {
        transform: scale(1);
    }

    .tech-feature-badge {
        min-width: 110px;
        padding: 15px;
    }
}

/* ==========================================================================
   MEDYADA BIZ (MEDIA GALLERY) PAGE
   ========================================================================== */

.media-gallery-section {
    padding: 80px 25px;
    background-color: #FBF8F1;
}

.media-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Filters */
.media-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.media-filter-btn {
    background: transparent;
    border: 2px solid #BA1114;
    color: #BA1114;
    padding: 10px 30px;
    border-radius: 50px;
    font-family: var(--font-base);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.media-filter-btn:hover,
.media-filter-btn.active {
    background: #BA1114;
    color: #fff;
    box-shadow: 0 5px 15px rgba(186, 17, 20, 0.2);
}

/* Masonry Grid */
.media-masonry-grid {
    column-count: 3;
    column-gap: 20px;
}

.media-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.media-image-wrapper {
    position: relative;
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: auto;
}

.media-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

/* Overlay Effect */
.media-overlay {
    position: absolute;
    inset: 0;
    background: rgba(186, 17, 20, 0.85);
    /* brand red with opacity */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.media-image-wrapper:hover .media-overlay {
    opacity: 1;
}

.media-image-wrapper:hover img {
    transform: scale(1.05);
}

.media-overlay i {
    font-size: 32px;
    color: #fff;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.media-overlay span {
    color: #fff;
    font-family: var(--font-base);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    padding: 0 20px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.media-image-wrapper:hover .media-overlay i,
.media-image-wrapper:hover .media-overlay span {
    transform: translateY(0);
}

/* Lightbox */
.media-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.media-lightbox.active {
    opacity: 1;
    pointer-events: auto;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.media-lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
    text-align: center;
}

.media-lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.media-lightbox-caption {
    color: #fff;
    font-family: var(--font-base);
    font-size: 18px;
    margin-top: 15px;
    font-weight: 500;
}

.media-lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.media-lightbox-close:hover {
    color: #BA1114;
}

/* Responsive */
@media (max-width: 1024px) {
    .media-masonry-grid {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .media-masonry-grid {
        column-count: 1;
    }

    .media-filters {
        gap: 10px;
    }

    .media-filter-btn {
        padding: 8px 20px;
        font-size: 14px;
        flex: 1 1 auto;
        text-align: center;
    }
}