/* =========================================================
   KAHRİMAN TİCARET
   AVİZE PARÇALARI SAYFASI
   ========================================================= */


/* =========================
   GENEL AYARLAR
   ========================= */

:root {
    --black: #050505;
    --black-soft: #0a0a0a;
    --black-card: #0e0e0e;
    --black-light: #151515;

    --gold: #d9b43b;
    --gold-light: #f5d76e;
    --gold-dark: #806716;

    --white: #f5f5f5;
    --gray: #a7a7a7;
    --gray-dark: #5f5f5f;

    --border: rgba(217, 180, 59, 0.22);
    --border-light: rgba(255, 255, 255, 0.08);

    --shadow-gold: 0 0 45px rgba(217, 180, 59, 0.14);
    --transition: 0.35s ease;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    min-height: 100vh;
    overflow-x: hidden;

    background:
        radial-gradient(
            circle at top,
            rgba(217, 180, 59, 0.08),
            transparent 30%
        ),
        var(--black);

    color: var(--white);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    line-height: 1.6;
}


img {
    display: block;
    max-width: 100%;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input {
    font: inherit;
}


button {
    cursor: pointer;
}


/* =========================
   NAVBAR
   ========================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;
    min-height: 92px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 14px 5%;

    background: rgba(5, 5, 5, 0.88);
    border-bottom: 1px solid rgba(217, 180, 59, 0.12);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}


.brand {
    display: flex;
    align-items: center;
    gap: 16px;

    min-width: 0;
}


.brand img {
    width: 64px;
    height: 48px;

    object-fit: contain;

    flex-shrink: 0;
}


.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;

    min-width: 0;
}


.brand-text strong {
    color: var(--gold);

    font-size: 20px;
    font-weight: 800;

    letter-spacing: 1.8px;
    white-space: nowrap;
}


.brand-text span {
    color: #b8b8b8;

    font-size: 13px;
    letter-spacing: 0.7px;
}


.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
}


.nav-links > a {
    position: relative;

    color: #eeeeee;

    font-size: 15px;
    font-weight: 600;

    transition: color var(--transition);
}


.nav-links > a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: linear-gradient(
        90deg,
        var(--gold-dark),
        var(--gold-light)
    );

    transition: width var(--transition);
}


.nav-links > a:hover {
    color: var(--gold-light);
}


.nav-links > a:hover::after {
    width: 100%;
}


/* =========================
   DİL SEÇİCİ
   ========================= */

.language-selector {
    position: relative;
}


.language-button {
    min-width: 92px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 0 14px;

    color: var(--white);
    background: rgba(255, 255, 255, 0.025);

    border: 1px solid rgba(217, 180, 59, 0.42);
    border-radius: 12px;

    transition:
        border-color var(--transition),
        background var(--transition),
        transform var(--transition);
}


.language-button:hover {
    transform: translateY(-2px);

    background: rgba(217, 180, 59, 0.08);
    border-color: var(--gold);
}


.language-arrow {
    color: var(--gold);
    font-size: 15px;
}


.language-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;

    width: 175px;

    display: none;
    overflow: hidden;

    padding: 8px;

    background: rgba(10, 10, 10, 0.97);

    border: 1px solid var(--border);
    border-radius: 14px;

    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.5),
        var(--shadow-gold);

    backdrop-filter: blur(20px);
}


.language-menu.active,
.language-selector:hover .language-menu {
    display: block;
}


.language-menu button {
    width: 100%;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 11px 12px;

    color: #eeeeee;
    background: transparent;

    border: 0;
    border-radius: 9px;

    text-align: left;

    transition:
        background var(--transition),
        color var(--transition);
}


.language-menu button:hover {
    color: var(--gold-light);
    background: rgba(217, 180, 59, 0.1);
}


/* =========================
   HERO
   ========================= */

.catalog-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    min-height: 560px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 110px 24px 85px;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.18),
            rgba(0, 0, 0, 0.9)
        ),
        radial-gradient(
            circle at 50% 10%,
            rgba(217, 180, 59, 0.12),
            transparent 34%
        ),
        #050505;
}


