﻿:root {
    --alv-red: #ca1010;
    --alv-green: #5fa51b;
    --alv-dark: #1f1f1f;
    --alv-text: #4b4b4b;
    --alv-soft-bg: #f7f5f2;
    --alv-border: #eeeeee;
}

body {
    font-family: 'Arial', sans-serif;
    color: var(--alv-text);
    background: #fff;
    font-size: 15px;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--alv-dark);
    font-weight: 700;
    letter-spacing: -0.3px;
}

p {
    font-size: 16px;
    line-height: 1.75;
}

a {
    transition: all .25s ease;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--alv-dark);
}

.btn-danger,
.account-btn,
.profile-save-btn,
.about-btn {
    background: var(--alv-red) !important;
    border-color: var(--alv-red) !important;
    color: #fff !important;
}

    .btn-danger:hover,
    .account-btn:hover,
    .profile-save-btn:hover,
    .about-btn:hover {
        background: #a90d0d !important;
        border-color: #a90d0d !important;
    }



































.product-wrapper {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,.07);
    transition: all .25s ease;
    /*height: 100%;*/
}

    .product-wrapper:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 40px rgba(89,223,19,.15);
    }

.product-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-content {
    padding: 18px 14px 22px;
}

    .product-content h4,
    .product-title h4 {
        font-size: 18px;
        font-weight: 700;
        min-height: 44px;
    }

.product-sale-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--alv-red);
}

.product-old-price {
    font-size: 16px;
    color: #888;
    text-decoration: line-through;
    margin-left: 6px;
}

.product-content .btn,
.product-action .btn {
    border-radius: 50px;
    padding: 9px 22px;
    font-weight: 700;
}























@media (min-width: 768px) and (max-width: 1199px) {
    .container {
        max-width: 94%;
    }

    .slider-content h1 {
        font-size: 46px;
    }

    .product-img img {
        height: 200px;
    }

    .product-content h4 {
        font-size: 17px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 28px;
    }

    .slider-content h1 {
        font-size: 32px;
    }

    .product-img img {
        height: 190px;
    }
}
























.welcome-modal {
    border-radius: 28px;
   /* border: 14px solid #f0f0f8;*/
    padding: 30px;
    text-align: center;
    position: relative;
}

.welcome-close {
    position: absolute;
    right: 18px;
    top: 12px;
    border: 0;
    background: transparent;
    font-size: 28px;
    cursor: pointer;
}

.welcome-logo img {
    max-width: 95px;
    margin-bottom: 15px;
}

.welcome-modal h3 {
    color: #b54057;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 25px;
}

.welcome-banner img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 28px;
}

.welcome-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-bottom: 25px;

}

.welcome-btn {
    flex: 1;
    padding: 14px 24px;
    border-radius: 30px;
    font-weight: 700;
    text-align: center;
}

    .welcome-btn.primary {
        background: #599845;
        color: #fff;
        border-color: #ffffff00;
    }
    .welcome-btn.primary2 {
        background: #b54057;
        color: #fff;
        border-color: #ffffff00;
    }

    .welcome-btn.outline {
        border-color: #ffffff00;
        border: 1px solid #b54057;
        color: #b54057;
    }

.welcome-guest {
    color: #444;
    font-weight: 500;
}

.welcome-modal {
    animation: fadeInUp .4s ease;
}

@keyframes fadeInUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}



@media (max-width: 768px) {
    .welcome-modal {
        border-radius: 0;
       /* height: 100vh;*/
    }
}













.auth-modal {
    border-radius: 24px;
    padding: 34px;
    text-align: center;
    position: relative;
}

    .auth-modal h3 {
        font-size: 28px;
        font-weight: 800;
        color: #222;
        margin-bottom: 8px;
    }

    .auth-modal p {
        color: #666;
        font-size: 15px;
        margin-bottom: 22px;
    }

    .auth-modal .form-control {
        height: 46px;
        border-radius: 10px;
    }

.auth-links {
    display: flex;
    justify-content: space-between;
    margin-top: 18px;
}

    .auth-links a {
        color: #ca1010;
        font-weight: 700;
    }





    /*Shopping Card Button*/
