/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Header Styles */
.header-container {
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    padding: 15px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1000;

    /* YENİ: header içini tek satıra al */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}


.logo {
    display: flex;
    align-items: center;
    margin-bottom: 0;     /* dikey boşluğu kaldır */
    margin-right: 20px;   /* sağa ufak boşluk */
}


.title-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.site-title {
    color: #2e7d32;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: none;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;

    /* YENİ: header içinde logo + nav + ikonlar hizalansın */
    justify-content: center;
}


nav ul li {
    position: relative;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

nav ul li a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

nav ul li a.active {
    background: rgba(255, 255, 255, 0.9);
    color: #2e7d32;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Bottom Header */
.bottom-header-container {
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1000;

    /* YENİ: alt bardaki logo + menü + iletişim bilgileri hizalansın */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}



.contact-info-bottom {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 15px;
    flex-wrap: wrap;
    gap: 15px;
    text-align: right;
}


.contact-info-bottom .phone,
.contact-info-bottom .address {
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Cart Styles */
.cart-icon {
    position: relative;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.3s;
}

/* Cart SVG görünümü */
.cart-icon svg {
    width: 24px;
    height: 24px;
    display: block;
    fill: white;
}


.cart-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    width: 300px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1001;
    display: none;
    margin-top: 10px;
}

.cart-dropdown.show {
    display: block;
}

.cart-header {
    padding: 15px;
    border-bottom: 1px solid #eee;
    font-weight: bold;
    color: #2e7d32;
}

.cart-items {
    max-height: 250px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 10px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 500;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 2px;
}

.cart-item-price {
    font-size: 0.8rem;
    color: #666;
}

.cart-item-remove {
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
    transition: background-color 0.3s;
}

.cart-item-remove:hover {
    background: #cc0000;
}

.cart-empty {
    padding: 20px;
    text-align: center;
    color: #666;
    font-style: italic;
}

.cart-footer {
    padding: 15px;
    border-top: 1px solid #eee;
    background: #f9f9f9;
}

.cart-total {
    font-weight: bold;
    color: #2e7d32;
    margin-bottom: 10px;
    text-align: center;
}

.checkout-btn {
    width: 100%;
    background: #2e7d32;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.checkout-btn:hover {
    background: #1b5e20;
}

/* User Login Button */
.login-btn {
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.login-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.login-btn svg {
    width: 24px;
    height: 24px;
    fill: white;
}

/* User Icon */
.user-icon {
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.user-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Main Content */
main {
    min-height: calc(100vh - 200px);
    padding: 40px 20px;
}

.page-content {
    max-width: 1200px;
    margin: 0 auto;
}

.page-content h2 {
    color: #2e7d32;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.page-content p {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}

/* Products */
.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #2e7d32;
}

.product-image {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2;
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.left-btn {
    left: 10px;
}

.right-btn {
    right: 10px;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    color: #2e7d32;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.product-info .description {
    color: #666;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.product-info .features {
    color: #555;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.product-info .delivery-time {
    color: #777;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.price-section {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
}

.discount-price {
    color: #2e7d32;
    font-weight: bold;
    font-size: 1.2rem;
}

.discount-percent {
    background: #ff4444;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.order-btn {
    width: 100%;
    background: #2e7d32;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.order-btn:hover {
    background: #1b5e20;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-balloon {
    width: 60px;
    height: 60px;
    background: #2e7d32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
    position: relative;
}

.chat-balloon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.chat-balloon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 400px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0);
    transform-origin: bottom right;
    transition: transform 0.3s;
}

.chat-box.show {
    transform: scale(1);
}

.chat-header {
    background: #2e7d32;
    color: white;
    padding: 15px 20px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f8f9fa;
}

.message {
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 15px;
    max-width: 80%;
    word-wrap: break-word;
}

.message.user {
    background: #2e7d32;
    color: white;
    margin-left: auto;
    border-bottom-right-radius: 5px;
}

.message.bot {
    background: white;
    color: #333;
    border-bottom-left-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.message.admin {
    background: #ff9800;
    color: white;
    border-bottom-left-radius: 5px;
}

.chat-input {
    padding: 15px;
    background: white;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}

.chat-input input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
}

.chat-input button {
    background: #2e7d32;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.chat-input button:hover {
    background: #1b5e20;
}

/* Footer */
.footer-container {
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    color: white;
    padding: 40px 20px;
    margin-top: auto;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-nav ul li a:hover {
    color: #90EE90;
}

.footer-contact {
    text-align: center;
}

.footer-contact h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-contact p {
    margin: 5px 0;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 10px 15px;
    }

    .site-title {
        font-size: 1.5rem;
    }

    nav ul {
        gap: 10px;
    }

    nav ul li a {
        padding: 6px 12px;
        font-size: 0.9rem;
    }

    .bottom-header-container {
        padding: 15px;
    }

    .contact-info-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

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

    .product-card {
        max-width: 100%;
    }

    .chat-box {
        width: 300px;
        height: 350px;
    }

    .footer-nav ul {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    nav ul {
        flex-direction: column;
        gap: 5px;
    }

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Additional Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2e7d32;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #2e7d32;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #2e7d32;
}

.feature-icon {
    font-size: 4rem;
    color: #2e7d32;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2e7d32;
    margin-bottom: 15px;
}

.feature-description {
    color: #666;
    line-height: 1.6;
}

.stats-section {
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    animation: fadeInUp 1s ease-out;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f5f5, #e8f5e8);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    color: #2e7d32;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    background: #2e7d32;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.hero-btn:hover {
    background: #1b5e20;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(46, 125, 50, 0.3);
}

.hero-btn.secondary {
    background: transparent;
    border: 2px solid #2e7d32;
    color: #2e7d32;
}

.hero-btn.secondary:hover {
    background: #2e7d32;
    color: white;
}

.products-preview {
    padding: 100px 0;
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 200px;
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2e7d32;
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 15px;
}

.product-btn {
    background: #2e7d32;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.product-btn:hover {
    background: #1b5e20;
}

/* Payment Method Selector */
.payment-method-selector {
    margin-bottom: 30px;
}

.method-tabs {
    display: flex;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 5px;
    margin-bottom: 20px;
}

.method-tab {
    flex: 1;
    background: none;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    color: #90EE90;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.method-tab.active {
    background-color: #2e7d32;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.method-tab:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.1);
}

.payment-method-content {
    display: none;
}

.payment-method-content:first-of-type {
    display: block;
}

.bank-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bank-option {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    transition: background-color 0.3s;
}

.bank-option:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.bank-option h5 {
    color: #00AA33;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.bank-option p {
    color: #90EE90;
    margin: 5px 0;
    font-size: 0.9em;
}

.transfer-notice {
    background-color: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
}

.transfer-notice p {
    color: #ffeb3b;
    margin: 5px 0;
    font-size: 0.9em;
    line-height: 1.4;
}


/* İLETİŞİM SAYFASI – KOYU YEŞİL ARKA PLAN + AÇIK YEŞİL KART TASARIMI */
.contact-section {
    padding: 60px 20px 80px;
    background: #1b5e20; /* KOYU YEŞİL arka plan (header ile uyumlu) */
}

.contact-section > h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.contact-section > p {
    color: #e0f2e9;
    max-width: 800px;
    font-size: 1rem;
    margin-bottom: 30px;
}

/* Form + Bilgi kısmını yan yana al */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1.2fr;
    gap: 40px;
    align-items: flex-start;
}

/* KARTLAR – Açık yeşile yakın ton */
.contact-form,
.contact-info {
    background: #e8f5e9; /* açık yeşilimsi kart rengi */
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* Kart başlıkları */
.contact-form h3,
.contact-info h3 {
    font-size: 1.5rem;
    color: #1b5e20;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Form alanları */
.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    color: #1b5e20;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #bbb;
    border-radius: 8px;
    background: #ffffff;
    color: #333;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #2e7d32;
    box-shadow: 0 0 0 3px rgba(76,175,80,0.2);
}

/* Gönder butonu */
.submit-btn {
    background: #2e7d32;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #1b5e20;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.25);
}

/* İletişim bilgi blokları */
.info-item h4 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #1b5e20;
    margin-bottom: 5px;
}

.info-item p {
    font-size: 0.95rem;
    color: #2b2b2b;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

body {
    background: #1b5e20; /* Doygun ama yumuşak yeşil */
}

/* ÖDEME SAYFASI STİLLERİ */
.checkout-container {
    max-width: 1200px;
    margin: 40px auto 60px;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    color: #fff;
}

.checkout-container h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #ffffff;
}

.checkout-content {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 30px;
}

.checkout-form,
.checkout-summary {
    flex: 1 1 320px;
    background: rgba(0, 0, 0, 0.18);
    border-radius: 16px;
    padding: 20px 24px;
}

.checkout-form h3,
.checkout-summary h3,
.payment-method h3 {
    margin-bottom: 15px;
    color: #ffffff;
}

.checkout-form .form-group,
.credit-card-form .form-group {
    margin-bottom: 12px;
}

.checkout-form label,
.credit-card-form label {
    display: block;
    margin-bottom: 4px;
    font-size: 0.9rem;
    color: #e0f5e0;
}

.checkout-form input,
.checkout-form textarea,
.credit-card-form input {
    width: 100%;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.95);
    color: #222;
    font-size: 0.95rem;
}

.checkout-form textarea {
    min-height: 70px;
    resize: vertical;
}

.checkout-summary .cart-item-summary {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
}

.checkout-summary .cart-item-image {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
}

.checkout-summary .cart-item-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
}

.checkout-summary .cart-item-price {
    font-size: 0.85rem;
    color: #d0f0d0;
}

.total-price {
    margin-top: 15px;
    font-size: 1.1rem;
}

.payment-method {
    margin-top: 10px;
    padding: 18px 24px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.18);
}