.catalog-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: -2;

    opacity: 0.15;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px
        );

    background-size: 70px 70px;
}


.hero-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    filter: blur(100px);

    z-index: -1;
    pointer-events: none;
}


.hero-glow-top {
    top: -310px;
    left: 50%;

    transform: translateX(-50%);

    background: rgba(217, 180, 59, 0.18);
}


.hero-glow-bottom {
    bottom: -390px;
    right: -100px;

    background: rgba(217, 180, 59, 0.1);
}


.hero-content {
    width: min(100%, 1080px);

    text-align: center;
}


.hero-label {
    margin-bottom: 16px;

    color: var(--gold-light);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
}


.hero-content h1 {
    margin-bottom: 22px;

    color: var(--white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(64px, 8vw, 118px);
    font-weight: 500;
    line-height: 0.95;

    letter-spacing: -4px;

    text-shadow:
        0 0 35px rgba(255, 255, 255, 0.04),
        0 0 65px rgba(217, 180, 59, 0.08);
}


.hero-description {
    max-width: 760px;

    margin: 0 auto;

    color: #c1c1c1;

    font-size: 18px;
    line-height: 1.8;
}


.catalog-stats {
    width: min(100%, 700px);

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin: 62px auto 0;

    border-top: 1px solid var(--border-light);
}


.stat-item {
    position: relative;

    display: flex;
    flex-direction: column;
    gap: 2px;

    padding: 28px 18px 0;
}


.stat-item:not(:last-child)::after {
    content: "";

    position: absolute;
    top: 26px;
    right: 0;

    width: 1px;
    height: 50px;

    background: var(--border-light);
}


.stat-item strong {
    color: var(--gold-light);

    font-family:
        Georgia,
        serif;

    font-size: 32px;
}


.stat-item span {
    color: #9d9d9d;

    font-size: 13px;
}


/* =========================
   ARAMA ALANI
   ========================= */

.catalog-tools {
    width: min(92%, 1200px);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    margin: -38px auto 0;
    padding: 18px 24px;

    position: relative;
    z-index: 10;

    background: rgba(14, 14, 14, 0.96);

    border: 1px solid var(--border);
    border-radius: 18px;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.48),
        0 0 30px rgba(217, 180, 59, 0.05);

    backdrop-filter: blur(20px);
}


.search-box {
    width: 100%;

    display: flex;
    align-items: center;
    gap: 14px;
}


.search-icon {
    width: 24px;
    height: 24px;

    flex-shrink: 0;

    fill: var(--gold);
}


.search-box input {
    width: 100%;

    color: var(--white);
    background: transparent;

    border: 0;
    outline: none;

    font-size: 16px;
}


.search-box input::placeholder {
    color: #727272;
}


#resultCount {
    min-width: max-content;

    color: var(--gold-light);

    font-size: 13px;
    font-weight: 700;
}


/* =========================
   KATALOG BÖLÜMÜ
   ========================= */

.catalog-section {
    width: min(92%, 1320px);

    margin: 0 auto;
    padding: 110px 0 130px;
}


.section-heading {
    max-width: 750px;

    margin-bottom: 55px;
}


.section-label {
    margin-bottom: 10px;

    color: var(--gold);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3.2px;
}


.section-heading h2 {
    margin-bottom: 14px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(42px, 6vw, 72px);
    font-weight: 500;
    line-height: 1;
}


.section-heading > p:last-child {
    color: var(--gray);

    font-size: 17px;
}


.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}


/* =========================
   KARTLAR
   ========================= */

.catalog-card {
    overflow: hidden;

    background: linear-gradient(
        160deg,
        rgba(255, 255, 255, 0.025),
        rgba(255, 255, 255, 0.008)
    );

    border: 1px solid var(--border-light);
    border-radius: 24px;

    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);

    transition:
        transform 0.45s ease,
        border-color 0.45s ease,
        box-shadow 0.45s ease;
}