.shopping-cart-btn {
    margin-top: 23px;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
}

    .shopping-cart-btn a {
        margin-bottom: 15px;
    }

    .shopping-cart-btn a {
        background-color: #519f10;
        border: 1px solid #519f10;
        color: #fff;
        display: block;
        font-size: 12px;
        font-weight: 500;
        padding: 14px 10px 12px;
        text-align: center;
        text-transform: uppercase;
        transition: all 0.3s ease 0s;
        width: 45%;
        display: inline-block;
        float: left;
        margin-right: 15px;
    }

        .shopping-cart-btn a:last-child {
            margin: 0;
        }

        .shopping-cart-btn a:hover {
            background-color: transparent;
            color: #000;
            border: 1px solid #000;
        }



















/*
Sepet sayfası */
.cart-modern-area {
   /* background: #f7f5f2;*/
}

.cart-modern-title {
    margin-top: 30px;
    margin-bottom: 30px;
}

    .cart-modern-title h2 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 6px;
    }

    .cart-modern-title p {
        color: #666;
    }

.cart-empty-box,
.cart-product-card,
.cart-summary-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0px 1px 17px 0px rgb(42 112 33 / 25%);
}

.cart-empty-box {
    padding: 45px;
    text-align: center;
}

.cart-product-card {
    display: flex;
    gap: 18px;
    padding: 18px;
    margin-bottom: 18px;
    align-items: center;
}

.cart-product-img img {
    width: 130px;
    height: 100px;
    object-fit: cover;
    border-radius: 14px;
}

.cart-product-info {
    flex: 1;
}

    .cart-product-info h4 {
        font-size: 21px;
        font-weight: 800;
        margin-bottom: 8px;
    }

.cart-extras {
    margin-bottom: 10px;
}

    .cart-extras span {
        display: inline-block;
        background: #f1f6ec;
        color: #4f8618;
        padding: 5px 10px;
        border-radius: 20px;
        margin: 0 5px 5px 0;
        font-size: 13px;
        font-weight: 600;
    }

.cart-product-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    color: #555;
    font-size: 14px;
}

    .cart-product-meta strong {
        color: #ca1010;
    }

.cart-product-action {
    min-width: 70px;
    text-align: right;
}

.btn-cart-remove {
    display: inline-block;
    background: #ca1010;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 700;
}

    .btn-cart-remove:hover {
        color: #fff;
        background: #a90d0d;
    }

.cart-summary-card {
    padding: 28px;
    position: sticky;
    top: 20px;
}

    .cart-summary-card h3 {
        font-size: 28px;
        font-weight: 800;
        margin-bottom: 22px;
    }

.summary-row,
.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 13px 0;
    border-bottom: 1px solid #eee;
}

.summary-total {
    border-bottom: 0;
    font-size: 22px;
    font-weight: 800;
    color: #ca1010;
    margin-top: 8px;
    margin-bottom: 18px;
}

.btn-cart-primary,
.btn-cart-outline,
.btn-cart-clear {
    display: inline-block;
    text-align: center;
    border-radius: 10px;
    padding: 13px 22px;
    font-weight: 800;
    margin-top: 10px;
}

.btn-cart-primary {
    background: #ca1010;
    color: #fff;
}

    .btn-cart-primary:hover {
        background: #a90d0d;
        color: #fff;
    }

.btn-cart-outline {
    border: 1px solid #5fa51b;
    color: #5fa51b;
    background: #fff;
}

    .btn-cart-outline:hover {
        background: #5fa51b;
        color: #fff;
    }

.btn-cart-clear {
    background: #555;
    color: #fff;
}

    .btn-cart-clear:hover {
        background: #333;
        color: #fff;
    }

.full {
    width: 100%;
}

@media (max-width: 767px) {
    .cart-product-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-product-img img {
        width: 100%;
        height: 190px;
    }

    .cart-product-action {
        width: 100%;
        text-align: left;
    }

    .cart-modern-title h2 {
        font-size: 32px;
    }
}






/* Checkout */

.checkout-modern-area {
   /* background: #f7f5f2;*/
}

.checkout-title {
    margin-top: 30px;
    margin-bottom: 30px;
}

    .checkout-title h2 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 6px;
    }

    .checkout-title p {
        color: #666;
    }