.payment-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.payment-options label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #e0f5e0;
}

.credit-card-form {
    margin-top: 10px;
}

.complete-order-btn {
    margin-top: 20px;
    width: 100%;
    padding: 12px 18px;
    border: none;
    border-radius: 999px;
    background: #2e7d32;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.25s, transform 0.15s, box-shadow 0.25s;
}

.complete-order-btn:hover {
    background: #1b5e20;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

/* Mobil uyum */
@media (max-width: 768px) {
    .checkout-container {
        padding: 20px;
        margin: 20px 10px 40px;
    }

    .checkout-content {
        flex-direction: column;
    }
}

/* Havale / EFT bilgi kutusu */
.bank-transfer-info {
    display: none; /* sadece Havale/EFT seçilince JS ile açılacak */
    margin-top: 15px;
    padding: 15px 18px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.18);
    color: #e0f5e0;
    font-size: 0.9rem;
}

.bank-transfer-box {
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.25);
    margin: 8px 0 10px;
}

.bank-transfer-box p {
    margin: 2px 0;
}

.bank-transfer-info strong {
    color: #ffffff;
}

.bank-note {
    margin-top: 6px;
    font-size: 0.85rem;
    color: #cfead0;
}

        .admin-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .admin-header {
            background-color: rgba(46, 125, 50, 0.95);
            color: white;
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 20px;
            text-align: center;
            position: relative;
        }

        .logout-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: #d32f2f;
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 0.9em;
        }

        .logout-btn:hover {
            background-color: #b71c1c;
        }

        .admin-tabs {
            display: flex;
            margin-bottom: 20px;
            border-bottom: 2px solid #2e7d32;
        }

        .admin-tab {
            padding: 10px 20px;
            background-color: #f0f0f0;
            border: none;
            cursor: pointer;
            border-radius: 5px 5px 0 0;
            margin-right: 5px;
        }

        .admin-tab.active {
            background-color: #2e7d32;
            color: white;
        }

        .admin-content {
            background-color: rgba(0, 50, 0, 0.9);
            border-radius: 15px;
            padding: 20px;
            color: #90EE90;
        }

        .chat-section, .products-section, .feedback-section {
            display: none;
        }

        .chat-section.active, .products-section.active, .feedback-section.active {
            display: block;
        }

        .chat-messages-admin {
            background-color: #f9f9f9;
            border: 1px solid #ddd;
            border-radius: 10px;
            padding: 15px;
            height: 300px;
            overflow-y: auto;
            margin-bottom: 15px;
        }

        .chat-input-admin {
            display: flex;
            gap: 10px;
        }

        .chat-input-admin input {
            flex: 1;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 20px;
            outline: none;
        }

        .chat-input-admin button {
            background-color: #2e7d32;
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 20px;
            cursor: pointer;
        }

        .products-list {
            display: grid;
            gap: 15px;
        }

        .product-item {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 15px;
            border-radius: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .product-info {
            flex: 1;
        }

        .product-info input {
            width: 100%;
            padding: 5px;
            margin: 2px 0;
            border: 1px solid #ddd;
            border-radius: 5px;
        }

        .product-actions {
            display: flex;
            gap: 10px;
        }

        .btn {
            padding: 5px 10px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 0.9em;
        }

        .btn-save {
            background-color: #2e7d32;
            color: white;
        }

        .btn-delete {
            background-color: #d32f2f;
            color: white;
        }

        .add-product-btn {
            background-color: #2e7d32;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            margin-bottom: 20px;
        }

        .feedback-list-admin {
            display: grid;
            gap: 15px;
        }

        .feedback-item {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 15px;
            border-radius: 10px;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        .feedback-content {
            flex: 1;
        }

        .feedback-content strong {
            color: #90EE90;
        }

        .feedback-content p {
            margin: 5px 0 0 0;
            color: #ffffff;
        }

        .feedback-actions {
            display: flex;
            gap: 10px;
        }

  /* === ADMIN LOGIN TASARIMI === */

.login-section {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.admin-login-card {
    width: 380px;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0 4px 35px rgba(0,0,0,0.4);
    color: #fff;
}

.admin-login-header {
    text-align: center;
    margin-bottom: 20px;
}

.admin-login-header i {
    font-size: 48px;
    color: #90EE90;
}

.admin-login-header h2 {
    margin: 10px 0 5px;
    font-size: 22px;
}

.admin-login-header p {
    font-size: 14px;
    opacity: 0.8;
}

.admin-login-form .form-group {
    margin-bottom: 15px;
}

.admin-login-form label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.admin-login-form input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 8px;
    outline: none;
    font-size: 15px;
}

.admin-login-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.2s;
}

.admin-login-btn:hover {
    background: linear-gradient(135deg, #27ae60, #219150);
    transform: scale(1.03);
}
      
  