.catalog-card:hover {
    transform: translateY(-10px);

    border-color: rgba(217, 180, 59, 0.42);

    box-shadow:
        0 36px 90px rgba(0, 0, 0, 0.52),
        0 0 34px rgba(217, 180, 59, 0.08);
}


.catalog-card.is-hidden {
    display: none;
}


.card-image {
    position: relative;
    overflow: hidden;

    height: 315px;

    background: #101010;
}


.card-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        to bottom,
        transparent 40%,
        rgba(0, 0, 0, 0.76)
    );

    pointer-events: none;
}


.card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    filter:
        brightness(0.78)
        contrast(1.06)
        saturate(0.88);

    transition:
        transform 0.65s ease,
        filter 0.65s ease;
}


.catalog-card:hover .card-image img {
    transform: scale(1.075);

    filter:
        brightness(0.9)
        contrast(1.08)
        saturate(1);
}


.card-number {
    position: absolute;
    left: 20px;
    bottom: 18px;

    z-index: 3;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 48px;
    height: 30px;

    padding: 0 14px;

    color: var(--gold-light);
    background: rgba(0, 0, 0, 0.68);

    border: 1px solid rgba(217, 180, 59, 0.58);
    border-radius: 999px;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;

    backdrop-filter: blur(12px);
}


.card-content {
    padding: 28px 26px 30px;
}


.card-category {
    display: block;

    margin-bottom: 9px;

    color: var(--gold);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}


.card-content h3 {
    margin-bottom: 17px;

    color: var(--white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 31px;
    font-weight: 500;
    line-height: 1.15;
}


.card-content ul {
    display: flex;
    flex-direction: column;
    gap: 8px;

    margin-bottom: 26px;
    padding-left: 0;

    list-style: none;
}


.card-content li {
    position: relative;

    padding-left: 17px;

    color: #9f9f9f;

    font-size: 14px;
}


.card-content li::before {
    content: "";

    position: absolute;
    top: 10px;
    left: 0;

    width: 5px;
    height: 5px;

    background: var(--gold);
    border-radius: 50%;
}


.card-link {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-top: 18px;

    color: var(--white);

    border-top: 1px solid var(--border-light);

    font-size: 14px;
    font-weight: 700;

    transition: color var(--transition);
}


.card-link b {
    color: var(--gold);

    font-size: 21px;
    font-weight: 400;

    transition: transform var(--transition);
}


.card-link:hover {
    color: var(--gold-light);
}


.card-link:hover b {
    transform: translateX(7px);
}


/* =========================
   ÜRÜN BULUNAMADI
   ========================= */

.empty-state {
    display: none;

    margin-top: 40px;
    padding: 70px 25px;

    text-align: center;

    background: rgba(255, 255, 255, 0.02);

    border: 1px solid var(--border-light);
    border-radius: 22px;
}


.empty-state.visible {
    display: block;
}


.empty-state h3 {
    margin-bottom: 8px;

    color: var(--gold-light);

    font-size: 28px;
}


.empty-state p {
    color: var(--gray);
}


/* =========================
   CTA
   ========================= */

.catalog-cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    width: min(92%, 1240px);

    margin: 0 auto 130px;
    padding: 95px 30px;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            rgba(217, 180, 59, 0.1),
            rgba(255, 255, 255, 0.015)
        ),
        #090909;

    border: 1px solid rgba(217, 180, 59, 0.27);
    border-radius: 32px;

    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.5),
        var(--shadow-gold);
}


.cta-glow {
    position: absolute;
    left: 50%;
    bottom: -430px;

    width: 680px;
    height: 680px;

    transform: translateX(-50%);

    background: rgba(217, 180, 59, 0.15);
    border-radius: 50%;

    filter: blur(115px);

    z-index: -1;
}


.cta-content {
    max-width: 850px;

    margin: 0 auto;
}


.cta-label {
    margin-bottom: 17px;

    color: var(--gold);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
}