.checkout-form-card,
.checkout-summary-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 14px 35px rgba(0,0,0,.07);
    padding: 30px;
}

    .checkout-form-card label {
        font-weight: 700;
        color: #333;
    }

    .checkout-form-card .form-control {
        min-height: 48px;
        border-radius: 10px;
        border: 1px solid #e3e3e3;
        padding: 10px 14px;
    }

.checkout-login-warning {
    background: #fff4e5;
    border: 1px solid #ffd79a;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 18px;
}

    .checkout-login-warning p {
        margin: 5px 0 10px;
        font-size: 14px;
    }

    .checkout-login-warning a {
        display: inline-block;
        background: #ca1010;
        color: #fff;
        padding: 7px 14px;
        border-radius: 7px;
        margin-right: 6px;
        font-weight: 700;
    }

.checkout-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn-checkout-primary,
.btn-checkout-secondary {
    display: inline-block;
    border: 0;
    border-radius: 10px;
    padding: 13px 24px;
    font-weight: 800;
    cursor: pointer;
    text-align: center;
}

.btn-checkout-primary {
    background: #ca1010;
    color: #fff;
}

    .btn-checkout-primary:hover {
        background: #a90d0d;
        color: #fff;
    }

    .btn-checkout-primary:disabled {
        opacity: .5;
        cursor: not-allowed;
    }

.btn-checkout-secondary {
    background: #555;
    color: #fff;
}

    .btn-checkout-secondary:hover {
        background: #333;
        color: #fff;
    }

.checkout-summary-card {
    position: sticky;
    top: 20px;
}

    .checkout-summary-card h3 {
        font-size: 30px;
        font-weight: 800;
        margin-bottom: 24px;
    }

.checkout-summary-item {
    border-bottom: 1px solid #eee;
    padding: 14px 0;
}

.summary-product-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 16px;
}

    .summary-product-top strong {
        color: #222;
    }

    .summary-product-top span {
        color: #ca1010;
        font-weight: 800;
        white-space: nowrap;
    }

.summary-extras {
    margin-top: 7px;
}

    .summary-extras span {
        display: block;
        font-size: 13px;
        color: #5fa51b;
        font-weight: 600;
        margin-top: 3px;
    }

.checkout-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 22px;
    padding-top: 18px;
    font-size: 24px;
    font-weight: 800;
    color: #ca1010;
}

@media (max-width: 991px) {
    .checkout-summary-card {
        margin-top: 25px;
        position: static;
    }
}

@media (max-width: 767px) {
    .checkout-title h2 {
        font-size: 32px;
    }

    .checkout-form-card,
    .checkout-summary-card {
        padding: 22px;
    }

    .checkout-actions a,
    .checkout-actions button {
        width: 100%;
    }
}



.order-type-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.order-type-btn {
    flex: 1;
    text-align: center;
    padding: 18px 10px;
    border-radius: 14px;
    background: #f1f1f1;
    cursor: pointer;
    transition: all .25s ease;
    font-weight: 700;
    color: #555;
}

    .order-type-btn i {
        font-size: 24px;
        display: block;
        margin-bottom: 6px;
    }

    .order-type-btn:hover {
        background: #e8e8e8;
    }

    .order-type-btn.active {
        background: linear-gradient(135deg, #6a11cb, #2575fc);
        color: #fff;
        box-shadow: 0 8px 20px rgba(0,0,0,.15);
    }




.order-type-buttons {
    display: flex;
    gap: 14px;
    margin-top: 8px;
    margin-bottom: 20px;
}

.order-type-btn {
    flex: 1;
    background: #f3f3f3;
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 18px 10px;
    text-align: center;
    cursor: pointer;
    transition: all .25s ease;
    user-select: none;
}

    .order-type-btn:hover {
        transform: translateY(-2px);
        background: #fff;
        border-color: #d9d9d9;
        box-shadow: 0 10px 22px rgba(0,0,0,.08);
    }

    .order-type-btn.active {
        background: linear-gradient(135deg, #5fa51b, #86c83d);
        color: #fff;
        box-shadow: 0 14px 28px rgba(95,165,27,.28);
    }

        .order-type-btn.active small {
            color: rgba(255,255,255,.85);
        }

.order-type-icon {
    display: block;
    font-size: 30px;
    margin-bottom: 8px;
}

.order-type-btn strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
}

.order-type-btn small {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #777;
}

@media (max-width: 767px) {
    .order-type-buttons {
        flex-direction: column;
    }
}





/*Sipariş Alındı*/
.order-success-area {
    /*background: #f7f5f2;*/
}

.order-success-card {
    background: #fff;
    border-radius: 20px;
    padding: 50px 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
    max-width: 520px;
    margin: auto;
}

.success-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #5fa51b, #86c83d);
    color: #fff;
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 20px;
}

