/* =========================
   GENEL
========================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f1e8;
    color: #243024;
}


/* =========================
   HEADER
========================= */

header {
    height: 80px;
    padding: 0 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #243024;
    color: white;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
}

nav {
    display: flex;
    gap: 30px;
}

    nav a {
        color: white;
        text-decoration: none;
        font-size: 15px;
    }

        nav a:hover {
            opacity: 0.7;
        }


/* =========================
   HERO
========================= */

.hero {
    min-height: 650px;
    padding: 100px 8%;
    display: flex;
    align-items: center;
    background: linear-gradient( rgba(36, 48, 36, 0.82), rgba(36, 48, 36, 0.82) );
    color: white;
}

.hero-content {
    max-width: 700px;
}

.small-title {
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 72px;
    line-height: 1.05;
    margin: 0 0 30px;
}

.description {
    font-size: 20px;
    line-height: 1.7;
    color: #d8ddd3;
    max-width: 550px;
}


/* =========================
   BUTTON
========================= */

.button {
    display: inline-block;
    margin-top: 25px;
    padding: 15px 28px;
    background: #d8a84e;
    color: #243024;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}

    .button:hover {
        opacity: 0.85;
    }


/* =========================
   ESKİ ÜRÜNLER
========================= */

.products {
    padding: 110px 8%;
}

.section-header {
    max-width: 650px;
    margin-bottom: 60px;
}

    .section-header h2 {
        font-size: 50px;
        margin: 10px 0 20px;
    }

    .section-header > p:last-child {
        color: #687068;
        font-size: 18px;
    }


/* =========================
   ESKİ ÜRÜN KARTI
========================= */

.products .product-card {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.product-image {
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dfe5d7;
    font-size: 40px;
    font-weight: bold;
    color: #465445;
}

.product-info {
    padding: 60px;
}

    .product-info .product-category {
        font-size: 12px;
        letter-spacing: 3px;
        color: #8b6a2f;
        font-weight: bold;
    }

    .product-info h3 {
        font-size: 40px;
        margin: 20px 0;
    }

    .product-info > p:not(.product-category) {
        color: #687068;
        line-height: 1.8;
        font-size: 17px;
    }

.product-bottom {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .product-bottom strong {
        font-size: 25px;
    }

    .product-bottom a {
        color: #243024;
        font-weight: bold;
    }


/* =========================
   HAKKIMIZDA
========================= */

.about {
    padding: 120px 8%;
    background: #243024;
    color: white;
}

    .about h2 {
        font-size: 55px;
        line-height: 1.1;
        margin: 10px 0 30px;
    }

    .about > p:last-child {
        max-width: 650px;
        color: #cbd2c8;
        font-size: 18px;
        line-height: 1.8;
    }


/* =========================
   İLETİŞİM
========================= */

.contact {
    padding: 120px 8%;
    text-align: center;
    background: #e8e1d2;
}

    .contact h2 {
        font-size: 50px;
        margin: 10px 0 25px;
    }

    .contact > p:not(.small-title) {
        max-width: 600px;
        margin: auto;
        color: #687068;
        font-size: 18px;
        line-height: 1.8;
    }


/* =========================
   ANA SAYFA MOBİL
========================= */

@media (max-width: 800px) {

    header {
        padding: 0 5%;
    }

    nav {
        gap: 12px;
    }

        nav a {
            font-size: 12px;
        }

    .hero {
        padding: 80px 6%;
    }

        .hero h1 {
            font-size: 50px;
        }

    .products {
        padding: 80px 6%;
    }

    .section-header h2 {
        font-size: 40px;
    }

    .products .product-card {
        grid-template-columns: 1fr;
    }

    .product-image {
        min-height: 300px;
    }

    .product-info {
        padding: 35px;
    }

    .about,
    .contact {
        padding: 80px 6%;
    }

        .about h2,
        .contact h2 {
            font-size: 40px;
        }
}


/* =========================
   ÜRÜN DETAY
========================= */

.product-detail {
    min-height: 750px;
    padding: 100px 8%;
    background: #f5f1e8;
}

.product-detail-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.product-detail-image {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dfe5d7;
    color: #465445;
    font-size: 55px;
    font-weight: bold;
}

.product-detail-info {
    padding: 70px;
}

    .product-detail-info h1 {
        font-size: 55px;
        margin: 15px 0 25px;
    }

.product-description {
    color: #687068;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.product-price {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 35px;
}

.product-option {
    margin-bottom: 25px;
}

    .product-option label {
        display: block;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .product-option select {
        width: 100%;
        padding: 15px;
        border: 1px solid #ccc;
        background: white;
        font-size: 16px;
    }

.product-stock {
    margin: 25px 0;
    color: #536b4e;
    font-weight: bold;
}

.add-to-cart {
    width: 100%;
    padding: 17px;
    border: none;
    background: #243024;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: block;
    text-align: center;
}

    .add-to-cart:hover {
        opacity: 0.85;
    }


/* =========================
   ÜRÜN DETAY MOBİL
========================= */

@media (max-width: 800px) {

    .product-detail {
        padding: 50px 5%;
    }

    .product-detail-container {
        grid-template-columns: 1fr;
    }

    .product-detail-image {
        min-height: 350px;
    }

    .product-detail-info {
        padding: 35px;
    }

        .product-detail-info h1 {
            font-size: 40px;
        }
}


/* =========================
   SEPET
========================= */

.cart {
    min-height: 750px;
    padding: 100px 8%;
    background: #f5f1e8;
}

.cart-container {
    max-width: 1000px;
    margin: auto;
}

    .cart-container h1 {
        font-size: 55px;
        margin: 10px 0 50px;
    }

.cart-item {
    display: grid;
    grid-template-columns: 180px 1fr 150px;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.cart-item-image {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dfe5d7;
    color: #465445;
    font-weight: bold;
}

.cart-item-info h2 {
    margin: 0 0 10px;
    font-size: 25px;
}

.cart-item-info p {
    color: #777;
}

.cart-item-info strong {
    display: block;
    margin-top: 20px;
    font-size: 22px;
}

.cart-item-quantity label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.cart-item-quantity input {
    width: 80px;
    padding: 12px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.cart-summary {
    margin-top: 30px;
    padding: 30px;
    background: #243024;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .cart-summary span {
        display: block;
        color: #cbd2c8;
        margin-bottom: 8px;
    }

    .cart-summary strong {
        font-size: 30px;
    }

    .cart-summary .button {
        margin-top: 0;
    }

.update-cart {
    margin-top: 25px;
    padding: 13px 25px;
    border: 1px solid #243024;
    background: transparent;
    color: #243024;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
}

    .update-cart:hover {
        background: #243024;
        color: white;
    }

.cart-empty {
    padding: 60px;
    background: white;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

    .cart-empty h2 {
        font-size: 30px;
        margin-bottom: 15px;
    }

    .cart-empty p {
        color: #777;
        margin-bottom: 30px;
    }

.stock-error {
    margin: 20px 0;
    padding: 15px;
    background: #f3e4dc;
    color: #8a4328;
    font-weight: bold;
}


/* =========================
   SEPET MOBİL
========================= */

@media (max-width: 800px) {

    .cart {
        padding: 60px 5%;
    }

    .cart-container h1 {
        font-size: 40px;
    }

    .cart-item {
        grid-template-columns: 1fr;
    }

    .cart-item-image {
        height: 220px;
    }

    .cart-summary {
        flex-direction: column;
        align-items: stretch;
        gap: 25px;
    }
}


/* =========================
   SİPARİŞ
========================= */

.order {
    min-height: 750px;
    padding: 100px 8%;
    background: #f5f1e8;
}

.order-container {
    max-width: 1100px;
    margin: auto;
}

    .order-container h1 {
        font-size: 55px;
        margin: 10px 0 50px;
    }

.order-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.order-form,
.order-summary {
    background: white;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

    .order-form h2,
    .order-summary h2 {
        margin-top: 0;
        margin-bottom: 30px;
    }

.form-group {
    margin-bottom: 25px;
}

    .form-group label {
        display: block;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 15px;
        border: 1px solid #ccc;
        background: white;
        font-size: 16px;
        font-family: inherit;
    }

    .form-group textarea {
        resize: vertical;
    }

    .form-group select:disabled {
        background: #f1f1f1;
        color: #888;
        cursor: not-allowed;
    }

.order-product {
    display: flex;
    justify-content: space-between;
    padding: 25px 0;
    border-bottom: 1px solid #ddd;
}

    .order-product p {
        color: #777;
        margin-bottom: 0;
    }

.order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

    .order-total strong {
        font-size: 28px;
    }


/* =========================
   SİPARİŞ MOBİL
========================= */

@media (max-width: 800px) {

    .order {
        padding: 60px 5%;
    }

    .order-container h1 {
        font-size: 40px;
    }

    .order-layout {
        grid-template-columns: 1fr;
    }

    .order-form,
    .order-summary {
        padding: 25px;
    }
}


/* =========================
   ADMIN SİPARİŞLER
========================= */

.admin-orders {
    min-height: 750px;
    padding: 70px 4%;
    background: #f5f1e8;
    overflow-x: auto;
}

    .admin-orders .order-container {
        width: 100%;
        max-width: 1500px;
        margin: 0 auto;
    }

    .admin-orders .small-title {
        color: #8b6a2f;
    }

    .admin-orders h1 {
        font-size: 48px;
        margin: 10px 0 35px;
    }

.orders-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

    .orders-table th,
    .orders-table td {
        padding: 16px 14px;
        text-align: left;
        vertical-align: middle;
        border-bottom: 1px solid #e8e8e8;
        line-height: 1.5;
    }

    .orders-table th {
        background: #243024;
        color: #ffffff;
        font-size: 14px;
        font-weight: bold;
        white-space: nowrap;
    }

    .orders-table td {
        color: #333333;
        font-size: 14px;
    }

    .orders-table tbody tr:last-child td {
        border-bottom: none;
    }

    .orders-table tbody tr:hover {
        background: #f8f6f0;
    }


/* =========================
   ADMIN TABLET
========================= */

@media (max-width: 1200px) {

    .admin-orders {
        padding: 50px 3%;
    }

    .orders-table {
        min-width: 1100px;
    }
}


/* =========================
   ADMIN MOBİL
========================= */

@media (max-width: 800px) {

    .admin-orders {
        padding: 40px 20px;
    }

        .admin-orders h1 {
            font-size: 38px;
        }

    .orders-table {
        min-width: 1100px;
    }
}


/* =========================
   ADMIN DETAY BUTONU
========================= */

.admin-detail-button {
    display: inline-block;
    padding: 9px 16px;
    background: #243024;
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    border-radius: 4px;
    white-space: nowrap;
}

    .admin-detail-button:hover {
        opacity: 0.8;
    }


/* =========================
   ADMIN SİPARİŞ DETAY
========================= */

.admin-order-detail {
    min-height: 750px;
    padding: 70px 5%;
    background: #f5f1e8;
}

.order-detail-card,
.status-update-card {
    max-width: 900px;
    background: white;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 16px 0;
    border-bottom: 1px solid #e5e5e5;
}

    .detail-row:last-child {
        border-bottom: none;
    }

    .detail-row span {
        color: #687068;
    }

    .detail-row strong {
        text-align: right;
        max-width: 600px;
    }

.status-update-card h2 {
    margin-top: 0;
    margin-bottom: 25px;
}

.admin-status-button {
    padding: 14px 24px;
    border: none;
    background: #243024;
    color: white;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
}

    .admin-status-button:hover {
        opacity: 0.85;
    }

.status-success {
    max-width: 900px;
    margin-bottom: 20px;
    padding: 15px;
    background: #e2f0e4;
    color: #2f5d3a;
    font-weight: bold;
}

.status-error {
    max-width: 900px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f3e4dc;
    color: #8a4328;
    font-weight: bold;
}


/* =========================
   SİPARİŞ DURUM RENKLERİ
========================= */

.order-status {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
}

.status-new {
    background: #fff3cd;
    color: #856404;
}

.status-preparing {
    background: #ffe0b2;
    color: #9a4d00;
}

.status-shipped {
    background: #dbeafe;
    color: #1e4f91;
}

.status-completed {
    background: #dff0e3;
    color: #276738;
}

.status-cancelled {
    background: #f8d7da;
    color: #842029;
}

.status-default {
    background: #e9ecef;
    color: #495057;
}


/* =========================
   ADMIN DETAY MOBİL
========================= */

@media (max-width: 800px) {

    .admin-order-detail {
        padding: 40px 20px;
    }

    .detail-row {
        flex-direction: column;
        gap: 6px;
    }

        .detail-row strong {
            text-align: left;
        }
}


/* =========================
   ADMIN GİRİŞ
========================= */

.admin-login {
    min-height: calc(100vh - 80px);
    padding: 80px 20px;
    background: #f5f1e8;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.admin-login-card {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

    .admin-login-card .small-title {
        color: #8b6a2f;
        margin-top: 0;
    }

    .admin-login-card h1 {
        margin: 10px 0 30px;
        font-size: 42px;
    }

    .admin-login-card .form-group {
        margin-bottom: 22px;
    }

        .admin-login-card .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: bold;
        }

        .admin-login-card .form-group input {
            width: 100%;
            padding: 14px;
            border: 1px solid #cccccc;
            background: #ffffff;
            font-size: 16px;
            border-radius: 4px;
        }

    .admin-login-card .admin-status-button {
        width: 100%;
        padding: 15px;
        border: none;
        background: #243024;
        color: white;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        border-radius: 4px;
    }

        .admin-login-card .admin-status-button:hover {
            opacity: 0.85;
        }


/* =========================
   ADMIN GİRİŞ MOBİL
========================= */

@media (max-width: 600px) {

    .admin-login {
        padding: 50px 20px;
    }

    .admin-login-card {
        padding: 30px 25px;
    }

        .admin-login-card h1 {
            font-size: 34px;
        }
}


/* =========================
   ADMIN ÜST BUTONLAR
========================= */

.admin-top-actions {
    margin-bottom: 25px;
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.admin-logout-form {
    display: inline-block;
    margin: 0;
}

.admin-logout-button {
    display: inline-block;
    padding: 11px 18px;
    border: none;
    background: #8a4328;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    font-family: inherit;
}

    .admin-logout-button:hover {
        opacity: 0.85;
    }


/* =========================
   ADMIN ARAMA
========================= */

.admin-search-form {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.admin-search-input {
    width: 320px;
    max-width: 100%;
    padding: 12px 14px;
    border: 1px solid #cccccc;
    background: white;
    font-size: 14px;
    border-radius: 4px;
}

.admin-search-button {
    padding: 12px 20px;
    border: none;
    background: #243024;
    color: white;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
}

    .admin-search-button:hover {
        opacity: 0.85;
    }

.admin-search-clear {
    display: inline-block;
    padding: 12px 18px;
    background: #e2ded4;
    color: #243024;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
}

    .admin-search-clear:hover {
        opacity: 0.85;
    }

.admin-status-filter {
    min-width: 190px;
    padding: 12px 14px;
    border: 1px solid #cccccc;
    background: white;
    font-size: 14px;
    border-radius: 4px;
}


/* =========================
   ADMIN ÜRÜN FORMU
========================= */

.admin-product-form {
    width: 100%;
    max-width: 700px;
    margin-bottom: 30px;
}

    .admin-product-form .form-group {
        margin-bottom: 22px;
    }

    .admin-product-form label {
        display: block;
        margin-bottom: 8px;
        font-weight: bold;
    }

    .admin-product-form input[type="text"],
    .admin-product-form input[type="number"],
    .admin-product-form input[type="file"],
    .admin-product-form textarea {
        width: 100%;
        padding: 13px 14px;
        border: 1px solid #cccccc;
        background: white;
        font-size: 15px;
        border-radius: 4px;
        font-family: inherit;
    }

    .admin-product-form textarea {
        resize: vertical;
    }

    .admin-product-form small {
        display: block;
        margin-top: 6px;
        color: #777777;
    }

.validation-error {
    display: block;
    margin-top: 6px;
    color: #a33a2b;
    font-size: 14px;
}


/* =========================
   ADMIN ÜRÜN LİSTESİ
========================= */

.admin-orders .orders-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
}

    .admin-orders .orders-table th {
        padding: 14px 16px;
        text-align: left;
        vertical-align: middle;
        white-space: nowrap;
    }

    .admin-orders .orders-table td {
        padding: 14px 16px;
        vertical-align: middle;
    }

.admin-product-image {
    display: block;
    width: 70px;
    height: 70px;
    min-width: 70px;
    max-width: 70px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

.admin-orders .orders-table td:first-child {
    width: 100px;
}

.admin-orders .orders-table tbody tr {
    height: 98px;
}

    .admin-orders .orders-table tbody tr:hover {
        background: #f7f5ef;
    }


/* =========================
   ADMIN ÜRÜN DÜZENLE RESMİ
========================= */

.admin-product-edit-image {
    width: 180px;
    height: 180px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    display: block;
    border: 1px solid #dddddd;
}


/* =========================
   ADMIN ÜRÜN MOBİL
========================= */

@media (max-width: 800px) {

    .admin-product-image {
        width: 60px;
        height: 60px;
        min-width: 60px;
        max-width: 60px;
    }

    .admin-top-actions {
        align-items: flex-start;
    }

    .admin-search-input {
        width: 100%;
    }
}


/* =========================
   YENİ MÜŞTERİ ÜRÜN ALANI
========================= */

.products-section {
    padding: 80px 8%;
    background: #f5f1e8;
}

    .products-section .order-container {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
    }

    .products-section .small-title {
        margin-top: 0;
        margin-bottom: 10px;
        color: #8b6a2f;
    }

    .products-section h1 {
        margin: 0 0 45px;
        font-size: 48px;
        color: #243024;
    }


    /* =========================
   YENİ ÜRÜN GRID
========================= */

    .products-section .product-grid {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 28px;
        align-items: stretch;
    }


    /* =========================
   YENİ ÜRÜN KARTI
========================= */

    .products-section .product-card {
        width: 100%;
        max-width: none;
        margin: 0;
        display: flex;
        flex-direction: column;
        background: #ffffff;
        border: 1px solid #e4e0d6;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

        .products-section .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 14px 32px rgba(0, 0, 0, 0.10);
        }


    /* =========================
   YENİ ÜRÜN RESİM ALANI
========================= */

    .products-section .product-image-wrapper {
        width: 100%;
        height: 300px;
        overflow: hidden;
        background: #ebe8df;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .products-section .product-card-image {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center;
    }

    .products-section .product-no-image {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #777777;
        font-size: 15px;
    }


    /* =========================
   YENİ ÜRÜN KART İÇERİK
========================= */

    .products-section .product-card-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        padding: 22px;
    }

    .products-section .product-category {
        margin: 0 0 9px;
        color: #8b6a2f;
        font-size: 12px;
        font-weight: bold;
        letter-spacing: 1.5px;
        text-transform: uppercase;
    }

    .products-section .product-card-content h2 {
        margin: 0 0 12px;
        color: #243024;
        font-size: 22px;
        line-height: 1.3;
    }

    .products-section .product-description {
        margin: 0 0 22px;
        color: #687068;
        font-size: 15px;
        line-height: 1.6;
        flex: 1;
    }


    /* =========================
   YENİ ÜRÜN KART ALT
========================= */

    .products-section .product-card-bottom {
        width: 100%;
        margin-top: auto;
        padding-top: 18px;
        border-top: 1px solid #ece9e0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .products-section .product-price {
        margin: 0;
        color: #243024;
        font-size: 23px;
        font-weight: bold;
        white-space: nowrap;
    }

    .products-section .product-out-stock {
        width: fit-content;
        margin: 0;
        padding: 8px 13px;
        background: #f5dfdc;
        color: #a34131;
        border-radius: 20px;
        font-size: 12px;
        font-weight: bold;
        white-space: nowrap;
    }


/* =========================
   ÜRÜN SEPET BUTONU
========================= */

.product-cart-form {
    width: 100%;
    margin: 0;
}

.products-section .product-cart-button {
    width: 100%;
    min-height: 50px;
    padding: 13px 20px;
    border: 2px solid #243024;
    border-radius: 7px;
    background: #243024;
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

    .products-section .product-cart-button:hover {
        background: #d8a84e;
        border-color: #d8a84e;
        color: #243024;
        transform: translateY(-1px);
    }

    .products-section .product-cart-button:active {
        transform: translateY(0);
    }

.products-section .product-stock-info {
    width: 100%;
    margin-top: 10px;
    color: #536b4e;
    font-size: 12px;
    font-weight: bold;
    text-align: right;
}


/* =========================
   YENİ ÜRÜNLER TABLET
========================= */

@media (max-width: 1000px) {

    .products-section {
        padding: 60px 5%;
    }

        .products-section .product-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 22px;
        }

        .products-section .product-image-wrapper {
            height: 280px;
        }
}


/* =========================
   YENİ ÜRÜNLER MOBİL
========================= */

@media (max-width: 600px) {

    .products-section {
        padding: 45px 20px;
    }

        .products-section h1 {
            font-size: 36px;
            margin-bottom: 30px;
        }

        .products-section .product-grid {
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .products-section .product-image-wrapper {
            height: 300px;
        }

        .products-section .product-card-content {
            padding: 20px;
        }

            .products-section .product-card-content h2 {
                font-size: 21px;
            }

        .products-section .product-price {
            font-size: 21px;
        }

        .products-section .product-cart-button {
            min-height: 48px;
        }
}


/* =========================
   SEPET ADET KONTROLLERİ
========================= */

.cart-quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

    .cart-quantity-controls form {
        margin: 0;
    }

.cart-quantity-button {
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid #243024;
    background: #ffffff;
    color: #243024;
    font-family: inherit;
    font-size: 22px;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}

    .cart-quantity-button:hover {
        background: #243024;
        color: #ffffff;
    }

.cart-quantity-value {
    min-width: 45px;
    height: 40px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f1e8;
    border: 1px solid #ddd8cc;
    color: #243024;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
}

.cart-remove-button {
    padding: 10px 14px;
    border: none;
    border-radius: 5px;
    background: #8a4328;
    color: #ffffff;
    font-family: inherit;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

    .cart-remove-button:hover {
        opacity: 0.85;
    }


/* =========================
   SEPET ÜRÜN RESMİ
========================= */

.cart-item-image {
    overflow: hidden;
    border-radius: 6px;
}

    .cart-item-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center;
    }


/* =========================
   SEPET MOBİL EK DÜZEN
========================= */

@media (max-width: 800px) {

    .cart-item-quantity {
        width: 100%;
    }

    .cart-quantity-controls {
        justify-content: flex-start;
    }

    .cart-remove-button {
        width: 100%;
        min-height: 42px;
    }
}

.store-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background-color: #386F43;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.2s ease;
}

    .store-login:hover {
        background-color: #2F5E39;
        color: #ffffff;
    }

.store-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}


/* Bahçemden: header, navigation and hero presentation only. */
.store-note {
    padding: 10px 20px;
    background: #edf3ef;
    color: #386F43;
    text-align: center;
    font-size: 12px;
    letter-spacing: .7px;
}

header.store-header {
    height: auto;
    min-height: 110px;
    padding: 22px max(6%, calc((100% - 1320px) / 2));
    gap: 24px;
    background: #ffffff;
    color: #386F43;
}

.store-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #386F43;
    text-decoration: none;
}

.store-brand-mark {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
}

.store-brand > span {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 36px;
    letter-spacing: -1.8px;
    line-height: 1;
}

.store-brand small {
    display: block;
    margin-top: 10px;
    font-family: Arial, sans-serif;
    font-size: 9px;
    font-weight: bold;
    letter-spacing: 2.6px;
}

.store-header-message {
    margin: 0 auto 0 48px;
    padding-left: 28px;
    border-left: 1px solid #dce5df;
    color: #715b43;
    font-size: 13px;
    line-height: 1.65;
}

    .store-header-message strong {
        color: #386F43;
        font-weight: normal;
    }

.store-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 10px 20px;
    border: 1px solid #d2dfd6;
    border-radius: 6px;
    color: #386F43;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
}

    .store-cart svg {
        width: 22px;
        height: 22px;
    }

nav.store-nav {
    padding: 0 6%;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 44px;
    background: #386F43;
}

    nav.store-nav a {
        display: inline-flex;
        align-items: center;
        min-height: 54px;
        color: #fffef5;
        font-size: 14px;
    }

        nav.store-nav a:hover {
            opacity: 1;
            text-decoration: underline;
            text-underline-offset: 7px;
        }

.store-brand:focus-visible, .store-cart:focus-visible, .store-nav a:focus-visible, .store-hero a:focus-visible {
    outline: 3px solid #b85a16;
    outline-offset: 5px;
}

.store-cart:hover {
    background: #edf3ef;
}

.hero.store-hero {
    min-height: 580px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff1cf;
    color: #4b2d1c;
    overflow: hidden;
}

.store-hero .hero-content {
    max-width: none;
    padding: 64px 10% 54px 12%;
}

.store-hero .small-title {
    margin: 0 0 28px;
    color: #386F43;
    font-size: 10px;
    letter-spacing: 2px;
    line-height: 1.7;
}

.store-hero h1 {
    margin: 0 0 25px;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: normal;
    font-size: clamp(42px, 4.5vw, 72px);
    letter-spacing: -2.5px;
    line-height: 1.12;
}

    .store-hero h1 em {
        color: #386F43;
        font-weight: normal;
    }

.store-hero .description {
    max-width: 425px;
    margin: 0;
    color: #71533b;
    font-size: 16px;
    line-height: 1.85;
}

.store-hero .button {
    margin-top: 30px;
    padding: 17px 24px;
    background: #f5a33b;
    color: #432710;
    border-radius: 5px;
    font-size: 14px;
}

    .store-hero .button::after {
        content: '→';
        margin-left: 28px;
    }

    .store-hero .button:hover {
        background: #df791f;
        opacity: 1;
    }

.hero-footnote {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 30px 0 0;
    color: #71533b;
    font-size: 12px;
}

    .hero-footnote span {
        font-size: 23px;
    }

.hero-visual {
    position: relative;
    min-width: 0;
    height: 100%;
    min-height: 580px;
    overflow: hidden;
    border-radius: 110px 0 0 0;
}

    .hero-visual > img {
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        inset: 0;
        object-fit: cover;
    }

    .hero-visual::after {
        content: '';
        position: absolute;
        inset: 45% 0 0;
        background: linear-gradient(transparent, rgba(31, 28, 15, .75));
        pointer-events: none;
    }

.hero-image-caption {
    position: absolute;
    z-index: 1;
    left: 42px;
    bottom: 38px;
    color: #fffdf3;
}

    .hero-image-caption span {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .hero-image-caption strong {
        display: block;
        margin-top: 13px;
        font-family: Georgia, serif;
        font-size: 34px;
        font-weight: normal;
        line-height: 1.12;
    }

.hero-image-label {
    position: absolute;
    top: 25px;
    right: 25px;
    padding: 12px 15px;
    border: 1px solid #ffffff80;
    border-radius: 3px;
    background: #fffef2ec;
    color: #3b4a30;
    font-size: 9px;
    letter-spacing: 1.5px;
}

@media (min-width: 1600px) {
    .store-hero .hero-content {
        padding-left: max(12%, calc((100vw - 1320px) / 2));
    }
}

@media (max-width: 1000px) {
    .store-header-message {
        margin-left: 10px;
    }

    .store-hero .hero-content {
        padding: 48px 9% 44px 12%;
    }

    .store-hero h1 {
        font-size: 46px;
    }

    .hero-visual {
        min-height: 550px;
        border-top-left-radius: 80px;
    }
}

@media (max-width: 700px) {
    .store-note {
        font-size: 10px;
        padding: 9px 12px;
        letter-spacing: .3px;
    }

    header.store-header {
        min-height: 92px;
        padding: 18px 20px;
        gap: 12px;
    }

    .store-brand {
        gap: 7px;
    }

    .store-brand-mark {
        width: 32px;
        height: 36px;
    }

    .store-brand > span {
        font-size: 28px;
        letter-spacing: -1.4px;
    }

    .store-brand small {
        font-size: 7px;
        letter-spacing: 1.6px;
        margin-top: 8px;
    }

    .store-header-message {
        display: none;
    }

    .store-cart {
        font-size: 12px;
        padding: 9px 12px;
        gap: 7px;
    }

        .store-cart svg {
            width: 18px;
            height: 18px;
        }

    nav.store-nav {
        padding: 0 14px;
        gap: 0;
        justify-content: space-between;
        min-height: 48px;
    }

        nav.store-nav a {
            font-size: 12px;
            min-height: 48px;
            padding: 0 6px;
        }

    .hero.store-hero {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .store-hero .hero-content {
        padding: 42px 24px 34px;
    }

    .store-hero .small-title {
        font-size: 9px;
        letter-spacing: 1.5px;
        margin-bottom: 22px;
    }

    .store-hero h1 {
        font-size: clamp(38px, 9vw, 58px);
        letter-spacing: -1.7px;
        margin-bottom: 20px;
    }

    .store-hero .description {
        font-size: 15px;
        line-height: 1.75;
    }

    .store-hero .button {
        margin-top: 24px;
    }

    .hero-footnote {
        margin-top: 22px;
    }

    .hero-visual {
        min-height: 340px;
        border-radius: 64px 0 0 0;
        margin-left: 24px;
    }

        .hero-visual > img {
            object-position: center 56%;
        }

    .hero-image-caption {
        left: 26px;
        bottom: 26px;
    }

        .hero-image-caption strong {
            font-size: 28px;
        }

    .hero-image-label {
        top: 20px;
        right: 18px;
        font-size: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* Customer primary actions: selected Bahcemden green. */
.products-section .product-cart-button,
.product-detail .add-to-cart,
.order .add-to-cart,
.cart .button,
.store-hero .button {
    background: #386F43;
    border-color: #386F43;
    color: #ffffff;
    opacity: 1;
}

    .products-section .product-cart-button:hover,
    .product-detail .add-to-cart:hover,
    .order .add-to-cart:hover,
    .cart .button:hover,
    .store-hero .button:hover {
        background: #2E5D37;
        border-color: #2E5D37;
        color: #ffffff;
        opacity: 1;
    }

    .products-section .product-cart-button:focus-visible,
    .product-detail .add-to-cart:focus-visible,
    .order .add-to-cart:focus-visible,
    .cart .button:focus-visible,
    .store-hero .button:focus-visible {
        outline: 3px solid #386F43;
        outline-offset: 4px;
        box-shadow: 0 0 0 2px #ffffff;
    }

/* Storefront typography: coordinated green, scoped away from admin and alerts. */
.products-section h1,
.products-section .product-card-content h2,
.products-section .product-price,
.product-detail .product-detail-info h1,
.product-detail .product-price,
.cart .cart-container > h1,
.cart .cart-empty h2,
.cart .cart-item-info h2,
.cart .cart-item-info strong,
.cart .cart-quantity-value,
.order .order-container > h1,
.order .order-form h2,
.order .order-summary h2,
.order .order-product strong,
.order .order-total,
.store-cart,
.store-hero h1,
.store-hero h1 em,
.contact h2 {
    color: #386F43;
}

.products-section .small-title,
.products-section .product-category,
.products-section .product-description,
.products-section .product-stock-info,
.product-detail .product-description,
.product-detail .product-option label,
.product-detail .product-stock,
.cart .small-title,
.cart .cart-item-info p,
.cart .cart-item-quantity > label,
.cart .cart-empty p,
.order .small-title,
.order .form-group label,
.order .order-product p,
.store-hero .description,
.hero-footnote,
.store-header-message,
.store-header-message strong,
.contact .small-title,
.contact > p:not(.small-title) {
    color: #405C46;
}

.cart .cart-quantity-button {
    color: #386F43;
    border-color: #386F43;
}

    .cart .cart-quantity-button:hover {
        background: #386F43;
        color: #ffffff;
    }

/* About section: warm matte olive green. */
#hakkimizda.about {
    background: #386F43;
    color: #FFFDF5;
}

    #hakkimizda.about .small-title {
        color: #F0EEDD;
    }

    #hakkimizda.about h2 {
        color: #FFFDF5;
    }

    #hakkimizda.about > p:last-child {
        color: #F0EEDD;
    }

/* Cart link: subtle warm off-white fill. */
.store-cart {
    background: #F3F2EB;
}

    .store-cart:hover {
        background: #E9ECE1;
    }

/* =========================
   MÜŞTERİ - SİPARİŞLERİM
========================= */

.siparislerim-alani {
    min-height: 700px;
    padding: 70px 6% 100px;
    background: #f5f1e8;
}

.siparislerim-baslik {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 40px;
}

    .siparislerim-baslik h1 {
        margin: 0 0 14px;
        color: #386F43;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 48px;
        font-weight: normal;
    }

    .siparislerim-baslik p {
        margin: 0;
        max-width: 650px;
        color: #405C46;
        font-size: 16px;
        line-height: 1.7;
    }


/* =========================
   SİPARİŞ YOK
========================= */

.siparis-yok-karti {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px;
    background: #ffffff;
    border: 1px solid #e1e5dc;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

    .siparis-yok-karti h2 {
        margin: 0 0 15px;
        color: #386F43;
        font-size: 28px;
    }

    .siparis-yok-karti p {
        margin: 0 0 28px;
        color: #687068;
        font-size: 15px;
    }

    .siparis-yok-karti .musteri-giris-buton {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: auto;
        min-height: 48px;
        padding: 13px 25px;
        background: #386F43;
        color: #ffffff;
        border: none;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
    }

        .siparis-yok-karti .musteri-giris-buton:hover {
            background: #2F5E39;
            color: #ffffff;
        }


/* =========================
   SİPARİŞ LİSTESİ
========================= */

.siparislerim-liste {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}


/* =========================
   SİPARİŞ KARTI
========================= */

.siparis-karti {
    width: 100%;
    background: #ffffff;
    border: 1px solid #e1e5dc;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .siparis-karti:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    }


/* =========================
   SİPARİŞ KART ÜST
========================= */

.siparis-karti-ust {
    padding: 22px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: #f8f8f3;
    border-bottom: 1px solid #e5e7df;
}

    .siparis-karti-ust > div:first-child {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .siparis-karti-ust strong {
        color: #386F43;
        font-size: 18px;
    }

    .siparis-karti-ust span {
        color: #687068;
        font-size: 13px;
    }


/* =========================
   SİPARİŞ DURUMU
========================= */

.siparis-durum {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 8px 15px;
    background: #e6efe8;
    color: #386F43;
    border: 1px solid #cfdfd2;
    border-radius: 30px;
    font-size: 13px;
    font-weight: bold;
    white-space: nowrap;
}


/* =========================
   SİPARİŞ ÜRÜNLERİ
========================= */

.siparis-kalemleri {
    padding: 5px 25px;
}

.siparis-kalem {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 100px 140px;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #ecece7;
}

    .siparis-kalem:last-child {
        border-bottom: none;
    }

    .siparis-kalem span:first-child {
        color: #243024;
        font-size: 16px;
        font-weight: 600;
    }

    .siparis-kalem span:nth-child(2) {
        color: #687068;
        font-size: 14px;
        text-align: center;
    }

    .siparis-kalem strong {
        color: #386F43;
        font-size: 17px;
        text-align: right;
    }


/* =========================
   SİPARİŞ KART ALT
========================= */

.siparis-karti-alt {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 35px;
    background: #fbfaf6;
    border-top: 1px solid #e5e7df;
}

    .siparis-karti-alt span {
        color: #687068;
        font-size: 14px;
    }

    .siparis-karti-alt strong {
        margin-left: 5px;
        color: #386F43;
        font-size: 17px;
    }


/* =========================
   SİPARİŞLERİM MOBİL
========================= */

@media (max-width: 700px) {

    .siparislerim-alani {
        padding: 45px 20px 70px;
    }

    .siparislerim-baslik {
        margin-bottom: 30px;
    }

        .siparislerim-baslik h1 {
            font-size: 38px;
        }

        .siparislerim-baslik p {
            font-size: 15px;
        }

    .siparis-yok-karti {
        padding: 35px 20px;
    }

    .siparis-karti-ust {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .siparis-kalemleri {
        padding: 0 20px;
    }

    .siparis-kalem {
        grid-template-columns: 1fr;
        gap: 7px;
        padding: 18px 0;
    }

        .siparis-kalem span:nth-child(2) {
            text-align: left;
        }

        .siparis-kalem strong {
            text-align: left;
        }

    .siparis-karti-alt {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* =========================
   MÜŞTERİ SİPARİŞ DURUMLARI
========================= */

/* YENİ SİPARİŞ - SARI */
.siparis-durum.durum-yeni {
    background: #FFF3CD;
    color: #856404;
    border-color: #E8D48A;
}

/* HAZIRLANIYOR - TURUNCU */
.siparis-durum.durum-hazirlaniyor {
    background: #FFE5BF;
    color: #9A5200;
    border-color: #F0C985;
}

/* KARGOYA VERİLDİ - MAVİ */
.siparis-durum.durum-kargoda {
    background: #DBEAFE;
    color: #1E4F91;
    border-color: #B7D3F4;
}

/* TAMAMLANDI - YEŞİL */
.siparis-durum.durum-tamamlandi {
    background: #DDEDE1;
    color: #386F43;
    border-color: #B9D5BF;
}

/* İPTAL EDİLDİ - KIRMIZI */
.siparis-durum.durum-iptal {
    background: #F8D7DA;
    color: #842029;
    border-color: #E8B5BA;
}

/* BİLİNMEYEN / DİĞER DURUMLAR */
.siparis-durum.durum-varsayilan {
    background: #E9ECEF;
    color: #495057;
    border-color: #D3D7DA;
}
/* =========================
   SİPARİŞ TESLİMAT BİLGİLERİ
========================= */

.siparis-adres-bilgileri {
    margin: 0 25px 25px;
    padding: 24px;
    background: #fbfaf6;
    border: 1px solid #e4e8df;
    border-radius: 12px;
}

    .siparis-adres-bilgileri h3 {
        margin: 0 0 20px;
        color: #386F43;
        font-size: 20px;
    }

.siparis-adres-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

    .siparis-adres-grid > div {
        padding: 16px;
        background: #ffffff;
        border: 1px solid #e7e9e3;
        border-radius: 10px;
    }

    .siparis-adres-grid span {
        display: block;
        margin-bottom: 7px;
        color: #6b746d;
        font-size: 12px;
        font-weight: bold;
        letter-spacing: 0.4px;
        text-transform: uppercase;
    }

    .siparis-adres-grid strong {
        display: block;
        color: #243024;
        font-size: 15px;
        line-height: 1.6;
        font-weight: 600;
    }

.siparis-tam-adres {
    grid-column: 1 / -1;
}

    .siparis-tam-adres strong {
        white-space: normal;
        word-break: break-word;
    }

@media (max-width: 700px) {

    .siparis-adres-bilgileri {
        margin: 0 20px 20px;
        padding: 18px;
    }

    .siparis-adres-grid {
        grid-template-columns: 1fr;
    }

    .siparis-tam-adres {
        grid-column: auto;
    }
}

.musteri-cikis-form {
    margin: 0;
}

.musteri-cikis-buton {
    min-height: 46px;
    padding: 10px 18px;
    border: 1px solid #386F43;
    border-radius: 8px;
    background: #ffffff;
    color: #386F43;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

    .musteri-cikis-buton:hover {
        background: #386F43;
        color: #ffffff;
    }

/* =========================
   SİPARİŞLERİM ÇIKIŞ BUTONU
========================= */

.siparislerim-baslik-ust {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

    .siparislerim-baslik-ust h1 {
        margin: 0 0 14px;
    }

.musteri-cikis-form {
    margin: 0;
}

.musteri-cikis-buton {
    min-height: 44px;
    padding: 10px 22px;
    border: 1px solid #A33A2B;
    border-radius: 8px;
    background: #A33A2B;
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

    .musteri-cikis-buton:hover {
        background: #842F24;
        border-color: #842F24;
        color: #ffffff;
    }

@media (max-width: 700px) {

    .siparislerim-baslik-ust {
        flex-direction: column;
        align-items: stretch;
    }

    .musteri-cikis-form {
        width: 100%;
    }

    .musteri-cikis-buton {
        width: 100%;
    }
}

/* =========================
   MÜŞTERİ GİRİŞ SAYFASI
========================= */

.musteri-giris-alani {
    min-height: 720px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 20px 100px;
    background: radial-gradient( circle at top left, rgba(56, 111, 67, 0.08), transparent 35% ), #f5f1e8;
}

.musteri-giris-karti {
    width: 100%;
    max-width: 480px;
    padding: 45px 42px;
    background: #ffffff;
    border: 1px solid #e1e5dc;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.07);
}

.musteri-giris-ikon {
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #386F43;
    background: #edf4ee;
    border-radius: 50%;
}

    .musteri-giris-ikon svg {
        width: 34px;
        height: 34px;
    }

.musteri-giris-baslik {
    margin-bottom: 32px;
    text-align: center;
}

    .musteri-giris-baslik > span {
        display: block;
        margin-bottom: 8px;
        color: #6f826f;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2px;
    }

    .musteri-giris-baslik h1 {
        margin: 0 0 12px;
        color: #386F43;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 42px;
        font-weight: normal;
    }

    .musteri-giris-baslik p {
        margin: 0 auto;
        max-width: 360px;
        color: #667066;
        font-size: 15px;
        line-height: 1.7;
    }

.musteri-giris-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

    .musteri-giris-form .form-grubu {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

        .musteri-giris-form .form-grubu label {
            color: #314534;
            font-size: 14px;
            font-weight: 700;
        }

        .musteri-giris-form .form-grubu input {
            width: 100%;
            min-height: 52px;
            padding: 13px 15px;
            border: 1px solid #d5dbd3;
            border-radius: 9px;
            background: #fcfcfa;
            color: #243024;
            font-family: inherit;
            font-size: 15px;
            outline: none;
            box-sizing: border-box;
            transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
        }

            .musteri-giris-form .form-grubu input::placeholder {
                color: #a0a8a0;
            }

            .musteri-giris-form .form-grubu input:focus {
                border-color: #386F43;
                background: #ffffff;
                box-shadow: 0 0 0 3px rgba(56, 111, 67, 0.10);
            }

.musteri-giris-buton {
    width: 100%;
    min-height: 52px;
    margin-top: 4px;
    padding: 13px 20px;
    border: none;
    border-radius: 9px;
    background: #386F43;
    color: #ffffff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

    .musteri-giris-buton:hover {
        background: #2F5E39;
        color: #ffffff;
        transform: translateY(-1px);
    }

.kayit-yonlendirme {
    margin-top: 28px;
    padding-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-top: 1px solid #e7e9e3;
    color: #687068;
    font-size: 14px;
}

.kayit-ol-buton {
    color: #386F43;
    text-decoration: none;
    font-weight: 700;
}

    .kayit-ol-buton:hover {
        color: #2F5E39;
        text-decoration: underline;
    }

.giristen-anasayfa {
    display: block;
    margin-top: 22px;
    color: #6b746d;
    text-align: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

    .giristen-anasayfa:hover {
        color: #386F43;
    }

.basari-mesaji {
    margin-bottom: 22px;
    padding: 14px 16px;
    background: #e6f1e8;
    border: 1px solid #c7ddcb;
    border-radius: 8px;
    color: #386F43;
    font-size: 14px;
    line-height: 1.5;
}

.hata-mesaji {
    color: #a33a2b;
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 600px) {

    .musteri-giris-alani {
        min-height: 650px;
        padding: 45px 16px 70px;
    }

    .musteri-giris-karti {
        padding: 35px 22px;
        border-radius: 14px;
    }

    .musteri-giris-baslik h1 {
        font-size: 36px;
    }

    .kayit-yonlendirme {
        flex-direction: column;
    }
}

/* =========================
   ADMIN - MÜŞTERİLER
========================= */

.admin-musteriler-alani {
    min-height: 720px;
    padding: 60px 6% 90px;
    background: #f5f1e8;
}

.admin-musteriler-baslik {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 35px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

    .admin-musteriler-baslik > div:first-child > span {
        display: block;
        margin-bottom: 8px;
        color: #718273;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1.8px;
    }

    .admin-musteriler-baslik h1 {
        margin: 0 0 12px;
        color: #386F43;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 44px;
        font-weight: normal;
    }

    .admin-musteriler-baslik p {
        margin: 0;
        max-width: 620px;
        color: #5f6d61;
        font-size: 15px;
        line-height: 1.7;
    }

.admin-musteri-sayisi {
    min-width: 170px;
    padding: 18px 22px;
    background: #ffffff;
    border: 1px solid #dfe5dc;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

    .admin-musteri-sayisi span {
        display: block;
        margin-bottom: 5px;
        color: #6b746d;
        font-size: 12px;
        font-weight: 600;
    }

    .admin-musteri-sayisi strong {
        color: #386F43;
        font-size: 28px;
    }

.admin-musteriler-tablo-kutu {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #dfe5dc;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.admin-musteriler-tablo-kaydir {
    width: 100%;
    overflow-x: auto;
}

.admin-musteriler-tablo {
    width: 100%;
    border-collapse: collapse;
    min-width: 850px;
}

    .admin-musteriler-tablo thead {
        background: #386F43;
    }

    .admin-musteriler-tablo th {
        padding: 16px 18px;
        color: #ffffff;
        text-align: left;
        font-size: 13px;
        font-weight: 700;
        white-space: nowrap;
    }

    .admin-musteriler-tablo td {
        padding: 17px 18px;
        border-bottom: 1px solid #eceee9;
        color: #465148;
        font-size: 14px;
        vertical-align: middle;
    }

    .admin-musteriler-tablo tbody tr:last-child td {
        border-bottom: none;
    }

    .admin-musteriler-tablo tbody tr:hover {
        background: #fafbf8;
    }

    .admin-musteriler-tablo td strong {
        color: #2f3c31;
    }

.admin-musteri-durum {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    padding: 7px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
}

    .admin-musteri-durum.aktif {
        background: #dfeee2;
        color: #386F43;
        border: 1px solid #bfd5c3;
    }

    .admin-musteri-durum.pasif {
        background: #f8d7da;
        color: #842029;
        border: 1px solid #e5b9bd;
    }

.admin-musteri-yok {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 30px;
    background: #ffffff;
    border: 1px solid #dfe5dc;
    border-radius: 14px;
    text-align: center;
}

    .admin-musteri-yok h2 {
        margin: 0 0 12px;
        color: #386F43;
    }

    .admin-musteri-yok p {
        margin: 0;
        color: #687068;
    }

@media (max-width: 750px) {

    .admin-musteriler-alani {
        padding: 40px 20px 70px;
    }

    .admin-musteriler-baslik {
        flex-direction: column;
        align-items: stretch;
    }

        .admin-musteriler-baslik h1 {
            font-size: 36px;
        }

    .admin-musteri-sayisi {
        width: 100%;
        box-sizing: border-box;
    }
}

/* =========================
   HESAP BİLGİLERİ
========================= */

.hesap-bilgileri-karti {
    margin-bottom: 32px;
    padding: 28px;
    background: #ffffff;
    border: 1px solid #e1e5dc;
    border-radius: 16px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.05);
}

.hesap-bilgileri-baslik {
    margin-bottom: 22px;
}

    .hesap-bilgileri-baslik span {
        display: block;
        margin-bottom: 6px;
        color: #6f826f;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1.8px;
    }

    .hesap-bilgileri-baslik h2 {
        margin: 0;
        color: #386F43;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 28px;
        font-weight: normal;
    }

.hesap-bilgileri-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.hesap-bilgisi {
    padding: 18px;
    background: #fbfaf6;
    border: 1px solid #e6e9e1;
    border-radius: 10px;
}

    .hesap-bilgisi span {
        display: block;
        margin-bottom: 8px;
        color: #6b746d;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.4px;
        text-transform: uppercase;
    }

    .hesap-bilgisi strong {
        display: block;
        color: #243024;
        font-size: 15px;
        line-height: 1.5;
        font-weight: 600;
        word-break: break-word;
    }

@media (max-width: 800px) {
    .hesap-bilgileri-grid {
        grid-template-columns: 1fr;
    }

    .hesap-bilgileri-karti {
        padding: 22px;
    }
}

/* =========================
   HESAP BİLGİLERİ FORMU
========================= */

.hesap-bilgileri-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.hesap-bilgisi {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .hesap-bilgisi label {
        color: #6b746d;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.4px;
        text-transform: uppercase;
    }

    .hesap-bilgisi input {
        width: 100%;
        min-height: 48px;
        padding: 12px 14px;
        border: 1px solid #d5dbd3;
        border-radius: 8px;
        background: #ffffff;
        color: #243024;
        font-family: inherit;
        font-size: 15px;
        box-sizing: border-box;
        outline: none;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

        .hesap-bilgisi input:focus {
            border-color: #386F43;
            box-shadow: 0 0 0 3px rgba(56, 111, 67, 0.10);
        }

        .hesap-bilgisi input[readonly] {
            background: #f1f2ed;
            color: #747b74;
            cursor: not-allowed;
        }

.hesap-guncelle-buton {
    align-self: flex-start;
    min-height: 46px;
    padding: 11px 24px;
    border: none;
    border-radius: 8px;
    background: #386F43;
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

    .hesap-guncelle-buton:hover {
        background: #2F5E39;
        color: #ffffff;
        transform: translateY(-1px);
    }

@media (max-width: 800px) {
    .hesap-guncelle-buton {
        width: 100%;
        align-self: stretch;
    }
}

/* =========================
   HESAP ALANI KOMPAKT TASARIM
========================= */

.hesap-bilgileri-karti {
    margin-bottom: 18px;
    padding: 20px 22px;
    border-radius: 12px;
}

.hesap-bilgileri-baslik {
    margin-bottom: 14px;
}

    .hesap-bilgileri-baslik span {
        margin-bottom: 3px;
        font-size: 10px;
    }

    .hesap-bilgileri-baslik h2 {
        font-size: 23px;
    }

.hesap-bilgileri-form {
    gap: 14px;
}

.hesap-bilgileri-grid {
    gap: 12px;
}

.hesap-bilgisi {
    padding: 12px;
    gap: 5px;
    border-radius: 8px;
}

    .hesap-bilgisi label {
        font-size: 11px;
    }

    .hesap-bilgisi input {
        min-height: 40px;
        padding: 8px 11px;
        font-size: 14px;
    }

.hesap-guncelle-buton {
    min-height: 40px;
    padding: 8px 18px;
    font-size: 13px;
}

.hesap-bilgileri-karti .basari-mesaji {
    margin-bottom: 14px;
    padding: 10px 13px;
    font-size: 13px;
}

@media (max-width: 800px) {
    .hesap-bilgileri-karti {
        padding: 17px;
    }

    .hesap-bilgileri-baslik h2 {
        font-size: 21px;
    }
}
/* =========================
   HESAP KARTLARI YAN YANA
========================= */

.hesap-kartlari-yan-yana {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
    margin-bottom: 28px;
}

    .hesap-kartlari-yan-yana .hesap-bilgileri-karti {
        margin-bottom: 0;
        padding: 18px 20px;
    }

    .hesap-kartlari-yan-yana .hesap-bilgileri-baslik {
        margin-bottom: 12px;
    }

        .hesap-kartlari-yan-yana .hesap-bilgileri-baslik h2 {
            font-size: 22px;
        }

.hesap-kompakt-alanlar {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hesap-kartlari-yan-yana .hesap-bilgisi {
    padding: 10px 12px;
}

    .hesap-kartlari-yan-yana .hesap-bilgisi input {
        min-height: 38px;
        padding: 7px 10px;
    }

.hesap-kartlari-yan-yana .hesap-guncelle-buton {
    min-height: 38px;
    padding: 8px 16px;
    margin-top: 2px;
}

@media (max-width: 850px) {
    .hesap-kartlari-yan-yana {
        grid-template-columns: 1fr;
    }
}

/* =========================
   MODERN HERO
========================= */

.store-hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 36px;
    align-items: stretch;
    max-width: 1240px;
    margin: 34px auto 70px;
    padding: 0 24px;
}

    .store-hero .hero-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 48px 10px 48px 0;
    }

    .store-hero .small-title {
        margin-bottom: 14px;
        color: #6f826f;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 2px;
    }

    .store-hero h1 {
        margin: 0;
        color: #243024;
        font-family: Georgia, "Times New Roman", serif;
        font-size: clamp(46px, 5.4vw, 76px);
        line-height: 0.98;
        font-weight: normal;
        letter-spacing: -2px;
    }

        .store-hero h1 em {
            color: #386F43;
            font-style: italic;
            font-weight: normal;
        }

    .store-hero .description {
        max-width: 580px;
        margin: 26px 0 0;
        color: #5f685f;
        font-size: 17px;
        line-height: 1.8;
    }

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 11px 22px;
    border: 1px solid #386F43;
    border-radius: 8px;
    color: #386F43;
    background: transparent;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s ease;
}

    .hero-secondary-button:hover {
        background: #eef4ef;
        color: #2F5E39;
        border-color: #2F5E39;
    }

.hero-guven {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 34px;
}

.hero-guven-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 12px;
    background: #fbfaf6;
    border: 1px solid #e3e7df;
    border-radius: 10px;
}

.hero-guven-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #386F43;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.hero-guven-item strong {
    display: block;
    color: #243024;
    font-size: 12px;
    line-height: 1.25;
}

.hero-guven-item small {
    display: block;
    margin-top: 2px;
    color: #7b837b;
    font-size: 10px;
    line-height: 1.3;
}

.store-hero .hero-visual {
    position: relative;
    min-height: 580px;
    overflow: hidden;
    border-radius: 18px;
    background: #eef0e8;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.09);
}

    .store-hero .hero-visual > img {
        width: 100%;
        height: 100%;
        min-height: 580px;
        object-fit: cover;
        display: block;
    }

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(19, 34, 22, 0.62) 0%, rgba(19, 34, 22, 0.16) 40%, rgba(19, 34, 22, 0.02) 70% );
    pointer-events: none;
}

.store-hero .hero-image-caption {
    position: absolute;
    left: 30px;
    bottom: 30px;
    z-index: 2;
    color: #ffffff;
}

    .store-hero .hero-image-caption span {
        display: block;
        margin-bottom: 8px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1.8px;
    }

    .store-hero .hero-image-caption strong {
        display: block;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 33px;
        line-height: 1.08;
        font-weight: normal;
    }

.hero-image-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 92px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #386F43;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}

    .hero-image-badge span {
        margin-bottom: 2px;
        font-size: 13px;
    }

    .hero-image-badge strong {
        font-size: 12px;
        letter-spacing: 1.4px;
    }

    .hero-image-badge small {
        margin-top: 1px;
        font-size: 8px;
        font-weight: 700;
        letter-spacing: 1.2px;
    }

/* TABLET */
@media (max-width: 950px) {
    .store-hero {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 24px;
    }

        .store-hero .hero-content {
            padding: 24px 0 10px;
        }

        .store-hero .hero-visual,
        .store-hero .hero-visual > img {
            min-height: 500px;
        }
}

/* MOBİL */
@media (max-width: 650px) {
    .store-hero {
        margin: 18px auto 50px;
        padding: 0 16px;
    }

        .store-hero h1 {
            font-size: 43px;
            letter-spacing: -1px;
        }

        .store-hero .description {
            margin-top: 20px;
            font-size: 15px;
            line-height: 1.7;
        }

    .hero-buttons {
        flex-direction: column;
    }

        .hero-buttons .button,
        .hero-secondary-button {
            width: 100%;
            box-sizing: border-box;
            text-align: center;
        }

    .hero-guven {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 24px;
    }

    .store-hero .hero-visual,
    .store-hero .hero-visual > img {
        min-height: 410px;
    }

    .store-hero .hero-image-caption {
        left: 20px;
        bottom: 22px;
    }

        .store-hero .hero-image-caption strong {
            font-size: 27px;
        }

    .hero-image-badge {
        top: 16px;
        right: 16px;
        width: 78px;
        height: 78px;
    }
}

/* =========================
   HERO BUTONLARI BİREBİR AYNI
========================= */

.hero-buttons {
    display: flex;
    gap: 16px;
    align-items: stretch;
}

    .hero-buttons .button,
    .hero-buttons .hero-secondary-button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 180px;
        height: 54px;
        min-height: 54px;
        margin: 0;
        padding: 0 18px;
        box-sizing: border-box;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 700;
        line-height: 1;
        text-align: center;
        text-decoration: none;
    }

/* Mobil */
@media (max-width: 650px) {

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

        .hero-buttons .button,
        .hero-buttons .hero-secondary-button {
            width: 100%;
            height: 50px;
            min-height: 50px;
        }
}

/* Mobilde ikisi de tam genişlik */
@media (max-width: 650px) {
    .hero-buttons .button,
    .hero-secondary-button {
        width: 100%;
    }
}

/* =========================
   MODERN ÜRÜN KARTLARI
========================= */

.products-section {
    padding: 72px 0;
    background: #f8f6ef;
}

    .products-section .order-container {
        max-width: 1240px;
        margin: 0 auto;
        padding: 0 24px;
    }

    .products-section .small-title {
        margin-bottom: 8px;
        color: #6f826f;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1.8px;
    }

    .products-section h1 {
        margin: 0 0 28px;
        color: #243024;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 36px;
        font-weight: normal;
    }

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e3e6df;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .product-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 34px rgba(0, 0, 0, 0.09);
    }

.product-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f1efe8;
}

.product-card-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.product-card:hover .product-card-image {
    transform: scale(1.035);
}

.product-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #8a918a;
    font-size: 14px;
}

.product-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px;
}

.product-category {
    margin: 0 0 7px;
    color: #6f826f;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.product-card-content h2 {
    margin: 0;
    color: #263126;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    line-height: 1.25;
    font-weight: normal;
}

.product-description {
    margin: 10px 0 16px;
    color: #6a726a;
    font-size: 13px;
    line-height: 1.6;
}

.product-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #eceee9;
}

.product-price {
    color: #386F43;
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
}

.product-cart-form {
    margin: 0;
}

.product-cart-button {
    min-height: 40px;
    padding: 8px 14px;
    border: none;
    border-radius: 8px;
    background: #386F43;
    color: #ffffff;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}

    .product-cart-button:hover {
        background: #2F5E39;
    }

.product-out-stock {
    padding: 7px 10px;
    border-radius: 7px;
    background: #f3e5e5;
    color: #8a3c3c;
    font-size: 12px;
    font-weight: 700;
}

.product-stock-info {
    margin-top: 10px;
    color: #8a918a;
    font-size: 11px;
}

/* TABLET */
@media (max-width: 1050px) {
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* KÜÇÜK TABLET */
@media (max-width: 800px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* MOBİL */
@media (max-width: 520px) {
    .products-section {
        padding: 52px 0;
    }

        .products-section .order-container {
            padding: 0 16px;
        }

        .products-section h1 {
            font-size: 30px;
        }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .product-card-content {
        padding: 16px;
    }

    .product-card-bottom {
        align-items: stretch;
        flex-direction: column;
    }

    .product-cart-form,
    .product-cart-button {
        width: 100%;
    }
}

/* =========================
   ÜRÜN OTOMATİK SLIDER - SON DÜZEN
========================= */

.products-section .product-slider {
    --slider-gap: 22px;
    width: 100%;
    overflow: hidden;
    padding: 6px 0 22px;
}

.products-section .product-track {
    display: flex;
    align-items: stretch;
    gap: var(--slider-gap);
    width: max-content;
    animation: urunKaydir 32s linear infinite;
    will-change: transform;
}

.products-section .product-slider:hover .product-track {
    animation-play-state: paused;
}

/* Masaüstünde aynı anda tam 4 ürün */
.products-section .product-track .product-card {
    width: calc((min(1192px, calc(100vw - 48px)) - 66px) / 4);
    flex: 0 0 calc((min(1192px, calc(100vw - 48px)) - 66px) / 4);
    margin: 0;
}

@keyframes urunKaydir {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 11px));
    }
}

/* Tablet: 3 ürün */
@media (max-width: 1050px) {
    .products-section .product-track .product-card {
        width: calc((100vw - 48px - 44px) / 3);
        flex-basis: calc((100vw - 48px - 44px) / 3);
    }
}

/* Küçük tablet: 2 ürün */
@media (max-width: 750px) {
    .products-section .product-slider {
        --slider-gap: 16px;
    }

    .products-section .product-track .product-card {
        width: calc((100vw - 48px - 16px) / 2);
        flex-basis: calc((100vw - 48px - 16px) / 2);
    }

    @keyframes urunKaydir {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(calc(-50% - 8px));
        }
    }
}

/* Telefon: tek büyük kart */
@media (max-width: 520px) {
    .products-section .product-slider {
        --slider-gap: 14px;
    }

    .products-section .product-track .product-card {
        width: calc(100vw - 64px);
        flex-basis: calc(100vw - 64px);
    }

    @keyframes urunKaydir {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(calc(-50% - 7px));
        }
    }
}

@media (prefers-reduced-motion: reduce) {
    .products-section .product-track {
        animation: none;
    }
}

/* =========================
   MODERN HAKKIMIZDA
========================= */

.about-modern {
    width: 100%;
    padding: 95px 24px;
    background: #ffffff;
    box-sizing: border-box;
}

.about-modern-container {
    width: 100%;
    max-width: 1192px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}


/* SOL TARAF */

.about-modern-left {
    max-width: 520px;
}

.about-modern .small-title {
    margin: 0 0 14px;
    color: #6f826f;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-modern h2 {
    margin: 0 0 26px;
    color: #243024;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4vw, 56px);
    line-height: 1.08;
    font-weight: normal;
    letter-spacing: -1px;
}

    .about-modern h2 em {
        display: block;
        color: #386F43;
        font-weight: normal;
    }

.about-modern-text {
    max-width: 500px;
    margin: 0 0 15px;
    color: #687068;
    font-size: 15px;
    line-height: 1.8;
}


/* BUTON */

.about-modern-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 165px;
    min-height: 50px;
    margin-top: 14px;
    padding: 0 22px;
    box-sizing: border-box;
    border-radius: 8px;
    background: #386F43;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

    .about-modern-button:hover {
        background: #2F5E39;
        transform: translateY(-2px);
    }


/* SAĞ TARAF */

.about-modern-right {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #e2e6df;
}

.about-feature-card {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 22px;
    padding: 27px 0;
    border-bottom: 1px solid #e2e6df;
    transition: padding-left 0.2s ease;
}

    .about-feature-card:hover {
        padding-left: 8px;
    }

.about-feature-number {
    display: flex;
    align-items: flex-start;
    color: #386F43;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
}

.about-feature-card h3 {
    margin: 0 0 8px;
    color: #263126;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    font-weight: normal;
}

.about-feature-card p {
    max-width: 420px;
    margin: 0;
    color: #747b74;
    font-size: 13px;
    line-height: 1.7;
}


/* TABLET */

@media (max-width: 900px) {

    .about-modern {
        padding: 70px 24px;
    }

    .about-modern-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-modern-left {
        max-width: 650px;
    }
}


/* TELEFON */

@media (max-width: 600px) {

    .about-modern {
        padding: 58px 16px;
    }

    .about-modern-container {
        gap: 40px;
    }

    .about-modern h2 {
        font-size: 36px;
    }

    .about-modern-text {
        font-size: 14px;
    }

    .about-modern-button {
        width: 100%;
    }

    .about-feature-card {
        grid-template-columns: 42px 1fr;
        gap: 14px;
        padding: 22px 0;
    }

        .about-feature-card h3 {
            font-size: 20px;
        }
}

/* =========================
   HAKKIMIZDA RENK DÜZELTME
========================= */

.about-modern {
    background: #F7F4EC;
}

    .about-modern .small-title {
        color: #386F43;
    }

    .about-modern h2 {
        color: #1F2A21;
    }

        .about-modern h2 em {
            color: #386F43;
        }

.about-modern-text {
    color: #4F5A50;
}

.about-modern-right {
    border-top-color: #D8DDD4;
}

.about-feature-card {
    border-bottom-color: #D8DDD4;
}

.about-feature-number {
    color: #386F43;
}

.about-feature-card h3 {
    color: #1F2A21;
}

.about-feature-card p {
    color: #59635A;
}

.about-modern-button {
    background: #386F43;
    color: #FFFFFF;
}

    .about-modern-button:hover {
        background: #2F5E39;
        color: #FFFFFF;
    }

/* =========================
   PREMIUM YEŞİL RENK
========================= */

:root {
    --bahcemden-green: #2F5A3A;
    --bahcemden-green-dark: #25482E;
    --bahcemden-heading: #1F2A22;
}

/* Ana yeşil butonlar */
.button,
.product-cart-button,
.about-modern-button,
.musteri-giris-buton,
.hesap-guncelle-buton {
    background-color: var(--bahcemden-green);
    color: #FFFFFF;
}

    /* Hover */
    .button:hover,
    .product-cart-button:hover,
    .about-modern-button:hover,
    .musteri-giris-buton:hover,
    .hesap-guncelle-buton:hover {
        background-color: var(--bahcemden-green-dark);
        color: #FFFFFF;
    }

/* Yeşil vurgular */
.small-title,
.product-price,
.product-category,
.about-modern .small-title,
.about-modern h2 em,
.about-feature-number {
    color: var(--bahcemden-green);
}

/* Hakkımızda başlıkları */
.about-modern h2,
.about-feature-card h3 {
    color: var(--bahcemden-heading);
}
/* =========================
   HAKKIMIZDA PREMIUM YEŞİL
   RENK DÜZELTME
========================= */

.about-modern {
    background: #2F5A3A !important;
}

    /* HAKKIMIZDA küçük başlık */
    .about-modern .small-title {
        color: #F0E8D8 !important;
    }

    /* Ana büyük başlık */
    .about-modern h2 {
        color: #FFFDF7 !important;
    }

        /* İtalik yeşil kalan yazı */
        .about-modern h2 em {
            color: #D8CDAF !important;
        }

    /* Sol açıklama yazıları */
    .about-modern .about-modern-text {
        color: #E1E5DC !important;
    }

    /* Sağ taraftaki 01 - 02 - 03 */
    .about-modern .about-feature-number {
        color: #C9D5C5 !important;
    }

    /* Sağ taraftaki başlıklar */
    .about-modern .about-feature-card h3 {
        color: #FFFDF7 !important;
    }

    /* Sağ taraftaki açıklamalar */
    .about-modern .about-feature-card p {
        color: #DCE2D9 !important;
    }

    /* Ayırıcı çizgiler */
    .about-modern .about-modern-right {
        border-top-color: rgba(255, 255, 255, 0.35) !important;
    }

    .about-modern .about-feature-card {
        border-bottom-color: rgba(255, 255, 255, 0.35) !important;
    }

    /* Buton */
    .about-modern .about-modern-button {
        background: #FFFDF7 !important;
        color: #2F5A3A !important;
        border: 1px solid #FFFDF7;
    }

        /* Buton hover */
        .about-modern .about-modern-button:hover {
            background: #EDE5D5 !important;
            color: #25482E !important;
        }

/* =========================
   PREMIUM İLETİŞİM
========================= */

.contact-premium {
    width: 100%;
    padding: 85px 24px;
    box-sizing: border-box;
    background: #F5F1E7;
}

.contact-premium-container {
    width: 100%;
    max-width: 1192px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 90px;
    align-items: center;
}


/* SOL TARAF */

.contact-premium-heading .small-title {
    margin: 0 0 14px;
    color: #2F5A3A;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.contact-premium-heading h2 {
    margin: 0 0 22px;
    color: #1F2A22;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4vw, 54px);
    line-height: 1.08;
    font-weight: normal;
    letter-spacing: -1px;
}

    .contact-premium-heading h2 em {
        display: block;
        color: #2F5A3A;
        font-weight: normal;
    }

.contact-premium-heading > p:last-child {
    max-width: 500px;
    margin: 0;
    color: #596159;
    font-size: 15px;
    line-height: 1.8;
}


/* SAĞ TARAF */

.contact-premium-details {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #D8D4C9;
}

.contact-premium-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 20px;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid #D8D4C9;
    transition: padding-left 0.2s ease;
}

    .contact-premium-item:hover {
        padding-left: 8px;
    }


/* İKON */

.contact-premium-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(47, 90, 58, 0.25);
    border-radius: 50%;
    color: #2F5A3A;
    font-size: 18px;
}


/* KÜÇÜK BAŞLIK */

.contact-premium-item small {
    display: block;
    margin-bottom: 5px;
    color: #7C8279;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.6px;
}


/* BİLGİ */

.contact-premium-item strong {
    display: block;
    color: #1F2A22;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    font-weight: normal;
}


/* TABLET */

@media (max-width: 900px) {

    .contact-premium {
        padding: 70px 24px;
    }

    .contact-premium-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}


/* TELEFON */

@media (max-width: 600px) {

    .contact-premium {
        padding: 58px 16px;
    }

    .contact-premium-heading h2 {
        font-size: 36px;
    }

    .contact-premium-heading > p:last-child {
        font-size: 14px;
    }

    .contact-premium-item {
        grid-template-columns: 46px 1fr;
        gap: 14px;
        padding: 20px 0;
    }

    .contact-premium-icon {
        width: 38px;
        height: 38px;
    }

    .contact-premium-item strong {
        font-size: 17px;
    }
}


/* =========================
   PREMIUM İLETİŞİM
========================= */

.contact-premium {
    width: 100%;
    padding: 90px 24px;
    box-sizing: border-box;
    background: #F5F1E7;
}

.contact-premium-container {
    width: 100%;
    max-width: 1192px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 90px;
    align-items: center;
}

.contact-premium-heading .small-title {
    margin: 0 0 14px;
    color: #2F5A3A;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.contact-premium-heading h2 {
    margin: 0 0 22px;
    color: #1F2A22;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4vw, 54px);
    line-height: 1.08;
    font-weight: normal;
    letter-spacing: -1px;
}

    .contact-premium-heading h2 em {
        display: block;
        color: #2F5A3A;
        font-weight: normal;
    }

.contact-premium-heading > p:last-child {
    max-width: 500px;
    margin: 0;
    color: #4F594F;
    font-size: 15px;
    line-height: 1.8;
}

.contact-premium-details {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #D3CFC3;
}

.contact-premium-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 20px;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid #D3CFC3;
    transition: padding-left 0.2s ease, background 0.2s ease;
}

    .contact-premium-item:hover {
        padding-left: 8px;
    }

.contact-premium-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(47, 90, 58, 0.28);
    border-radius: 50%;
    color: #2F5A3A;
    font-size: 18px;
}

.contact-premium-item small {
    display: block;
    margin-bottom: 6px;
    color: #70786F;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.6px;
}

.contact-premium-item strong {
    display: block;
    color: #1F2A22;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: normal;
}

@media (max-width: 900px) {

    .contact-premium {
        padding: 70px 24px;
    }

    .contact-premium-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}

@media (max-width: 600px) {

    .contact-premium {
        padding: 58px 16px;
    }

    .contact-premium-heading h2 {
        font-size: 36px;
    }

    .contact-premium-heading > p:last-child {
        font-size: 14px;
    }

    .contact-premium-item {
        grid-template-columns: 46px 1fr;
        gap: 14px;
        padding: 20px 0;
    }

    .contact-premium-icon {
        width: 38px;
        height: 38px;
    }

    .contact-premium-item strong {
        font-size: 17px;
    }
}

/* =========================
   PREMIUM FOOTER
========================= */

.store-footer {
    width: 100%;
    background: #1F3F2A;
    color: #FFFFFF;
}

.store-footer-container {
    width: 100%;
    max-width: 1192px;
    margin: 0 auto;
    padding: 72px 24px 58px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(150px, 0.8fr) minmax(150px, 0.8fr) minmax(180px, 1fr);
    gap: 60px;
}


/* LOGO / MARKA */

.store-footer-brand {
    max-width: 360px;
}

.store-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: #FFFDF7;
    text-decoration: none;
}

    .store-footer-logo svg {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
        color: #DCCFAF;
    }

    .store-footer-logo > span {
        display: flex;
        flex-direction: column;
        color: #FFFDF7;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 27px;
        line-height: 1;
    }

    .store-footer-logo small {
        margin-top: 7px;
        color: #C8D3C6;
        font-family: Arial, sans-serif;
        font-size: 8px;
        font-weight: 700;
        letter-spacing: 1.7px;
    }

.store-footer-brand > p {
    margin: 24px 0 0;
    color: #CAD5CA;
    font-size: 13px;
    line-height: 1.8;
}


/* KOLONLAR */

.store-footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

    .store-footer-column h3 {
        margin: 0 0 11px;
        color: #FFFDF7;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 18px;
        font-weight: normal;
    }

    .store-footer-column a {
        color: #C9D3C9;
        font-size: 13px;
        text-decoration: none;
        transition: color 0.2s ease, transform 0.2s ease;
    }

        .store-footer-column a:hover {
            color: #FFFDF7;
            transform: translateX(3px);
        }


/* İLETİŞİM */

.store-footer-contact {
    gap: 16px;
}

    .store-footer-contact p {
        margin: 0;
    }

    .store-footer-contact small {
        display: block;
        margin-bottom: 5px;
        color: #AEBEAD;
        font-size: 8px;
        font-weight: 700;
        letter-spacing: 1.5px;
    }

    .store-footer-contact span {
        color: #FFFDF7;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 15px;
    }


/* ALT ÇİZGİ */

.store-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.store-footer-bottom-inner {
    width: 100%;
    max-width: 1192px;
    margin: 0 auto;
    padding: 22px 24px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.store-footer-bottom p {
    margin: 0;
    color: #AEBEAD;
    font-size: 11px;
}

.store-footer-slogan {
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
}


/* TABLET */

@media (max-width: 900px) {

    .store-footer-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 45px;
        padding-top: 60px;
    }
}


/* TELEFON */

@media (max-width: 600px) {

    .store-footer-container {
        grid-template-columns: 1fr;
        gap: 38px;
        padding: 52px 16px 42px;
    }

    .store-footer-brand {
        max-width: none;
    }

    .store-footer-bottom-inner {
        padding: 20px 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* =========================
   PREMIUM HEADER - SON DÜZEN
========================= */

.store-note {
    width: 100%;
    background: #1F3F2A;
    color: #E6EBDD;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.store-note-inner {
    width: 100%;
    max-width: 1192px;
    min-height: 35px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 10px;
    letter-spacing: 0.6px;
}

.store-note-detail {
    color: #C8D2C4;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.3px;
}


/* =========================
   ANA HEADER
========================= */

.premium-header {
    width: 100%;
    padding: 0;
    background: #FFFDF7;
    border-bottom: 1px solid #E6E1D5;
}

.premium-header-inner {
    width: 100%;
    max-width: 1192px;
    min-height: 102px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: minmax(240px, 1fr) auto minmax(300px, 1fr);
    align-items: center;
    gap: 35px;
}


/* =========================
   LOGO
========================= */

.premium-brand {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 13px;
    color: #2F5A3A;
    text-decoration: none;
}

    .premium-brand .store-brand-mark {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
        color: #2F5A3A;
    }

    .premium-brand > span {
        display: flex;
        flex-direction: column;
        color: #243126;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 29px;
        line-height: 1;
    }

    .premium-brand small {
        margin-top: 7px;
        color: #667166;
        font-family: Arial, sans-serif;
        font-size: 8px;
        font-weight: 700;
        letter-spacing: 1.9px;
    }


/* =========================
   ORTA MESAJ
========================= */

.premium-header-message {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 28px;
}

    .premium-header-message::before,
    .premium-header-message::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 26px;
        height: 1px;
        background: #D8D3C7;
    }

    .premium-header-message::before {
        right: 100%;
    }

    .premium-header-message::after {
        left: 100%;
    }

    .premium-header-message span {
        margin-bottom: 4px;
        color: #7A8278;
        font-size: 8px;
        font-weight: 700;
        letter-spacing: 1.7px;
    }

    .premium-header-message strong {
        color: #2F5A3A;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 18px;
        font-weight: normal;
    }


/* =========================
   SAĞ TARAF
========================= */

.premium-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}


/* HESAP */

.premium-account {
    display: flex;
    align-items: center;
    min-height: 48px;
    gap: 10px;
    padding: 7px 14px;
    box-sizing: border-box;
    border: 1px solid #DDDACE;
    border-radius: 8px;
    background: transparent;
    color: #263126;
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

    .premium-account:hover {
        border-color: #AABAAA;
        background: #F7F5ED;
    }

.premium-account-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 27px;
    height: 27px;
    flex-shrink: 0;
    color: #2F5A3A;
}

    .premium-account-icon svg {
        width: 22px;
        height: 22px;
    }

.premium-account-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

    .premium-account-text small {
        margin-bottom: 3px;
        color: #7B837A;
        font-size: 7px;
        font-weight: 700;
        letter-spacing: 1.2px;
    }

    .premium-account-text strong {
        max-width: 145px;
        overflow: hidden;
        color: #263126;
        font-size: 11px;
        font-weight: 700;
        text-overflow: ellipsis;
        white-space: nowrap;
    }


/* =========================
   SEPET
========================= */

.premium-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    gap: 9px;
    padding: 0 18px;
    box-sizing: border-box;
    border: 1px solid #2F5A3A;
    border-radius: 8px;
    background: #2F5A3A;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

    .premium-cart:hover {
        background: #25482E;
        border-color: #25482E;
        color: #FFFFFF;
        transform: translateY(-1px);
    }

.premium-cart-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .premium-cart-icon svg {
        width: 20px;
        height: 20px;
    }


/* =========================
   NAVİGASYON
========================= */

.premium-nav {
    width: 100%;
    padding: 0;
    background: #FFFDF7;
    border-bottom: 1px solid #E5E1D7;
}

.premium-nav-inner {
    width: 100%;
    max-width: 1192px;
    min-height: 49px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 46px;
}

    .premium-nav-inner a {
        position: relative;
        display: flex;
        align-items: center;
        min-height: 49px;
        color: #4F594F;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.4px;
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .premium-nav-inner a::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -1px;
            width: 0;
            height: 2px;
            background: #2F5A3A;
            transform: translateX(-50%);
            transition: width 0.2s ease;
        }

        .premium-nav-inner a:hover {
            color: #2F5A3A;
        }

            .premium-nav-inner a:hover::after {
                width: 100%;
            }


/* =========================
   TABLET
========================= */

@media (max-width: 950px) {

    .premium-header-inner {
        grid-template-columns: 1fr auto;
        min-height: 90px;
    }

    .premium-header-message {
        display: none;
    }
}


/* =========================
   TELEFON
========================= */

@media (max-width: 650px) {

    .store-note-inner {
        min-height: 31px;
        padding: 0 16px;
        justify-content: center;
        text-align: center;
    }

    .store-note-detail {
        display: none;
    }


    .premium-header-inner {
        min-height: auto;
        padding: 16px;
        grid-template-columns: 1fr;
        gap: 15px;
    }


    .premium-brand {
        margin: 0 auto;
    }

        .premium-brand .store-brand-mark {
            width: 42px;
            height: 42px;
        }

        .premium-brand > span {
            font-size: 26px;
        }


    .premium-header-actions {
        width: 100%;
        justify-content: center;
    }

    .premium-account,
    .premium-cart {
        flex: 1;
        max-width: 190px;
    }


    .premium-nav-inner {
        justify-content: flex-start;
        gap: 27px;
        padding: 0 16px;
        overflow-x: auto;
        scrollbar-width: none;
    }

        .premium-nav-inner::-webkit-scrollbar {
            display: none;
        }

        .premium-nav-inner a {
            flex-shrink: 0;
        }
}

/* =========================
   PREMIUM SEPET SAYFASI
========================= */

.premium-cart-page {
    width: 100%;
    padding: 72px 24px 90px;
    box-sizing: border-box;
    background: #F5F1E7;
}

.premium-cart-container {
    width: 100%;
    max-width: 1192px;
    margin: 0 auto;
}


/* =========================
   BAŞLIK
========================= */

.premium-cart-heading {
    margin-bottom: 38px;
}

    .premium-cart-heading .small-title {
        margin: 0 0 10px;
        color: #2F5A3A;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 2px;
    }

    .premium-cart-heading h1 {
        margin: 0 0 10px;
        color: #1F2A22;
        font-family: Georgia, "Times New Roman", serif;
        font-size: clamp(38px, 4vw, 52px);
        line-height: 1.05;
        font-weight: normal;
    }

    .premium-cart-heading > p:last-child {
        margin: 0;
        color: #667066;
        font-size: 14px;
        line-height: 1.7;
    }


/* =========================
   HATA
========================= */

.premium-cart-error {
    margin-bottom: 24px;
    padding: 14px 18px;
    border: 1px solid #E3CACA;
    border-radius: 8px;
    background: #FFF2F2;
    color: #8A3C3C;
    font-size: 13px;
}


/* =========================
   İKİ KOLON
========================= */

.premium-cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(290px, 0.7fr);
    gap: 30px;
    align-items: start;
}

.premium-cart-products {
    display: flex;
    flex-direction: column;
    gap: 14px;
}


/* =========================
   ÜRÜN KARTI
========================= */

.premium-cart-item {
    display: grid;
    grid-template-columns: 125px minmax(0, 1fr) 150px 125px;
    gap: 22px;
    align-items: center;
    padding: 18px;
    border: 1px solid #E2DED3;
    border-radius: 14px;
    background: #FFFDF7;
    box-shadow: 0 8px 24px rgba(31, 42, 34, 0.04);
}


/* RESİM */

.premium-cart-item-image {
    width: 125px;
    height: 125px;
    overflow: hidden;
    border-radius: 10px;
    background: #ECE9DF;
}

    .premium-cart-item-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

    .premium-cart-item-image span {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #7E877D;
        font-size: 11px;
    }


/* ÜRÜN BİLGİSİ */

.premium-cart-item-info {
    min-width: 0;
}

.premium-cart-product-label {
    display: block;
    margin-bottom: 7px;
    color: #70806F;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.premium-cart-item-info h2 {
    margin: 0 0 14px;
    color: #202C22;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    font-weight: normal;
}

.premium-cart-item-info p {
    margin: 0 0 3px;
    color: #7B837A;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.premium-cart-item-info > strong {
    color: #2F5A3A;
    font-size: 14px;
}


/* =========================
   ADET
========================= */

.premium-cart-quantity {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.premium-cart-quantity-label {
    color: #7B837A;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.3px;
}

.premium-cart-controls {
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid #D9D7CE;
    border-radius: 7px;
    background: #FFFFFF;
}

    .premium-cart-controls form {
        margin: 0;
    }

    .premium-cart-controls .cart-quantity-button {
        width: 38px;
        height: 38px;
        padding: 0;
        border: none;
        background: #FFFFFF;
        color: #2F5A3A;
        font-size: 19px;
        cursor: pointer;
        transition: background 0.2s ease;
    }

        .premium-cart-controls .cart-quantity-button:hover {
            background: #EEF1EA;
        }

    .premium-cart-controls .cart-quantity-value {
        min-width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-left: 1px solid #E1DFD7;
        border-right: 1px solid #E1DFD7;
        color: #263126;
        font-size: 13px;
        font-weight: 700;
    }

.premium-cart-quantity > form {
    margin: 0;
}

.premium-cart-quantity .cart-remove-button {
    padding: 0;
    border: none;
    background: transparent;
    color: #8B5A52;
    font-size: 10px;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
}


/* =========================
   ÜRÜN TOPLAM
========================= */

.premium-cart-item-total {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

    .premium-cart-item-total span {
        margin-bottom: 7px;
        color: #7B837A;
        font-size: 8px;
        font-weight: 700;
        letter-spacing: 1.3px;
    }

    .premium-cart-item-total strong {
        color: #1F2A22;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 19px;
        white-space: nowrap;
    }


/* =========================
   SEPET ÖZETİ
========================= */

.premium-cart-summary {
    position: sticky;
    top: 20px;
    padding: 28px;
    border: 1px solid #DDE1D8;
    border-radius: 14px;
    background: #2F5A3A;
    color: #FFFFFF;
    box-shadow: 0 14px 32px rgba(31, 63, 42, 0.12);
}

.premium-cart-summary-small {
    margin: 0 0 8px;
    color: #CBD6C8;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.7px;
}

.premium-cart-summary h2 {
    margin: 0 0 28px;
    color: #FFFDF7;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    font-weight: normal;
}

.premium-cart-summary-line,
.premium-cart-summary-total {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
}

.premium-cart-summary-line {
    color: #D9E1D6;
    font-size: 12px;
}

    .premium-cart-summary-line strong {
        color: #FFFFFF;
    }

.premium-cart-summary-divider {
    height: 1px;
    margin: 20px 0;
    background: rgba(255, 255, 255, 0.2);
}

.premium-cart-summary-total span {
    color: #E7ECE3;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
}

.premium-cart-summary-total strong {
    color: #FFFDF7;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    white-space: nowrap;
}


/* SİPARİŞ BUTONU */

.premium-cart-checkout {
    width: 100%;
    min-height: 52px;
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border: 1px solid #FFFDF7;
    border-radius: 8px;
    background: #FFFDF7 !important;
    color: #2F5A3A !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

    .premium-cart-checkout:hover {
        background: #EEE7D8 !important;
        color: #25482E !important;
    }


/* DEVAM ET */

.premium-cart-continue {
    display: block;
    margin-top: 16px;
    color: #D7E0D4;
    font-size: 11px;
    text-align: center;
    text-decoration: none;
}

    .premium-cart-continue:hover {
        color: #FFFFFF;
    }


/* GÜVEN */

.premium-cart-guarantee {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 23px;
    padding-top: 19px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

    .premium-cart-guarantee span {
        color: #DCCFAF;
        font-size: 14px;
    }

    .premium-cart-guarantee p {
        margin: 0;
        color: #C8D3C6;
        font-size: 10px;
        line-height: 1.6;
    }


/* =========================
   BOŞ SEPET
========================= */

.premium-cart-empty {
    max-width: 620px;
    margin: 15px auto 0;
    padding: 64px 30px;
    border: 1px solid #E0DDD4;
    border-radius: 14px;
    background: #FFFDF7;
    text-align: center;
}

.premium-cart-empty-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #EDF1EA;
    color: #2F5A3A;
}

    .premium-cart-empty-icon svg {
        width: 30px;
        height: 30px;
    }

.premium-cart-empty h2 {
    margin: 0 0 10px;
    color: #1F2A22;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: normal;
}

.premium-cart-empty p {
    margin: 0 0 25px;
    color: #697169;
    font-size: 13px;
}

.premium-cart-empty-button {
    min-width: 170px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {

    .premium-cart-layout {
        grid-template-columns: 1fr;
    }

    .premium-cart-summary {
        position: static;
    }
}


/* =========================
   KÜÇÜK TABLET
========================= */

@media (max-width: 760px) {

    .premium-cart-item {
        grid-template-columns: 100px minmax(0, 1fr);
        gap: 18px;
    }

    .premium-cart-item-image {
        width: 100px;
        height: 100px;
    }

    .premium-cart-quantity {
        grid-column: 1 / 2;
    }

    .premium-cart-item-total {
        grid-column: 2 / 3;
        align-items: flex-start;
        text-align: left;
    }
}


/* =========================
   TELEFON
========================= */

@media (max-width: 520px) {

    .premium-cart-page {
        padding: 52px 16px 65px;
    }

    .premium-cart-heading {
        margin-bottom: 28px;
    }

        .premium-cart-heading h1 {
            font-size: 38px;
        }

    .premium-cart-item {
        grid-template-columns: 82px 1fr;
        padding: 14px;
        gap: 14px;
    }

    .premium-cart-item-image {
        width: 82px;
        height: 82px;
    }

    .premium-cart-item-info h2 {
        font-size: 20px;
    }

    .premium-cart-summary {
        padding: 24px 20px;
    }

    .premium-cart-empty {
        padding: 48px 20px;
    }
}

/* =========================================
   PREMIUM SEPET - ÇAKIŞMA DÜZELTME
   MUTLAKA CSS DOSYASININ EN ALTINDA KALSIN
========================================= */

.premium-cart-page .premium-cart-summary {
    position: sticky !important;
    top: 20px !important;
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 30px !important;
    box-sizing: border-box !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 14px !important;
    background: #2F5A3A !important;
    color: #FFFFFF !important;
    overflow: hidden !important;
    box-shadow: 0 14px 32px rgba(31, 63, 42, 0.12) !important;
}


/* SİPARİŞ ÖZETİ KÜÇÜK YAZI */

.premium-cart-page .premium-cart-summary-small {
    display: block !important;
    width: 100% !important;
    margin: 0 0 8px !important;
    padding: 0 !important;
    color: #CFD9CC !important;
    font-family: Arial, sans-serif !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: 1.8px !important;
    text-align: left !important;
}


/* SEPET ÖZETİ BAŞLIK */

.premium-cart-page .premium-cart-summary h2 {
    display: block !important;
    width: 100% !important;
    margin: 0 0 28px !important;
    padding: 0 !important;
    color: #FFFDF7 !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 29px !important;
    font-weight: normal !important;
    line-height: 1.15 !important;
    text-align: left !important;
}


/* ÜRÜN TOPLAMI */

.premium-cart-page .premium-cart-summary-line {
    display: flex !important;
    width: 100% !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #DCE4D9 !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
}

    .premium-cart-page .premium-cart-summary-line span {
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        color: #DCE4D9 !important;
        font-size: 12px !important;
        white-space: nowrap !important;
    }

    .premium-cart-page .premium-cart-summary-line strong {
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        color: #FFFFFF !important;
        font-family: Arial, sans-serif !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        white-space: nowrap !important;
    }


/* AYIRICI */

.premium-cart-page .premium-cart-summary-divider {
    display: block !important;
    width: 100% !important;
    height: 1px !important;
    margin: 22px 0 !important;
    padding: 0 !important;
    background: rgba(255, 255, 255, 0.20) !important;
}


/* GENEL TOPLAM */

.premium-cart-page .premium-cart-summary-total {
    display: flex !important;
    width: 100% !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    gap: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
}

    .premium-cart-page .premium-cart-summary-total span {
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        color: #EEF2EB !important;
        font-family: Georgia, "Times New Roman", serif !important;
        font-size: 16px !important;
        line-height: 1.2 !important;
        white-space: nowrap !important;
    }

    .premium-cart-page .premium-cart-summary-total strong {
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        color: #FFFDF7 !important;
        font-family: Georgia, "Times New Roman", serif !important;
        font-size: 25px !important;
        font-weight: normal !important;
        line-height: 1 !important;
        text-align: right !important;
        white-space: nowrap !important;
    }


/* SİPARİŞİ TAMAMLA */

.premium-cart-page .premium-cart-checkout {
    display: flex !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 52px !important;
    margin: 28px 0 0 !important;
    padding: 0 18px !important;
    box-sizing: border-box !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid #FFFDF7 !important;
    border-radius: 8px !important;
    background: #FFFDF7 !important;
    color: #2F5A3A !important;
    font-family: Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    text-align: center !important;
    text-decoration: none !important;
}

    .premium-cart-page .premium-cart-checkout:hover {
        background: #EDE6D7 !important;
        color: #25482E !important;
    }


/* ALIŞVERİŞE DEVAM */

.premium-cart-page .premium-cart-continue {
    display: block !important;
    width: 100% !important;
    margin: 17px 0 0 !important;
    padding: 0 !important;
    color: #D8E0D5 !important;
    font-size: 11px !important;
    line-height: 1.4 !important;
    text-align: center !important;
    text-decoration: none !important;
}

    .premium-cart-page .premium-cart-continue:hover {
        color: #FFFFFF !important;
    }


/* ALT GÜVEN BİLGİSİ */

.premium-cart-page .premium-cart-guarantee {
    display: flex !important;
    width: 100% !important;
    align-items: flex-start !important;
    gap: 9px !important;
    margin: 23px 0 0 !important;
    padding: 19px 0 0 !important;
    box-sizing: border-box !important;
    border-top: 1px solid rgba(255, 255, 255, 0.18) !important;
}

    .premium-cart-page .premium-cart-guarantee span {
        display: block !important;
        flex: 0 0 auto !important;
        margin: 0 !important;
        padding: 0 !important;
        color: #DCCFAF !important;
        font-size: 14px !important;
    }

    .premium-cart-page .premium-cart-guarantee p {
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        color: #CBD5C8 !important;
        font-size: 10px !important;
        line-height: 1.6 !important;
        text-align: left !important;
    }


/* =========================================
   SEPET SAYFASI GRID DÜZELTME
========================================= */

.premium-cart-page .premium-cart-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 320px !important;
    gap: 30px !important;
    align-items: start !important;
}

.premium-cart-page .premium-cart-products {
    min-width: 0 !important;
}


/* TABLET */

@media (max-width: 1000px) {

    .premium-cart-page .premium-cart-layout {
        grid-template-columns: 1fr !important;
    }

    .premium-cart-page .premium-cart-summary {
        position: static !important;
    }
}


/* TELEFON */

@media (max-width: 520px) {

    .premium-cart-page .premium-cart-summary {
        padding: 24px 20px !important;
    }

        .premium-cart-page .premium-cart-summary h2 {
            font-size: 26px !important;
        }

    .premium-cart-page .premium-cart-summary-total strong {
        font-size: 22px !important;
    }
}

/* =========================================
   PREMIUM SİPARİŞ TAMAMLAMA SAYFASI
========================================= */

.premium-order-page {
    width: 100%;
    padding: 72px 24px 90px;
    box-sizing: border-box;
    background: #F5F1E7;
}

.premium-order-container {
    width: 100%;
    max-width: 1192px;
    margin: 0 auto;
}


/* =========================================
   SAYFA BAŞLIĞI
========================================= */

.premium-order-heading {
    margin-bottom: 38px;
}

    .premium-order-heading .small-title {
        margin: 0 0 10px;
        color: #2F5A3A;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 2px;
    }

    .premium-order-heading h1 {
        margin: 0 0 10px;
        color: #1F2A22;
        font-family: Georgia, "Times New Roman", serif;
        font-size: clamp(38px, 4vw, 52px);
        font-weight: normal;
        line-height: 1.05;
    }

    .premium-order-heading > p:last-child {
        margin: 0;
        color: #667066;
        font-size: 14px;
        line-height: 1.7;
    }


/* =========================================
   ANA YERLEŞİM
========================================= */

.premium-order-page .premium-order-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 350px !important;
    gap: 30px !important;
    align-items: start !important;
}


/* =========================================
   TESLİMAT FORM KARTI
========================================= */

.premium-order-page .premium-order-form {
    width: 100% !important;
    margin: 0 !important;
    padding: 34px !important;
    box-sizing: border-box !important;
    border: 1px solid #E0DDD3 !important;
    border-radius: 14px !important;
    background: #FFFDF7 !important;
    box-shadow: 0 8px 28px rgba(31, 42, 34, 0.05) !important;
}


/* FORM BAŞLIĞI */

.premium-order-form-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #E5E1D7;
}

.premium-order-step {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #2F5A3A;
    color: #FFFFFF;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;
}

.premium-order-form-heading p {
    margin: 0 0 4px;
    color: #7B837A;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.7px;
}

.premium-order-form-heading h2 {
    margin: 0 !important;
    color: #1F2A22 !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 26px !important;
    font-weight: normal !important;
}


/* =========================================
   FORM ALANLARI
========================================= */

.premium-order-page .premium-form-group {
    width: 100%;
    margin: 0 0 20px !important;
}

    .premium-order-page .premium-form-group label {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0 0 8px !important;
        color: #344137 !important;
        font-size: 11px !important;
        font-weight: 700 !important;
    }

        .premium-order-page .premium-form-group label span {
            color: #92988F;
            font-size: 9px;
            font-weight: normal;
        }


    /* INPUT / SELECT / TEXTAREA */

    .premium-order-page .premium-form-group input,
    .premium-order-page .premium-form-group select,
    .premium-order-page .premium-form-group textarea {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        border: 1px solid #D8D6CD !important;
        border-radius: 8px !important;
        background: #FFFFFF !important;
        color: #263126 !important;
        font-family: inherit !important;
        font-size: 13px !important;
        outline: none !important;
        transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .premium-order-page .premium-form-group input,
    .premium-order-page .premium-form-group select {
        min-height: 48px !important;
        padding: 0 14px !important;
    }

    .premium-order-page .premium-form-group textarea {
        min-height: 115px !important;
        padding: 13px 14px !important;
        resize: vertical;
    }


        /* PLACEHOLDER */

        .premium-order-page .premium-form-group input::placeholder,
        .premium-order-page .premium-form-group textarea::placeholder {
            color: #A1A69F;
        }


        /* FOCUS */

        .premium-order-page .premium-form-group input:focus,
        .premium-order-page .premium-form-group select:focus,
        .premium-order-page .premium-form-group textarea:focus {
            border-color: #2F5A3A !important;
            background: #FFFFFF !important;
            box-shadow: 0 0 0 3px rgba(47, 90, 58, 0.09) !important;
        }


    /* DISABLED İLÇE */

    .premium-order-page .premium-form-group select:disabled {
        background: #F1EFE8 !important;
        color: #969C94 !important;
        cursor: not-allowed;
    }


/* TELEFON YARDIM YAZISI */

.premium-form-help {
    display: block;
    margin-top: 7px;
    color: #858C84;
    font-size: 9px;
    line-height: 1.5;
}


/* =========================================
   İL / İLÇE YAN YANA
========================================= */

.premium-order-two-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

    .premium-order-two-columns .premium-form-group {
        min-width: 0;
    }


/* =========================================
   HATA
========================================= */

.premium-order-page .premium-order-error {
    width: 100%;
    margin: 0 0 18px !important;
    padding: 13px 15px !important;
    box-sizing: border-box;
    border: 1px solid #E3CACA !important;
    border-radius: 8px !important;
    background: #FFF2F2 !important;
    color: #8A3C3C !important;
    font-size: 12px !important;
}


/* =========================================
   SİPARİŞİ VER BUTONU
========================================= */

.premium-order-page .premium-order-submit {
    display: flex !important;
    width: 100% !important;
    min-height: 52px !important;
    margin: 8px 0 0 !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
    align-items: center !important;
    justify-content: space-between !important;
    border: 1px solid #2F5A3A !important;
    border-radius: 8px !important;
    background: #2F5A3A !important;
    color: #FFFFFF !important;
    font-family: inherit !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease !important;
}

    .premium-order-page .premium-order-submit:hover {
        background: #25482E !important;
        border-color: #25482E !important;
        transform: translateY(-1px);
    }


/* GÜVENLİK */

.premium-order-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 14px;
}

    .premium-order-security span {
        color: #2F5A3A;
        font-size: 12px;
    }

    .premium-order-security p {
        margin: 0;
        color: #7C847B;
        font-size: 9px;
    }


/* =========================================
   SAĞ SİPARİŞ ÖZETİ
========================================= */

.premium-order-page .premium-order-summary {
    position: sticky !important;
    top: 20px !important;
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    margin: 0 !important;
    padding: 30px !important;
    box-sizing: border-box !important;
    border: none !important;
    border-radius: 14px !important;
    background: #2F5A3A !important;
    color: #FFFFFF !important;
    overflow: hidden !important;
    box-shadow: 0 14px 32px rgba(31, 63, 42, 0.13) !important;
}


/* KÜÇÜK BAŞLIK */

.premium-order-summary-label {
    display: block;
    margin: 0 0 8px !important;
    color: #CDD8CA !important;
    font-family: Arial, sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.8px;
}


/* BAŞLIK */

.premium-order-page .premium-order-summary h2 {
    margin: 0 0 27px !important;
    color: #FFFDF7 !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 29px !important;
    font-weight: normal !important;
    line-height: 1.1 !important;
}


/* =========================================
   ÖZET ÜRÜNLER
========================================= */

.premium-order-products {
    display: flex;
    flex-direction: column;
}

.premium-order-page .premium-order-product {
    display: flex !important;
    width: 100% !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 18px !important;
    margin: 0 !important;
    padding: 16px 0 !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    background: transparent !important;
}

    .premium-order-page .premium-order-product:first-child {
        padding-top: 0 !important;
    }

.premium-order-product-info {
    min-width: 0;
}

    .premium-order-product-info strong {
        display: block;
        margin-bottom: 5px;
        color: #FFFDF7 !important;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 15px;
        font-weight: normal;
    }

    .premium-order-product-info p {
        margin: 0 !important;
        color: #C9D4C7 !important;
        font-size: 10px !important;
        line-height: 1.5 !important;
    }

.premium-order-product-price {
    flex: 0 0 auto;
    color: #FFFFFF !important;
    font-size: 12px !important;
    white-space: nowrap;
}


/* =========================================
   AYIRICI
========================================= */

.premium-order-summary-divider {
    width: 100%;
    height: 1px;
    margin: 22px 0;
    background: rgba(255, 255, 255, 0.23);
}


/* =========================================
   GENEL TOPLAM
========================================= */

.premium-order-page .premium-order-total {
    display: flex !important;
    width: 100% !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    gap: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

    .premium-order-page .premium-order-total span {
        color: #EDF2EA !important;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 16px !important;
        white-space: nowrap;
    }

    .premium-order-page .premium-order-total strong {
        color: #FFFDF7 !important;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 24px !important;
        font-weight: normal !important;
        line-height: 1 !important;
        white-space: nowrap;
    }


/* =========================================
   ÖZET ALT NOT
========================================= */

.premium-order-summary-note {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 25px;
    padding-top: 19px;
    border-top: 1px solid rgba(255, 255, 255, 0.17);
}

    .premium-order-summary-note span {
        color: #DCCFAF;
        font-size: 13px;
    }

    .premium-order-summary-note p {
        margin: 0;
        color: #C8D3C6;
        font-size: 10px;
        line-height: 1.6;
    }


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .premium-order-page .premium-order-layout {
        grid-template-columns: 1fr !important;
    }

    .premium-order-page .premium-order-summary {
        position: static !important;
    }
}


/* =========================================
   TELEFON
========================================= */

@media (max-width: 600px) {

    .premium-order-page {
        padding: 52px 16px 65px;
    }

    .premium-order-heading {
        margin-bottom: 28px;
    }

        .premium-order-heading h1 {
            font-size: 38px;
        }

    .premium-order-page .premium-order-form {
        padding: 22px 18px !important;
    }

    .premium-order-form-heading {
        margin-bottom: 26px;
    }

        .premium-order-form-heading h2 {
            font-size: 23px !important;
        }

    .premium-order-two-columns {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .premium-order-page .premium-order-summary {
        padding: 25px 20px !important;
    }

        .premium-order-page .premium-order-summary h2 {
            font-size: 26px !important;
        }

    .premium-order-page .premium-order-total strong {
        font-size: 21px !important;
    }
}

/* =========================================
   PREMIUM GİRİŞ SAYFASI
========================================= */

.premium-login-page {
    width: 100%;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 24px 85px;
    box-sizing: border-box;
    background: radial-gradient( circle at top left, rgba(47, 90, 58, 0.08), transparent 35% ), #F5F1E7;
}


/* KART */

.premium-login-card {
    width: 100%;
    max-width: 470px;
    margin: 0 !important;
    padding: 38px !important;
    box-sizing: border-box;
    border: 1px solid #DEDAD0 !important;
    border-radius: 16px !important;
    background: #FFFDF7 !important;
    box-shadow: 0 18px 45px rgba(31, 42, 34, 0.08) !important;
}


/* ÜST ALAN */

.premium-login-top {
    margin-bottom: 30px;
    text-align: center;
}


/* LOGO */

.premium-login-icon {
    width: 62px !important;
    height: 62px !important;
    margin: 0 auto 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background: #EDF1EA !important;
    color: #2F5A3A !important;
}

    .premium-login-icon svg {
        width: 34px !important;
        height: 34px !important;
    }


/* BAŞLIK */

.premium-login-heading span {
    display: block;
    margin-bottom: 8px;
    color: #2F5A3A;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.premium-login-heading h1 {
    margin: 0 0 12px !important;
    color: #1F2A22 !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 38px !important;
    font-weight: normal !important;
    line-height: 1.05 !important;
}

.premium-login-heading p {
    max-width: 350px;
    margin: 0 auto !important;
    color: #687168 !important;
    font-size: 13px !important;
    line-height: 1.7 !important;
}


/* =========================================
   FORM
========================================= */

.premium-login-form {
    width: 100%;
}

.premium-login-group {
    margin-bottom: 18px !important;
}

    .premium-login-group label {
        display: block !important;
        margin-bottom: 8px !important;
        color: #344137 !important;
        font-size: 11px !important;
        font-weight: 700 !important;
    }

    .premium-login-group input {
        width: 100% !important;
        min-height: 48px !important;
        padding: 0 14px !important;
        box-sizing: border-box !important;
        border: 1px solid #D7D5CC !important;
        border-radius: 8px !important;
        background: #FFFFFF !important;
        color: #263126 !important;
        font-family: inherit !important;
        font-size: 13px !important;
        outline: none !important;
        transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
    }

        .premium-login-group input::placeholder {
            color: #A2A7A0;
        }

        .premium-login-group input:focus {
            border-color: #2F5A3A !important;
            box-shadow: 0 0 0 3px rgba(47, 90, 58, 0.09) !important;
        }


/* =========================================
   HATA / BAŞARI
========================================= */

.premium-login-error {
    margin-bottom: 16px !important;
    color: #8A3C3C !important;
    font-size: 11px !important;
}

.premium-login-success {
    margin: 0 0 22px !important;
    padding: 13px 15px !important;
    border: 1px solid #CBDAC8 !important;
    border-radius: 8px !important;
    background: #F0F6EE !important;
    color: #2F5A3A !important;
    font-size: 12px !important;
}


/* =========================================
   GİRİŞ BUTONU
========================================= */

.premium-login-button {
    display: flex !important;
    width: 100% !important;
    min-height: 50px !important;
    margin: 6px 0 0 !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid #2F5A3A !important;
    border-radius: 8px !important;
    background: #2F5A3A !important;
    color: #FFFFFF !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: background 0.2s ease, transform 0.2s ease !important;
}

    .premium-login-button:hover {
        background: #25482E !important;
        transform: translateY(-1px);
    }


/* =========================================
   KAYIT ALANI
========================================= */

.premium-register-box {
    margin-top: 28px !important;
    padding-top: 23px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    border-top: 1px solid #E4E0D6 !important;
    color: #747D74 !important;
    font-size: 11px !important;
}

.premium-register-button {
    color: #2F5A3A !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

    .premium-register-button:hover {
        text-decoration: underline !important;
        text-underline-offset: 3px;
    }


/* ANA SAYFA */

.premium-login-back {
    display: block !important;
    margin-top: 22px !important;
    color: #7A8279 !important;
    font-size: 10px !important;
    text-align: center !important;
    text-decoration: none !important;
}

    .premium-login-back:hover {
        color: #2F5A3A !important;
    }


/* =========================================
   TELEFON
========================================= */

@media (max-width: 520px) {

    .premium-login-page {
        min-height: auto;
        padding: 45px 16px 60px;
    }

    .premium-login-card {
        padding: 28px 20px !important;
    }

    .premium-login-heading h1 {
        font-size: 34px !important;
    }

    .premium-register-box {
        flex-direction: column !important;
        gap: 5px !important;
    }
}

/* =========================================
   PREMIUM KAYIT OL SAYFASI
========================================= */

.premium-register-page {
    width: 100%;
    min-height: 760px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 24px 85px;
    box-sizing: border-box;
    background: radial-gradient( circle at top right, rgba(47, 90, 58, 0.08), transparent 35% ), #F5F1E7;
}


/* KART */

.premium-register-card {
    width: 100%;
    max-width: 560px;
    margin: 0 !important;
    padding: 38px !important;
    box-sizing: border-box;
    border: 1px solid #DEDAD0 !important;
    border-radius: 16px !important;
    background: #FFFDF7 !important;
    box-shadow: 0 18px 45px rgba(31, 42, 34, 0.08) !important;
}


/* ÜST ALAN */

.premium-register-top {
    margin-bottom: 30px;
    text-align: center;
}


/* LOGO */

.premium-register-icon {
    width: 62px !important;
    height: 62px !important;
    margin: 0 auto 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background: #EDF1EA !important;
    color: #2F5A3A !important;
}

    .premium-register-icon svg {
        width: 34px !important;
        height: 34px !important;
    }


/* BAŞLIK */

.premium-register-heading span {
    display: block;
    margin-bottom: 8px;
    color: #2F5A3A;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.premium-register-heading h1 {
    margin: 0 0 12px !important;
    color: #1F2A22 !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 38px !important;
    font-weight: normal !important;
    line-height: 1.05 !important;
}

.premium-register-heading p {
    max-width: 390px;
    margin: 0 auto !important;
    color: #687168 !important;
    font-size: 13px !important;
    line-height: 1.7 !important;
}


/* =========================================
   FORM
========================================= */

.premium-register-form {
    width: 100%;
}

.premium-register-group {
    margin-bottom: 18px !important;
}

    .premium-register-group label {
        display: block !important;
        margin-bottom: 8px !important;
        color: #344137 !important;
        font-size: 11px !important;
        font-weight: 700 !important;
    }

    .premium-register-group input {
        width: 100% !important;
        min-height: 48px !important;
        padding: 0 14px !important;
        box-sizing: border-box !important;
        border: 1px solid #D7D5CC !important;
        border-radius: 8px !important;
        background: #FFFFFF !important;
        color: #263126 !important;
        font-family: inherit !important;
        font-size: 13px !important;
        outline: none !important;
        transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
    }

        .premium-register-group input::placeholder {
            color: #A2A7A0;
        }

        .premium-register-group input:focus {
            border-color: #2F5A3A !important;
            box-shadow: 0 0 0 3px rgba(47, 90, 58, 0.09) !important;
        }


/* ŞİFRELER */

.premium-register-password-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

    .premium-register-password-grid .premium-register-group {
        min-width: 0;
    }


/* ŞİFRE NOTU */

.premium-register-password-note {
    margin: -5px 0 18px !important;
    color: #858C84 !important;
    font-size: 9px !important;
    line-height: 1.5 !important;
}


/* =========================================
   HATALAR
========================================= */

.premium-register-error {
    margin-bottom: 16px !important;
    color: #8A3C3C !important;
    font-size: 11px !important;
}

.premium-register-group .hata-mesaji {
    display: block;
    margin-top: 6px;
    color: #8A3C3C !important;
    font-size: 10px !important;
}


/* =========================================
   KAYIT BUTONU
========================================= */

.premium-register-submit {
    display: flex !important;
    width: 100% !important;
    min-height: 50px !important;
    margin: 4px 0 0 !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid #2F5A3A !important;
    border-radius: 8px !important;
    background: #2F5A3A !important;
    color: #FFFFFF !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: background 0.2s ease, transform 0.2s ease !important;
}

    .premium-register-submit:hover {
        background: #25482E !important;
        transform: translateY(-1px);
    }


/* =========================================
   GİRİŞ YÖNLENDİRME
========================================= */

.premium-register-login-box {
    margin-top: 28px !important;
    padding-top: 23px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    border-top: 1px solid #E4E0D6 !important;
    color: #747D74 !important;
    font-size: 11px !important;
}

.premium-register-login-link {
    color: #2F5A3A !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

    .premium-register-login-link:hover {
        text-decoration: underline !important;
        text-underline-offset: 3px;
    }


/* ANA SAYFA */

.premium-register-back {
    display: block !important;
    margin-top: 22px !important;
    color: #7A8279 !important;
    font-size: 10px !important;
    text-align: center !important;
    text-decoration: none !important;
}

    .premium-register-back:hover {
        color: #2F5A3A !important;
    }


/* =========================================
   TELEFON
========================================= */

@media (max-width: 600px) {

    .premium-register-page {
        min-height: auto;
        padding: 45px 16px 60px;
    }

    .premium-register-card {
        padding: 28px 20px !important;
    }

    .premium-register-heading h1 {
        font-size: 34px !important;
    }

    .premium-register-password-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .premium-register-login-box {
        flex-direction: column !important;
        gap: 5px !important;
    }
}

/* =========================================
   PREMIUM HESABIM / SİPARİŞLERİM SAYFASI
========================================= */

.premium-account-page {
    width: 100%;
    padding: 72px 24px 90px;
    box-sizing: border-box;
    background: #F5F1E7;
}

.premium-account-container {
    width: 100%;
    max-width: 1192px;
    margin: 0 auto;
}


/* =========================================
   SAYFA BAŞLIĞI
========================================= */

.premium-account-heading {
    margin-bottom: 34px;
}

.premium-account-heading-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.premium-account-kicker {
    margin: 0 0 9px;
    color: #2F5A3A;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.premium-account-heading h1 {
    margin: 0 !important;
    color: #1F2A22 !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: clamp(38px, 4vw, 52px) !important;
    font-weight: normal !important;
    line-height: 1.05 !important;
}

.premium-account-intro {
    max-width: 620px;
    margin: 12px 0 0 !important;
    color: #667066 !important;
    font-size: 13px !important;
    line-height: 1.7 !important;
}


/* ÇIKIŞ */

.premium-account-logout {
    min-height: 42px !important;
    padding: 0 18px !important;
    border: 1px solid #CFCBC1 !important;
    border-radius: 7px !important;
    background: #FFFDF7 !important;
    color: #2F5A3A !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease !important;
}

    .premium-account-logout:hover {
        background: #2F5A3A !important;
        border-color: #2F5A3A !important;
        color: #FFFFFF !important;
    }


/* =========================================
   HESAP KARTLARI
========================================= */

.premium-account-cards {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 22px !important;
    margin-bottom: 48px !important;
}

.premium-account-card {
    width: 100% !important;
    margin: 0 !important;
    padding: 28px !important;
    box-sizing: border-box !important;
    border: 1px solid #DFDCD2 !important;
    border-radius: 14px !important;
    background: #FFFDF7 !important;
    box-shadow: 0 8px 28px rgba(31, 42, 34, 0.05) !important;
}


/* KART BAŞLIĞI */

.premium-account-card-heading {
    margin-bottom: 24px !important;
    padding-bottom: 18px !important;
    border-bottom: 1px solid #E6E2D8 !important;
}

    .premium-account-card-heading span {
        display: block;
        margin-bottom: 6px;
        color: #2F5A3A !important;
        font-size: 8px !important;
        font-weight: 700 !important;
        letter-spacing: 1.7px;
    }

    .premium-account-card-heading h2 {
        margin: 0 !important;
        color: #1F2A22 !important;
        font-family: Georgia, "Times New Roman", serif !important;
        font-size: 25px !important;
        font-weight: normal !important;
    }


/* =========================================
   FORM ALANLARI
========================================= */

.premium-account-fields {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 15px !important;
}

.premium-account-field {
    margin: 0 !important;
}

    .premium-account-field label {
        display: block !important;
        margin-bottom: 7px !important;
        color: #39463C !important;
        font-size: 10px !important;
        font-weight: 700 !important;
    }

    .premium-account-field input {
        width: 100% !important;
        min-height: 44px !important;
        margin: 0 !important;
        padding: 0 13px !important;
        box-sizing: border-box !important;
        border: 1px solid #D7D5CC !important;
        border-radius: 7px !important;
        background: #FFFFFF !important;
        color: #263126 !important;
        font-size: 12px !important;
        outline: none !important;
        transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
    }

        .premium-account-field input:focus {
            border-color: #2F5A3A !important;
            box-shadow: 0 0 0 3px rgba(47, 90, 58, 0.08) !important;
        }

        .premium-account-field input[readonly] {
            background: #F0EEE7 !important;
            color: #7B837A !important;
            cursor: default;
        }


    /* HATA */

    .premium-account-error,
    .premium-account-field .hata-mesaji {
        color: #8A3C3C !important;
        font-size: 10px !important;
    }

    .premium-account-field .hata-mesaji {
        display: block !important;
        margin-top: 5px !important;
    }


/* BAŞARI */

.premium-account-success {
    margin: 0 0 18px !important;
    padding: 12px 14px !important;
    border: 1px solid #CBDAC8 !important;
    border-radius: 7px !important;
    background: #F0F6EE !important;
    color: #2F5A3A !important;
    font-size: 11px !important;
}


/* BUTON */

.premium-account-button {
    width: 100% !important;
    min-height: 45px !important;
    margin-top: 20px !important;
    border: 1px solid #2F5A3A !important;
    border-radius: 7px !important;
    background: #2F5A3A !important;
    color: #FFFFFF !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: background 0.2s ease, transform 0.2s ease !important;
}

    .premium-account-button:hover {
        background: #25482E !important;
        transform: translateY(-1px);
    }


/* =========================================
   SİPARİŞ GEÇMİŞİ BAŞLIĞI
========================================= */

.premium-orders-heading {
    margin-bottom: 20px;
}

    .premium-orders-heading span {
        display: block;
        margin-bottom: 6px;
        color: #2F5A3A;
        font-size: 8px;
        font-weight: 700;
        letter-spacing: 1.8px;
    }

    .premium-orders-heading h2 {
        margin: 0;
        color: #1F2A22;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 30px;
        font-weight: normal;
    }


/* =========================================
   SİPARİŞ LİSTESİ
========================================= */

.premium-orders-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
}

.premium-order-history-card {
    overflow: hidden;
    margin: 0 !important;
    border: 1px solid #DEDAD0 !important;
    border-radius: 14px !important;
    background: #FFFDF7 !important;
    box-shadow: 0 8px 26px rgba(31, 42, 34, 0.045) !important;
}


/* ÜST KISIM */

.premium-order-history-top {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
    padding: 22px 24px !important;
    border-bottom: 1px solid #E7E3DA !important;
    background: #FBF8F1 !important;
}

    .premium-order-history-top > div:first-child {
        display: flex;
        flex-direction: column;
    }

.premium-order-history-label {
    margin-bottom: 4px !important;
    color: #7A8579 !important;
    font-size: 8px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px;
}

.premium-order-history-top strong {
    color: #1F2A22 !important;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px !important;
    font-weight: normal !important;
}

.premium-order-history-date {
    margin-top: 5px !important;
    color: #848B83 !important;
    font-size: 9px !important;
}


/* DURUM */

.premium-order-status {
    padding: 8px 12px !important;
    border-radius: 999px !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    white-space: nowrap;
}


/* =========================================
   ÜRÜNLER
========================================= */

.premium-order-items {
    padding: 0 24px !important;
}

.premium-order-item-row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 100px 120px !important;
    gap: 18px !important;
    align-items: center !important;
    padding: 15px 0 !important;
    border-bottom: 1px solid #ECE8DE !important;
}

    .premium-order-item-row:last-child {
        border-bottom: none !important;
    }

    .premium-order-item-row span:first-child {
        color: #2B372E !important;
        font-size: 12px !important;
        font-weight: 600;
    }

    .premium-order-item-row span:nth-child(2) {
        color: #798178 !important;
        font-size: 10px !important;
    }

    .premium-order-item-row strong {
        color: #2F5A3A !important;
        font-size: 12px !important;
        text-align: right;
        white-space: nowrap;
    }


/* =========================================
   TESLİMAT BİLGİLERİ
========================================= */

.premium-order-address {
    margin: 0 24px 22px !important;
    padding: 20px !important;
    border-radius: 10px !important;
    background: #F3F0E8 !important;
}

    .premium-order-address h3 {
        margin: 0 0 16px !important;
        color: #1F2A22 !important;
        font-family: Georgia, "Times New Roman", serif !important;
        font-size: 17px !important;
        font-weight: normal !important;
    }

.premium-order-address-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 16px !important;
}

    .premium-order-address-grid > div {
        min-width: 0;
    }

    .premium-order-address-grid span {
        display: block !important;
        margin-bottom: 5px !important;
        color: #80877F !important;
        font-size: 8px !important;
        font-weight: 700 !important;
        letter-spacing: 0.8px;
        text-transform: uppercase;
    }

    .premium-order-address-grid strong {
        color: #354036 !important;
        font-size: 11px !important;
        font-weight: 600 !important;
        line-height: 1.55 !important;
    }

.premium-order-full-address {
    grid-column: 1 / -1 !important;
}


/* =========================================
   ALT TOPLAM
========================================= */

.premium-order-history-bottom {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 28px !important;
    padding: 18px 24px !important;
    border-top: 1px solid #E5E1D7 !important;
    background: #2F5A3A !important;
    color: #DCE4D9 !important;
}

    .premium-order-history-bottom span {
        color: #DCE4D9 !important;
        font-size: 10px !important;
    }

    .premium-order-history-bottom strong {
        margin-left: 4px;
        color: #FFFFFF !important;
        font-size: 12px !important;
    }


/* =========================================
   SİPARİŞ YOK
========================================= */

.premium-orders-empty {
    max-width: 620px !important;
    margin: 0 auto !important;
    padding: 56px 30px !important;
    box-sizing: border-box !important;
    border: 1px solid #DFDCD2 !important;
    border-radius: 14px !important;
    background: #FFFDF7 !important;
    text-align: center !important;
}

.premium-orders-empty-icon {
    width: 66px;
    height: 66px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #EDF1EA;
    color: #2F5A3A;
}

    .premium-orders-empty-icon svg {
        width: 29px;
        height: 29px;
    }

.premium-orders-empty h2 {
    margin: 0 0 9px !important;
    color: #1F2A22 !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 26px !important;
    font-weight: normal !important;
}

.premium-orders-empty p {
    margin: 0 0 24px !important;
    color: #6D756C !important;
    font-size: 12px !important;
}

.premium-orders-empty-button {
    min-width: 160px !important;
    min-height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 7px !important;
    background: #2F5A3A !important;
    color: #FFFFFF !important;
    text-decoration: none !important;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 850px) {

    .premium-account-cards {
        grid-template-columns: 1fr !important;
    }

    .premium-order-address-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}


/* =========================================
   TELEFON
========================================= */

@media (max-width: 600px) {

    .premium-account-page {
        padding: 52px 16px 65px;
    }

    .premium-account-heading-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .premium-account-heading h1 {
        font-size: 38px !important;
    }

    .premium-account-logout {
        width: 100% !important;
    }

    .premium-account-card {
        padding: 22px 18px !important;
    }

    .premium-order-history-top {
        align-items: flex-start !important;
        flex-direction: column !important;
        padding: 19px 18px !important;
    }

    .premium-order-item-row {
        grid-template-columns: 1fr auto !important;
        gap: 7px 14px !important;
    }

        .premium-order-item-row span:first-child {
            grid-column: 1 / -1;
        }

        .premium-order-item-row strong {
            text-align: right;
        }

    .premium-order-items {
        padding: 0 18px !important;
    }

    .premium-order-address {
        margin: 0 18px 18px !important;
        padding: 17px !important;
    }

    .premium-order-address-grid {
        grid-template-columns: 1fr !important;
    }

    .premium-order-history-bottom {
        align-items: flex-start !important;
        flex-direction: column !important;
        gap: 7px !important;
        padding: 16px 18px !important;
    }
}

/* =========================================
   PREMIUM ADMIN GİRİŞ
========================================= */

.premium-admin-login-page {
    width: 100%;
    min-height: 72vh;
    padding: 80px 24px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5F1E7;
}


/* KART */

.premium-admin-login-card {
    width: 100%;
    max-width: 430px;
    padding: 38px 36px;
    box-sizing: border-box;
    border: 1px solid #DDD9CF;
    border-radius: 15px;
    background: #FFFDF7;
    box-shadow: 0 14px 40px rgba(31, 42, 34, 0.07);
}


/* =========================================
   BAŞLIK
========================================= */

.premium-admin-login-header {
    margin-bottom: 28px;
    text-align: center;
}

.premium-admin-login-kicker {
    margin: 0 0 9px;
    color: #2F5A3A;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.premium-admin-login-header h1 {
    margin: 0;
    color: #1F2A22;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: normal;
    line-height: 1.15;
}

.premium-admin-login-description {
    max-width: 320px;
    margin: 12px auto 0;
    color: #737B73;
    font-size: 11px;
    line-height: 1.65;
}


/* =========================================
   HATA MESAJI
========================================= */

.premium-admin-login-error {
    margin-bottom: 20px;
    padding: 12px 14px;
    border: 1px solid #E0C7C3;
    border-radius: 7px;
    background: #F8ECEA;
    color: #87463F;
    font-size: 11px;
    line-height: 1.5;
}


/* =========================================
   FORM
========================================= */

.premium-admin-login-form {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.premium-admin-login-group {
    width: 100%;
}

    .premium-admin-login-group label {
        display: block;
        margin-bottom: 7px;
        color: #39463C;
        font-size: 10px;
        font-weight: 700;
    }

    .premium-admin-login-group input {
        display: block;
        width: 100%;
        height: 46px;
        margin: 0;
        padding: 0 13px;
        box-sizing: border-box;
        border: 1px solid #D5D3CA;
        border-radius: 7px;
        background: #FFFFFF;
        color: #263126;
        font-size: 12px;
        outline: none;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

        .premium-admin-login-group input:focus {
            border-color: #2F5A3A;
            box-shadow: 0 0 0 3px rgba(47, 90, 58, 0.08);
        }


/* =========================================
   GİRİŞ BUTONU
========================================= */

.premium-admin-login-button {
    width: 100%;
    height: 46px;
    margin-top: 4px;
    border: 1px solid #2F5A3A;
    border-radius: 7px;
    background: #2F5A3A;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

    .premium-admin-login-button:hover {
        background: #25482E;
        border-color: #25482E;
        transform: translateY(-1px);
    }

    .premium-admin-login-button:active {
        transform: translateY(0);
    }


/* =========================================
   MOBİL
========================================= */

@media (max-width: 520px) {

    .premium-admin-login-page {
        min-height: 68vh;
        padding: 50px 16px;
    }

    .premium-admin-login-card {
        padding: 30px 22px;
        border-radius: 12px;
    }

    .premium-admin-login-header h1 {
        font-size: 30px;
    }
}

/* =========================================
   PREMIUM ADMIN - ÜRÜNLER
========================================= */

.premium-admin-products-page {
    width: 100%;
    padding: 68px 24px 90px;
    box-sizing: border-box;
    background: #F5F1E7;
}

.premium-admin-container {
    width: 100%;
    max-width: 1192px;
    margin: 0 auto;
}


/* =========================================
   SAYFA BAŞLIĞI
========================================= */

.premium-admin-page-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 32px;
}

.premium-admin-kicker {
    margin: 0 0 8px;
    color: #2F5A3A;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.premium-admin-page-heading h1 {
    margin: 0;
    color: #1F2A22;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4vw, 50px);
    font-weight: normal;
    line-height: 1.05;
}

.premium-admin-page-description {
    max-width: 560px;
    margin: 11px 0 0;
    color: #6D766D;
    font-size: 12px;
    line-height: 1.7;
}


/* =========================================
   ÜST BUTONLAR
========================================= */

.premium-admin-page-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.premium-admin-primary-button,
.premium-admin-secondary-button {
    min-height: 42px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border-radius: 7px;
    font-size: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.premium-admin-primary-button {
    border: 1px solid #2F5A3A;
    background: #2F5A3A;
    color: #FFFFFF;
}

    .premium-admin-primary-button:hover {
        border-color: #25482E;
        background: #25482E;
        color: #FFFFFF;
        transform: translateY(-1px);
    }

.premium-admin-secondary-button {
    border: 1px solid #CBC8BE;
    background: #FFFDF7;
    color: #39463C;
}

    .premium-admin-secondary-button:hover {
        border-color: #2F5A3A;
        color: #2F5A3A;
    }


/* =========================================
   BAŞARI MESAJI
========================================= */

.premium-admin-success {
    margin-bottom: 22px;
    padding: 12px 15px;
    border: 1px solid #C9D9C7;
    border-radius: 8px;
    background: #EFF6ED;
    color: #2F5A3A;
    font-size: 11px;
    line-height: 1.5;
}


/* =========================================
   TABLO KARTI
========================================= */

.premium-admin-table-card {
    overflow: hidden;
    border: 1px solid #DEDAD0;
    border-radius: 14px;
    background: #FFFDF7;
    box-shadow: 0 8px 28px rgba(31, 42, 34, 0.045);
}

.premium-admin-table-top {
    min-height: 74px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-sizing: border-box;
    border-bottom: 1px solid #E6E2D8;
    background: #FBF8F1;
}

    .premium-admin-table-top span {
        display: block;
        margin-bottom: 4px;
        color: #2F5A3A;
        font-size: 8px;
        font-weight: 700;
        letter-spacing: 1.5px;
    }

    .premium-admin-table-top h2 {
        margin: 0;
        color: #1F2A22;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 21px;
        font-weight: normal;
    }

.premium-admin-count {
    padding: 7px 11px;
    border: 1px solid #D7D4CA;
    border-radius: 999px;
    background: #FFFDF7;
    color: #657065;
    font-size: 9px;
    font-weight: 700;
}


/* =========================================
   TABLO
========================================= */

.premium-admin-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.premium-admin-products-table {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
    border-spacing: 0;
    background: #FFFDF7;
}

    .premium-admin-products-table th {
        padding: 11px 14px;
        border-bottom: 1px solid #DFDCD2;
        background: #F3F0E8;
        color: #737D73;
        font-size: 8px;
        font-weight: 700;
        letter-spacing: 0.8px;
        text-align: left;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .premium-admin-products-table td {
        padding: 13px 14px;
        border-bottom: 1px solid #ECE8DF;
        color: #39443B;
        font-size: 11px;
        vertical-align: middle;
    }

    .premium-admin-products-table tbody tr:last-child td {
        border-bottom: none;
    }

    .premium-admin-products-table tbody tr {
        transition: background 0.15s ease;
    }

        .premium-admin-products-table tbody tr:hover {
            background: #FAF8F2;
        }


/* =========================================
   ÜRÜN RESMİ
========================================= */

.premium-admin-product-image-wrapper {
    width: 58px;
    height: 58px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E0DDD4;
    border-radius: 8px;
    background: #F3F0E8;
}

.premium-admin-product-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.premium-admin-product-no-image {
    padding: 5px;
    color: #858C84;
    font-size: 8px;
    line-height: 1.3;
    text-align: center;
}


/* =========================================
   ÜRÜN BİLGİLERİ
========================================= */

.premium-admin-product-id {
    color: #858C84;
    font-size: 9px;
    font-weight: 600;
}

.premium-admin-product-name {
    display: block;
    max-width: 210px;
    color: #253128;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.45;
}

.premium-admin-category {
    color: #687268;
    font-size: 10px;
}

.premium-admin-price {
    color: #2F5A3A;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.premium-admin-stock {
    display: inline-flex;
    min-width: 28px;
    min-height: 28px;
    align-items: center;
    justify-content: center;
    padding: 0 7px;
    box-sizing: border-box;
    border-radius: 6px;
    background: #F0EEE7;
    color: #3B473E;
    font-size: 10px;
    font-weight: 700;
}


/* =========================================
   AKTİF / PASİF
========================================= */

.premium-admin-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    padding: 7px 10px;
    box-sizing: border-box;
    border-radius: 999px;
    font-size: 8px;
    font-weight: 700;
}

.premium-admin-status-active {
    background: #E6F1E6;
    color: #2F6B3B;
}

.premium-admin-status-passive {
    background: #F5E7E5;
    color: #8A4942;
}


/* =========================================
   DÜZENLE
========================================= */

.premium-admin-edit-button {
    min-height: 34px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border: 1px solid #D0CEC5;
    border-radius: 6px;
    background: #FFFFFF;
    color: #2F5A3A;
    font-size: 9px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

    .premium-admin-edit-button:hover {
        border-color: #2F5A3A;
        background: #2F5A3A;
        color: #FFFFFF;
    }


/* =========================================
   ÜRÜN YOK
========================================= */

.premium-admin-empty {
    max-width: 600px;
    margin: 20px auto 0;
    padding: 52px 28px;
    box-sizing: border-box;
    border: 1px solid #DEDAD0;
    border-radius: 14px;
    background: #FFFDF7;
    text-align: center;
    box-shadow: 0 8px 28px rgba(31, 42, 34, 0.045);
}

.premium-admin-empty-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #EDF1EA;
    color: #2F5A3A;
}

    .premium-admin-empty-icon svg {
        width: 27px;
        height: 27px;
    }

.premium-admin-empty h2 {
    margin: 0 0 8px;
    color: #1F2A22;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: normal;
}

.premium-admin-empty p {
    margin: 0 0 22px;
    color: #707970;
    font-size: 11px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 850px) {

    .premium-admin-page-heading {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* =========================================
   MOBİL
========================================= */

@media (max-width: 600px) {

    .premium-admin-products-page {
        padding: 50px 16px 65px;
    }

    .premium-admin-page-heading h1 {
        font-size: 38px;
    }

    .premium-admin-page-actions {
        width: 100%;
        flex-direction: column;
    }

    .premium-admin-primary-button,
    .premium-admin-secondary-button {
        width: 100%;
    }

    .premium-admin-table-top {
        padding: 16px 17px;
    }

    .premium-admin-products-table th,
    .premium-admin-products-table td {
        padding-left: 11px;
        padding-right: 11px;
    }
}

/* =========================================
   PREMIUM ADMIN - YENİ ÜRÜN EKLE
========================================= */

.premium-admin-product-form-page {
    width: 100%;
    padding: 68px 24px 90px;
    box-sizing: border-box;
    background: #F5F1E7;
}

.premium-admin-form-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
}

    .premium-admin-form-heading h1 {
        margin: 0;
        color: #1F2A22;
        font-family: Georgia, "Times New Roman", serif;
        font-size: clamp(38px, 4vw, 50px);
        font-weight: normal;
        line-height: 1.05;
    }


/* =========================================
   FORM KARTI
========================================= */

.premium-admin-form-card {
    max-width: 820px;
    padding: 30px;
    box-sizing: border-box;
    border: 1px solid #DEDAD0;
    border-radius: 14px;
    background: #FFFDF7;
    box-shadow: 0 8px 28px rgba(31, 42, 34, 0.045);
}

.premium-admin-form-card-heading {
    margin-bottom: 26px;
    padding-bottom: 18px;
    border-bottom: 1px solid #E5E1D7;
}

    .premium-admin-form-card-heading span {
        display: block;
        margin-bottom: 6px;
        color: #2F5A3A;
        font-size: 8px;
        font-weight: 700;
        letter-spacing: 1.7px;
    }

    .premium-admin-form-card-heading h2 {
        margin: 0;
        color: #1F2A22;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 24px;
        font-weight: normal;
    }


/* =========================================
   FORM
========================================= */

.premium-admin-product-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.premium-admin-form-group {
    width: 100%;
}

    .premium-admin-form-group label {
        display: block;
        margin-bottom: 7px;
        color: #39463C;
        font-size: 10px;
        font-weight: 700;
    }

    .premium-admin-form-group input,
    .premium-admin-form-group textarea {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0 13px;
        box-sizing: border-box;
        border: 1px solid #D5D3CA;
        border-radius: 7px;
        background: #FFFFFF;
        color: #263126;
        font-size: 12px;
        font-family: inherit;
        outline: none;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .premium-admin-form-group input {
        min-height: 44px;
    }

    .premium-admin-form-group textarea {
        min-height: 120px;
        padding-top: 12px;
        padding-bottom: 12px;
        resize: vertical;
        line-height: 1.6;
    }

        .premium-admin-form-group input:focus,
        .premium-admin-form-group textarea:focus {
            border-color: #2F5A3A;
            box-shadow: 0 0 0 3px rgba(47, 90, 58, 0.08);
        }


/* =========================================
   FİYAT + STOK
========================================= */

.premium-admin-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}


/* =========================================
   DOSYA YÜKLEME
========================================= */

.premium-admin-file-area {
    padding: 14px;
    border: 1px dashed #C9C7BE;
    border-radius: 9px;
    background: #F8F5EE;
}

    .premium-admin-file-area input[type="file"] {
        min-height: auto;
        padding: 0;
        border: none;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .premium-admin-file-area small {
        display: block;
        margin-top: 9px;
        color: #7A8279;
        font-size: 9px;
        line-height: 1.5;
    }


/* =========================================
   VALIDATION
========================================= */

.premium-admin-validation-error,
.premium-admin-form-error {
    color: #8A3C3C;
    font-size: 10px;
}

.premium-admin-validation-error {
    display: block;
    margin-top: 5px;
}

.premium-admin-form-error:not(:empty) {
    padding: 12px 14px;
    border: 1px solid #E1C8C4;
    border-radius: 7px;
    background: #F8ECEA;
}


/* =========================================
   AKTİF ÜRÜN
========================================= */

.premium-admin-checkbox-area {
    padding: 16px;
    border: 1px solid #E0DDD3;
    border-radius: 9px;
    background: #F7F4EC;
}

.premium-admin-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 0;
    cursor: pointer;
}

    .premium-admin-checkbox-label input {
        width: 16px;
        height: 16px;
        margin-top: 2px;
        accent-color: #2F5A3A;
        flex-shrink: 0;
    }

.premium-admin-checkbox-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .premium-admin-checkbox-text strong {
        color: #2E3A30;
        font-size: 10px;
        font-weight: 700;
    }

    .premium-admin-checkbox-text small {
        color: #747D74;
        font-size: 9px;
        line-height: 1.5;
    }


/* =========================================
   KAYDET
========================================= */

.premium-admin-form-submit {
    width: 100%;
    min-height: 46px;
    margin-top: 3px;
    border: 1px solid #2F5A3A;
    border-radius: 7px;
    background: #2F5A3A;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

    .premium-admin-form-submit:hover {
        background: #25482E;
        border-color: #25482E;
        transform: translateY(-1px);
    }


/* =========================================
   MOBİL
========================================= */

@media (max-width: 700px) {

    .premium-admin-product-form-page {
        padding: 50px 16px 65px;
    }

    .premium-admin-form-heading {
        align-items: flex-start;
        flex-direction: column;
    }

        .premium-admin-form-heading h1 {
            font-size: 38px;
        }

        .premium-admin-form-heading .premium-admin-secondary-button {
            width: 100%;
        }

    .premium-admin-form-card {
        padding: 22px 18px;
    }

    .premium-admin-form-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   PREMIUM ADMIN - ÜRÜN DÜZENLE
   MEVCUT ÜRÜN GÖRSELİ
========================================= */

.premium-admin-current-image-area {
    padding: 18px;
    border: 1px solid #E0DDD3;
    border-radius: 10px;
    background: #F7F4EC;
}

.premium-admin-current-image-heading {
    margin-bottom: 14px;
}

    .premium-admin-current-image-heading span {
        display: block;
        margin-bottom: 5px;
        color: #2F5A3A;
        font-size: 8px;
        font-weight: 700;
        letter-spacing: 1.5px;
    }

    .premium-admin-current-image-heading strong {
        display: block;
        color: #1F2A22;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 18px;
        font-weight: normal;
    }

.premium-admin-current-image-box {
    width: 170px;
    height: 170px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #D8D5CB;
    border-radius: 10px;
    background: #FFFFFF;
}

.premium-admin-current-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* MOBİL */

@media (max-width: 600px) {

    .premium-admin-current-image-box {
        width: 140px;
        height: 140px;
    }
}


/* =========================================
   PREMIUM ADMIN - SİPARİŞLER
========================================= */

.premium-admin-orders-page {
    width: 100%;
    padding: 68px 24px 90px;
    box-sizing: border-box;
    background: #F5F1E7;
}


/* =========================================
   ÇIKIŞ BUTONU
========================================= */

.premium-admin-logout-form {
    margin: 0;
}

.premium-admin-logout-button {
    min-height: 42px;
    padding: 0 17px;
    border: 1px solid #D6C5C1;
    border-radius: 7px;
    background: #FFFDF7;
    color: #87463F;
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

    .premium-admin-logout-button:hover {
        border-color: #87463F;
        background: #87463F;
        color: #FFFFFF;
    }


/* =========================================
   FİLTRE KARTI
========================================= */

.premium-admin-filter-card {
    margin-bottom: 24px;
    padding: 20px;
    box-sizing: border-box;
    border: 1px solid #DEDAD0;
    border-radius: 12px;
    background: #FFFDF7;
    box-shadow: 0 6px 20px rgba(31, 42, 34, 0.035);
}

.premium-admin-filter-form {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(190px, 240px) auto;
    gap: 14px;
    align-items: end;
}

.premium-admin-filter-search,
.premium-admin-filter-status {
    min-width: 0;
}

    .premium-admin-filter-search label,
    .premium-admin-filter-status label {
        display: block;
        margin-bottom: 7px;
        color: #39463C;
        font-size: 9px;
        font-weight: 700;
    }

    .premium-admin-filter-search input,
    .premium-admin-filter-status select {
        display: block;
        width: 100%;
        height: 42px;
        margin: 0;
        padding: 0 12px;
        box-sizing: border-box;
        border: 1px solid #D6D3CA;
        border-radius: 7px;
        background: #FFFFFF;
        color: #2D382F;
        font-family: inherit;
        font-size: 10px;
        outline: none;
    }

        .premium-admin-filter-search input:focus,
        .premium-admin-filter-status select:focus {
            border-color: #2F5A3A;
            box-shadow: 0 0 0 3px rgba(47, 90, 58, 0.08);
        }


/* =========================================
   FİLTRE BUTONLARI
========================================= */

.premium-admin-filter-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.premium-admin-filter-button,
.premium-admin-filter-clear {
    min-height: 42px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border-radius: 7px;
    font-size: 9px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.premium-admin-filter-button {
    border: 1px solid #2F5A3A;
    background: #2F5A3A;
    color: #FFFFFF;
    cursor: pointer;
}

    .premium-admin-filter-button:hover {
        border-color: #25482E;
        background: #25482E;
    }

.premium-admin-filter-clear {
    border: 1px solid #D0CEC5;
    background: #FFFFFF;
    color: #5D675E;
}

    .premium-admin-filter-clear:hover {
        border-color: #2F5A3A;
        color: #2F5A3A;
    }


/* =========================================
   SİPARİŞ TABLOSU
========================================= */

.premium-admin-orders-table {
    width: 100%;
    min-width: 1420px;
    border-collapse: collapse;
    border-spacing: 0;
    background: #FFFDF7;
}

    .premium-admin-orders-table th {
        padding: 11px 13px;
        border-bottom: 1px solid #DFDCD2;
        background: #F3F0E8;
        color: #737D73;
        font-size: 8px;
        font-weight: 700;
        letter-spacing: 0.7px;
        text-align: left;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .premium-admin-orders-table td {
        padding: 14px 13px;
        border-bottom: 1px solid #ECE8DF;
        color: #39443B;
        font-size: 10px;
        line-height: 1.45;
        vertical-align: middle;
    }

    .premium-admin-orders-table tbody tr:last-child td {
        border-bottom: none;
    }

    .premium-admin-orders-table tbody tr {
        transition: background 0.15s ease;
    }

        .premium-admin-orders-table tbody tr:hover {
            background: #FAF8F2;
        }


/* =========================================
   SİPARİŞ BİLGİLERİ
========================================= */

.premium-admin-order-id {
    color: #818981;
    font-size: 9px;
    font-weight: 700;
    white-space: nowrap;
}

.premium-admin-order-customer {
    display: block;
    min-width: 120px;
    color: #253128;
    font-size: 10px;
    font-weight: 700;
}

.premium-admin-order-phone,
.premium-admin-order-location {
    color: #626D63;
    white-space: nowrap;
}

.premium-admin-order-address-text {
    display: block;
    min-width: 180px;
    max-width: 250px;
    color: #59635A;
    line-height: 1.5;
}

.premium-admin-order-note {
    display: block;
    min-width: 120px;
    max-width: 210px;
    color: #6B746B;
    line-height: 1.5;
}

.premium-admin-order-count {
    display: inline-flex;
    min-width: 28px;
    min-height: 28px;
    padding: 0 7px;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border-radius: 6px;
    background: #F0EEE7;
    color: #39463C;
    font-size: 9px;
    font-weight: 700;
}

.premium-admin-order-total {
    color: #2F5A3A;
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
}

.premium-admin-order-date {
    color: #737C73;
    font-size: 9px;
    white-space: nowrap;
}


/* =========================================
   SİPARİŞ DURUMLARI
========================================= */

.premium-admin-order-status {
    display: inline-flex;
    min-height: 27px;
    padding: 0 10px;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border-radius: 999px;
    font-size: 8px;
    font-weight: 700;
    white-space: nowrap;
}

.premium-admin-order-new {
    background: #EAF1E8;
    color: #2F5A3A;
}

.premium-admin-order-preparing {
    background: #F6EFD9;
    color: #806B28;
}

.premium-admin-order-shipped {
    background: #E7EFF4;
    color: #3C6278;
}

.premium-admin-order-completed {
    background: #E4F0E6;
    color: #2D693A;
}

.premium-admin-order-cancelled {
    background: #F5E6E4;
    color: #894942;
}

.premium-admin-order-default {
    background: #ECECE8;
    color: #626962;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .premium-admin-filter-form {
        grid-template-columns: 1fr 1fr;
    }

    .premium-admin-filter-actions {
        grid-column: 1 / -1;
    }
}


/* =========================================
   MOBİL
========================================= */

@media (max-width: 600px) {

    .premium-admin-orders-page {
        padding: 50px 16px 65px;
    }

        .premium-admin-orders-page .premium-admin-page-heading {
            align-items: flex-start;
            flex-direction: column;
        }

        .premium-admin-orders-page .premium-admin-page-actions {
            width: 100%;
            flex-direction: column;
        }

            .premium-admin-orders-page
            .premium-admin-page-actions
            .premium-admin-secondary-button,
            .premium-admin-logout-form,
            .premium-admin-logout-button {
                width: 100%;
            }

    .premium-admin-filter-card {
        padding: 16px;
    }

    .premium-admin-filter-form {
        grid-template-columns: 1fr;
    }

    .premium-admin-filter-actions {
        grid-column: auto;
        flex-direction: column;
    }

    .premium-admin-filter-button,
    .premium-admin-filter-clear {
        width: 100%;
    }
}

/* =========================================
   PREMIUM ADMIN - SİPARİŞ DETAY
========================================= */

.premium-admin-order-detail-page {
    width: 100%;
    padding: 68px 24px 90px;
    box-sizing: border-box;
    background: #F5F1E7;
}


/* =========================================
   HATA MESAJI
========================================= */

.premium-admin-detail-error {
    margin-bottom: 22px;
    padding: 12px 15px;
    border: 1px solid #E1C8C4;
    border-radius: 8px;
    background: #F8ECEA;
    color: #87463F;
    font-size: 11px;
    line-height: 1.5;
}


/* =========================================
   SİPARİŞ ÜST BİLGİ
========================================= */

.premium-admin-order-detail-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 20px;
    padding: 20px 24px;
    box-sizing: border-box;
    border: 1px solid #DEDAD0;
    border-radius: 12px;
    background: #2F5A3A;
}

.premium-admin-detail-kicker {
    display: block;
    margin-bottom: 5px;
    color: #CBD8C8;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.6px;
}

.premium-admin-order-detail-top h2 {
    margin: 0;
    color: #FFFDF7;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: normal;
}

.premium-admin-order-detail-top p {
    margin: 6px 0 0;
    color: #D9E1D7;
    font-size: 9px;
}

.premium-admin-detail-current-status {
    flex-shrink: 0;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    color: #FFFFFF;
    font-size: 9px;
    font-weight: 700;
}


/* =========================================
   İKİLİ KART ALANI
========================================= */

.premium-admin-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
    gap: 20px;
    margin-bottom: 20px;
}


/* =========================================
   DETAY KARTLARI
========================================= */

.premium-admin-detail-card {
    min-width: 0;
    padding: 25px;
    box-sizing: border-box;
    border: 1px solid #DEDAD0;
    border-radius: 13px;
    background: #FFFDF7;
    box-shadow: 0 7px 24px rgba(31, 42, 34, 0.04);
}

.premium-admin-detail-card-heading {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E6E2D8;
}

    .premium-admin-detail-card-heading span {
        display: block;
        margin-bottom: 5px;
        color: #2F5A3A;
        font-size: 8px;
        font-weight: 700;
        letter-spacing: 1.5px;
    }

    .premium-admin-detail-card-heading h2 {
        margin: 0;
        color: #1F2A22;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 21px;
        font-weight: normal;
    }


/* =========================================
   MÜŞTERİ BİLGİLERİ
========================================= */

.premium-admin-detail-info-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
}

.premium-admin-detail-row {
    min-width: 0;
    padding: 13px 0;
    border-bottom: 1px solid #ECE8DF;
}

    .premium-admin-detail-row span {
        display: block;
        margin-bottom: 5px;
        color: #7B837B;
        font-size: 8px;
        font-weight: 700;
        letter-spacing: 0.6px;
        text-transform: uppercase;
    }

    .premium-admin-detail-row strong {
        display: block;
        color: #303C33;
        font-size: 11px;
        font-weight: 600;
        line-height: 1.55;
        overflow-wrap: anywhere;
    }

.premium-admin-detail-row-full {
    grid-column: 1 / -1;
}


/* =========================================
   DURUM GÜNCELLEME
========================================= */

.premium-admin-status-card {
    align-self: start;
}

.premium-admin-status-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

    .premium-admin-status-form select {
        display: block;
        width: 100%;
        height: 44px;
        padding: 0 12px;
        box-sizing: border-box;
        border: 1px solid #D5D3CA;
        border-radius: 7px;
        background: #FFFFFF;
        color: #2D382F;
        font-family: inherit;
        font-size: 11px;
        outline: none;
    }

        .premium-admin-status-form select:focus {
            border-color: #2F5A3A;
            box-shadow: 0 0 0 3px rgba(47, 90, 58, 0.08);
        }


/* =========================================
   SİPARİŞ EDİLEN ÜRÜNLER
========================================= */

.premium-admin-order-products-card {
    margin-bottom: 20px;
}

.premium-admin-detail-products {
    display: flex;
    flex-direction: column;
}

.premium-admin-detail-product-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #ECE8DF;
}

    .premium-admin-detail-product-row:first-child {
        padding-top: 0;
    }

    .premium-admin-detail-product-row:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

    .premium-admin-detail-product-row > div {
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

        .premium-admin-detail-product-row > div strong {
            color: #29352C;
            font-size: 11px;
            font-weight: 700;
        }

        .premium-admin-detail-product-row > div span {
            color: #7A827A;
            font-size: 9px;
        }

.premium-admin-detail-product-total {
    flex-shrink: 0;
    color: #2F5A3A;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.premium-admin-detail-empty-text {
    margin: 0;
    color: #737C73;
    font-size: 11px;
}


/* =========================================
   SİPARİŞ ÖZETİ
========================================= */

.premium-admin-detail-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid #DEDAD0;
    border-radius: 12px;
    background: #FFFDF7;
    box-shadow: 0 7px 24px rgba(31, 42, 34, 0.04);
}

.premium-admin-detail-summary-item {
    min-width: 0;
    padding: 20px 22px;
    box-sizing: border-box;
    border-right: 1px solid #E4E0D6;
}

    .premium-admin-detail-summary-item:last-child {
        border-right: none;
    }

    .premium-admin-detail-summary-item span {
        display: block;
        margin-bottom: 6px;
        color: #7B837B;
        font-size: 8px;
        font-weight: 700;
        letter-spacing: 0.6px;
        text-transform: uppercase;
    }

    .premium-admin-detail-summary-item strong {
        display: block;
        color: #263128;
        font-size: 12px;
        font-weight: 700;
    }

.premium-admin-detail-grand-total {
    background: #2F5A3A;
}

    .premium-admin-detail-grand-total span {
        color: #CBD8C8;
    }

    .premium-admin-detail-grand-total strong {
        color: #FFFFFF;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 20px;
        font-weight: normal;
    }


/* =========================================
   TABLET
========================================= */

@media (max-width: 850px) {

    .premium-admin-detail-grid {
        grid-template-columns: 1fr;
    }

    .premium-admin-detail-summary {
        grid-template-columns: 1fr;
    }

    .premium-admin-detail-summary-item {
        border-right: none;
        border-bottom: 1px solid #E4E0D6;
    }

        .premium-admin-detail-summary-item:last-child {
            border-bottom: none;
        }
}


/* =========================================
   MOBİL
========================================= */

@media (max-width: 600px) {

    .premium-admin-order-detail-page {
        padding: 50px 16px 65px;
    }

    .premium-admin-order-detail-top {
        align-items: flex-start;
        flex-direction: column;
        padding: 18px;
    }

    .premium-admin-detail-card {
        padding: 20px 18px;
    }

    .premium-admin-detail-info-list {
        grid-template-columns: 1fr;
    }

    .premium-admin-detail-row-full {
        grid-column: auto;
    }

    .premium-admin-detail-product-row {
        align-items: flex-start;
    }

    .premium-admin-detail-summary-item {
        padding: 17px 18px;
    }
}

/* =========================================
   PREMIUM ADMIN - MÜŞTERİLER
========================================= */

.premium-admin-customers-page {
    width: 100%;
    padding: 68px 24px 90px;
    box-sizing: border-box;
    background: #F5F1E7;
}


/* =========================================
   MÜŞTERİ ÖZET KARTI
========================================= */

.premium-admin-customer-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
    padding: 20px 24px;
    border: 1px solid #DEDAD0;
    border-radius: 12px;
    background: #2F5A3A;
}

    .premium-admin-customer-summary > div {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .premium-admin-customer-summary span {
        color: #CBD8C8;
        font-size: 8px;
        font-weight: 700;
        letter-spacing: 1.4px;
    }

    .premium-admin-customer-summary strong {
        color: #FFFFFF;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 32px;
        font-weight: normal;
    }

    .premium-admin-customer-summary p {
        margin: 0;
        color: #DDE5DA;
        font-size: 10px;
    }


/* =========================================
   MÜŞTERİ TABLOSU
========================================= */

.premium-admin-customers-table {
    width: 100%;
    min-width: 850px;
    border-collapse: collapse;
    border-spacing: 0;
    background: #FFFDF7;
}

    .premium-admin-customers-table th {
        padding: 12px 14px;
        border-bottom: 1px solid #DFDCD2;
        background: #F3F0E8;
        color: #737D73;
        font-size: 8px;
        font-weight: 700;
        letter-spacing: 0.7px;
        text-align: left;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .premium-admin-customers-table td {
        padding: 15px 14px;
        border-bottom: 1px solid #ECE8DF;
        color: #39443B;
        font-size: 10px;
        line-height: 1.45;
        vertical-align: middle;
    }

    .premium-admin-customers-table tbody tr:last-child td {
        border-bottom: none;
    }

    .premium-admin-customers-table tbody tr {
        transition: background 0.15s ease;
    }

        .premium-admin-customers-table tbody tr:hover {
            background: #FAF8F2;
        }


/* =========================================
   MÜŞTERİ BİLGİLERİ
========================================= */

.premium-admin-customer-id {
    color: #818981;
    font-size: 9px;
    font-weight: 700;
    white-space: nowrap;
}

.premium-admin-customer-name {
    display: block;
    color: #253128;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.premium-admin-customer-email {
    color: #59645B;
    font-size: 10px;
}

.premium-admin-customer-phone {
    color: #626D63;
    white-space: nowrap;
}

.premium-admin-customer-date {
    color: #737C73;
    font-size: 9px;
    white-space: nowrap;
}


/* =========================================
   AKTİF / PASİF DURUM
========================================= */

.premium-admin-customer-status {
    display: inline-flex;
    min-width: 56px;
    min-height: 27px;
    padding: 0 10px;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border-radius: 999px;
    font-size: 8px;
    font-weight: 700;
}

.premium-admin-customer-active {
    background: #E4F0E6;
    color: #2D693A;
}

.premium-admin-customer-passive {
    background: #F1E7E5;
    color: #894942;
}


/* =========================================
   MOBİL
========================================= */

@media (max-width: 600px) {

    .premium-admin-customers-page {
        padding: 50px 16px 65px;
    }

        .premium-admin-customers-page .premium-admin-page-heading {
            align-items: flex-start;
            flex-direction: column;
        }

        .premium-admin-customers-page .premium-admin-page-actions {
            width: 100%;
            flex-direction: column;
        }

            .premium-admin-customers-page
            .premium-admin-page-actions
            .premium-admin-secondary-button {
                width: 100%;
            }

    .premium-admin-customer-summary {
        align-items: flex-start;
        flex-direction: column;
        padding: 18px;
    }
}

/* =========================================
   PREMIUM BİLGİ SAYFALARI
========================================= */

.premium-info-page {
    width: 100%;
    padding: 72px 24px 90px;
    box-sizing: border-box;
    background: #F5F1E7;
}

.premium-info-container {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}

.premium-info-heading {
    margin-bottom: 30px;
}

.premium-info-kicker {
    margin: 0 0 8px;
    color: #2F5A3A;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.premium-info-heading h1 {
    margin: 0;
    color: #1F2A22;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 54px);
    font-weight: normal;
    line-height: 1.05;
}

.premium-info-intro {
    max-width: 680px;
    margin: 16px 0 0;
    color: #6E776F;
    font-size: 12px;
    line-height: 1.8;
}

.premium-info-card {
    padding: 34px;
    box-sizing: border-box;
    border: 1px solid #DEDAD0;
    border-radius: 14px;
    background: #FFFDF7;
    box-shadow: 0 8px 28px rgba(31, 42, 34, 0.045);
}

.premium-info-section {
    padding: 0 0 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #E8E4DA;
}

    .premium-info-section:last-of-type {
        margin-bottom: 0;
    }

    .premium-info-section h2 {
        margin: 0 0 10px;
        color: #2F5A3A;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 21px;
        font-weight: normal;
    }

    .premium-info-section p {
        margin: 0 0 10px;
        color: #4E5A50;
        font-size: 11px;
        line-height: 1.8;
    }

        .premium-info-section p:last-child {
            margin-bottom: 0;
        }

.premium-info-note {
    margin-top: 28px;
    padding: 20px;
    border: 1px solid #DAD7CD;
    border-radius: 10px;
    background: #F7F4EC;
}

    .premium-info-note strong {
        display: block;
        margin-bottom: 6px;
        color: #1F2A22;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 18px;
        font-weight: normal;
    }

    .premium-info-note p {
        margin: 0;
        color: #667067;
        font-size: 10px;
        line-height: 1.7;
    }


/* MOBİL */

@media (max-width: 600px) {

    .premium-info-page {
        padding: 50px 16px 65px;
    }

    .premium-info-card {
        padding: 22px 18px;
    }

    .premium-info-heading h1 {
        font-size: 38px;
    }

    .premium-info-section h2 {
        font-size: 19px;
    }
}

/* =========================================
   FOOTER - 5 SÜTUN AYNI HİZADA
========================================= */

.store-footer-container {
    display: grid !important;
    grid-template-columns: 1.6fr 0.9fr 0.9fr 1.25fr 1fr !important;
    gap: 50px !important;
    align-items: start !important;
}

.store-footer-brand,
.store-footer-column,
.store-footer-contact,
.store-footer-important {
    grid-column: auto !important;
    grid-row: auto !important;
    margin-top: 0 !important;
}


/* TABLET */

@media (max-width: 1100px) {

    .store-footer-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 40px !important;
    }
}


/* TELEFON */

@media (max-width: 600px) {

    .store-footer-container {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
}
/* =========================================================
   BAHÇEMDEN - ULTRA PREMIUM HERO
========================================================= */

.hero.store-hero {
    width: 100%;
    max-width: 1580px;
    min-height: 0 !important;
    margin: 42px auto 78px !important;
    padding: 0 32px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr) !important;
    gap: 54px !important;
    align-items: stretch;
    background: transparent !important;
    color: #1F2A22 !important;
    overflow: visible !important;
}


/* =========================
   SOL İÇERİK
========================= */

.store-hero .hero-content {
    max-width: none !important;
    min-width: 0;
    padding: 52px 8px 38px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* ÜST MİNİ BAŞLIK */

.premium-hero-kicker {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
}

    .premium-hero-kicker span {
        color: #927A51;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 3.4px;
        white-space: nowrap;
    }

    .premium-hero-kicker i {
        display: block;
        width: 128px;
        height: 1px;
        background: linear-gradient( 90deg, #B9A57D, rgba(185, 165, 125, 0) );
    }


/* =========================
   ANA BAŞLIK
========================= */

.store-hero h1 {
    margin: 0 !important;
    color: #1F2A22 !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: clamp(55px, 4.9vw, 82px) !important;
    font-weight: 400 !important;
    line-height: 0.98 !important;
    letter-spacing: -3.4px !important;
}

    .store-hero h1 em {
        display: inline-block;
        color: #386F43 !important;
        font-style: italic;
        font-weight: 400 !important;
    }


/* =========================
   AÇIKLAMA
========================= */

.store-hero .description {
    max-width: 620px !important;
    margin: 34px 0 0 !important;
    color: #687268 !important;
    font-size: 17px !important;
    line-height: 1.85 !important;
}


/* =========================
   BUTONLAR
========================= */

.store-hero .hero-buttons {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch;
    gap: 16px !important;
    margin-top: 38px !important;
}


    /* İKİ BUTON AYNI BOY */

    .store-hero .hero-buttons .button,
    .store-hero .hero-buttons .hero-secondary-button {
        width: 220px !important;
        height: 58px !important;
        min-height: 58px !important;
        margin: 0 !important;
        padding: 0 22px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        box-sizing: border-box;
        border-radius: 7px !important;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 14px !important;
        font-weight: 700 !important;
        line-height: 1 !important;
        text-decoration: none !important;
        transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease !important;
    }


        /* Eski otomatik oku kapat */

        .store-hero .hero-buttons .button::after,
        .store-hero .hero-buttons .hero-secondary-button::after {
            display: none !important;
            content: none !important;
        }


/* YEŞİL BUTON */

.store-hero .premium-hero-primary {
    border: 1px solid #2F5A3A !important;
    background: #2F5A3A !important;
    color: #FFFDF7 !important;
    box-shadow: 0 12px 25px rgba(47, 90, 58, 0.14);
}

    .store-hero .premium-hero-primary:hover {
        background: #25482E !important;
        border-color: #25482E !important;
        transform: translateY(-2px);
        box-shadow: 0 16px 28px rgba(47, 90, 58, 0.19);
    }


/* ÇERÇEVELİ BUTON */

.store-hero .hero-secondary-button {
    border: 1px solid #2F5A3A !important;
    background: rgba(255, 253, 247, 0.3) !important;
    color: #2F5A3A !important;
}

    .store-hero .hero-secondary-button:hover {
        background: #FFFDF7 !important;
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(31, 42, 34, 0.07);
    }


/* BUTON OKLARI */

.premium-button-arrow {
    font-size: 18px;
    font-weight: 400;
    transition: transform 0.2s ease;
}

.store-hero .hero-buttons a:hover .premium-button-arrow {
    transform: translateX(4px);
}


/* =========================
   GÜVEN ALANI
========================= */

.store-hero .hero-guven {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0 !important;
    margin-top: 48px !important;
    border-top: 1px solid #DDD8CA;
    border-bottom: 1px solid #DDD8CA;
}


/* KART GÖRÜNÜMÜNÜ KALDIR */

.store-hero .hero-guven-item {
    position: relative;
    min-width: 0;
    padding: 21px 17px !important;
    display: flex !important;
    align-items: center !important;
    gap: 13px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
}


    /* AYIRICI */

    .store-hero .hero-guven-item:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 20%;
        right: 0;
        width: 1px;
        height: 60%;
        background: #DDD8CA;
    }


/* İKON */

.store-hero .hero-guven-icon {
    flex: 0 0 44px !important;
    width: 44px !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background: #EEE7D5 !important;
    color: #2F5A3A !important;
}

    .store-hero .hero-guven-icon svg {
        width: 23px;
        height: 23px;
    }


/* GÜVEN YAZILARI */

.store-hero .hero-guven-item strong {
    display: block;
    color: #273128 !important;
    font-size: 12px !important;
    font-weight: 700;
    line-height: 1.3;
}

.store-hero .hero-guven-item small {
    display: block;
    margin-top: 4px !important;
    color: #80867D !important;
    font-size: 10px !important;
    line-height: 1.3;
}


/* =========================
   ALT İMZA
========================= */

.premium-hero-footnote {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 34px;
    color: #A28658;
}

    .premium-hero-footnote span {
        font-family: Georgia, "Times New Roman", serif;
        font-size: 15px;
        font-style: italic;
        letter-spacing: 0.3px;
    }

    .premium-hero-footnote i {
        display: block;
        width: 100px;
        height: 1px;
        background: #CBB991;
    }


/* =========================================================
   SAĞ GÖRSEL
========================================================= */

.store-hero .hero-visual {
    position: relative !important;
    min-width: 0;
    min-height: 675px !important;
    overflow: hidden !important;
    border-radius: 24px !important;
    background: #DDD8CA;
    box-shadow: 0 22px 55px rgba(31, 42, 34, 0.12), 0 3px 8px rgba(31, 42, 34, 0.06);
}


    /* RESİM */

    .store-hero .hero-visual > img {
        position: absolute !important;
        inset: 0;
        display: block;
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        object-fit: cover !important;
        object-position: center center !important;
        transition: transform 0.8s ease;
    }

    .store-hero .hero-visual:hover > img {
        transform: scale(1.025);
    }


    /* KARARTMA */

    .store-hero .hero-visual::after {
        display: none !important;
    }

.store-hero .hero-image-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient( 180deg, rgba(12, 20, 13, 0.02) 30%, rgba(12, 20, 13, 0.12) 58%, rgba(12, 20, 13, 0.77) 100% );
    pointer-events: none;
}


/* =========================
   SAĞ ÜST ROZET
========================= */

.store-hero .hero-image-badge {
    position: absolute !important;
    top: 28px !important;
    right: 28px !important;
    z-index: 3;
    width: 112px !important;
    height: 112px !important;
    padding: 12px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(175, 148, 96, 0.72) !important;
    outline: 5px solid rgba(255, 253, 247, 0.82);
    outline-offset: -9px;
    border-radius: 50% !important;
    background: rgba(255, 253, 247, 0.96) !important;
    color: #2F5A3A !important;
    text-align: center;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.16) !important;
}

.store-hero .hero-badge-leaf {
    margin: 0 0 3px !important;
    color: #386F43;
    font-size: 9px !important;
}

.store-hero .hero-image-badge strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 13px !important;
    font-weight: normal !important;
    letter-spacing: 1.8px !important;
}

.store-hero .hero-image-badge small {
    margin-top: 2px !important;
    font-size: 7px !important;
    font-weight: 700;
    letter-spacing: 1.4px !important;
}

.store-hero .hero-image-badge i {
    width: 25px;
    height: 1px;
    margin: 7px 0 5px;
    background: #B9A57D;
}

.store-hero .hero-image-badge b {
    font-size: 6px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #A08658;
}


/* =========================
   FOTOĞRAF ALT YAZISI
========================= */

.store-hero .hero-image-caption {
    position: absolute !important;
    left: 42px !important;
    bottom: 42px !important;
    z-index: 3;
    color: #FFFDF7 !important;
}

.hero-caption-kicker {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 17px;
}

.store-hero .hero-caption-kicker span {
    margin: 0 !important;
    color: #E7D5AF;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px !important;
    font-weight: 700;
    letter-spacing: 2.8px !important;
}

.hero-caption-kicker i {
    display: block;
    width: 90px;
    height: 1px;
    background: rgba(218, 193, 147, 0.75);
}

.store-hero .hero-image-caption strong {
    display: block;
    margin: 0 !important;
    color: #FFFDF7 !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 43px !important;
    font-weight: 400 !important;
    line-height: 1.03 !important;
    letter-spacing: -1.2px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .hero.store-hero {
        grid-template-columns: 1fr 1fr !important;
        gap: 30px !important;
        padding: 0 24px !important;
    }

    .store-hero h1 {
        font-size: 54px !important;
    }

    .store-hero .hero-content {
        padding: 35px 0 !important;
    }

    .store-hero .hero-guven {
        grid-template-columns: 1fr !important;
        border-bottom: 0;
    }

    .store-hero .hero-guven-item {
        border-bottom: 1px solid #DDD8CA !important;
    }

        .store-hero .hero-guven-item::after {
            display: none;
        }

    .store-hero .hero-visual {
        min-height: 620px !important;
    }
}


/* =========================================================
   MOBİL
========================================================= */

@media (max-width: 760px) {

    .hero.store-hero {
        width: 100%;
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        margin: 20px auto 55px !important;
        padding: 0 16px !important;
    }


    .store-hero .hero-content {
        padding: 30px 2px 0 !important;
    }


    .premium-hero-kicker {
        margin-bottom: 22px;
    }

        .premium-hero-kicker span {
            font-size: 9px;
            letter-spacing: 2.5px;
        }

        .premium-hero-kicker i {
            width: 68px;
        }


    .store-hero h1 {
        font-size: clamp(43px, 13vw, 61px) !important;
        line-height: 1.01 !important;
        letter-spacing: -2px !important;
    }


    .store-hero .description {
        margin-top: 24px !important;
        font-size: 15px !important;
        line-height: 1.7 !important;
    }


    /* BUTONLAR */

    .store-hero .hero-buttons {
        flex-direction: column !important;
        gap: 10px !important;
        margin-top: 30px !important;
    }

        .store-hero .hero-buttons .button,
        .store-hero .hero-buttons .hero-secondary-button {
            width: 100% !important;
            height: 54px !important;
            min-height: 54px !important;
        }


    /* GÜVEN */

    .store-hero .hero-guven {
        grid-template-columns: 1fr !important;
        margin-top: 32px !important;
        border-bottom: 0;
    }

    .store-hero .hero-guven-item {
        padding: 16px 4px !important;
        border-bottom: 1px solid #DDD8CA !important;
    }


    .premium-hero-footnote {
        margin-top: 24px;
    }


    /* GÖRSEL */

    .store-hero .hero-visual {
        min-height: 480px !important;
        margin: 0 !important;
        border-radius: 18px !important;
    }

    .store-hero .hero-image-caption {
        left: 24px !important;
        bottom: 27px !important;
    }

        .store-hero .hero-image-caption strong {
            font-size: 32px !important;
        }


    /* ROZET */

    .store-hero .hero-image-badge {
        top: 18px !important;
        right: 18px !important;
        width: 88px !important;
        height: 88px !important;
    }

        .store-hero .hero-image-badge strong {
            font-size: 10px !important;
        }
}

/* =========================================
   HERO FOTOĞRAF SLIDER
========================================= */

.premium-hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.premium-hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1.2s ease, transform 6s ease;
}

    .premium-hero-slide.active {
        opacity: 1;
        transform: scale(1);
    }


/* Overlay ve yazılar fotoğrafın üzerinde kalsın */

.store-hero .hero-image-overlay {
    z-index: 1;
}

.store-hero .hero-image-caption {
    z-index: 3;
}

.store-hero .hero-image-badge {
    z-index: 3;
}

#hero-urun-adi {
    transition: opacity 0.25s ease;
}