.cta-content h2 {
    margin-bottom: 22px;

    color: var(--gold-light);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(48px, 7vw, 82px);
    font-weight: 500;
    line-height: 1.05;
}


.cta-content > p:not(.cta-label) {
    max-width: 720px;

    margin: 0 auto 34px;

    color: #b2b2b2;

    font-size: 17px;
}


.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 56px;

    padding: 0 25px;

    color: #050505;
    background: linear-gradient(
        135deg,
        var(--gold-light),
        var(--gold)
    );

    border-radius: 14px;

    font-size: 14px;
    font-weight: 800;

    box-shadow: 0 15px 40px rgba(217, 180, 59, 0.2);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}


.cta-button:hover {
    transform: translateY(-4px);

    box-shadow:
        0 23px 55px rgba(217, 180, 59, 0.32);
}


.cta-button img {
    width: 23px;
    height: 23px;

    object-fit: contain;
}


.cta-button b {
    font-size: 18px;
}


/* =========================
   SABİT WHATSAPP
   ========================= */

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;

    z-index: 1200;

    display: flex;
    align-items: center;
    gap: 11px;

    min-height: 58px;

    padding: 8px 18px 8px 9px;

    color: #050505;
    background: linear-gradient(
        135deg,
        var(--gold-light),
        var(--gold)
    );

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;

    box-shadow:
        0 15px 42px rgba(0, 0, 0, 0.5),
        0 0 25px rgba(217, 180, 59, 0.22);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}


.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.02);

    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.58),
        0 0 38px rgba(217, 180, 59, 0.35);
}


.whatsapp-float-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #050505;
    border-radius: 50%;
}


.whatsapp-float-icon img {
    width: 28px;
    height: 28px;

    object-fit: contain;
}


.whatsapp-float-text {
    font-size: 13px;
    font-weight: 800;
}


/* =========================
   ARAPÇA RTL
   ========================= */

html[dir="rtl"] .nav-links {
    flex-direction: row-reverse;
}


html[dir="rtl"] .brand {
    flex-direction: row-reverse;
}


html[dir="rtl"] .language-menu {
    left: 0;
    right: auto;
}


html[dir="rtl"] .card-content li {
    padding-left: 0;
    padding-right: 17px;
}


html[dir="rtl"] .card-content li::before {
    left: auto;
    right: 0;
}


/* =========================
   TABLET
   ========================= */

@media (max-width: 1050px) {

    .navbar {
        padding-inline: 3%;
    }


    .nav-links {
        gap: 20px;
    }


    .brand-text strong {
        font-size: 17px;
    }


    .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .hero-content h1 {
        font-size: clamp(58px, 10vw, 90px);
    }

}


/* =========================
   MOBİL
   ========================= */

