:root{
    --navy:#071426;
    --navy-2:#0b1c34;
    --navy-3:#102746;
    --blue:#1c78ff;
    --blue-soft:#50b8ff;
    --cyan:#61dbff;
    --green:#8bdd3c;
    --text:#142133;
    --muted:#6f7d90;
    --white:#ffffff;
    --soft:#f7fbff;
    --border:rgba(15, 23, 42, 0.08);
    --shadow:0 18px 40px rgba(7, 20, 38, 0.10);
    --radius:18px;
    --container:1280px;
    --header-height:88px;
}

/* =========================================
   DROPDOWN PUAN ALANI
========================================= */

.dropdown-point-link {
    width: 100%;
    border: 0;
    background: transparent;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
}

.dropdown-point-content {
    width: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.dropdown-point-value {
    flex-shrink: 0;
    color: #1c78ff;
    font-weight: 700;
    white-space: nowrap;
}


/* =========================================
   PUAN MODALI
========================================= */

.point-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(11, 18, 30, 0.62);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease;
}

.point-modal-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.point-modal {
    width: min(760px, 100%);
    max-height: min(720px, calc(100vh - 40px));
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(35, 136, 217, 0.18);
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
    transform: translateY(15px) scale(0.98);
    transition: transform 0.2s ease;
}

.point-modal-overlay.show .point-modal {
    transform: translateY(0) scale(1);
}

.point-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 26px;
    border-bottom: 1px solid #e8edf3;
}

.point-modal-header h3 {
    margin: 0 0 6px;
    color: #1b2430;
    font-size: 21px;
    font-weight: 700;
}

.point-modal-header p {
    margin: 0;
    color: #697586;
    font-size: 14px;
}

.point-modal-header p strong {
    color: #1c78ff;
    font-weight: 700;
}

.point-modal-close {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e3e8ee;
    border-radius: 10px;
    background: #ffffff;
    color: #5b6572;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.point-modal-close:hover {
    color: #1c78ff;
    border-color: rgba(35, 136, 217, 0.35);
    background: rgba(35, 136, 217, 0.07);
}

.point-modal-close svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
}

.point-modal-body {
    min-height: 180px;
    overflow-y: auto;
    padding: 22px 26px 26px;
}


/* =========================================
   PUAN HAREKETLERİ TABLOSU
========================================= */

.point-table-wrapper {
    width: 100%;
    overflow-x: auto;
    border: 1px solid #e6ebf0;
    border-radius: 12px;
}

.point-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    background: #ffffff;
}

.point-table th,
.point-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #edf0f3;
    text-align: left;
    vertical-align: middle;
}

.point-table thead th {
    color: #677384;
    background: #f7f9fb;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.point-table tbody tr:last-child td {
    border-bottom: 0;
}

.point-table tbody tr:hover {
    background: rgba(35, 136, 217, 0.035);
}

.point-table th:nth-child(1),
.point-table td:nth-child(1) {
    width: 170px;
}

.point-table th:nth-child(2),
.point-table td:nth-child(2) {
    width: auto;
}

.point-table th:nth-child(3),
.point-table td:nth-child(3) {
    width: 135px;
}

.point-date {
    color: #6f7a88;
    font-size: 13px;
    white-space: nowrap;
}

/*
   Açıklama maksimum iki satır.
   Fazlası üç nokta olarak görünür.
*/
.point-description {
    overflow: hidden;
    color: #283443;
    font-size: 13px;
    line-height: 1.45;
    word-break: break-word;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.point-amount-column {
    text-align: right !important;
    white-space: nowrap;
}

.point-amount {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    padding: 7px 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
}

.point-amount.positive {
    color: #16834e;
    background: rgba(22, 131, 78, 0.09);
}

.point-amount.negative {
    color: #c53b43;
    background: rgba(197, 59, 67, 0.09);
}


/* =========================================
   BOŞ PUAN HAREKETİ
========================================= */

.point-empty-state {
    min-height: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    text-align: center;
}

.point-empty-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 50%;
    color: #1c78ff;
    background: rgba(35, 136, 217, 0.1);
}

.point-empty-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
}

.point-empty-state h4 {
    margin: 0 0 7px;
    color: #283443;
    font-size: 16px;
}

.point-empty-state p {
    max-width: 420px;
    margin: 0;
    color: #7b8694;
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================
   MOBİL
========================================= */

@media (max-width: 640px) {
    .point-modal-overlay {
        align-items: flex-end;
        padding: 0;
    }

    .point-modal {
        width: 100%;
        max-height: 86vh;
        border-radius: 18px 18px 0 0;
    }

    .point-modal-header {
        padding: 20px;
    }

    .point-modal-body {
        padding: 18px 16px 24px;
    }

    .point-table {
        min-width: 620px;
    }
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat', sans-serif;
    color:var(--text);
    background:linear-gradient(180deg, #f4f9ff 0%, #ffffff 260px);
    min-height:100vh;
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    max-width:100%;
    display:block;
}

button,
input,
textarea,
select{
    font:inherit;
}

.container{
    width:min(var(--container), calc(100% - 48px));
    margin:0 auto;
}

.site-wrapper{
    min-height:100vh;
    display:flex;
    flex-direction:column;
}

/* HEADER */

.site-header{
    position:relative;
    overflow:visible;
    background:
        radial-gradient(circle at top left, rgba(97, 219, 255, 0.12), transparent 28%),
        radial-gradient(circle at top right, rgba(28, 120, 255, 0.12), transparent 26%),
        linear-gradient(135deg, #04101f 0%, #071426 28%, #0b1d37 65%, #0f2945 100%);
    height:90px;
    color:var(--white);
    z-index:20;
}

.header-bg{
    position:absolute;
    inset:0;
    background:
        linear-gradient(rgba(5, 13, 26, 0.62), rgba(5, 13, 26, 0.74)),
        url("../img/header-bg.png") center center / cover no-repeat;
    opacity:.32;
    pointer-events:none;
}

.header-overlay{
    position:absolute;
    inset:0;
    background:
        repeating-linear-gradient(
            90deg,
            rgba(255,255,255,0.02) 0px,
            rgba(255,255,255,0.02) 1px,
            transparent 1px,
            transparent 120px
        ),
        repeating-linear-gradient(
            0deg,
            rgba(255,255,255,0.018) 0px,
            rgba(255,255,255,0.018) 1px,
            transparent 1px,
            transparent 120px
        );
    opacity:.25;
    pointer-events:none;
}

.topbar{
    position:relative;
    z-index:30;
    min-height:var(--header-height);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;
    padding:20px 0;
}

.site-logo{
    flex:0 0 auto;
    display:flex;
    align-items:center;
}

.site-logo img{
    height:50px;
    width:auto;
    object-fit:contain;
}

/* NAV */

.main-nav{
    display:flex;
    align-items:center;
    gap:30px;
}

.nav-link,
.nav-dropdown-btn{
    color:rgba(255,255,255,0.96);
    font-size:15px;
    font-weight:600;
    transition:.25s ease;
}

.nav-link{
    position:relative;
    display:flex;
    align-items:center;
    gap:7px;
}

.nav-link:hover{
    color:var(--cyan);
}

.nav-link.active{
    color:var(--white);
}

.nav-link.active::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:-10px;
    height:3px;
    border-radius:999px;
    background:linear-gradient(90deg, var(--cyan), var(--blue-soft));
}

.nav-link-inline{
    display:flex;
    align-items:center;
    gap:9px;
}

.nav-icon{
    width:18px;
    height:18px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex:0 0 18px;
    opacity:.95;
}

.nav-icon svg,
.dropdown-arrow svg,
.mobile-menu-btn svg,
.footer-link-icon svg{
    width:100%;
    height:100%;
    display:block;
}

.nav-icon svg,
.dropdown-arrow svg,
.mobile-menu-btn svg,
.footer-link-icon svg{
    stroke:currentColor;
    stroke-width:1.8;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.nav-dropdown{
    position:relative;
    z-index:40;
}

.nav-dropdown-btn{
    background:none;
    border:none;
    cursor:pointer;
    display:flex;
    align-items:center;
    gap:8px;
    padding:0;
}

.nav-dropdown-btn:hover{
    color:var(--cyan);
}

.nav-dropdown.active .nav-dropdown-btn{
    color:var(--cyan);
}

.dropdown-arrow{
    width:14px;
    height:14px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    transition:.25s ease;
}

.nav-dropdown:hover .dropdown-arrow{
    transform:translateY(1px);
}

.nav-dropdown::after{
    content:"";
    position:absolute;
    top:100%;
    right:0;
    width:100%;
    height:14px;
}

.nav-dropdown-menu{
    position:absolute;
    top:100%;
    right:0;
    min-width:240px;
    background:rgba(255,255,255,0.98);
    border:1px solid rgba(15, 23, 42, 0.10);
    border-radius:14px;
    box-shadow:0 18px 40px rgba(0,0,0,0.18);
    padding:10px;
    display:none;
    z-index:999;
    margin-top:8px;
}

.nav-dropdown:hover .nav-dropdown-menu{
    display:block;
}

.nav-dropdown-menu a{
    display:block;
    color:var(--text);
    font-size:14px;
    font-weight:600;
    padding:12px 14px;
    border-radius:10px;
    transition:.25s ease;
}

.nav-dropdown-menu a:hover{
    background:#f2f7ff;
    color:var(--blue);
}

.nav-dropdown-menu a.active{
    background:#eef6ff;
    color:var(--blue);
}

.mobile-menu-btn{
    display:none;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.12);
    color:#fff;
    width:46px;
    height:46px;
    border-radius:12px;
    cursor:pointer;
    align-items:center;
    justify-content:center;
    padding:0;
}

.mobile-menu-btn svg{
    width:22px;
    height:22px;
}

.header-hero{
    position:relative;
    z-index:2;
    padding:28px 0 56px;
    min-height:160px;
    display:flex;
    align-items:flex-end;
}

.hero-empty{
    min-height:120px;
    width:100%;
}

/* MAIN */

.site-main{
    flex:1;
    background:
        linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.85) 70px, #ffffff 180px);
    padding:54px 0 80px;
}

.page-empty{
    min-height:420px;
    background:transparent;
}

/* FOOTER */

.site-footer{
    background:#fbfdff;
    border-top:1px solid var(--border);
    margin-top:auto;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:36px;
    padding:52px 0 28px;
}

.footer-col h3{
    font-size:18px;
    font-weight:700;
    color:var(--text);
    margin-bottom:18px;
}

.footer-link{
    display:flex;
    align-items:flex-start;
    gap:10px;
    color:var(--muted);
    font-size:14px;
    font-weight:500;
    margin-bottom:12px;
    transition:.25s ease;
}

.footer-link:hover{
    color:var(--blue);
}

.footer-link.active{
    color:var(--blue);
    font-weight:700;
}

.footer-link-icon{
    width:16px;
    height:16px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex:0 0 16px;
    margin-top:2px;
    opacity:.92;
}

.footer-bottom{
    border-top:1px solid var(--border);
    padding:20px 0 28px;
}

.footer-bottom p{
    color:var(--muted);
    font-size:13px;
    text-align:center;
}

.dropdown-link{
    display:flex !important;
    align-items:center;
    gap:10px;
    color:var(--text);
    font-size:14px;
    font-weight:600;
    padding:12px 14px;
    border-radius:10px;
    transition:.25s ease;
}

.dropdown-link:hover{
    background:#f2f7ff;
    color:var(--blue);
}

.dropdown-link.active{
    background:#eef6ff;
    color:var(--blue);
}

.dropdown-link-icon{
    width:22px;
    height:22px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex:0 0 22px;
}

.dropdown-link-icon svg{
    width:100%;
    height:100%;
    display:block;
    stroke:currentColor;
    stroke-width:1.8;
    stroke-linecap:round;
    stroke-linejoin:round;
}

@media (max-width: 991px){
    .dropdown-link{
        color:rgba(255,255,255,0.90);
        padding:10px 6px;
    }

    .dropdown-link:hover,
    .dropdown-link.active{
        background:transparent;
        color:var(--cyan);
    }
}

/* RESPONSIVE */

@media (max-width: 991px){
    .main-nav{
        position:absolute;
        top:100%;
        right:0;
        left:0;
        display:none;
        flex-direction:column;
        align-items:flex-start;
        gap:0;
        padding:16px;
        background:rgba(6, 18, 34, 0.96);
        border-top:1px solid rgba(255,255,255,0.08);
        backdrop-filter:blur(12px);
    }

    .main-nav.show{
        display:flex;
    }

    .main-nav > .nav-link,
    .main-nav > .nav-dropdown{
        width:100%;
    }

    .nav-link{
        width:100%;
        padding:14px 6px;
    }

    .nav-link.active{
        color:var(--cyan);
    }

    .nav-link.active::after{
        display:none;
    }

    .nav-dropdown-btn{
        width:100%;
        justify-content:space-between;
        padding:14px 6px;
    }

    .nav-dropdown-menu{
        position:static;
        display:block;
        background:transparent;
        border:none;
        box-shadow:none;
        padding:0 0 0 10px;
        margin-top:2px;
        min-width:100%;
    }

    .nav-dropdown-menu a{
        color:rgba(255,255,255,0.90);
        padding:10px 6px;
    }

    .nav-dropdown-menu a:hover,
    .nav-dropdown-menu a.active{
        background:transparent;
        color:var(--cyan);
    }

    .mobile-menu-btn{
        display:inline-flex;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:28px;
    }
}

@media (max-width: 768px){
    .container{
        width:min(100% - 28px, var(--container));
    }

    .site-logo img{
        height:50px;
    }

    .site-main{
        padding:40px 0 64px;
    }
}

/* =========================
   NEDEN PRAXEN PAGE
========================= */

.np-page{
    padding-top: 4px;
}

.np-hero{
    width: 100%;
    display: flex;
    align-items: flex-end;
    min-height: 120px;
    padding: 4px 0 18px;
}

.np-hero-content{
    max-width: 820px;
}

.np-hero-kicker{
    display: inline-block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.78);
}

.np-hero-content h1{
    margin: 0 0 12px;
    font-size: 42px;
    line-height: 1.08;
    font-weight: 800;
    color: var(--white);
}

.np-hero-content p{
    margin: 0;
    max-width: 720px;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255,255,255,0.84);
}

.np-section{
    margin-bottom: 28px;
}

.np-panel{
    background: #ffffff;
    border: 1px solid rgba(13, 32, 58, 0.08);
    border-radius: 28px;
    box-shadow: 0 18px 40px rgba(9, 26, 52, 0.08);
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.np-panel::before{
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.np-top{
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 28px;
    align-items: stretch;
    margin-bottom: 26px;
}

.np-top-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.np-kicker{
    display: inline-block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--blue);
}

.np-top-text h2{
    margin: 0 0 14px;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--text);
}

.np-top-text p{
    margin: 0;
    max-width: 700px;
    font-size: 16px;
    line-height: 1.85;
    color: #425166;
}

.np-top-media{
    min-height: 290px;
    border-radius: 24px;
    overflow: hidden;
    background: transparent;
}

.np-top-media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ÜST BLOK KARTLARI */

.np-feature-grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.np-feature-card{
    background: linear-gradient(180deg, #fbfdff 0%, #f7fbff 100%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 18px;
    min-height: 190px;
    transition: .25s ease;
    text-align: center;
}

.np-feature-card:hover{
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(17, 43, 76, 0.08);
}

.np-feature-icon{
    width: 78px;
    height: 78px;
    margin-bottom: 14px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: transparent;
    color: var(--blue);
    font-size: 22px;
    font-weight: 800;
}

.np-feature-card h3{
    margin: 0 0 10px;
    font-size: 19px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--text);
}

.np-feature-card p{
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: var(--muted);
}

/* ALT BLOK ADIMLAR */

.np-steps{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    padding-top: 6px;
}

.np-step{
    flex: 1 1 0;
    text-align: center;
    border-radius: 20px;
    padding: 20px 14px;
    min-height: 210px;
    transition: .25s ease;
}