.order-success-card h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
}

.order-success-card p {
    color: #666;
    margin-bottom: 25px;
}

.order-no-box {
    background: #f1f6ec;
    border-radius: 14px;
    padding: 16px;
    font-size: 14px;
    color: #555;
    margin-bottom: 25px;
}

    .order-no-box strong {
        display: block;
        font-size: 22px;
        color: #ca1010;
        margin-top: 5px;
    }

.order-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-success-primary,
.btn-success-outline {
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 800;
    display: inline-block;
}

.btn-success-primary {
    background: #ca1010;
    color: #fff;
}

    .btn-success-primary:hover {
        background: #a90d0d;
        color: #fff;
    }

.btn-success-outline {
    border: 2px solid #5fa51b;
    color: #5fa51b;
    background: #fff;
}

    .btn-success-outline:hover {
        background: #5fa51b;
        color: #fff;
    }





   /* Sipariş Takibi*/

.order-track-area {
    background: #f7f5f2;
}

.order-track-card {
    max-width: 760px;
    margin: auto;
    background: #fff;
    border-radius: 22px;
    padding: 45px 30px;
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
    text-align: center;
}

    .order-track-card h2 {
        font-size: 38px;
        font-weight: 800;
        margin-bottom: 8px;
    }

.track-status-box {
    background: #f1f6ec;
    border-radius: 16px;
    padding: 18px;
    margin: 28px 0;
}

    .track-status-box span {
        color: #666;
        font-size: 14px;
    }

    .track-status-box h3 {
        color: #ca1010;
        font-size: 28px;
        margin: 5px 0 0;
    }

.track-steps {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin: 35px 0;
}

.track-step {
    flex: 1;
    background: #f3f3f3;
    border-radius: 16px;
    padding: 18px 8px;
    opacity: .45;
    transition: all .25s ease;
}

    .track-step.active {
        opacity: 1;
        background: linear-gradient(135deg, #5fa51b, #86c83d);
        color: #fff;
        box-shadow: 0 12px 28px rgba(95,165,27,.25);
    }

.step-icon {
    font-size: 30px;
    margin-bottom: 8px;
}

.track-step span {
    font-weight: 800;
    font-size: 14px;
}

.track-home-btn {
    display: inline-block;
    background: #ca1010;
    color: #fff;
    padding: 12px 26px;
    border-radius: 10px;
    font-weight: 800;
}

    .track-home-btn:hover {
        background: #a90d0d;
        color: #fff;
    }

@media (max-width: 767px) {
    .track-steps {
        flex-direction: column;
    }
}

















/*Siparişlerim*/
.orders-modern-area {
    /*background: #f7f5f2;*/
}

.orders-title {
    margin-top: 30px;
    margin-bottom: 30px;
}

    .orders-title h2 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 6px;
    }

    .orders-title p {
        color: #666;
    }

.orders-empty-box,
.order-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 14px 35px rgba(0,0,0,.07);
}

.orders-empty-box {
    padding: 45px;
    text-align: center;
}

.order-card {
    padding: 24px;
    margin-bottom: 18px;
}

.order-card-top {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: flex-start;
    border-bottom: 1px solid #eee;
    padding-bottom: 16px;
    margin-bottom: 18px;
}

.order-label {
    color: #777;
    font-size: 13px;
    font-weight: 700;
}

.order-card h4 {
    font-size: 22px;
    font-weight: 800;
    margin: 4px 0 0;
}

.order-status {
    padding: 8px 13px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.status-new {
    background: #ffe8e8;
    color: #ca1010;
}

.status-preparing {
    background: #fff4d8;
    color: #b57400;
}

.status-road {
    background: #e7f1ff;
    color: #1f65b7;
}

.status-delivered {
    background: #eaf7e4;
    color: #4f8618;
}

.status-cancel {
    background: #eee;
    color: #555;
}

.status-default {
    background: #f1f1f1;
    color: #555;
}

.order-card-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 20px;
}

    .order-card-info div {
        background: #fafafa;
        border-radius: 12px;
        padding: 13px;
    }

    .order-card-info span {
        display: block;
        font-size: 12px;
        color: #777;
        margin-bottom: 4px;
        font-weight: 700;
    }

    .order-card-info strong {
        color: #222;
    }