@media (max-width: 760px) {

    .navbar {
        position: relative;

        flex-direction: column;
        align-items: stretch;
        gap: 17px;

        padding: 16px 18px;
    }


    .brand {
        justify-content: center;
    }


    .brand img {
        width: 55px;
        height: 44px;
    }


    .brand-text strong {
        font-size: 16px;
        letter-spacing: 1.2px;
    }


    .brand-text span {
        font-size: 11px;
    }


    .nav-links {
        width: 100%;

        justify-content: center;
        flex-wrap: wrap;

        gap: 14px 20px;
    }


    .nav-links > a {
        font-size: 13px;
    }


    .language-button {
        min-width: 80px;
        height: 38px;

        font-size: 12px;
    }


    .catalog-hero {
        min-height: auto;

        padding: 90px 20px 100px;
    }


    .hero-label {
        font-size: 10px;
        letter-spacing: 2.2px;
    }


    .hero-content h1 {
        margin-bottom: 20px;

        font-size: clamp(50px, 16vw, 74px);
        letter-spacing: -2px;
    }


    .hero-description {
        font-size: 15px;
    }


    .catalog-stats {
        grid-template-columns: 1fr;

        gap: 22px;

        margin-top: 46px;
        padding-top: 20px;
    }


    .stat-item {
        padding: 0;
    }


    .stat-item:not(:last-child)::after {
        display: none;
    }


    .catalog-tools {
        width: calc(100% - 30px);

        flex-direction: column;
        align-items: stretch;

        margin-top: -45px;
        padding: 17px;
    }


    #resultCount {
        text-align: right;
    }


    .catalog-section {
        width: calc(100% - 30px);

        padding: 90px 0 100px;
    }


    .section-heading {
        margin-bottom: 38px;
    }


    .section-heading h2 {
        font-size: 48px;
    }


    .section-heading > p:last-child {
        font-size: 15px;
    }


    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }


    .card-image {
        height: 290px;
    }


    .card-content {
        padding: 24px 22px 26px;
    }


    .card-content h3 {
        font-size: 29px;
    }


    .catalog-cta {
        width: calc(100% - 30px);

        margin-bottom: 100px;
        padding: 70px 22px;

        border-radius: 24px;
    }


    .cta-content h2 {
        font-size: 47px;
    }


    .cta-content > p:not(.cta-label) {
        font-size: 15px;
    }


    .cta-button {
        width: 100%;
    }


    .whatsapp-float {
        right: 14px;
        bottom: 14px;

        min-height: 54px;

        padding: 6px;
    }


    .whatsapp-float-icon {
        width: 42px;
        height: 42px;
    }


    .whatsapp-float-text {
        display: none;
    }

}


/* =========================
   ÇOK KÜÇÜK EKRANLAR
   ========================= */

@media (max-width: 420px) {

    .nav-links {
        gap: 12px;
    }


    .nav-links > a {
        font-size: 12px;
    }


    .hero-content h1 {
        font-size: 48px;
    }


    .section-heading h2 {
        font-size: 42px;
    }


    .card-image {
        height: 250px;
    }


    .cta-content h2 {
        font-size: 40px;
    }

}
/* =========================================
   CTA YAZI DÜZELTMESİ
   ========================================= */

.cta-content {
    max-width: 980px;
}

.cta-content h2 {
    max-width: 900px;

    margin-left: auto;
    margin-right: auto;
    margin-bottom: 22px;

    font-size: clamp(44px, 5.2vw, 72px);
    line-height: 1.08;
    letter-spacing: -1.5px;

    text-wrap: balance;
}

.cta-content > p:not(.cta-label) {
    max-width: 760px;

    margin-left: auto;
    margin-right: auto;

    line-height: 1.7;
}


/* =========================================
   CTA WHATSAPP İKONU
   ========================================= */

.cta-button img {
    width: 24px;
    height: 24px;

    display: block;

    object-fit: contain;
}


/* =========================================
   SABİT WHATSAPP BUTONU
   ========================================= */

.whatsapp-float {
    right: 24px;
    bottom: 24px;

    min-width: 176px;
    min-height: 58px;

    padding: 8px 18px 8px 9px;
}

.whatsapp-float-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    background: transparent;
    border-radius: 50%;
}

.whatsapp-float-icon img {
    width: 42px;
    height: 42px;

    display: block;

    object-fit: contain;
}

.whatsapp-float-text {
    display: inline-block;

    white-space: nowrap;

    font-size: 13px;
    font-weight: 800;
}


/* =========================================
   MOBİL
   ========================================= */

@media (max-width: 760px) {

    .cta-content h2 {
        font-size: clamp(38px, 12vw, 54px);
        line-height: 1.08;
    }

    .whatsapp-float {
        min-width: 54px;
        width: 54px;
        height: 54px;

        padding: 6px;
    }

    .whatsapp-float-icon,
    .whatsapp-float-icon img {
        width: 42px;
        height: 42px;
    }

    .whatsapp-float-text {
        display: none;
    }

}
/* =========================================================
   SİHİRLİ KART GİRİŞİ + 3D HAREKET + ALTIN PARLAMA
   ========================================================= */