.np-step:hover{
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(17, 43, 76, 0.08);
}

.np-step-badge{
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--blue-soft));
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    box-shadow: 0 14px 24px rgba(28,120,255,0.20);
}

.np-step h3{
    margin: 0 0 10px;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--text);
}

.np-step p{
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: var(--muted);
}

.np-step-arrow{
    flex: 0 0 18px;
    align-self: center;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #7aaef7;
    margin-top: -16px;
}

/* RESPONSIVE */

@media (max-width: 1200px){
    .np-feature-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .np-steps{
        flex-wrap: wrap;
        gap: 16px;
    }

    .np-step{
        min-width: calc(50% - 8px);
    }

    .np-step-arrow{
        display: none;
    }
}

@media (max-width: 991px){
    .np-top{
        grid-template-columns: 1fr;
    }

    .np-top-media{
        min-height: 240px;
    }
}

@media (max-width: 768px){
    .np-hero-content h1{
        font-size: 32px;
    }

    .np-hero-content p{
        font-size: 15px;
        line-height: 1.7;
    }

    .np-panel{
        padding: 22px;
        border-radius: 22px;
    }

    .np-top-text h2{
        font-size: 27px;
    }

    .np-feature-grid{
        grid-template-columns: 1fr;
    }

    .np-step{
        min-width: 100%;
        min-height: auto;
    }
}

/* =========================
   HAKKIMIZDA PAGE
========================= */

.about-hero{
    width:100%;
    display:flex;
    align-items:flex-end;
    min-height:120px;
    padding:4px 0 18px;
}

.about-hero-content{
    max-width:820px;
}

.about-hero-kicker{
    display:inline-block;
    margin-bottom:10px;
    font-size:13px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:rgba(255,255,255,0.78);
}

.about-hero-content h1{
    margin:0 0 12px;
    font-size:42px;
    line-height:1.08;
    font-weight:800;
    color:var(--white);
}

.about-hero-content p{
    margin:0;
    max-width:720px;
    font-size:16px;
    line-height:1.75;
    color:rgba(255,255,255,0.84);
}

.about-page{
    padding-top:6px;
}

.about-main-card{
    background:#ffffff;
    border:1px solid rgba(13, 32, 58, 0.08);
    border-radius:28px;
    box-shadow:0 18px 40px rgba(9, 26, 52, 0.08);
    padding:32px;
    position:relative;
    overflow:hidden;
    margin-bottom:26px;
}

.about-main-card::before{
    content:"";
    position:absolute;
    inset:0 0 auto 0;
    height:4px;
    background:linear-gradient(90deg, var(--blue), var(--cyan));
}

.about-grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:30px;
    align-items:stretch;
}

.about-text{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.about-kicker{
    display:inline-block;
    margin-bottom:10px;
    font-size:13px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:var(--blue);
}

.about-text h2{
    margin:0 0 18px;
    font-size:34px;
    line-height:1.18;
    font-weight:800;
    color:var(--text);
}

.about-text p{
    margin:0 0 16px;
    font-size:16px;
    line-height:1.85;
    color:#425166;
}

.about-text p:last-child{
    margin-bottom:0;
}

.about-media{
    border-radius:24px;
    overflow:hidden;
    box-shadow:inset 0 1px 0 rgba(255,255,255,0.6);
}

.about-media img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.about-values-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:20px;
}

.about-value-card{
    background:#ffffff;
    border:1px solid rgba(13, 32, 58, 0.08);
    border-radius:24px;
    box-shadow:0 14px 34px rgba(9, 26, 52, 0.08);
    padding:28px 24px;
    position:relative;
    overflow:hidden;
    text-align: center;
    transition:.25s ease;
}

.about-value-card::before{
    content:"";
    position:absolute;
    inset:0 0 auto 0;
    height:4px;
    background:linear-gradient(90deg, var(--blue), var(--cyan));
}

.about-value-card:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 36px rgba(9, 26, 52, 0.10);
}

.about-value-icon{
    width:72px;
    height:72px;
    border-radius:18px;
    background:linear-gradient(135deg, rgba(28,120,255,0.10), rgba(97,219,255,0.12));
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:18px;
}

.about-value-icon img{
    width:40px;
    height:40px;
    object-fit:contain;
}

.about-value-card h3{
    margin:0 0 14px;
    font-size:24px;
    line-height:1.2;
    font-weight:800;
    color:var(--text);
}

.about-value-card p{
    margin:0;
    font-size:15px;
    line-height:1.8;
    color:#425166;
}

.about-values-list{
    margin:0;
    padding-left:18px;
}

.about-values-list li{
    margin-bottom:8px;
    font-size:15px;
    text-align: start;
    line-height:1.7;
    color:#425166;
}

.about-values-list li:last-child{
    margin-bottom:0;
}

/* RESPONSIVE */

@media (max-width: 1100px){
    .about-grid{
        grid-template-columns:1fr;
    }

    .about-media{
        min-height:360px;
    }

    .about-values-grid{
        grid-template-columns:1fr;
    }
}

@media (max-width: 768px){
    .about-hero-content h1{
        font-size:32px;
    }

    .about-hero-content p{
        font-size:15px;
        line-height:1.7;
    }

    .about-main-card{
        padding:22px;
        border-radius:22px;
    }

    .about-text h2{
        font-size:27px;
    }

    .about-text p{
        font-size:15px;
        line-height:1.8;
    }

    .about-media{
        min-height:280px;
        border-radius:18px;
    }

    .about-value-card{
        padding:22px 20px;
        border-radius:20px;
    }

    .about-value-card h3{
        font-size:21px;
    }
}

/* =========================
   İLETİŞİM PAGE
========================= */

.contact-page{
    padding-top: 6px;
}

.contact-card{
    background: #ffffff;
    border: 1px solid rgba(13, 32, 58, 0.08);
    border-radius: 28px;
    box-shadow: 0 18px 40px rgba(9, 26, 52, 0.08);
    overflow: hidden;
    position: relative;
}

.contact-card::before{
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    z-index: 2;
}

.contact-grid{
    display: grid;
    grid-template-columns: 600px 1fr;
    min-height: 620px;
    background: #ffffff;
}

.contact-info{
    padding: 42px 38px;
    background: #ffffff;
    color: var(--text);
    border-right: 1px solid rgba(13, 32, 58, 0.08);
}

.contact-kicker{
    display: inline-block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--blue);
}

.contact-info h1{
    margin: 0 0 18px;
    font-size: 40px;
    line-height: 1.08;
    font-weight: 800;
    color: var(--text);
}

.contact-intro{
    margin: 0 0 34px;
    font-size: 15px;
    line-height: 1.85;
    color: #425166;
    max-width: 330px;
}