.order-price {
    color: #ca1010 !important;
    font-size: 18px;
}

.order-card-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.orders-primary-btn,
.orders-outline-btn {
    display: inline-block;
    padding: 11px 18px;
    border-radius: 10px;
    font-weight: 800;
    text-align: center;
}

.orders-primary-btn {
    background: #ca1010;
    color: #fff;
}

    .orders-primary-btn:hover {
        background: #a90d0d;
        color: #fff;
    }

.orders-outline-btn {
    border: 2px solid #5fa51b;
    color: #5fa51b;
    background: #fff;
}

    .orders-outline-btn:hover {
        background: #5fa51b;
        color: #fff;
    }

@media (max-width: 767px) {
    .orders-title h2 {
        font-size: 32px;
    }

    .order-card-top {
        flex-direction: column;
    }

    .order-card-info {
        grid-template-columns: 1fr;
    }

    .order-card-actions a {
        width: 100%;
    }
}



/*  Sipariş Detaylarım  */
.order-detail-area {
    background: #f7f5f2;
}

.order-detail-title {
    margin-top: 30px;
    margin-bottom: 30px;
}

    .order-detail-title h2 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 6px;
    }

    .order-detail-title p {
        color: #666;
    }

.order-detail-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 14px 35px rgba(0,0,0,.07);
    padding: 28px;
    margin-bottom: 22px;
}

    .order-detail-card h3 {
        font-size: 26px;
        font-weight: 800;
        margin-bottom: 22px;
    }

.detail-info-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

    .detail-info-row span {
        color: #777;
        font-weight: 700;
    }

    .detail-info-row strong {
        color: #222;
        text-align: right;
    }

.order-status {
    padding: 6px 11px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.status-new {
    background: #ffe8e8;
    color: #ca1010 !important;
}

.status-preparing {
    background: #fff4d8;
    color: #b57400 !important;
}

.status-road {
    background: #e7f1ff;
    color: #1f65b7 !important;
}

.status-delivered {
    background: #eaf7e4;
    color: #4f8618 !important;
}

.status-cancel {
    background: #eee;
    color: #555 !important;
}

.status-default {
    background: #f1f1f1;
    color: #555 !important;
}

.detail-total-box {
    background: #f1f6ec;
    border-radius: 14px;
    padding: 18px;
    margin: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .detail-total-box span {
        font-weight: 800;
        color: #555;
    }

    .detail-total-box strong {
        color: #ca1010;
        font-size: 24px;
        font-weight: 900;
    }

.detail-primary-btn,
.detail-outline-btn {
    display: block;
    text-align: center;
    padding: 13px 20px;
    border-radius: 10px;
    font-weight: 800;
    margin-top: 10px;
}

.detail-primary-btn {
    background: #ca1010;
    color: #fff;
}

    .detail-primary-btn:hover {
        background: #a90d0d;
        color: #fff;
    }

.detail-outline-btn {
    border: 2px solid #5fa51b;
    color: #5fa51b;
    background: #fff;
}

    .detail-outline-btn:hover {
        background: #5fa51b;
        color: #fff;
    }

.detail-product-item {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
}

    .detail-product-item:last-child {
        border-bottom: 0;
    }

.detail-product-img img {
    width: 130px;
    height: 100px;
    object-fit: cover;
    border-radius: 14px;
}

.detail-product-content {
    flex: 1;
}

    .detail-product-content h4 {
        font-size: 21px;
        font-weight: 800;
        margin-bottom: 10px;
    }

.detail-product-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    color: #555;
    font-size: 14px;
    margin-bottom: 10px;
}

    .detail-product-meta strong {
        color: #ca1010;
    }

.detail-extras span {
    display: inline-block;
    background: #f1f6ec;
    color: #4f8618;
    padding: 5px 10px;
    border-radius: 20px;
    margin: 0 5px 5px 0;
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 767px) {
    .order-detail-title h2 {
        font-size: 32px;
    }

    .detail-product-item {
        flex-direction: column;
    }

    .detail-product-img img {
        width: 100%;
        height: 190px;
    }

    .detail-info-row {
        flex-direction: column;
    }

        .detail-info-row strong {
            text-align: left;
        }
}











/*Adisyon Yazdır*/























/*Contact Section*/

.contact-modern-area {
   /* background: #f7f5f2;*/
}

.contact-modern-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
    overflow: hidden;
}