.catalog-card {
    position: relative;
    isolation: isolate;

    opacity: 0;
    transform:
        perspective(1100px)
        translateY(70px)
        scale(0.94)
        rotateX(7deg);

    transform-style: preserve-3d;
    will-change: transform;

    transition:
        opacity 0.85s ease,
        transform 0.85s cubic-bezier(0.2, 0.75, 0.25, 1),
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


/* Kart sırayla görünür */

.catalog-card.card-visible {
    opacity: 1;

    transform:
        perspective(1100px)
        translateY(0)
        scale(1)
        rotateX(0deg);
}


/* Kartın etrafındaki altın ışık */

.catalog-card::before {
    content: "";

    position: absolute;
    inset: -2px;

    z-index: -2;

    border-radius: inherit;

    opacity: 0;

    background:
        radial-gradient(
            circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(255, 220, 105, 0.55),
            rgba(217, 180, 59, 0.18) 22%,
            transparent 58%
        );

    filter: blur(16px);

    transition: opacity 0.35s ease;
}


/* Kartın içindeki fare ışığı */

.catalog-card::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 5;

    border-radius: inherit;

    opacity: 0;
    pointer-events: none;

    background:
        radial-gradient(
            circle 260px at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(255, 224, 120, 0.16),
            transparent 65%
        );

    transition: opacity 0.3s ease;
}


.catalog-card:hover::before,
.catalog-card:hover::after,
.catalog-card.card-selected::before,
.catalog-card.card-selected::after {
    opacity: 1;
}


/* Kart seçilince yükselir */

.catalog-card.card-selected {
    border-color: rgba(245, 215, 110, 0.82);

    box-shadow:
        0 34px 90px rgba(0, 0, 0, 0.6),
        0 0 22px rgba(217, 180, 59, 0.28),
        0 0 65px rgba(217, 180, 59, 0.18);

    animation: selectedCardPulse 1.15s ease;
}


/* Hafif büyülü sarsılma */

@keyframes selectedCardPulse {

    0% {
        transform:
            perspective(1100px)
            translateY(0)
            scale(1)
            rotateX(0deg)
            rotateZ(0deg);
    }

    20% {
        transform:
            perspective(1100px)
            translateY(-12px)
            scale(1.025)
            rotateZ(-0.45deg);
    }

    38% {
        transform:
            perspective(1100px)
            translateY(-10px)
            scale(1.02)
            rotateZ(0.45deg);
    }

    56% {
        transform:
            perspective(1100px)
            translateY(-9px)
            scale(1.018)
            rotateZ(-0.25deg);
    }

    100% {
        transform:
            perspective(1100px)
            translateY(-8px)
            scale(1.015)
            rotateZ(0deg);
    }

}


/* Kart içeriği 3D derinlik */

.catalog-card .card-image {
    transform: translateZ(24px);
}

.catalog-card .card-content {
    position: relative;
    z-index: 7;

    transform: translateZ(34px);
}


/* Arka planda sarı ışık patlaması */

body::before {
    content: "";

    position: fixed;
    left: 50%;
    top: 45%;

    width: 850px;
    height: 850px;

    z-index: -1;
    pointer-events: none;

    border-radius: 50%;

    opacity: 0;

    transform:
        translate(-50%, -50%)
        scale(0.55);

    background:
        radial-gradient(
            circle,
            rgba(245, 215, 110, 0.2),
            rgba(217, 180, 59, 0.09) 32%,
            transparent 70%
        );

    filter: blur(45px);
}


body.magic-light::before {
    animation: backgroundGoldBurst 2.1s ease-out;
}


@keyframes backgroundGoldBurst {

    0% {
        opacity: 0;
        transform:
            translate(-50%, -50%)
            scale(0.45);
    }

    28% {
        opacity: 1;
        transform:
            translate(-50%, -50%)
            scale(1.05);
    }

    100% {
        opacity: 0;
        transform:
            translate(-50%, -50%)
            scale(1.45);
    }

}


/* Hareket azaltma ayarı açık kullanıcılar */