.contact-items{
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.contact-item{
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
}

.contact-item + .contact-item{
    border-top: 1px solid rgba(13, 32, 58, 0.06);
}

.contact-item-icon{
    width: 54px;
    min-width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item-icon img{
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.contact-item-body h3{
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
}

.contact-item-body p{
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #425166;
}

.contact-item-body a{
    color: #425166;
    transition: .25s ease;
}

.contact-item-body a:hover{
    color: var(--blue);
}

.contact-map-wrap{
    position: relative;
    background: #f7fbff;
    min-height: 520px;
}

.contact-map-link{
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.contact-map-frame{
    width: 100%;
    height: 100%;
    min-height: 520px;
    border: 0;
    display: block;
    filter: grayscale(100%) contrast(1.03) brightness(.98);
}

.contact-map-badge{
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 12px 18px;
    border-radius: 14px;
    background: rgba(255,255,255,0.94);
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
    border: 1px solid rgba(13, 32, 58, 0.08);
    box-shadow: 0 10px 28px rgba(9, 26, 52, 0.10);
    transition: .25s ease;
}

.contact-map-link:hover .contact-map-badge{
    color: var(--blue);
    transform: translateY(-1px);
}

@media (max-width: 1100px){
    .contact-grid{
        grid-template-columns: 1fr;
    }

    .contact-info{
        border-right: none;
        border-bottom: 1px solid rgba(13, 32, 58, 0.08);
    }

    .contact-map-wrap,
    .contact-map-frame{
        min-height: 420px;
    }
}

@media (max-width: 768px){
    .contact-info{
        padding: 28px 22px;
    }

    .contact-info h1{
        font-size: 32px;
    }

    .contact-intro{
        max-width: none;
        font-size: 14px;
        line-height: 1.8;
    }

    .contact-item{
        gap: 14px;
        padding: 12px 0;
    }

    .contact-item-icon{
        width: 48px;
        min-width: 48px;
        height: 48px;
        border-radius: 14px;
    }

    .contact-item-icon img{
        width: 24px;
        height: 24px;
    }

    .contact-item-body h3{
        font-size: 16px;
    }

    .contact-item-body p{
        font-size: 14px;
    }

    .contact-map-wrap,
    .contact-map-frame{
        min-height: 340px;
    }
}

/* =========================
   ÜRETİCİ PAGE
========================= */

.producer-page{
    padding-top: 6px;
}

.producer-card{
    background: #ffffff;
    border: 1px solid rgba(13, 32, 58, 0.08);
    border-radius: 28px;
    box-shadow: 0 18px 40px rgba(9, 26, 52, 0.08);
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.producer-card::before{
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.producer-top{
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 28px;
    align-items: stretch;
    margin-bottom: 24px;
}

.producer-top-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.producer-kicker{
    display: inline-block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--blue);
}

.producer-top-text h1{
    margin: 0 0 14px;
    font-size: 42px;
    line-height: 1.08;
    font-weight: 800;
    color: var(--text);
}

.producer-lead{
    margin: 0 0 14px !important;
    font-size: 18px !important;
    line-height: 1.7 !important;
    font-weight: 600;
    color: #2d3d52 !important;
}

.producer-top-text p{
    margin: 0 0 14px;
    max-width: 690px;
    font-size: 16px;
    line-height: 1.85;
    color: #425166;
}

.producer-top-text p:last-of-type{
    margin-bottom: 0;
}

.producer-top-media{
    min-height: 320px;
    border-radius: 24px;
    overflow: hidden;
}

.producer-top-media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.producer-actions{
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.producer-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    transition: .25s ease;
}

.producer-btn-primary{
    background: linear-gradient(90deg, var(--blue), var(--blue-soft));
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(28, 120, 255, 0.18);
}

.producer-btn-primary:hover{
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(28, 120, 255, 0.24);
}

.producer-btn-secondary{
    background: #ffffff;
    color: var(--text);
    border: 1px solid rgba(13, 32, 58, 0.10);
}

.producer-btn-secondary:hover{
    color: var(--blue);
    border-color: rgba(28, 120, 255, 0.18);
    background: #f8fbff;
}

.producer-feature-grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 22px;
}

.producer-feature-card{
    border-radius: 22px;
    padding: 22px 18px;
    min-height: 220px;
    text-align: center;
    transition: .25s ease;
}

.producer-feature-card:hover{
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(17, 43, 76, 0.08);
}

.producer-feature-icon{
    width: 78px;
    height: 78px;
    margin: 0 auto 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
}

.producer-feature-icon img{
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.producer-feature-card h3{
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 800;
    color: var(--text);
}

.producer-feature-card p{
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: var(--muted);
}

.producer-bottom-cta{
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 18px;
    background: linear-gradient(90deg, #0c4fb0 0%, #1667d9 45%, #1c78ff 100%);
    color: #ffffff;
    box-shadow: 0 14px 32px rgba(28, 120, 255, 0.20);
}

.producer-bottom-cta-icon{
    width: 42px;
    min-width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.18);
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.producer-bottom-cta-text{
    flex: 1;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.95);
}

.producer-bottom-cta-link{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 12px;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.18);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    transition: .25s ease;
}

.producer-bottom-cta-link:hover{
    background: rgba(255,255,255,0.24);
}

@media (max-width: 1200px){
    .producer-feature-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px){
    .producer-top{
        grid-template-columns: 1fr;
    }

    .producer-top-media{
        min-height: 260px;
    }

    .producer-bottom-cta{
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px){
    .producer-card{
        padding: 22px;
        border-radius: 22px;
    }

    .producer-top-text h1{
        font-size: 32px;
    }

    .producer-lead{
        font-size: 16px !important;
    }

    .producer-top-text p{
        font-size: 15px;
        line-height: 1.8;
    }

    .producer-feature-grid{
        grid-template-columns: 1fr;
    }

    .producer-feature-card{
        min-height: auto;
    }

    .producer-feature-card h3{
        font-size: 20px;
    }

    .producer-actions{
        flex-direction: column;
    }

    .producer-btn{
        width: 100%;
    }

    .producer-bottom-cta{
        padding: 18px;
    }

    .producer-bottom-cta-link{
        width: 100%;
    }
}

/* =========================
   LEGAL PAGE
========================= */

.legal-page{
    padding-top: 6px;
}

.legal-card{
    background:#ffffff;
    border:1px solid rgba(13, 32, 58, 0.08);
    border-radius:28px;
    box-shadow:0 18px 40px rgba(9, 26, 52, 0.08);
    overflow:hidden;
    position:relative;
}

.legal-card::before{
    content:"";
    position:absolute;
    inset:0 0 auto 0;
    height:4px;
    background:linear-gradient(90deg, var(--blue), var(--cyan));
    z-index:2;
}

.legal-head{
    padding:34px 38px 26px;
    border-bottom:1px solid rgba(13, 32, 58, 0.08);
    background:linear-gradient(180deg, #fbfdff 0%, #f8fbff 100%);
}

.legal-kicker{
    display:inline-block;
    margin-bottom:10px;
    font-size:13px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:var(--blue);
}

.legal-head h1{
    margin:0 0 14px;
    font-size:38px;
    line-height:1.1;
    font-weight:800;
    color:var(--text);
}

.legal-head p{
    margin:0;
    max-width:820px;
    font-size:15px;
    line-height:1.85;
    color:#425166;
}

.legal-body{
    padding:34px 38px 38px;
}

.legal-section{
    margin-bottom:30px;
}

.legal-section:last-child{
    margin-bottom:0;
}

.legal-section h2{
    margin:0 0 14px;
    font-size:24px;
    line-height:1.3;
    font-weight:800;
    color:var(--text);
}

.legal-section h3{
    margin:20px 0 10px;
    font-size:18px;
    line-height:1.35;
    font-weight:700;
}

.legal-section p{
    margin:0 0 14px;
    font-size:15px;
    line-height:1.9;
    color:#425166;
}

.legal-section ul{
    margin:0 0 14px 0;
    padding-left:20px;
}

.legal-section li{
    margin-bottom:8px;
    font-size:15px;
    line-height:1.85;
    color:#425166;
}

.legal-section li:last-child{
    margin-bottom:0;
}

.legal-section a{
    color:var(--blue);
    font-weight:600;
    transition:.25s ease;
}

.legal-section a:hover{
    color:var(--blue-soft);
}

.legal-info-box{
    margin:16px 0;
    padding:18px 20px;
    border-radius:18px;
    background:linear-gradient(180deg, #fbfdff 0%, #f6faff 100%);
    border:1px solid rgba(28, 120, 255, 0.10);
}

.legal-info-box p{
    margin:0 0 10px;
}

.legal-info-box p:last-child{
    margin-bottom:0;
}

.legal-update{
    margin-top:10px;
    padding:18px 20px;
    border-radius:18px;
    background:linear-gradient(90deg, rgba(28,120,255,0.08), rgba(97,219,255,0.10));
    border:1px solid rgba(28, 120, 255, 0.10);
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
    font-size:15px;
    color:var(--text);
}

.legal-update span{
    color:#425166;
}

.legal-update strong{
    color:var(--blue);
    font-weight:800;
}

@media (max-width: 768px){
    .legal-head{
        padding:26px 22px 22px;
    }

    .legal-head h1{
        font-size:30px;
    }

    .legal-head p{
        font-size:14px;
        line-height:1.8;
    }

    .legal-body{
        padding:26px 22px 28px;
    }

    .legal-section h2{
        font-size:21px;
    }

    .legal-section h3{
        font-size:17px;
    }

    .legal-section p,
    .legal-section li{
        font-size:14px;
        line-height:1.8;
    }

    .legal-info-box,
    .legal-update{
        padding:16px 16px;
        border-radius:16px;
    }
}

.image-zoom-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.78);
    z-index:99999;
    display:none;
    align-items:center;
    justify-content:center;
    padding:24px;
}

.image-zoom-overlay.show{
    display:flex;
}

.image-zoom-overlay img{
    max-width:92vw;
    max-height:88vh;
    object-fit:contain;
    border-radius:18px;
    background:#fff;
    box-shadow:0 30px 90px rgba(0,0,0,.35);
}

.image-zoom-close{
    position:absolute;
    top:22px;
    right:28px;
    width:44px;
    height:44px;
    border:none;
    border-radius:50%;
    background:#fff;
    color:#111827;
    font-size:30px;
    line-height:44px;
    cursor:pointer;
    font-weight:700;
}

.cookie-consent{
    position:fixed;
    left:20px;
    right:20px;
    bottom:20px;
    z-index:99999;

    display:none;

    animation:cookieSlide .35s ease;
}

.cookie-content{
    max-width:1100px;
    margin:auto;

    background:
        radial-gradient(circle at top left, rgba(97,219,255,0.14), transparent 32%),
        linear-gradient(135deg, rgba(7,20,38,0.97), rgba(11,28,52,0.97));

    backdrop-filter:blur(14px);
    border:1px solid rgba(97,219,255,0.18);
    border-radius:var(--radius);

    padding:18px 22px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;

    box-shadow:0 18px 40px rgba(7,20,38,0.24);
}

.cookie-text h4{
    margin:0 0 8px;
    color:var(--white);
    font-size:17px;
    font-weight:800;
}

.cookie-text p{
    margin:0;
    color:rgba(255,255,255,0.78);
    font-size:14px;
    line-height:1.7;
}

.cookie-text a{
    color:var(--cyan);
    text-decoration:none;
    font-weight:700;
}

.cookie-text a:hover{
    color:var(--blue-soft);
    text-decoration:underline;
}

.cookie-btn.primary{
    background:linear-gradient(135deg, var(--blue), var(--blue-soft));
    color:#fff;
    box-shadow:0 12px 24px rgba(28,120,255,0.24);
}

.cookie-btn.primary:hover{
    transform:translateY(-2px);
    box-shadow:0 16px 28px rgba(28,120,255,0.30);
}

.cookie-btn.secondary{
    background:rgba(255,255,255,0.08);
    color:rgba(255,255,255,0.92);
    border:1px solid rgba(255,255,255,0.12);
}

.cookie-btn.secondary:hover{
    background:rgba(255,255,255,0.14);
    color:#fff;
}

.cookie-btn{
    border:none;
    cursor:pointer;

    padding:11px 18px;

    border-radius:10px;

    font-family:'Montserrat',sans-serif;
    font-weight:600;

    transition:.25s;
}

@keyframes cookieSlide{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:768px){

    .cookie-content{
        flex-direction:column;
        align-items:flex-start;
    }

    .cookie-actions{
        width:100%;
        display:flex;
        gap:10px;
    }

    .cookie-btn{
        flex:1;
        text-align:center;
    }
}

.cookie-actions{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:10px;
    flex-shrink:0;
}

/* CONTACT FORM */

.contact-form-card{
    margin-top:28px;
    background:#ffffff;
    border:1px solid rgba(13, 32, 58, 0.08);
    border-radius:28px;
    box-shadow:0 18px 40px rgba(9, 26, 52, 0.08);
    padding:34px 34px 30px;
    position:relative;
    overflow:hidden;
}

.contact-form-card::before{
    content:"";
    position:absolute;
    inset:0 0 auto 0;
    height:4px;
    background:linear-gradient(90deg, var(--blue), var(--cyan));
}

.contact-form-head{
    margin-bottom:24px;
}

.contact-form-kicker{
    display:inline-block;
    margin-bottom:10px;
    font-size:13px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:var(--blue);
}

.contact-form-head h2{
    margin:0 0 12px;
    font-size:32px;
    line-height:1.15;
    font-weight:800;
    color:var(--text);
}

.contact-form-head p{
    margin:0;
    max-width:760px;
    font-size:15px;
    line-height:1.85;
    color:#425166;
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.contact-form-row{
    display:grid;
    gap:16px;
}

.contact-form-row-2{
    grid-template-columns:repeat(2, minmax(0, 1fr));
}

.contact-form-row-3{
    grid-template-columns:15% 33% 49.5%;
}

.contact-field{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.contact-field label{
    font-size:14px;
    font-weight:700;
    color:var(--text);
}

.contact-field input,
.contact-field select,
.contact-field textarea{
    width:100%;
    border:1px solid rgba(13, 32, 58, 0.10);
    background:#ffffff;
    border-radius:16px;
    padding:15px 16px;
    font-size:15px;
    color:var(--text);
    transition:.25s ease;
    box-shadow:0 1px 0 rgba(255,255,255,0.6) inset;
    font-family:'Montserrat', sans-serif;
}

.contact-field textarea{
    min-height:130px;
    resize:vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder{
    color:#8a97a8;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus{
    outline:none;
    border-color:rgba(28,120,255,0.32);
    box-shadow:0 0 0 4px rgba(28,120,255,0.08);
}

.contact-form-actions{
    padding-top:6px;
}

.contact-submit-btn{
    min-width:220px;
    min-height:54px;
    border:none;
    border-radius:16px;
    background:linear-gradient(90deg, var(--blue), var(--blue-soft));
    color:#ffffff;
    font-size:15px;
    font-weight:700;
    padding:0 24px;
    cursor:pointer;
    transition:.25s ease;
    box-shadow:0 14px 28px rgba(28, 120, 255, 0.18);
    font-family:'Montserrat', sans-serif;
}

.contact-submit-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 18px 32px rgba(28, 120, 255, 0.24);
}

.contact-submit-btn:active{
    transform:translateY(0);
}

@media (max-width: 991px){
    .contact-form-row-3{
        grid-template-columns:1fr;
    }
}

@media (max-width: 768px){
    .contact-form-card{
        padding:26px 22px 24px;
        border-radius:22px;
    }

    .contact-form-head h2{
        font-size:28px;
    }

    .contact-form-head p{
        font-size:14px;
        line-height:1.8;
    }

    .contact-form-row-2{
        grid-template-columns:1fr;
    }

    .contact-submit-btn{
        width:100%;
    }
}

.register-page{
    max-width: 980px;
    margin: 0 auto;
}

.register-hero{
    margin-bottom: 26px;
}

.register-card{
    background:#ffffff;
    border:1px solid rgba(13, 32, 58, 0.08);
    border-radius:28px;
    box-shadow:0 18px 40px rgba(9, 26, 52, 0.08);
    padding:32px;
    position:relative;
    overflow:hidden;
}

.register-card::before{
    content:"";
    position:absolute;
    inset:0 0 auto 0;
    height:4px;
    background:linear-gradient(90deg, var(--blue), var(--cyan));
}

.register-top{
    margin-bottom:24px;
}

.register-kicker{
    display:inline-block;
    margin-bottom:10px;
    font-size:13px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:var(--blue);
}

.register-title{
    font-size:34px;
    line-height:1.15;
    font-weight:800;
    color:var(--text);
    margin-bottom:12px;
}

.register-desc{
    max-width:760px;
    font-size:15px;
    line-height:1.8;
    color:#425166;
}

.register-form{
    display:grid;
    gap:16px;
}

.register-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.register-grid-3{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:16px;
}

.register-field{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.register-label{
    font-size:13px;
    font-weight:700;
    color:var(--text);
}

.register-input,
.register-select{
    width:100%;
    min-height:52px;
    border:1px solid rgba(15, 23, 42, 0.10);
    border-radius:16px;
    background:#fff;
    padding:14px 16px;
    font-size:14px;
    color:var(--text);
    outline:none;
    transition:.2s ease;
}

.register-input:focus,
.register-select:focus{
    border-color:rgba(28,120,255,.45);
    box-shadow:0 0 0 4px rgba(28,120,255,.08);
}

.register-phone{
    display:grid;
    grid-template-columns:150px 1fr;
    gap:12px;
}

.register-note{
    background:linear-gradient(180deg, #fbfdff 0%, #f7fbff 100%);
    border:1px solid rgba(15, 23, 42, 0.08);
    border-radius:18px;
    padding:16px 18px;
    font-size:13px;
    line-height:1.7;
    color:var(--muted);
}

.register-actions{
    display:flex;
    justify-content:flex-end;
    margin-top:8px;
}

.register-btn{
    min-width:220px;
    border:none;
    border-radius:16px;
    padding:15px 22px;
    background:linear-gradient(135deg, var(--blue), var(--blue-soft));
    color:#fff;
    font-size:15px;
    font-weight:800;
    cursor:pointer;
    transition:.25s ease;
    box-shadow:0 14px 24px rgba(28,120,255,.18);
}

.register-btn:hover{
    transform:translateY(-1px);
    box-shadow:0 18px 28px rgba(28,120,255,.22);
}

.register-help{
    margin-top:16px;
    font-size:14px;
    color:var(--muted);
}

.register-help a{
    color:var(--blue);
    font-weight:700;
}

@media (max-width: 900px){
    .register-grid,
    .register-grid-3{
        grid-template-columns:1fr;
    }

    .register-phone{
        grid-template-columns:1fr;
    }

    .register-card{
        padding:22px;
        border-radius:22px;
    }

    .register-title{
        font-size:28px;
    }
}

.login-page{
    max-width: 1140px;
    margin: 0 auto;
}

.login-wrap{
    display:grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 24px;
    align-items: stretch;
}

.login-card,
.login-side{
    background:#ffffff;
    border:1px solid rgba(13, 32, 58, 0.08);
    border-radius:28px;
    box-shadow:0 18px 40px rgba(9, 26, 52, 0.08);
    position:relative;
    overflow:hidden;
}

.login-card::before,
.login-side::before{
    content:"";
    position:absolute;
    inset:0 0 auto 0;
    height:4px;
    background:linear-gradient(90deg, var(--blue), var(--cyan));
}

.login-card{
    padding:32px;
}

.login-side{
    padding:32px;
    background:
        radial-gradient(circle at top right, rgba(97, 219, 255, 0.10), transparent 32%),
        radial-gradient(circle at bottom left, rgba(28, 120, 255, 0.10), transparent 35%),
        #ffffff;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.login-kicker{
    display:inline-block;
    margin-bottom:10px;
    font-size:13px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:var(--blue);
}

.login-title{
    font-size:34px;
    line-height:1.15;
    font-weight:800;
    color:var(--text);
    margin-bottom:12px;
}

.login-desc{
    max-width:620px;
    font-size:15px;
    line-height:1.8;
    color:#425166;
    margin-bottom:24px;
}

.login-form{
    display:grid;
    gap:16px;
}

.login-field{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.login-label{
    font-size:13px;
    font-weight:700;
    color:var(--text);
}

.login-input-wrap{
    position:relative;
}

.login-input{
    width:100%;
    min-height:54px;
    border:1px solid rgba(15, 23, 42, 0.10);
    border-radius:16px;
    background:#fff;
    padding:14px 16px;
    font-size:14px;
    color:var(--text);
    outline:none;
    transition:.2s ease;
}

.login-input.with-toggle{
    padding-right:56px;
}

.login-input:focus{
    border-color:rgba(28,120,255,.45);
    box-shadow:0 0 0 4px rgba(28,120,255,.08);
}

.login-toggle{
    position:absolute;
    right:10px;
    top:50%;
    transform:translateY(-50%);
    border:none;
    background:transparent;
    color:var(--muted);
    cursor:pointer;
    font-size:13px;
    font-weight:700;
    padding:8px 10px;
    border-radius:10px;
    transition:.2s ease;
}

.login-toggle:hover{
    color:var(--blue);
    background:#f3f8ff;
}

.login-note{
    background:linear-gradient(180deg, #fbfdff 0%, #f7fbff 100%);
    border:1px solid rgba(15, 23, 42, 0.08);
    border-radius:18px;
    padding:16px 18px;
    font-size:13px;
    line-height:1.7;
    color:var(--muted);
}

.login-actions{
    display:flex;
    justify-content:flex-end;
    margin-top:6px;
}

.login-btn{
    min-width:220px;
    border:none;
    border-radius:16px;
    padding:15px 22px;
    background:linear-gradient(135deg, var(--blue), var(--blue-soft));
    color:#fff;
    font-size:15px;
    font-weight:800;
    cursor:pointer;
    transition:.25s ease;
    box-shadow:0 14px 24px rgba(28,120,255,.18);
}

.login-btn:hover{
    transform:translateY(-1px);
    box-shadow:0 18px 28px rgba(28,120,255,.22);
}

.login-side-title{
    font-size:28px;
    line-height:1.2;
    font-weight:800;
    color:var(--text);
    margin-bottom:12px;
}

.login-side-text{
    font-size:15px;
    line-height:1.8;
    color:#425166;
    margin-bottom:22px;
    max-width:420px;
}

.login-register-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:220px;
    padding:15px 22px;
    border-radius:16px;
    background:rgba(28,120,255,0.08);
    border:1px solid rgba(28,120,255,0.18);
    color:var(--blue);
    font-size:15px;
    font-weight:800;
    transition:.25s ease;
}

.login-register-btn:hover{
    background:rgba(28,120,255,0.14);
    transform:translateY(-1px);
}

.flash-box{
    margin-bottom:18px;
    display:grid;
    gap:10px;
}

.flash-item{
    border-radius:14px;
    padding:13px 15px;
    font-size:14px;
    font-weight:700;
    border:1px solid transparent;
}

.flash-item.success{
    background:rgba(31,163,91,.08);
    border-color:rgba(31,163,91,.25);
    color:#15803d;
}

.flash-item.warning{
    background:rgba(245,158,11,.10);
    border-color:rgba(245,158,11,.24);
    color:#b45309;
}

.flash-item{
    transition: opacity .3s ease, transform .3s ease;
}

.flash-item.is-hiding{
    opacity: 0;
    transform: translateY(-6px);
}

.flash-item.danger,
.flash-item.error{
    background:rgba(224,1,1,.08);
    border-color:rgba(224,1,1,.20);
    color:#b42318;
}

@media (max-width: 950px){
    .login-wrap{
        grid-template-columns:1fr;
    }

    .login-card,
    .login-side{
        padding:22px;
        border-radius:22px;
    }

    .login-title{
        font-size:28px;
    }

    .login-side-title{
        font-size:24px;
    }
}


.home-hero-slider{
    position:relative;
    width:100vw;
    margin-left:calc(50% - 50vw);
    margin-right:calc(50% - 50vw);
    aspect-ratio:1400 / 500;
    overflow:hidden;
    background:#f5f9ff;
    margin-top: -60px;
}

.hero-slide{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:opacity .7s ease, visibility .7s ease;
}

.hero-slide.active{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    z-index:3;
}

.hero-soft-bg{
    position:absolute;
    inset:0;
    z-index:1;
}

.hero-product-img{
    display:block;
    user-select:none;
    pointer-events:none;
}

/* Slider ok ve noktalar */

.hero-slider-controls{
    position:absolute;
    z-index:20;
    left:50%;
    bottom:3.2%;
    transform:translateX(-50%);
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
}

.hero-dots{
    display:flex;
    align-items:center;
    gap:14px;
}

.hero-dot{
    width:13px;
    height:13px;
    border-radius:50%;
    border:none;
    background:#d5dce5;
    cursor:pointer;
    padding:0;
    transition:.25s ease;
}

.hero-dot.active{
    background:#1478ff;
    transform:scale(1.12);
}

.hero-arrow{
    width:30px;
    height:30px;
    border:none;
    background:transparent;
    color:#52657c;
    font-size:38px;
    line-height:1;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.25s ease;
}

.hero-arrow:hover{
    color:#1478ff;
}

/* Mobil */

@media (max-width:768px){
    .home-hero-slider{
        aspect-ratio:1400 / 500;
    }

    .hero-slider-controls{
        bottom:2.8%;
        gap:10px;
    }

    .hero-dots{
        gap:9px;
    }

    .hero-dot{
        width:8px;
        height:8px;
    }

    .hero-arrow{
        width:22px;
        height:22px;
        font-size:28px;
    }
}

.slide-1{
    background:#f5f9ff;
}

.slide-1 .hero-soft-bg{
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 78% 18%, rgba(28,120,255,.10), transparent 28%),
        linear-gradient(120deg, #ffffff 0%, #f6faff 52%, #eef5ff 100%);
}

.slide-1 .hero-product-img{
    position:absolute;
    right:-1.5%;
    bottom:0;
    width:150%;
    height:auto;
    z-index:2;
}

.slide-1 .hero-content{
    position:absolute;
    left:6.3%;
    top:10%;
    z-index:4;
    width:42%;
}

.hero-kicker{
    display:flex;
    align-items:center;
    gap:10px;
    color:#1478ff;
    font-size:clamp(8px, .85vw, 14px);
    font-weight:800;
    margin-bottom:1.4%;
}

.hero-kicker span{
    width:34px;
    height:3px;
    border-radius:999px;
    background:#1478ff;
}

.hero-content h1{
    font-size:clamp(24px, 4.2vw, 40px);
    line-height:1.08;
    font-weight:800;
    color:#142133;
    margin:0 0 2%;
}

.hero-content p{
    font-size:clamp(10px, 1.16vw, 17px);
    line-height:1.7;
    font-weight:500;
    color:#6f7d90;
    margin:0 0 5.5%;
}

.hero-features{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:0;
    margin-bottom:5%;
}

.hero-feature{
    text-align:center;
    padding:0 13px;
    border-right:1px solid rgba(15,23,42,.12);
}

.hero-feature:last-child{
    border-right:0;
}

.hero-feature img{
    width:clamp(20px, 2.3vw, 35px);
    height:clamp(20px, 2.3vw, 35px);
    object-fit:contain;
    margin:0 auto 12px;
}

.hero-feature strong{
    display:block;
    font-size:clamp(8px, .85vw, 15px);
    font-weight:800;
    color:#142133;
    margin-bottom:8px;
}

.hero-feature small{
    display:block;
    font-size:clamp(7px, .68vw, 12px);
    line-height:1.6;
    font-weight:500;
    color:#6f7d90;
}

.slide-1 .hero-actions{
    position:static;
    display:flex;
    gap:14px;
}

.hero-btn{
    height:clamp(30px, 3.4vw, 58px);
    min-width:clamp(120px, 13vw, 215px);
    padding:0 clamp(14px, 1.8vw, 30px);
    border-radius:8px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    font-size:clamp(9px, .95vw, 16px);
    font-weight:800;
    white-space:nowrap;
}

.hero-btn-primary{
    background:#1478ff;
    color:#fff;
    border:1px solid #1478ff;
}

.hero-btn-light{
    background:rgba(255,255,255,.92);
    color:#1478ff;
    border:2px solid rgba(20,120,255,.78);
}

.hero-btn span{
    font-size:clamp(16px, 1.7vw, 28px);
}

/* mobilde oranı koruyarak küçültme */
@media (max-width:768px){
    .slide-1 .hero-content{
        left:5.5%;
        top:18%;
        width:45%;
    }

    .slide-1 .hero-product-img{
        width:66%;
        right:-4%;
    }

    .hero-feature{
        padding:0 4px;
    }

    .slide-1 .hero-actions{
        gap:7px;
    }
}

.slide-2{
    background:#f5f9ff;
}

.slide-2 .hero-soft-bg{
    position:absolute;
    inset:0;
    background: transparent;
}

.slide-2 .hero-soft-bg::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background: transparent;
    background-size:100% 100%, 28px 28px;
    opacity:.35;
}

.slide-2 .hero-product-img{
    position:absolute;
    right:-1.7%;
    top:0;
    width:100%;
    height:auto;
    z-index:2;
}

.slide-2 .hero-content{
    position:absolute;
    left:5.3%;
    top:6%;
    z-index:4;
    width:48%;
}

.slide-2 .hero-content h1{
    font-size:clamp(25px, 4vw, 35px);
    line-height:1.08;
    font-weight:800;
    color:#071426;
    margin:0 0 2.4%;
}

.slide-2 .hero-content p{
    font-size:clamp(11px, 1.35vw, 18px);
    line-height:1.85;
    font-weight:500;
    color:#627187;
    margin:0;
}

/* süreç alanı */

.hero-process-row{
    position:absolute;
    left:5.7%;
    right:5.5%;
    top:53.7%;
    z-index:5;
    display:grid;
    grid-template-columns:1fr .28fr 1fr .28fr 1fr .28fr 1fr .28fr 1fr;
    align-items:start;
}

.hero-process-item{
    position:relative;
    text-align:center;
    min-width:0;
}

.process-no{
    position:absolute;
    left:10%;
    top:-1.6%;
    width:clamp(22px, 2.7vw, 36px);
    height:clamp(22px, 2.7vw, 36px);
    border-radius:50%;
    background:#dfeeff;
    color:#1478ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:clamp(10px, 1.15vw, 19px);
    font-weight:800;
    z-index:2;
}

.process-icon{
    width:clamp(30px, 7vw, 56px);
    height:clamp(30px, 7vw, 56px);
    margin:0 auto clamp(14px, 1.7vw, 28px);
    border-radius:50%;
    background:#fff;
    box-shadow:0 18px 34px rgba(7,20,38,.10);
    display:flex;
    align-items:center;
    justify-content:center;
}

.process-icon img{
    width:52%;
    height:52%;
    object-fit:contain;
}

.hero-process-item h3{
    margin:0 0 clamp(8px, .9vw, 14px);
    font-size:clamp(10px, 1.25vw, 15px);
    line-height:1.25;
    font-weight:800;
    color:#071426;
}

.hero-process-item p{
    margin:0 auto;
    font-size:clamp(8px, 1vw, 11px);
    line-height:1.65;
    font-weight:500;
    color:#6f7d90;
}

.process-arrow{
    align-self:start;
    padding-top:clamp(26px, 3.5vw, 58px);
    text-align:center;
    color:#1478ff;
    font-size:clamp(20px, 2.5vw, 44px);
    font-weight:500;
}

/* slide-2 buton konumu */

.slide-2 .hero-actions{
    position:absolute;
    left:5.7%;
    top:86%;
    z-index:8;
    display:flex;
    gap:clamp(10px, 1.6vw, 28px);
}

/* alt güven barı */

.slide-2 .hero-info-bar{
    position:absolute;
    right:4.8%;
    bottom:8%;
    z-index:8;
    height:clamp(36px, 4.4vw, 40px);
    min-width:44%;
    padding:0 clamp(16px, 2.3vw, 38px);
    border-radius:clamp(8px, 1vw, 16px);
    background:rgba(255,255,255,.92);
    box-shadow:0 14px 34px rgba(7,20,38,.08);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:clamp(10px, 1.6vw, 28px);
}

.slide-2 .hero-info-bar div{
    display:flex;
    align-items:center;
    gap:clamp(7px, .9vw, 14px);
    color:#142133;
    font-size:clamp(8px, .9vw, 15px);
    font-weight:800;
    white-space:nowrap;
    padding-right:clamp(10px, 1.7vw, 28px);
    border-right:1px solid rgba(15,23,42,.10);
}

.slide-2 .hero-info-bar div:last-child{
    border-right:0;
    padding-right:0;
}

.slide-2 .hero-info-bar span{
    color:#64748b;
    font-size:clamp(14px, 1.45vw, 24px);
}

/* mobil */

@media (max-width:768px){
    .slide-2 .hero-product-img{
        width:59%;
        right:-5%;
        top:0;
    }

    .slide-2 .hero-content{
        left:5%;
        top:9.5%;
        width:50%;
    }

    .hero-process-row{
        left:4.8%;
        right:4.8%;
        top:54.5%;
    }

    .process-no{
        left:6%;
    }

    .hero-process-item p{
        line-height:1.45;
    }

    .slide-2 .hero-actions{
        left:5.4%;
        top:88.5%;
    }

    .slide-2 .hero-info-bar{
        right:4%;
        bottom:4%;
        min-width:45%;
    }
}

.slide-3{
    background:#f5f9ff;
}

.slide-3 .hero-soft-bg{
    position:absolute;
    inset:0;
    background: transparent;
}

.slide-3 .hero-soft-bg::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(145deg, transparent 0%, rgba(28,120,255,.04) 47%, transparent 48%);
    opacity:.55;
}

.slide-3 .hero-product-img{
    position:absolute;
    right:-1.7%;
    top:0;
    width:130%;
    height:auto;
    z-index:2;
}

.slide-3 .hero-content{
    position:absolute;
    left:4.75%;
    top:6%;
    z-index:4;
    width:41.5%;
}

.slide-3 .hero-content h1{
    font-size:clamp(25px, 4vw, 35px);
    line-height:1.08;
    font-weight:800;
    color:#071426;
    margin:0 0 3%;
}

.slide-3 .blue-dot{
    color:#1478ff;
}

.slide-3 .hero-content p{
    font-size:clamp(10px, 1.22vw, 18px);
    line-height:1.75;
    font-weight:500;
    color:#627187;
    margin:0 0 7%;
}

/* banner 3 feature alanı */

.slide-3 .hero-features{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:clamp(12px, 1.4vw, 24px);
    margin-bottom:3%;
}

.slide-3 .hero-feature{
    text-align:center;
    padding:0;
    border-right:0;
}

.hero-round-icon{
    width:clamp(42px, 5.1vw, 68px);
    height:clamp(42px, 5.1vw, 68px);
    margin:0 auto clamp(10px, 1.35vw, 10px);
    border-radius:50%;
    background:#eaf3ff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-round-icon img{
    width:52%;
    height:52%;
    object-fit:contain;
}

.slide-3 .hero-feature strong{
    display:block;
    font-size:clamp(8px, .9vw, 15px);
    line-height:1.25;
    font-weight:800;
    color:#142133;
    margin-bottom:clamp(6px, .75vw, 12px);
}

.slide-3 .hero-feature small{
    display:block;
    font-size:clamp(7px, .75vw, 13px);
    line-height:1.65;
    font-weight:500;
    color:#6f7d90;
}

/* slide-3 butonlar */

.slide-3 .hero-actions{
    position:static;
    display:flex;
    gap:clamp(10px, 1.6vw, 28px);
    margin-bottom:10%;
}

/* slide-3 alt bar */

.slide-3 .hero-info-bar{
    width:100%;
    height:clamp(34px, 4.1vw, 62px);
    padding:0 clamp(14px, 2vw, 28px);
    border-radius:clamp(7px, .9vw, 14px);
    background:rgba(255,255,255,.92);
    box-shadow:0 14px 34px rgba(7,20,38,.08);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:clamp(8px, 1.3vw, 20px);
}

.slide-3 .hero-info-bar div{
    display:flex;
    align-items:center;
    gap:clamp(6px, .75vw, 12px);
    color:#142133;
    font-size:clamp(7px, .82vw, 14px);
    font-weight:800;
    white-space:nowrap;
    padding-right:clamp(8px, 1.6vw, 24px);
    border-right:1px solid rgba(15,23,42,.10);
}

.slide-3 .hero-info-bar div:last-child{
    border-right:0;
    padding-right:0;
}

.slide-3 .hero-info-bar span{
    color:#64748b;
    font-size:clamp(13px, 1.35vw, 22px);
}

/* Mobil */

@media (max-width:768px){
    .slide-3 .hero-product-img{
        width:63%;
        right:-6%;
        top:0;
    }

    .slide-3 .hero-content{
        left:4.4%;
        top:12.5%;
        width:43%;
    }

    .slide-3 .hero-features{
        gap:5px;
    }

    .slide-3 .hero-actions{
        gap:7px;
    }

    .slide-3 .hero-info-bar{
        padding:0 8px;
    }
}

.slide-4{
    background:transparent;
}

.slide-4 .hero-soft-bg{
    position:absolute;
    inset:0;
    background: transparent;
}

.slide-4 .hero-soft-bg::before{
    content:"";
    position:absolute;
    inset:0;
    background: transparent;
    background-size:100% 100%, 28px 28px;
    opacity:.32;
}

.slide-4 .hero-soft-bg::after{
    content:"";
    position:absolute;
    right:32%;
    top:10%;
    width:28%;
    height:34%;
    background: transparent;
    background-size:90px 70px, 100% 100%;
    opacity:.22;
    filter:blur(.1px);
}

.slide-4 .hero-product-img{
    position:absolute;
    right:-1.9%;
    top:0;
    width:140.8%;
    height:auto;
    z-index:2;
}

.slide-4 .hero-content{
    position:absolute;
    left:4.9%;
    top:6.4%;
    z-index:4;
    width:40.5%;
}

.slide-4 .hero-content h1{
    font-size:clamp(25px, 4vw, 35px);
    line-height:1.08;
    font-weight:800;
    color:#071426;
    margin:0 0 3%;
}

.slide-4 .blue-dot{
    color:#1478ff;
}

.slide-4 .hero-content p{
    font-size:clamp(10px, 1.22vw, 18px);
    line-height:1.75;
    font-weight:500;
    color:#627187;
    margin:0 0 7%;
}

/* banner 4 feature alanı */

.slide-4 .hero-features{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:clamp(12px, 1.4vw, 24px);
    margin-bottom:4%;
}

.slide-4 .hero-feature{
    text-align:center;
    padding:0;
    border-right:0;
}

.slide-4 .hero-round-icon{
    width:clamp(42px, 5.1vw, 68px);
    height:clamp(42px, 5.1vw, 68px);
    margin:0 auto clamp(10px, 1.35vw, 22px);
    border-radius:50%;
    background:transparent;
    display:flex;
    align-items:center;
    justify-content:center;
}

.slide-4 .hero-round-icon img{
    width:62%;
    height:62%;
    object-fit:contain;
}

.slide-4 .hero-feature strong{
    display:block;
    font-size:clamp(8px, .9vw, 14px);
    line-height:1.25;
    font-weight:800;
    color:#142133;
    margin-bottom:clamp(6px, .75vw, 12px);
}

.slide-4 .hero-feature small{
    display:block;
    font-size:clamp(7px, .75vw, 11px);
    line-height:1.65;
    font-weight:500;
    color:#6f7d90;
}

/* slide-4 butonlar */

.slide-4 .hero-actions{
    position:static;
    display:flex;
    gap:clamp(10px, 1.6vw, 28px);
    margin-bottom:14%;
}

/* slide-4 alt bar */

.slide-4 .hero-info-bar{
    width:112%;
    height:clamp(34px, 4.1vw, 40px);
    padding:0 clamp(14px, 2vw, 28px);
    border-radius:clamp(7px, .9vw, 14px);
    background:rgba(255,255,255,.92);
    box-shadow:0 14px 34px rgba(7,20,38,.08);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:clamp(8px, 1.3vw, 20px);
}

.slide-4 .hero-info-bar div{
    display:flex;
    align-items:center;
    gap:clamp(6px, .75vw, 12px);
    color:#142133;
    font-size:clamp(7px, .82vw, 12px);
    font-weight:800;
    white-space:nowrap;
    padding-right:clamp(8px, 1.4vw, 20px);
    border-right:1px solid rgba(15,23,42,.10);
}

.slide-4 .hero-info-bar div:last-child{
    border-right:0;
    padding-right:0;
}

.slide-4 .hero-info-bar span{
    color:#64748b;
    font-size:clamp(13px, 1.35vw, 17px);
}

/* Mobil */

@media (max-width:768px){
    .slide-4 .hero-product-img{
        width:63%;
        right:-6%;
        top:0;
    }

    .slide-4 .hero-content{
        left:4.5%;
        top:12.4%;
        width:43%;
    }

    .slide-4 .hero-features{
        gap:5px;
    }

    .slide-4 .hero-actions{
        gap:7px;
    }

    .slide-4 .hero-info-bar{
        width:115%;
        padding:0 8px;
    }
}

html,
body{
    overflow-x:hidden;
}

.home-hero-slider{
    background:transparent;
}

.hero-slide,
.slide-1,
.slide-2,
.slide-3,
.slide-4{
    background:transparent !important;
}

.hero-soft-bg,
.hero-soft-bg::before,
.hero-soft-bg::after,
.slide-1 .hero-soft-bg,
.slide-2 .hero-soft-bg,
.slide-3 .hero-soft-bg,
.slide-4 .hero-soft-bg,
.slide-1 .hero-soft-bg::before,
.slide-2 .hero-soft-bg::before,
.slide-3 .hero-soft-bg::before,
.slide-4 .hero-soft-bg::before,
.slide-4 .hero-soft-bg::after{
    background:transparent !important;
}

/* =========================
   HOME CATEGORY SHOWCASE
========================= */

.home-category-showcase{
    width:min(var(--container), calc(100% - 48px));
    margin:46px auto 0;
}

.home-category-block{
    margin-bottom:42px;
    background:#fff;
    border:1px solid rgba(15,23,42,.08);
    border-radius:28px;
    padding:26px;
    box-shadow:0 18px 40px rgba(7,20,38,.06);
}

.home-category-head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:20px;
    margin-bottom:22px;
}

.home-category-kicker{
    display:inline-block;
    margin-bottom:7px;
    font-size:12px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#1478ff;
}

.home-category-head h2{
    margin:0;
    font-size:28px;
    line-height:1.2;
    font-weight:800;
    color:#142133;
}

.home-category-head h2 small{
    font-size:15px;
    font-weight:700;
    color:#6f7d90;
}

.home-category-all{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:14px;
    font-weight:800;
    color:#1478ff;
    white-space:nowrap;
}

.home-product-scroll{
    display:grid;
    grid-auto-flow:column;
    grid-auto-columns:calc((100% - 72px) / 5);
    gap:18px;
    overflow-x:auto;
    overflow-y:hidden;
    padding:4px 2px 14px;
    scroll-snap-type:x mandatory;
    scrollbar-width:thin;
}

.home-product-scroll::-webkit-scrollbar{
    height:8px;
}

.home-product-scroll::-webkit-scrollbar-track{
    background:#eef3f9;
    border-radius:999px;
}

.home-product-scroll::-webkit-scrollbar-thumb{
    background:#c8d5e6;
    border-radius:999px;
}

.home-product-card{
    scroll-snap-align:start;
    display:block;
    background:#fbfdff;
    border:1px solid rgba(15,23,42,.08);
    border-radius:22px;
    overflow:hidden;
    transition:.25s ease;
}

.home-product-card:hover{
    transform:translateY(-3px);
    box-shadow:0 16px 32px rgba(7,20,38,.10);
    border-color:rgba(20,120,255,.20);
}

.home-product-image{
    width:100%;
    aspect-ratio:3 / 2;
    background:#f4f8fd;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.home-product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.home-product-info{
    padding:15px;
}

.home-product-info h3{
    margin:0 0 12px;
    font-size:15px;
    line-height:1.35;
    font-weight:800;
    color:#142133;
    min-height:40px;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.home-product-price{
    display:flex;
    align-items:center;
    gap:9px;
    flex-wrap:wrap;
}

.home-product-price del{
    font-size:13px;
    font-weight:700;
    color:#94a3b8;
}

.home-product-price strong{
    font-size:16px;
    font-weight:900;
    color:#1478ff;
}

.home-category-empty{
    padding:22px;
    border-radius:18px;
    background:#f7fbff;
    color:#6f7d90;
    font-size:14px;
    font-weight:700;
}

/* Responsive */

@media (max-width:1200px){
    .home-product-scroll{
        grid-auto-columns:calc((100% - 54px) / 4);
    }
}

@media (max-width:991px){
    .home-category-showcase{
        width:min(100% - 28px, var(--container));
        margin-top:32px;
    }

    .home-category-block{
        padding:20px;
        border-radius:22px;
    }

    .home-product-scroll{
        grid-auto-columns:calc((100% - 36px) / 3);
    }

    .home-category-head h2{
        font-size:23px;
    }
}

@media (max-width:640px){
    .home-category-head{
        align-items:flex-start;
        flex-direction:column;
        gap:10px;
    }

    .home-product-scroll{
        grid-auto-columns:calc((100% - 14px) / 2);
        gap:14px;
    }

    .home-product-info{
        padding:12px;
    }

    .home-product-info h3{
        font-size:13px;
        min-height:36px;
    }

    .home-product-price strong{
        font-size:14px;
    }

    .home-product-price del{
        font-size:12px;
    }
}

/* =========================
   PRODUCT DETAIL PAGE
========================= */

.product-detail-page{
    padding:4px 0 10px;
}

.product-back-row{
    margin-bottom:18px;
}

.product-back-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#1478ff;
    font-size:14px;
    font-weight:800;
    transition:.25s ease;
}

.product-back-btn:hover{
    transform:translateX(-2px);
}

.product-back-btn span{
    font-size:22px;
    line-height:1;
}

.product-detail-card{
    background:#ffffff;
    border:1px solid rgba(13,32,58,.08);
    border-radius:28px;
    box-shadow:0 18px 40px rgba(9,26,52,.08);
    padding:30px;
    position:relative;
    overflow:hidden;
}

.product-detail-card::before{
    content:"";
    position:absolute;
    inset:0 0 auto 0;
    height:4px;
    background:linear-gradient(90deg, var(--blue), var(--cyan));
}

.product-detail-head{
    margin-bottom:24px;
}

.product-detail-kicker{
    display:inline-block;
    margin-bottom:10px;
    font-size:13px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:var(--blue);
}

.product-detail-head h1{
    margin:0;
    font-size:34px;
    line-height:1.18;
    font-weight:800;
    color:var(--text);
}

.product-detail-head h1 span{
    color:#94a3b8;
    font-weight:700;
}

.product-detail-grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:30px;
    align-items:start;
}

/* gallery */

.product-gallery{
    min-width:0;
}

.product-gallery-main{
    position:relative;
    width:100%;
    aspect-ratio:3 / 2;
    border-radius:24px;
    background:#f4f8fd;
    overflow:hidden;
    border:1px solid rgba(15,23,42,.08);
}

.product-gallery-img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0;
    visibility:hidden;
    transition:.35s ease;
}

.product-gallery-img.active{
    opacity:1;
    visibility:visible;
}

.gallery-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:5;
    width:44px;
    height:44px;
    border-radius:50%;
    border:1px solid rgba(15,23,42,.10);
    background:rgba(255,255,255,.92);
    color:#1478ff;
    font-size:34px;
    line-height:1;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    box-shadow:0 12px 24px rgba(7,20,38,.10);
    transition:.25s ease;
}

.gallery-arrow:hover{
    background:#1478ff;
    color:#fff;
}

.gallery-prev{
    left:14px;
}

.gallery-next{
    right:14px;
}

.product-gallery-thumbs{
    display:flex;
    gap:10px;
    overflow-x:auto;
    padding:12px 2px 2px;
}

.gallery-thumb{
    width:74px;
    height:74px;
    flex:0 0 74px;
    border-radius:14px;
    border:2px solid transparent;
    background:#f4f8fd;
    padding:4px;
    cursor:pointer;
    overflow:hidden;
    transition:.25s ease;
}

.gallery-thumb.active{
    border-color:#1478ff;
}

.gallery-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:10px;
}

/* info */

.product-detail-info{
    background:linear-gradient(180deg, #fbfdff 0%, #f7fbff 100%);
    border:1px solid rgba(15,23,42,.08);
    border-radius:24px;
    padding:26px;
}

.product-detail-info h2{
    margin:0 0 14px;
    font-size:28px;
    line-height:1.25;
    font-weight:800;
    color:var(--text);
}

.product-price-box{
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
    margin-bottom:22px;
}

.product-price-box del{
    font-size:17px;
    font-weight:700;
    color:#94a3b8;
}

.product-price-box strong{
    font-size:28px;
    line-height:1;
    font-weight:900;
    color:#1478ff;
}

.product-info-block{
    padding:18px 0;
    border-top:1px solid rgba(15,23,42,.08);
}

.product-info-block h3{
    margin:0 0 8px;
    font-size:15px;
    font-weight:800;
    color:#142133;
}

.product-info-block p{
    margin:0;
    color:#627187;
    font-size:15px;
    line-height:1.75;
    white-space:pre-line;
}

.product-meta-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:12px;
    margin:18px 0 22px;
}

.product-meta-item{
    background:#fff;
    border:1px solid rgba(15,23,42,.08);
    border-radius:18px;
    padding:16px;
}

.product-meta-item span{
    display:block;
    margin-bottom:6px;
    font-size:12px;
    font-weight:800;
    color:#6f7d90;
}

.product-meta-item strong{
    display:block;
    font-size:17px;
    font-weight:900;
    color:#142133;
}

.product-add-cart-btn{
    width:100%;
    height:58px;
    border:none;
    border-radius:14px;
    background:#1478ff;
    color:#fff;
    font-size:16px;
    font-weight:900;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    transition:.25s ease;
    box-shadow:0 14px 28px rgba(20,120,255,.22);
}

.product-add-cart-btn:hover{
    background:#005fe0;
    transform:translateY(-1px);
}

.product-add-cart-btn span{
    font-size:24px;
}

/* Responsive */

@media (max-width:991px){
    .product-detail-grid{
        grid-template-columns:1fr;
    }

    .product-detail-head h1{
        font-size:28px;
    }
}

@media (max-width:640px){
    .product-detail-card{
        padding:22px;
        border-radius:22px;
    }

    .product-detail-head h1{
        font-size:23px;
    }

    .product-detail-info{
        padding:20px;
        border-radius:20px;
    }

    .product-detail-info h2{
        font-size:23px;
    }

    .product-price-box strong{
        font-size:23px;
    }

    .product-meta-grid{
        grid-template-columns:1fr;
    }

    .gallery-arrow{
        width:38px;
        height:38px;
        font-size:28px;
    }
}

body.modal-open{
    overflow:hidden;
}

.cart-modal-overlay{
    position:fixed;
    inset:0;
    z-index:9999;
    background:rgba(7, 20, 38, .58);
    backdrop-filter:blur(8px);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    opacity:0;
    visibility:hidden;
    transition:.25s ease;
}

.cart-modal-overlay.show{
    opacity:1;
    visibility:visible;
}

.cart-modal-box{
    width:min(100%, 460px);
    background:#ffffff;
    border-radius:26px;
    box-shadow:0 28px 80px rgba(0,0,0,.24);
    padding:30px;
    position:relative;
    transform:translateY(14px) scale(.98);
    transition:.25s ease;
    overflow:hidden;
}

.cart-modal-overlay.show .cart-modal-box{
    transform:translateY(0) scale(1);
}

.cart-modal-box::before{
    content:"";
    position:absolute;
    inset:0 0 auto 0;
    height:4px;
    background:linear-gradient(90deg, var(--blue), var(--cyan));
}

.cart-modal-close{
    position:absolute;
    top:16px;
    right:16px;
    width:38px;
    height:38px;
    border:none;
    border-radius:50%;
    background:#f2f7ff;
    color:#142133;
    font-size:26px;
    line-height:1;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.25s ease;
}

.cart-modal-close:hover{
    background:#1478ff;
    color:#fff;
}

.cart-modal-kicker{
    display:inline-block;
    margin-bottom:10px;
    font-size:12px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#1478ff;
}

.cart-modal-box h2{
    margin:0 42px 12px 0;
    font-size:25px;
    line-height:1.25;
    font-weight:900;
    color:#142133;
}

.cart-modal-text,
.cart-login-warning p{
    margin:0 0 22px;
    color:#6f7d90;
    font-size:15px;
    line-height:1.7;
    font-weight:500;
}

.cart-qty-box{
    height:64px;
    display:grid;
    grid-template-columns:64px 1fr 64px;
    border:1px solid rgba(15,23,42,.10);
    border-radius:18px;
    overflow:hidden;
    background:#f7fbff;
    margin-bottom:22px;
}

.cart-qty-btn{
    border:none;
    background:#fff;
    color:#1478ff;
    font-size:30px;
    font-weight:800;
    cursor:pointer;
    transition:.25s ease;
}

.cart-qty-btn:hover{
    background:#1478ff;
    color:#fff;
}

.cart-qty-box input{
    border:none;
    background:transparent;
    text-align:center;
    color:#142133;
    font-size:24px;
    font-weight:900;
    outline:none;
    width: 50%;
}

.cart-modal-submit{
    width:100%;
    height:58px;
    border:none;
    border-radius:15px;
    background:#1478ff;
    color:#fff;
    font-size:16px;
    font-weight:900;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    box-shadow:0 14px 28px rgba(20,120,255,.22);
    transition:.25s ease;
}

.cart-modal-submit:hover{
    background:#005fe0;
    transform:translateY(-1px);
}

.cart-modal-submit span{
    font-size:24px;
}

.cart-register-link{
    margin-top:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#6f7d90;
    font-size:14px;
    font-weight:700;
}

.cart-register-link strong{
    color:#1478ff;
    margin-left:5px;
}

.cart-register-link:hover strong{
    text-decoration:underline;
}

@media (max-width:640px){
    .cart-modal-box{
        padding:24px;
        border-radius:22px;
    }

    .cart-modal-box h2{
        font-size:22px;
    }

    .cart-qty-box{
        height:58px;
        grid-template-columns:58px 1fr 58px;
    }
}

.cart-page{
    padding:4px 0 10px;
}

.cart-page-head{
    margin-bottom:24px;
}

.cart-kicker{
    display:inline-block;
    margin-bottom:10px;
    font-size:13px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:var(--blue);
}

.cart-page-head h1{
    margin:0 0 8px;
    font-size:38px;
    line-height:1.15;
    font-weight:900;
    color:var(--text);
}

.cart-page-head p{
    margin:0;
    color:var(--muted);
    font-size:15px;
    line-height:1.7;
}

.cart-layout{
    display:grid;
    grid-template-columns:minmax(0, 1fr) 390px;
    gap:24px;
    align-items:start;
}

.cart-items-card,
.cart-summary-card,
.cart-empty-card{
    background:#fff;
    border:1px solid rgba(13,32,58,.08);
    border-radius:28px;
    box-shadow:0 18px 40px rgba(9,26,52,.08);
    position:relative;
    overflow:hidden;
}

.cart-items-card{
    padding:20px;
}

.cart-summary-card{
    padding:24px;
    position:sticky;
    top:110px;
}

.cart-items-card::before,
.cart-summary-card::before,
.cart-empty-card::before{
    content:"";
    position:absolute;
    inset:0 0 auto 0;
    height:4px;
    background:linear-gradient(90deg, var(--blue), var(--cyan));
}

.cart-item{
    display:grid;
    grid-template-columns:118px minmax(0, 1fr) auto;
    gap:18px;
    align-items:center;
    padding:18px 0;
    border-bottom:1px solid rgba(15,23,42,.08);
}

.cart-item:last-child{
    border-bottom:0;
}

.cart-item-image{
    width:118px;
    aspect-ratio:3 / 2;
    border-radius:20px;
    overflow:hidden;
    background:#f4f8fd;
    border:1px solid rgba(15,23,42,.08);
}

.cart-item-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.cart-item-type{
    display:inline-block;
    margin-bottom:8px;
    color:#1478ff;
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.06em;
}

.cart-item-info h3{
    margin:0 0 10px;
    font-size:20px;
    line-height:1.3;
    font-weight:900;
    color:var(--text);
}

.cart-item-price span,
.cart-line-total span{
    display:block;
    margin-bottom:4px;
    font-size:12px;
    font-weight:800;
    color:var(--muted);
}

.cart-item-price strong,
.cart-line-total strong{
    font-size:17px;
    font-weight:900;
    color:#1478ff;
}

.cart-item-actions{
    min-width:190px;
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:14px;
}

.cart-qty{
    height:44px;
    display:grid;
    grid-template-columns:44px 54px 44px;
    border:1px solid rgba(15,23,42,.10);
    border-radius:14px;
    overflow:hidden;
    background:#f7fbff;
}

.cart-qty button{
    border:none;
    background:#fff;
    color:#1478ff;
    font-size:22px;
    font-weight:900;
    cursor:pointer;
}

.cart-qty button:hover{
    background:#1478ff;
    color:#fff;
}

.cart-adet{
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:17px;
    font-weight:900;
    color:var(--text);
}

.cart-line-total{
    text-align:right;
}

.cart-summary-total{
    padding-bottom:18px;
    border-bottom:1px solid rgba(15,23,42,.08);
    margin-bottom:18px;
}

.cart-summary-total span{
    display:block;
    margin-bottom:8px;
    color:var(--muted);
    font-size:13px;
    font-weight:800;
}

.cart-summary-total strong{
    display:block;
    color:#1478ff;
    font-size:32px;
    font-weight:900;
}

.cart-address-box{
    padding:18px;
    border-radius:20px;
    background:#f7fbff;
    border:1px solid rgba(15,23,42,.08);
    margin-bottom:18px;
}

.cart-address-box h3{
    margin:0 0 10px;
    font-size:17px;
    font-weight:900;
    color:var(--text);
}

.cart-address-box p{
    margin:0 0 12px;
    color:#435166;
    font-size:14px;
    line-height:1.75;
    font-weight:600;
}

.cart-address-box small{
    display:block;
    color:var(--muted);
    font-size:13px;
    line-height:1.6;
    font-weight:600;
}

.cart-address-box a{
    color:#1478ff;
    font-weight:900;
}

.cart-contract-check{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin:18px 0;
    cursor:pointer;
}

.cart-contract-check input{
    margin-top:3px;
    width:18px;
    height:18px;
    accent-color:#1478ff;
    flex:0 0 auto;
}

.cart-contract-check span{
    color:#435166;
    font-size:13px;
    line-height:1.6;
    font-weight:700;
}

.cart-contract-check a{
    color:#1478ff;
    font-weight:900;
}

.cart-checkout-btn{
    width:100%;
    height:58px;
    border:none;
    border-radius:15px;
    background:#1478ff;
    color:#fff;
    font-size:16px;
    font-weight:900;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    box-shadow:0 14px 28px rgba(20,120,255,.22);
    transition:.25s ease;
}

.cart-checkout-btn:disabled{
    background:#b7c9e4;
    cursor:not-allowed;
    box-shadow:none;
}

.cart-checkout-btn:not(:disabled):hover{
    background:#005fe0;
    transform:translateY(-1px);
}

.cart-checkout-btn span{
    font-size:24px;
}

/* Empty */

.cart-empty-card{
    max-width:720px;
    margin:0 auto;
    padding:44px 30px;
    text-align:center;
}

.cart-empty-icon{
    width:82px;
    height:82px;
    margin:0 auto 18px;
    border-radius:50%;
    background:#eef6ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
}

.cart-empty-card h2{
    margin:0 0 10px;
    font-size:30px;
    font-weight:900;
    color:var(--text);
}

.cart-empty-card p{
    margin:0 auto 24px;
    max-width:480px;
    color:var(--muted);
    font-size:15px;
    line-height:1.7;
}

.cart-empty-actions{
    display:flex;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
}

.cart-empty-btn{
    height:54px;
    min-width:180px;
    padding:0 24px;
    border-radius:12px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    font-size:15px;
    font-weight:900;
}

.cart-empty-btn.primary{
    background:#1478ff;
    color:#fff;
}

.cart-empty-btn.light{
    background:#fff;
    color:#1478ff;
    border:2px solid rgba(20,120,255,.75);
}

/* Checkout Modal */

body.modal-open{
    overflow:hidden;
}

.checkout-modal-overlay{
    position:fixed;
    inset:0;
    z-index:9999;
    background:rgba(7,20,38,.58);
    backdrop-filter:blur(8px);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    opacity:0;
    visibility:hidden;
    transition:.25s ease;
}

.checkout-modal-overlay.show{
    opacity:1;
    visibility:visible;
}

.checkout-modal-box{
    width:min(100%, 460px);
    background:#fff;
    border-radius:26px;
    box-shadow:0 28px 80px rgba(0,0,0,.24);
    padding:30px;
    position:relative;
    overflow:hidden;
}

.checkout-modal-box::before{
    content:"";
    position:absolute;
    inset:0 0 auto 0;
    height:4px;
    background:linear-gradient(90deg, var(--blue), var(--cyan));
}

.checkout-modal-close{
    position:absolute;
    top:16px;
    right:16px;
    width:38px;
    height:38px;
    border:none;
    border-radius:50%;
    background:#f2f7ff;
    color:#142133;
    font-size:26px;
    cursor:pointer;
}

.checkout-modal-kicker{
    display:inline-block;
    margin-bottom:10px;
    color:#1478ff;
    font-size:12px;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.checkout-modal-box h2{
    margin:0 42px 12px 0;
    font-size:25px;
    line-height:1.25;
    font-weight:900;
    color:#142133;
}

.checkout-modal-box p{
    margin:0 0 22px;
    color:#6f7d90;
    font-size:15px;
    line-height:1.7;
}

.checkout-modal-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
}

.checkout-no-btn,
.checkout-yes-btn{
    height:52px;
    border-radius:14px;
    font-size:15px;
    font-weight:900;
    cursor:pointer;
}

.checkout-no-btn{
    border:2px solid rgba(20,120,255,.65);
    background:#fff;
    color:#1478ff;
}

.checkout-yes-btn{
    border:none;
    background:#1478ff;
    color:#fff;
}

/* Responsive */

@media (max-width:991px){
    .cart-layout{
        grid-template-columns:1fr;
    }

    .cart-summary-card{
        position:relative;
        top:auto;
    }
}

@media (max-width:640px){
    .cart-page-head h1{
        font-size:30px;
    }

    .cart-items-card,
    .cart-summary-card{
        border-radius:22px;
        padding:18px;
    }

    .cart-item{
        grid-template-columns:88px minmax(0, 1fr);
        gap:14px;
    }

    .cart-item-image{
        width:88px;
    }

    .cart-item-actions{
        grid-column:1 / -1;
        width:100%;
        min-width:0;
        flex-direction:row;
        align-items:center;
        justify-content:space-between;
    }

    .cart-line-total{
        text-align:right;
    }

    .cart-empty-card{
        padding:36px 22px;
        border-radius:22px;
    }

    .cart-empty-card h2{
        font-size:24px;
    }

    .cart-empty-btn{
        width:100%;
    }
}

.nav-cart-link{
    position:relative;
}

.nav-cart-icon-wrap{
    position:relative;
}

.cart-count-badge{
    position:absolute;
    top:-10px;
    right:-12px;
    min-width:18px;
    height:18px;
    padding:0 5px;
    border-radius:999px;
    background:#1478ff;
    color:#fff;
    border:2px solid #071426;
    font-size:10px;
    line-height:14px;
    font-weight:900;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 6px 14px rgba(20,120,255,.35);
}

@media (max-width:991px){
    .cart-count-badge{
        position:static;
        margin-left:auto;
        min-width:22px;
        height:22px;
        border-color:rgba(255,255,255,.18);
        font-size:11px;
        line-height:18px;
    }

    .nav-cart-link{
        display:flex;
        align-items:center;
    }
}

.offer-page{
    padding:4px 0 10px;
}

.offer-page-head{
    margin-bottom:24px;
}

.offer-kicker{
    display:inline-block;
    margin-bottom:10px;
    font-size:13px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:var(--blue);
}

.offer-page-head h1{
    margin:0 0 8px;
    font-size:38px;
    line-height:1.15;
    font-weight:900;
    color:var(--text);
}

.offer-page-head p{
    margin:0;
    max-width:720px;
    color:var(--muted);
    font-size:15px;
    line-height:1.7;
}

.offer-layout{
    display:grid;
    grid-template-columns:390px minmax(0, 1fr);
    gap:24px;
    align-items:start;
}

.offer-info-card,
.offer-form-card{
    background:#fff;
    border:1px solid rgba(13,32,58,.08);
    border-radius:28px;
    box-shadow:0 18px 40px rgba(9,26,52,.08);
    position:relative;
    overflow:hidden;
}

.offer-info-card::before,
.offer-form-card::before{
    content:"";
    position:absolute;
    inset:0 0 auto 0;
    height:4px;
    background:linear-gradient(90deg, var(--blue), var(--cyan));
}

.offer-info-card{
    padding:26px 24px;
}

.offer-form-card{
    padding:26px;
}

.offer-info-step{
    display:inline-block;
    margin-bottom:18px;
    color:#1478ff;
    font-size:12px;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.offer-step{
    display:flex;
    gap:14px;
    padding:16px 0;
    border-bottom:1px solid rgba(15,23,42,.08);
}

.offer-step strong{
    width:38px;
    height:38px;
    border-radius:50%;
    background:#eef6ff;
    color:#1478ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    flex:0 0 auto;
}

.offer-step h3{
    margin:0 0 6px;
    font-size:17px;
    font-weight:900;
    color:var(--text);
}

.offer-step p{
    margin:0;
    color:var(--muted);
    font-size:13px;
    line-height:1.6;
    font-weight:600;
}

.offer-warning{
    margin-top:18px;
    padding:16px;
    border-radius:18px;
    background:#f7fbff;
    border:1px solid rgba(20,120,255,.14);
    color:#435166;
    font-size:13px;
    line-height:1.7;
    font-weight:700;
}

.offer-warning strong{
    color:#1478ff;
}

.offer-upload-box{
    min-height:260px;
    border:2px dashed rgba(20,120,255,.35);
    border-radius:24px;
    background:#f7fbff;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:28px;
    transition:.25s ease;
    position:relative;
}

.offer-upload-box.drag-over,
.offer-upload-box.has-file{
    border-color:#1478ff;
    background:#eef6ff;
}

.offer-upload-box input[type="file"]{
    display:none;
}

.offer-upload-icon{
    width:74px;
    height:74px;
    border-radius:50%;
    background:#fff;
    box-shadow:0 12px 24px rgba(9,26,52,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    margin-bottom:16px;
}

.offer-upload-box h3{
    margin:0 0 6px;
    font-size:22px;
    font-weight:900;
    color:var(--text);
}

.offer-upload-box p{
    margin:0 0 12px;
    color:var(--muted);
    font-size:14px;
    font-weight:700;
}

.offer-file-btn{
    height:48px;
    padding:0 24px;
    border:none;
    border-radius:13px;
    background:#1478ff;
    color:#fff;
    font-size:14px;
    font-weight:900;
    cursor:pointer;
    box-shadow:0 12px 24px rgba(20,120,255,.22);
}

.offer-upload-box small{
    display:block;
    margin-top:14px;
    color:var(--muted);
    font-size:12px;
    font-weight:700;
}

.offer-selected-file{
    margin-top:16px;
    padding:14px 16px;
    border-radius:16px;
    background:#fff;
    border:1px solid rgba(15,23,42,.10);
    display:flex;
    align-items:center;
    gap:12px;
}

.offer-selected-file span{
    color:var(--muted);
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
}

.offer-selected-file strong{
    min-width:0;
    flex:1;
    color:var(--text);
    font-size:14px;
    font-weight:900;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.offer-selected-file button{
    width:34px;
    height:34px;
    border:none;
    border-radius:50%;
    background:#eef6ff;
    color:#1478ff;
    font-size:22px;
    cursor:pointer;
}

.offer-field{
    margin-top:18px;
}

.offer-field label{
    display:block;
    margin-bottom:8px;
    color:var(--text);
    font-size:14px;
    font-weight:900;
}

.offer-field input,
.offer-field textarea{
    width:100%;
    border:1px solid rgba(15,23,42,.12);
    border-radius:16px;
    background:#fff;
    color:var(--text);
    font-family:'Montserrat', sans-serif;
    font-size:14px;
    font-weight:700;
    outline:none;
    transition:.2s ease;
    box-sizing:border-box;
}

.offer-field input{
    height:52px;
    padding:0 16px;
}

.offer-field textarea{
    padding:16px;
    resize:vertical;
    min-height:130px;
}

.offer-field input:focus,
.offer-field textarea:focus{
    border-color:#1478ff;
    box-shadow:0 0 0 4px rgba(20,120,255,.10);
}

.offer-submit-btn{
    width:100%;
    height:58px;
    margin-top:20px;
    border:none;
    border-radius:15px;
    background:#1478ff;
    color:#fff;
    font-size:16px;
    font-weight:900;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    box-shadow:0 14px 28px rgba(20,120,255,.22);
    transition:.25s ease;
}

.offer-submit-btn:hover{
    background:#005fe0;
    transform:translateY(-1px);
}

.offer-submit-btn span{
    font-size:24px;
}

@media (max-width:991px){
    .offer-layout{
        grid-template-columns:1fr;
    }
}

@media (max-width:640px){
    .offer-page-head h1{
        font-size:30px;
    }

    .offer-info-card,
    .offer-form-card{
        border-radius:22px;
        padding:20px;
    }

    .offer-upload-box{
        min-height:230px;
        padding:24px 18px;
    }

    .offer-upload-box h3{
        font-size:19px;
    }

    .offer-selected-file{
        align-items:flex-start;
        flex-direction:column;
    }

    .offer-selected-file button{
        position:absolute;
        right:18px;
    }
}

.offers-page{
    padding:4px 0 10px;
}

.offers-page-head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:18px;
    margin-bottom:24px;
}

.offers-kicker{
    display:inline-block;
    margin-bottom:10px;
    font-size:13px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:var(--blue);
}

.offers-page-head h1{
    margin:0 0 8px;
    font-size:38px;
    line-height:1.15;
    font-weight:900;
    color:var(--text);
}

.offers-page-head p{
    margin:0;
    color:var(--muted);
    font-size:15px;
    line-height:1.7;
}

.new-offer-btn{
    height:54px;
    padding:0 22px;
    border-radius:14px;
    background:#1478ff;
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    font-size:15px;
    font-weight:900;
    box-shadow:0 14px 28px rgba(20,120,255,.22);
    transition:.25s ease;
    white-space:nowrap;
}

.new-offer-btn:hover{
    background:#005fe0;
    transform:translateY(-1px);
}

.new-offer-btn span{
    font-size:22px;
}

.offers-card{
    background:#fff;
    border:1px solid rgba(13,32,58,.08);
    border-radius:28px;
    box-shadow:0 18px 40px rgba(9,26,52,.08);
    position:relative;
    overflow:hidden;
    margin-bottom:24px;
}

.offers-card::before{
    content:"";
    position:absolute;
    inset:0 0 auto 0;
    height:4px;
    background:linear-gradient(90deg, var(--blue), var(--cyan));
}

.offers-card-head{
    padding:24px 24px 0;
}

.offers-card-head h2{
    margin:0 0 18px;
    font-size:24px;
    font-weight:900;
    color:var(--text);
}

.offers-table-wrap{
    width:100%;
    overflow-x:auto;
    padding:0 24px 24px;
}

.offers-table{
    width:100%;
    border-collapse:separate;
    border-spacing:0 10px;
    min-width:850px;
}

.offers-table thead th{
    padding:0 14px 8px;
    color:var(--muted);
    font-size:12px;
    font-weight:900;
    text-align:left;
    text-transform:uppercase;
    letter-spacing:.06em;
}

.offers-table tbody tr{
    cursor:pointer;
    transition:.2s ease;
}

.offers-table tbody tr:hover{
    transform:translateY(-1px);
}

.offers-table tbody td{
    background:#f7fbff;
    padding:16px 14px;
    color:#435166;
    font-size:14px;
    font-weight:800;
    border-top:1px solid rgba(15,23,42,.06);
    border-bottom:1px solid rgba(15,23,42,.06);
}

.offers-table tbody td:first-child{
    border-left:1px solid rgba(15,23,42,.06);
    border-radius:16px 0 0 16px;
    color:#1478ff;
    font-weight:900;
}

.offers-table tbody td:last-child{
    border-right:1px solid rgba(15,23,42,.06);
    border-radius:0 16px 16px 0;
}

.offer-status{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:30px;
    padding:0 12px;
    border-radius:999px;
    font-size:12px;
    font-weight:900;
    white-space:nowrap;
}

.status-active{
    background:#eef6ff;
    color:#1478ff;
}

.status-approved{
    background:#ecfdf3;
    color:#16803a;
}

.status-cancelled{
    background:#fff1f2;
    color:#d21f3c;
}

.muted-text{
    color:#8b98aa;
    font-weight:800;
}

.offers-empty{
    margin:0 24px 24px;
    padding:28px;
    border-radius:22px;
    background:#f7fbff;
    border:1px solid rgba(15,23,42,.08);
    text-align:center;
}

.offers-empty h3{
    margin:0 0 8px;
    color:var(--text);
    font-size:20px;
    font-weight:900;
}

.offers-empty p{
    margin:0;
    color:var(--muted);
    font-size:14px;
    line-height:1.6;
    font-weight:600;
}

.history-card{
    margin-top:10px;
}

.history-toggle{
    width:100%;
    min-height:78px;
    padding:24px;
    border:none;
    background:#fff;
    color:var(--text);
    display:flex;
    align-items:center;
    justify-content:space-between;
    cursor:pointer;
    font-family:'Montserrat', sans-serif;
}

.history-toggle span{
    font-size:24px;
    font-weight:900;
}

.history-toggle strong{
    width:38px;
    height:38px;
    border-radius:50%;
    background:#eef6ff;
    color:#1478ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    transition:.25s ease;
}

.history-toggle.open strong{
    transform:rotate(180deg);
}

.history-content{
    display:none;
}

.history-content.show{
    display:block;
}

@media (max-width:768px){
    .offers-page-head{
        align-items:flex-start;
        flex-direction:column;
    }

    .offers-page-head h1{
        font-size:30px;
    }

    .new-offer-btn{
        width:100%;
    }

    .offers-card{
        border-radius:22px;
    }

    .offers-table-wrap{
        padding:0 16px 20px;
    }

    .offers-card-head{
        padding:22px 18px 0;
    }

    .offers-empty{
        margin:0 16px 20px;
    }

    .history-toggle{
        padding:22px 18px;
    }

    .history-toggle span{
        font-size:21px;
    }
}

.offer-detail-page{
    padding:4px 0 10px;
}

.offer-detail-head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:18px;
    margin-bottom:24px;
}

.offer-detail-kicker{
    display:inline-block;
    margin-bottom:10px;
    font-size:13px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:var(--blue);
}

.offer-detail-head h1{
    margin:0 0 8px;
    font-size:38px;
    line-height:1.15;
    font-weight:900;
    color:var(--text);
}

.offer-detail-head p{
    margin:0;
    color:var(--muted);
    font-size:15px;
    line-height:1.7;
}

.offer-back-btn{
    height:50px;
    padding:0 18px;
    border-radius:14px;
    background:#eef6ff;
    color:#1478ff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:900;
    white-space:nowrap;
}

.offer-detail-grid{
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:24px;
    margin-bottom:24px;
}

.offer-detail-card,
.offer-action-card{
    background:#fff;
    border:1px solid rgba(13,32,58,.08);
    border-radius:28px;
    box-shadow:0 18px 40px rgba(9,26,52,.08);
    position:relative;
    overflow:hidden;
    padding:26px;
}

.offer-detail-card::before,
.offer-action-card::before{
    content:"";
    position:absolute;
    inset:0 0 auto 0;
    height:4px;
    background:linear-gradient(90deg, var(--blue), var(--cyan));
}

.offer-detail-card-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    margin-bottom:20px;
}

.offer-detail-card h2,
.offer-action-card h2{
    margin:0;
    font-size:24px;
    font-weight:900;
    color:var(--text);
}

.offer-action-card p{
    margin:10px 0 20px;
    color:var(--muted);
    font-size:14px;
    line-height:1.7;
    font-weight:600;
}

.offer-info-list{
    display:grid;
    gap:12px;
}

.offer-info-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    padding:14px 16px;
    border-radius:16px;
    background:#f7fbff;
    border:1px solid rgba(15,23,42,.06);
}

.offer-info-row span{
    color:var(--muted);
    font-size:13px;
    font-weight:800;
}

.offer-info-row strong{
    color:var(--text);
    font-size:14px;
    font-weight:900;
    text-align:right;
}

.offer-admin-note{
    margin-top:18px;
    padding:18px;
    border-radius:18px;
    background:#f7fbff;
    border:1px solid rgba(15,23,42,.06);
}

.offer-admin-note h3{
    margin:0 0 8px;
    font-size:16px;
    font-weight:900;
    color:var(--text);
}

.offer-admin-note p{
    margin:0;
    color:#435166;
    font-size:14px;
    line-height:1.7;
    font-weight:600;
}

.offer-action-list{
    display:grid;
    gap:12px;
}

.offer-action-list form{
    width:100%;
}

.offer-main-btn,
.offer-secondary-btn,
.offer-danger-btn{
    width:100%;
    min-height:54px;
    border:none;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    font-size:15px;
    font-weight:900;
    cursor:pointer;
    transition:.25s ease;
    font-family:'Montserrat', sans-serif;
}

.offer-main-btn{
    background:#1478ff;
    color:#fff;
    box-shadow:0 14px 28px rgba(20,120,255,.22);
}

.offer-main-btn:hover{
    background:#005fe0;
    transform:translateY(-1px);
}

.offer-secondary-btn{
    background:#eef6ff;
    color:#1478ff;
}

.offer-secondary-btn:hover{
    background:#e2f0ff;
}

.offer-danger-btn{
    background:#fff1f2;
    color:#d21f3c;
}

.offer-danger-btn:hover{
    background:#ffe4e8;
}

.offer-files-card{
    margin-bottom:24px;
}

.offer-files-list{
    display:grid;
    gap:14px;
}

.offer-file-item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    padding:18px;
    border-radius:20px;
    background:#f7fbff;
    border:1px solid rgba(15,23,42,.06);
}

.offer-file-item h3{
    margin:0 0 8px;
    font-size:17px;
    font-weight:900;
    color:var(--text);
}

.offer-file-item p{
    margin:0 0 6px;
    color:#435166;
    font-size:14px;
    line-height:1.6;
    font-weight:700;
}

.offer-file-item p:last-child{
    margin-bottom:0;
}

.file-open-btn{
    min-height:46px;
    padding:0 16px;
    border-radius:13px;
    background:#eef6ff;
    color:#1478ff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    font-weight:900;
    white-space:nowrap;
}

.file-open-btn:hover{
    background:#e2f0ff;
}

@media (max-width:900px){
    .offer-detail-grid{
        grid-template-columns:1fr;
    }

    .offer-detail-head{
        align-items:flex-start;
        flex-direction:column;
    }

    .offer-back-btn{
        width:100%;
    }
}

@media (max-width:768px){
    .offer-detail-head h1{
        font-size:30px;
    }

    .offer-detail-card,
    .offer-action-card{
        border-radius:22px;
        padding:22px;
    }

    .offer-detail-card-head{
        align-items:flex-start;
        flex-direction:column;
    }

    .offer-info-row{
        align-items:flex-start;
        flex-direction:column;
        gap:6px;
    }

    .offer-info-row strong{
        text-align:left;
    }

    .offer-file-item{
        align-items:flex-start;
        flex-direction:column;
    }

    .file-open-btn{
        width:100%;
    }
}

.siparis-step-list{
    display:grid;
    gap:10px;
}

.siparis-step{
    padding:14px 16px;
    border-radius:16px;
    background:#f7fbff;
    border:1px solid rgba(15,23,42,.06);
    color:var(--muted);
    font-size:14px;
    font-weight:900;
}

.siparis-step.active{
    background:#eef6ff;
    color:#1478ff;
    border-color:rgba(20,120,255,.18);
}

.siparis-content-item{
    align-items:stretch;
}

.siparis-content-left{
    display:flex;
    align-items:flex-start;
    gap:16px;
    min-width:0;
}

.siparis-product-img{
    width:86px;
    height:86px;
    border-radius:18px;
    object-fit:cover;
    border:1px solid rgba(15,23,42,.08);
    background:#fff;
    flex-shrink:0;
}

.siparis-content-price{
    min-width:150px;
    padding:14px;
    border-radius:18px;
    background:#fff;
    border:1px solid rgba(15,23,42,.06);
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:7px;
    text-align:right;
}

.siparis-content-price span{
    color:var(--muted);
    font-size:12px;
    font-weight:900;
}

.siparis-content-price strong{
    color:var(--text);
    font-size:14px;
    font-weight:900;
}

.siparis-content-price b{
    color:#1478ff;
    font-size:16px;
    font-weight:900;
}

.siparis-teklif-files{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:12px;
}

@media(max-width:768px){
    .siparis-content-item{
        flex-direction:column;
    }

    .siparis-content-left{
        flex-direction:column;
    }

    .siparis-product-img{
        width:100%;
        height:180px;
    }

    .siparis-content-price{
        width:100%;
        min-width:0;
        text-align:left;
    }
}

.user-name-badge-wrap,
.dropdown-text-badge-wrap{
    position:relative;
    display:inline-flex;
    align-items:center;
    gap:8px;
}

.message-count-badge{
    min-width:18px;
    height:18px;
    padding:0 5px;
    border-radius:999px;
    background:#1478ff;
    color:#fff;
    border:2px solid #071426;
    font-size:10px;
    line-height:14px;
    font-weight:900;
    display:none;
    align-items:center;
    justify-content:center;
    box-shadow:0 6px 14px rgba(20,120,255,.35);
}

.message-count-badge.show{
    display:inline-flex;
}

.message-count-badge.small{
    min-width:18px;
    height:18px;
    font-size:10px;
    line-height:14px;
}

.user-name-badge-wrap .message-count-badge{
    margin-left:2px;
}

/* Mobil menüde taşma olmasın */
@media (max-width: 991px){
    .user-name-badge-wrap,
    .dropdown-text-badge-wrap{
        width:100%;
        justify-content:space-between;
    }

    .message-count-badge{
        margin-left:auto;
    }
}

/* =========================
   VITRIN SHOP AREA
========================= */

.vitrin-shop-section{
    width:min(var(--container), calc(100% - 48px));
    margin:46px auto 0;
    display:grid;
    grid-template-columns:300px minmax(0, 1fr);
    gap:26px;
    align-items:start;
}

.vitrin-sidebar{
    position:sticky;
    top:108px;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.vitrin-filter-card{
    background:#fff;
    border:1px solid rgba(15,23,42,.08);
    border-radius:24px;
    box-shadow:0 18px 40px rgba(7,20,38,.06);
    padding:22px;
    position:relative;
    overflow:hidden;
}

.vitrin-filter-card::before{
    content:"";
    position:absolute;
    inset:0 0 auto 0;
    height:4px;
    background:linear-gradient(90deg, var(--blue), var(--cyan));
}

.vitrin-filter-kicker,
.vitrin-products-kicker{
    display:inline-block;
    margin-bottom:8px;
    font-size:12px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:var(--blue);
}

.vitrin-filter-card h3{
    margin:0 0 16px;
    font-size:20px;
    font-weight:800;
    color:var(--text);
}

.vitrin-sort-list,
.vitrin-category-list{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.vitrin-sort-btn,
.vitrin-category-btn{
    width:100%;
    border:none;
    background:#f7fbff;
    color:#425166;
    border-radius:14px;
    padding:13px 14px;
    cursor:pointer;
    font-size:14px;
    font-weight:700;
    text-align:left;
    transition:.25s ease;
}

.vitrin-sort-btn:hover,
.vitrin-category-btn:hover{
    background:#eef6ff;
    color:var(--blue);
}

.vitrin-sort-btn.active,
.vitrin-category-btn.active{
    background:linear-gradient(135deg, rgba(28,120,255,.12), rgba(97,219,255,.14));
    color:var(--blue);
    box-shadow:inset 0 0 0 1px rgba(28,120,255,.18);
}

.vitrin-category-btn{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
}

.vitrin-category-btn strong{
    min-width:30px;
    height:24px;
    padding:0 8px;
    border-radius:999px;
    background:#fff;
    color:var(--blue);
    font-size:12px;
    font-weight:900;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.vitrin-products-area{
    min-width:0;
}

.vitrin-products-top{
    background:#fff;
    border:1px solid rgba(15,23,42,.08);
    border-radius:24px;
    box-shadow:0 18px 40px rgba(7,20,38,.06);
    padding:22px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    margin-bottom:16px;
    position:relative;
    overflow:hidden;
}

.vitrin-products-top::before{
    content:"";
    position:absolute;
    inset:0 0 auto 0;
    height:4px;
    background:linear-gradient(90deg, var(--blue), var(--cyan));
}

.vitrin-products-top h2{
    margin:0;
    font-size:28px;
    line-height:1.2;
    font-weight:800;
    color:var(--text);
}

.vitrin-search-wrap{
    width:min(380px, 100%);
}

.vitrin-search-wrap input{
    width:100%;
    height:48px;
    border:1px solid rgba(15,23,42,.10);
    border-radius:16px;
    background:#f7fbff;
    padding:0 16px;
    outline:none;
    color:var(--text);
    font-size:14px;
    font-weight:700;
    transition:.25s ease;
}

.vitrin-search-wrap input:focus{
    background:#fff;
    border-color:rgba(28,120,255,.35);
    box-shadow:0 0 0 4px rgba(28,120,255,.08);
}

.vitrin-active-info{
    margin-bottom:16px;
    background:#f7fbff;
    border:1px solid rgba(15,23,42,.07);
    color:#64748b;
    border-radius:16px;
    padding:13px 16px;
    font-size:14px;
    font-weight:700;
}

.vitrin-product-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:18px;
}

.vitrin-product-card{
    display:block;
    background:#fff;
    border:1px solid rgba(15,23,42,.08);
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 14px 30px rgba(7,20,38,.055);
    transition:.25s ease;
}

.vitrin-product-card:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 36px rgba(7,20,38,.10);
    border-color:rgba(28,120,255,.20);
}

.vitrin-product-img{
    width:100%;
    aspect-ratio:3 / 2;
    background:#f4f8fd;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.vitrin-product-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.35s ease;
}

.vitrin-product-card:hover .vitrin-product-img img{
    transform:scale(1.04);
}

.vitrin-product-body{
    padding:15px;
}

.vitrin-product-category{
    display:inline-flex;
    align-items:center;
    margin-bottom:9px;
    padding:5px 9px;
    border-radius:999px;
    background:#eef6ff;
    color:var(--blue);
    font-size:11px;
    font-weight:800;
}

.vitrin-product-body h3{
    margin:0 0 10px;
    min-height:42px;
    font-size:15px;
    line-height:1.4;
    font-weight:800;
    color:var(--text);
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.vitrin-product-meta{
    min-height:22px;
    margin-bottom:12px;
    color:#6f7d90;
    font-size:13px;
    font-weight:600;
    display:-webkit-box;
    -webkit-line-clamp:1;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.vitrin-product-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding-top:12px;
    border-top:1px solid rgba(15,23,42,.07);
}

.vitrin-price{
    display:flex;
    flex-direction:column;
    gap:3px;
}

.vitrin-price del{
    color:#94a3b8;
    font-size:12px;
    font-weight:700;
}

.vitrin-price strong{
    color:var(--blue);
    font-size:17px;
    font-weight:900;
}

.vitrin-detail-pill{
    flex:0 0 auto;
    width:34px;
    height:34px;
    border-radius:50%;
    background:linear-gradient(135deg, var(--blue), var(--blue-soft));
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    font-weight:800;
}

.vitrin-loading,
.vitrin-empty{
    margin-top:18px;
    border-radius:18px;
    background:#f7fbff;
    border:1px solid rgba(15,23,42,.08);
    padding:18px;
    text-align:center;
    color:#64748b;
    font-size:14px;
    font-weight:800;
}

@media (max-width:1100px){
    .vitrin-shop-section{
        grid-template-columns:260px minmax(0, 1fr);
    }

    .vitrin-product-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}

@media (max-width:860px){
    .vitrin-shop-section{
        width:min(100% - 28px, var(--container));
        grid-template-columns:1fr;
        gap:18px;
    }

    .vitrin-sidebar{
        position:static;
    }

    .vitrin-products-top{
        flex-direction:column;
        align-items:flex-start;
    }

    .vitrin-search-wrap{
        width:100%;
    }
}

@media (max-width:560px){
    .vitrin-product-grid{
        grid-template-columns:1fr;
    }

    .vitrin-products-top h2{
        font-size:23px;
    }
}

.vitrin-mobile-filter-card{
    display:none;
}

@media (max-width:860px){
    .vitrin-sidebar{
        position:static;
        display:block;
    }

    .vitrin-desktop-filter{
        display:none;
    }

    .vitrin-mobile-filter-card{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:14px;
        background:#fff;
        border:1px solid rgba(15,23,42,.08);
        border-radius:22px;
        box-shadow:0 18px 40px rgba(7,20,38,.06);
        padding:18px;
        position:relative;
        overflow:hidden;
    }

    .vitrin-mobile-filter-card::before{
        content:"";
        position:absolute;
        inset:0 0 auto 0;
        height:4px;
        background:linear-gradient(90deg, var(--blue), var(--cyan));
    }

    .vitrin-mobile-field{
        min-width:0;
    }

    .vitrin-mobile-field label{
        display:block;
        margin-bottom:8px;
        font-size:12px;
        font-weight:800;
        letter-spacing:.06em;
        text-transform:uppercase;
        color:var(--blue);
    }

    .vitrin-mobile-field select{
        width:100%;
        height:46px;
        border:1px solid rgba(15,23,42,.10);
        border-radius:14px;
        background:#f7fbff;
        color:var(--text);
        padding:0 13px;
        outline:none;
        font-size:13px;
        font-weight:800;
    }

    .vitrin-mobile-field select:focus{
        background:#fff;
        border-color:rgba(28,120,255,.35);
        box-shadow:0 0 0 4px rgba(28,120,255,.08);
    }
}

@media (max-width:560px){
    .vitrin-mobile-filter-card{
        grid-template-columns:1fr;
    }
}

@media (max-width: 768px){
    .home-hero-slider{
        display:none !important;
    }

    .vitrin-shop-section{
        margin-top:0;
    }
}

.product-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(5, 12, 25, .72);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.product-modal-overlay.show {
    display: flex;
}

.product-modal-box {
    position: relative;
    width: min(1180px, 100%);
    max-height: 92vh;
    overflow-y: auto;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .35);
}

.product-modal-close {
    position: sticky;
    top: 18px;
    margin-left: auto;
    margin-right: 18px;
    margin-top: 18px;
    z-index: 5;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-product-detail-card {
    box-shadow: none;
    border-radius: 0;
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .product-modal-overlay {
        padding: 10px;
    }

    .product-modal-box {
        border-radius: 20px;
        max-height: 95vh;
    }
}

.product-option-block{
    margin:18px 0;
    padding:16px;
    border-radius:18px;
    background:rgba(31,79,139,.04);
    border:1px solid rgba(31,79,139,.12);
}

.product-option-block h3{
    margin:0 0 12px;
    font-size:14px;
    font-weight:900;
    color:#1f4f8b;
}

.product-option-list{
    display:grid;
    gap:9px;
}

.product-option-item{
    display:flex;
    align-items:center;
    gap:10px;
    min-height:46px;
    padding:11px 12px;
    border-radius:14px;
    background:#fff;
    border:1px solid rgba(12,14,42,.10);
    cursor:pointer;
    transition:.15s ease;
    user-select:none;
}

.product-option-item:hover{
    border-color:rgba(31,79,139,.30);
    transform:translateY(-1px);
}

.product-option-item input{
    display:none;
}

.option-fake-check{
    width:18px;
    height:18px;
    border-radius:6px;
    border:2px solid rgba(31,79,139,.28);
    background:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex:0 0 18px;
}

.product-option-item input:checked + .option-fake-check{
    background:#1f4f8b;
    border-color:#1f4f8b;
}

.product-option-item input:checked + .option-fake-check::after{
    content:"✓";
    color:#fff;
    font-size:12px;
    font-weight:900;
    line-height:1;
}

.option-color-preview{
    width:20px;
    height:20px;
    border-radius:6px;
    border:1px solid rgba(12,14,42,.18);
    flex:0 0 20px;
}

.option-name{
    font-size:13px;
    font-weight:850;
    color:#1f4f8b;
}

.product-option-item:has(input:checked){
    border-color:rgba(31,79,139,.42);
    background:rgba(31,79,139,.07);
}

.cart-item-options{
    display:grid;
    gap:7px;
    margin-top:10px;
}

.cart-item-option{
    display:flex;
    align-items:center;
    gap:7px;
    width:max-content;
    max-width:100%;
    padding:7px 10px;
    border-radius:999px;
    background:rgba(31,79,139,.06);
    border:1px solid rgba(31,79,139,.10);
    color:#1f4f8b;
    font-size:12px;
    font-weight:800;
}

.cart-option-color{
    width:20px;
    height:20px;
    border-radius:6px;
    border:1px solid rgba(12,14,42,.18);
    flex:0 0 20px;
}

.siparis-product-options{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin:10px 0;
}

.siparis-product-option{
    display:inline-flex;
    align-items:center;
    gap:7px;
    padding:7px 10px;
    border-radius:999px;
    background:rgba(31,79,139,.06);
    border:1px solid rgba(31,79,139,.12);
    color:#1f4f8b;
    font-size:12px;
    font-weight:800;
}

.siparis-color-dot{
    width:20px;
    height:20px;
    border-radius:6px;
    border:1px solid rgba(12,14,42,.18);
    flex:0 0 20px;
}

.cart-minus{
    font-size:16px;
}

/* Kategori ve puan satırı */
.vitrin-product-topline {
    width: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 7px;
}

.vitrin-product-category {
    min-width: 0;
    overflow: hidden;
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Ürün puanı */
.vitrin-product-rating {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.vitrin-rating-star {
    color: #f7b500;
    font-size: 16px;
    line-height: 1;
}

.vitrin-rating-score {
    color: #263240;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
}

.vitrin-rating-count {
    color: #7c8898;
    font-size: 11px;
    line-height: 1;
    font-weight: 500;
}

/* =========================================================
   ÜRÜN DETAY GENEL PUANI
========================================================= */

.product-detail-rating {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin: 2px 0 15px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(247, 181, 0, 0.1);
    white-space: nowrap;
}

.product-detail-rating-star {
    color: #f7b500;
    font-size: 18px;
    line-height: 1;
}

.product-detail-rating strong {
    color: #263240;
    font-size: 14px;
    font-weight: 700;
}

.product-detail-rating > span:last-child {
    color: #7c8898;
    font-size: 11px;
    font-weight: 500;
}


/* =========================================================
   MODAL KULLANICI YORUMLARI
========================================================= */

.modal-product-reviews {
    width: 100%;
    min-width: 0;
    margin-top: 18px;
    padding: 17px;
    border: 1px solid rgba(15, 23, 42, 0.09);
    border-radius: 18px;
    background: #ffffff;
    box-sizing: border-box;
}

.modal-product-reviews-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 13px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.modal-product-reviews-head > div:first-child {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.modal-product-reviews-head > div:first-child > span {
    color: #172033;
    font-size: 15px;
    font-weight: 800;
}

.modal-product-reviews-head small {
    color: #8995a5;
    font-size: 11px;
    font-weight: 500;
}

.modal-reviews-average {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(247, 181, 0, 0.1);
}

.modal-reviews-average span {
    color: #f7b500;
    font-size: 17px;
    line-height: 1;
}

.modal-reviews-average strong {
    color: #263240;
    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   YORUM SCROLL ALANI
========================================================= */

.modal-product-reviews-scroll {
    display: flex;
    flex-direction: column;
    gap: 11px;

    /*
       Yaklaşık iki yorum kartı görünsün.
       Fazlası kendi içinde kaydırılsın.
    */
    max-height: 430px;
    overflow-y: auto;
    padding-right: 5px;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color:
        rgba(28, 120, 255, 0.35)
        transparent;
}

.modal-product-reviews-scroll::-webkit-scrollbar {
    width: 6px;
}

.modal-product-reviews-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.modal-product-reviews-scroll::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(28, 120, 255, 0.3);
}


/* =========================================================
   TEK YORUM KARTI
========================================================= */

.modal-review-card {
    flex-shrink: 0;
    padding: 14px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 15px;
    background:
        linear-gradient(
            145deg,
            rgba(28, 120, 255, 0.025),
            rgba(97, 219, 255, 0.025)
        ),
        #ffffff;
}

.modal-review-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 11px;
}

.modal-review-user {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 9px;
}

.modal-review-avatar {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--blue),
        var(--blue-soft)
    );
    font-size: 13px;
    font-weight: 800;
}

.modal-review-user > div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.modal-review-user strong {
    overflow: hidden;
    color: #263240;
    font-size: 13px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.modal-review-user small {
    color: #909baa;
    font-size: 10px;
    font-weight: 500;
}

.modal-review-score {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(247, 181, 0, 0.1);
}

.modal-review-score span {
    color: #f7b500;
    font-size: 16px;
    line-height: 1;
}

.modal-review-score strong {
    color: #263240;
    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   YORUM RESİMLERİ
========================================================= */

.modal-review-images {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 11px;
    overflow-x: auto;
    padding-bottom: 2px;
}

.modal-review-image-button {
    width: 65px;
    height: 65px;
    flex: 0 0 65px;
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 11px;
    background: #f3f6f9;
    cursor: zoom-in;
    transition:
        transform 0.18s ease,
        border-color 0.18s ease;
}

.modal-review-image-button:hover {
    transform: translateY(-2px);
    border-color: var(--blue);
}

.modal-review-image-button img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/* =========================================================
   YORUM METNİ
========================================================= */

.modal-review-comment-wrap {
    min-width: 0;
}

.modal-review-comment {
    overflow: hidden;
    display: -webkit-box;
    margin: 0;
    color: #475569;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.65;
    word-break: break-word;
    white-space: pre-wrap;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.modal-review-comment.expanded {
    overflow: visible;
    display: block;
    -webkit-line-clamp: unset;
}

.modal-review-more {
    display: none;
    margin-top: 7px;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--blue);
    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
}

.modal-review-more.show {
    display: inline-flex;
}

.modal-review-only-score {
    margin: 0;
    color: #8a96a5;
    font-size: 11px;
    font-style: italic;
    line-height: 1.5;
}


/* =========================================================
   GALERİ SÜTUNUNUN GENİŞLİĞİ
========================================================= */

.modal-product-detail-card .product-gallery {
    min-width: 0;
}


/* =========================================================
   MOBİL
========================================================= */

@media (max-width: 760px) {
    .modal-product-reviews-scroll {
        max-height: 390px;
    }

    .modal-product-reviews {
        padding: 14px;
    }

    .modal-review-card {
        padding: 13px;
    }

    .modal-review-image-button {
        width: 58px;
        height: 58px;
        flex-basis: 58px;
    }
}

/* =========================================================
   GÜNLÜK BİLDİRİM MODALLARI
========================================================= */

.daily-notice-overlay {
    position: fixed;
    inset: 0;
    z-index: 100500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    background: rgba(8, 19, 38, 0.68);
    backdrop-filter: blur(7px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.22s ease,
        visibility 0.22s ease;
}

.daily-notice-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.daily-notice-modal {
    position: relative;
    width: min(440px, 100%);
    padding: 34px 30px 30px;
    overflow: hidden;
    border: 1px solid rgba(28, 120, 255, 0.14);
    border-radius: 26px;
    background:
        radial-gradient(
            circle at top right,
            rgba(97, 219, 255, 0.14),
            transparent 34%
        ),
        #ffffff;
    box-shadow: 0 34px 90px rgba(5, 18, 38, 0.28);
    text-align: center;

    transform: translateY(18px) scale(0.97);

    transition:
        transform 0.22s ease;
}

.daily-notice-overlay.show .daily-notice-modal {
    transform: translateY(0) scale(1);
}

.daily-notice-close {
    position: absolute;
    top: 15px;
    right: 15px;

    width: 38px;
    height: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    border: none;
    border-radius: 50%;

    color: #526174;
    background: #f1f5f9;
    cursor: pointer;
}

.daily-notice-close svg {
    width: 19px;
    height: 19px;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
}

.daily-notice-icon {
    width: 82px;
    height: 82px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 19px;
    border-radius: 25px;
}

.daily-notice-icon.review {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.11);
}

.daily-notice-icon.coupon {
    color: var(--blue);
    background: rgba(28, 120, 255, 0.1);
}

.daily-notice-icon svg {
    width: 43px;
    height: 43px;

    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.daily-notice-kicker {
    display: block;
    margin-bottom: 8px;

    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.daily-notice-modal h3 {
    margin: 0 0 12px;

    color: #172033;
    font-size: 23px;
    line-height: 1.3;
    font-weight: 800;
}

.daily-notice-modal p {
    max-width: 350px;
    margin: 0 auto;

    color: #66758a;
    font-size: 14px;
    line-height: 1.75;
    font-weight: 500;
}

.daily-notice-modal p strong {
    color: var(--blue);
    font-weight: 800;
}

.daily-notice-button {
    width: 100%;
    min-height: 51px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    margin-top: 24px;
    padding: 13px 20px;

    border: none;
    border-radius: 15px;

    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--blue),
        var(--blue-soft)
    );

    font-size: 14px;
    font-weight: 800;
    text-decoration: none;

    box-shadow: 0 14px 26px rgba(28, 120, 255, 0.21);

    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease;
}

.daily-notice-button:hover {
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 18px 31px rgba(28, 120, 255, 0.26);
}

.daily-notice-button span {
    font-size: 20px;
    line-height: 1;
}

body.daily-notice-open {
    overflow: hidden;
}

@media (max-width: 560px) {
    .daily-notice-overlay {
        align-items: flex-end;
        padding: 0;
    }

    .daily-notice-modal {
        width: 100%;
        padding: 32px 21px 24px;
        border-radius: 26px 26px 0 0;
    }

    .daily-notice-modal h3 {
        font-size: 21px;
    }

    .daily-notice-icon {
        width: 72px;
        height: 72px;
        border-radius: 22px;
    }

    .daily-notice-icon svg {
        width: 38px;
        height: 38px;
    }
}

.cart-option-error-summary {
    display: flex;
    flex-direction: column;
    gap: 4px;

    margin-bottom: 18px;
    padding: 14px 16px;

    border: 1px solid #dc2626;
    border-radius: 10px;

    background: #fef2f2;
    color: #991b1b;

    font-size: 14px;
    line-height: 1.4;
}

.cart-option-error-summary[hidden] {
    display: none;
}

.cart-option-error-summary strong {
    font-size: 15px;
}

.product-option-block {
    border: 1px solid transparent;
    border-radius: 12px;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.product-option-block.has-option-error {
    padding: 14px;

    border-color: #dc2626;
    background: #fff7f7;

    box-shadow:
        0 0 0 3px rgba(220, 38, 38, 0.08);
}

.product-option-error {
    margin: 10px 0 0;

    color: #dc2626;
    font-size: 13px;
    font-weight: 600;
}

.product-option-error[hidden] {
    display: none;
}

.product-option-item input[type="radio"]:focus-visible
    + .option-fake-check {
    outline: 2px solid #dc2626;
    outline-offset: 3px;
}

.product-option-block.has-option-error h3 {
    color: #b91c1c;
}