.contact-map {
    height: 100%;
    min-height: 520px;
}

    .contact-map iframe {
        width: 100%;
        height: 100%;
        min-height: 520px;
        border: 0;
        display: block;
    }

.contact-content {
    padding: 45px;
}

.contact-subtitle {
    color: #5fa51b;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
    font-size: 13px;
}

.contact-content h2 {
    font-size: 44px;
    font-weight: 800;
    margin: 8px 0 12px;
}

.contact-desc {
    color: #666;
    margin-bottom: 28px;
}

.contact-info-box {
    display: flex;
    gap: 16px;
    background: #fafafa;
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 15px;
    border: 1px solid #eee;
}

.contact-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    background: #f1f6ec;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.contact-info-box h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 6px;
}

.contact-info-box p {
    margin: 0;
    color: #555;
}

.contact-info-box a {
    color: #333;
    font-weight: 700;
}

.contact-info-box small {
    color: #777;
}

.contact-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.contact-btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 800;
    text-align: center;
}

    .contact-btn.primary {
        background: #ca1010;
        color: #fff;
    }

    .contact-btn.whatsapp {
        background: #5fa51b;
        color: #fff;
    }

    .contact-btn.outline {
        border: 2px solid #5fa51b;
        color: #5fa51b;
        background: #fff;
    }

    .contact-btn:hover {
        transform: translateY(-2px);
    }

@media (max-width: 991px) {
    .contact-map,
    .contact-map iframe {
        min-height: 360px;
    }

    .contact-content {
        padding: 30px;
    }
}

@media (max-width: 575px) {
    .contact-content h2 {
        font-size: 34px;
    }

    .contact-btn {
        width: 100%;
    }
}






/*Ödeme Tipi */
.payment-type-buttons {
    display: flex;
    gap: 14px;
    margin-top: 8px;
    margin-bottom: 20px;
}

.payment-type-btn {
    flex: 1;
    background: #f3f3f3;
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 18px 10px;
    text-align: center;
    cursor: pointer;
    transition: all .25s ease;
    user-select: none;
}

    .payment-type-btn:hover {
        transform: translateY(-2px);
        background: #fff;
        border-color: #d9d9d9;
        box-shadow: 0 10px 22px rgba(0,0,0,.08);
    }

    .payment-type-btn.active {
        background: linear-gradient(135deg, #ca1010, #e74b4b);
        color: #fff;
        box-shadow: 0 14px 28px rgba(202,16,16,.25);
    }

        .payment-type-btn.active small {
            color: rgba(255,255,255,.85);
        }

.payment-type-icon {
    display: block;
    font-size: 30px;
    margin-bottom: 8px;
}

.payment-type-btn strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
}

.payment-type-btn small {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #777;
}

@media (max-width: 767px) {
    .payment-type-buttons {
        flex-direction: column;
    }
}






/*Blog Sayfası*/
.blog-modern-area,
.blog-detail-area {
    background: #f7f5f2;
}

.blog-page-title {
    margin-top: 30px;
    margin-bottom: 45px;
}

    .blog-page-title h2 {
        font-size: 44px;
        font-weight: 900;
        margin-bottom: 8px;
    }

    .blog-page-title p {
        color: #666;
    }

.blog-modern-card,
.blog-detail-card,
.blog-empty-box {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(0,0,0,.08);
}

.blog-modern-card {
    overflow: hidden;
    margin-bottom: 30px;
    height: 100%;
}

.blog-modern-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.blog-modern-content {
    padding: 24px;
}

    .blog-modern-content span,
    .blog-detail-date {
        color: #5fa51b;
        font-size: 13px;
        font-weight: 900;
    }

    .blog-modern-content h4 {
        font-size: 22px;
        font-weight: 900;
        margin: 10px 0;
        line-height: 1.3;
    }

        .blog-modern-content h4 a {
            color: #222;
        }

    .blog-modern-content p {
        color: #666;
        margin-bottom: 16px;
    }