@media (prefers-reduced-motion: reduce) {

    .catalog-card,
    .catalog-card.card-selected,
    body.magic-light::before {
        animation: none !important;
        transition: none !important;
    }

    .catalog-card {
        opacity: 1;
        transform: none !important;
    }
}
/* =========================================
   ZORUNLU DİL MENÜSÜ DÜZELTMESİ
   ========================================= */

.language-selector {
    position: relative !important;
    z-index: 99999 !important;
}

.language-menu {
    position: absolute !important;
    top: calc(100% + 12px) !important;
    right: 0 !important;

    width: 185px !important;
    padding: 8px !important;

    display: none;

    background: rgba(8, 8, 8, 0.98) !important;

    border: 1px solid rgba(245, 215, 110, 0.45) !important;
    border-radius: 14px !important;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.75),
        0 0 30px rgba(217, 180, 59, 0.18) !important;

    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;

    visibility: visible !important;
    opacity: 1 !important;

    z-index: 999999 !important;
}

.language-menu.force-open {
    display: block !important;
}

.language-menu button {
    width: 100% !important;

    display: flex !important;
    align-items: center !important;
    gap: 10px !important;

    padding: 12px !important;

    color: white !important;
    background: transparent !important;

    border: none !important;
    border-radius: 9px !important;

    text-align: left !important;
}

.language-menu button:hover {
    color: #f5d76e !important;
    background: rgba(217, 180, 59, 0.12) !important;
}


/* =========================================
   TÜM SAYFAYI AYDINLATAN ALTIN IŞIK
   ========================================= */

.gold-page-flash {
    position: fixed;
    inset: 0;

    z-index: 9000;

    pointer-events: none;

    opacity: 0;

    background:
        radial-gradient(
            circle at 50% 42%,
            rgba(255, 232, 150, 0.42) 0%,
            rgba(245, 196, 55, 0.25) 24%,
            rgba(217, 180, 59, 0.12) 48%,
            transparent 76%
        );

    mix-blend-mode: screen;
}

.gold-page-flash.flash-active {
    animation: goldPageFlashAnimation 2.3s ease-out;
}

@keyframes goldPageFlashAnimation {

    0% {
        opacity: 0;
        transform: scale(0.7);
    }

    18% {
        opacity: 0.95;
        transform: scale(1);
    }

    42% {
        opacity: 0.58;
        transform: scale(1.12);
    }

    100% {
        opacity: 0;
        transform: scale(1.3);
    }

}
/* iPad / iOS Safari için daha güçlü altın parlama */

@supports (-webkit-touch-callout: none) {

    .full-site-golden-flash {
        background:
            radial-gradient(
                circle at 50% 45%,
                rgba(255, 248, 190, 0.98) 0%,
                rgba(255, 220, 65, 0.78) 24%,
                rgba(235, 175, 20, 0.52) 50%,
                rgba(180, 110, 0, 0.24) 74%,
                transparent 100%
            );

        mix-blend-mode: screen;

        -webkit-backdrop-filter:
            brightness(1.8)
            saturate(1.55);

        backdrop-filter:
            brightness(1.8)
            saturate(1.55);
    }

    .full-site-golden-flash.active {
        opacity: 1 !important;
    }
body:has(.full-site-golden-flash.active) .catalog-card {
    border-color: rgba(255, 215, 90, 0.8);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.55),
        0 0 30px rgba(255, 210, 70, 0.45);

    transform:
        perspective(1100px)
        translateY(-6px)
        scale(1.015);
}
    body:has(.full-site-golden-flash.active) img,
    body:has(.full-site-golden-flash.active) svg,
    body:has(.full-site-golden-flash.active) .card-icon,
    body:has(.full-site-golden-flash.active) .product-icon,
    body:has(.full-site-golden-flash.active) .whatsapp-float {
        filter:
            brightness(1.8)
            saturate(1.7)
            drop-shadow(0 0 14px rgba(255, 225, 100, 1))
            drop-shadow(0 0 34px rgba(255, 180, 20, 0.85)) !important;

        transform: scale(1.1) !important;
    }

}