.blog-read-btn {
    color: #ca1010;
    font-weight: 900;
}

    .blog-read-btn:hover {
        color: #a90d0d;
    }

.blog-empty-box {
    padding: 45px;
    text-align: center;
}

.blog-primary-btn {
    display: inline-block;
    background: #ca1010;
    color: #fff;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 900;
}

    .blog-primary-btn:hover {
        background: #a90d0d;
        color: #fff;
    }

.blog-detail-card {
    overflow: hidden;
    max-width: 980px;
    margin: auto;
}

.blog-detail-img img {
    width: 100%;
    height: 430px;
    object-fit: cover;
}

.blog-detail-content {
    padding: 40px;
}

    .blog-detail-content h1 {
        font-size: 42px;
        font-weight: 900;
        margin: 12px 0 16px;
        line-height: 1.2;
    }

.blog-detail-short {
    font-size: 18px;
    color: #555;
    background: #f7f5f2;
    padding: 18px;
    border-radius: 14px;
    margin-bottom: 25px;
}

.blog-html-content {
    color: #444;
    font-size: 17px;
    line-height: 1.8;
}

    .blog-html-content img {
        max-width: 100%;
        border-radius: 14px;
    }

@media (max-width: 767px) {
    .blog-page-title h2,
    .blog-detail-content h1 {
        font-size: 32px;
    }

    .blog-detail-img img {
        height: 260px;
    }

    .blog-detail-content {
        padding: 24px;
    }
}
















/*Cookies*/
.cookie-consent {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0,0,0,.18);
    padding: 18px 20px;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text strong {
    display: block;
    color: #222;
    font-size: 18px;
    margin-bottom: 4px;
}

.cookie-text p {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-link {
    color: #5fa51b;
    font-weight: 800;
}

.cookie-btn {
    border: 0;
    background: #ca1010;
    color: #fff;
    border-radius: 10px;
    padding: 11px 20px;
    font-weight: 800;
    cursor: pointer;
}

    .cookie-btn:hover {
        background: #a90d0d;
    }

@media (max-width: 767px) {
    .cookie-consent {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
        justify-content: space-between;
    }
}




/*KVKK Text*/

.privacy-area {
    background: #f7f5f2;
    
}

.privacy-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(0,0,0,.08);
    padding: 45px;
    max-width: 980px;
    margin: auto;
}

    .privacy-card h1 {
        font-size: 38px;
        font-weight: 900;
        margin-bottom: 20px;
    }

    .privacy-card h3 {
        margin-top: 28px;
        font-size: 22px;
        font-weight: 800;
        color: #ca1010;
    }

    .privacy-card p {
        color: #555;
        line-height: 1.8;
    }

.privacy-btn {
    display: inline-block;
    margin-top: 25px;
    background: #ca1010;
    color: #fff;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 800;
}

    .privacy-btn:hover {
        background: #a90d0d;
        color: #fff;
    }

@media (max-width: 767px) {
    .privacy-card {
        padding: 28px;
    }

        .privacy-card h1 {
            font-size: 30px;
        }
}



/*Toast*/
.site-toast {
    position: fixed;
    right: 24px;
    top: 90px;
    background: #fff;
    color: #222;
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 16px 40px rgba(0,0,0,.16);
    z-index: 999999;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 280px;
    transform: translateX(120%);
    opacity: 0;
    transition: all .35s ease;
}

    .site-toast.show {
        transform: translateX(0);
        opacity: 1;
    }

.site-toast-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #5fa51b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.site-toast.error .site-toast-icon {
    background: #ca1010;
}

.site-toast p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.site-toast strong {
    display: block;
    font-size: 15px;
}

@media (max-width: 767px) {
    .site-toast {
        left: 15px;
        right: 15px;
        top: 80px;
        min-width: auto;
    }
}






/*Kapalıyız*/
.restaurant-closed-bar {
    background: #ca101091;
    color: #fff;
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 999;
}

    .restaurant-closed-bar strong {
        margin-right: 10px;
        font-weight: 800;
    }

@media(max-width:767px) {

    .restaurant-closed-bar {
        font-size: 13px;
        padding: 10px;
    }

        .restaurant-closed-bar strong {
            display: block;
            margin-right: 0;
            margin-bottom: 4px;
        }
}