﻿/* Genel Stiller */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #388e3c;
    --dark: #333;
    --light: #f4f6f9;
    --border: #e1e4e8;
    --danger: #dc3545;
    --success: #28a745;
    --secondary: #6c757d;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

* {
    box-sizing: border-box;
}

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

/* Header */
header {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
}

.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-menu a {
    font-weight: 500;
    color: #555;
}

.nav-menu a:hover {
    color: var(--primary);
}

/* Header Actions & Icons Modernization */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-actions a {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.25rem;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-actions a:hover {
    background-color: #f0f2f5;
    color: var(--primary);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--danger);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(220, 53, 69, 0.3);
    padding: 0;
    animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

/* Mobile Menu Button Premium Style */
.mobile-menu-btn {
    background: transparent;
    border: none;
    color: var(--dark);
    font-size: 1.4rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: none;
    /* Mobilde gÃ¶rÃ¼nÃ¼r yapÄ±lÄ±r */
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background-color: #f0f2f5;
    color: var(--primary);
}

.mobile-menu-btn:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
}

.search-form {
    display: flex;
    align-items: center;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 2px 10px;
    background: #f9f9f9;
}

.search-form input {
    border: none;
    background: transparent;
    outline: none;
    padding: 5px;
}

.search-form button {
    border: none;
    background: none;
    cursor: pointer;
    color: #555;
}

/* Side Cart Drawer */
.side-cart {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100%;
    /* 100vh yerine 100% bazen daha iyidir mobile browserlar iÃ§in */
    max-height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.side-cart.open {
    right: 0;
}

.side-cart-header {
    padding: 15px 20px;
    /* Biraz padding kÃ¼Ã§Ã¼lttÃ¼m */
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    flex-shrink: 0;
    /* Header kÃ¼Ã§Ã¼lmesin */
}

/* ... */

.side-cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    min-height: 0;
    /* Flexbox scroll fix */
}

.side-cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.side-cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

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

.side-cart-item-title {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.side-cart-item-price {
    color: var(--primary);
    font-weight: bold;
}

.side-cart-footer {
    padding: 20px;
    border-top: 1px solid var(--border);
    background: #f8f9fa;
    flex-shrink: 0;
    /* Footer asla kÃ¼Ã§Ã¼lmesin */
}

.side-cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.side-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.side-cart-overlay.open {
    display: block;
}

.cart-buttons-container {
    display: flex;
    gap: 10px;
}

.cart-buttons-container .btn {
    flex: 1;
    text-align: center;
}

/* Hero Section */
.hero {
    background: var(--light);
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.hero p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* ÃœrÃ¼n KartlarÄ± */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
    background: white;
}

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

.product-card>a {
    display: block;
    margin: 0;
    line-height: 0;
    /* Ä°Ã§indeki resimden kaynaklÄ± boÅŸluÄŸu yok et */
}

.product-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.product-info {
    padding: 15px;
    text-align: center;
}

.product-title {
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    font-size: 1.1rem;
}

.product-price {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #1b62d8;
}

.btn-sm {
    padding: 5px 15px;
    font-size: 0.9em;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Footer */
footer {
    background: #222;
    color: #bbb;
    padding: 60px 0 0;
    margin-top: 60px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-col h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 15px 0 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
    font-size: 1.2rem;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bbb;
    transition: 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.contact-col p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-col i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.payment-methods {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-title {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 10px;
}

.payment-icons {
    display: flex;
    gap: 25px;
    /* 15px -> 25px */
    font-size: 2.2rem;
    /* Biraz daha bÃ¼yÃ¼ttÃ¼m */
    color: #ddd;
}

.footer-bottom {
    background: #1a1a1a;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom .copyright {
    color: #777;
    font-size: 0.9rem;
}

.footer-bottom .developer {
    color: #666;
    font-size: 0.85rem;
}

.footer-bottom .developer a {
    color: #888;
    text-decoration: none;
}

.footer-bottom .developer a:hover {
    color: var(--primary);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark);
    padding: 0;
    margin-right: 15px;
}

/* Side Menu (Left Drawer) */
.side-menu {
    position: fixed;
    top: 0;
    left: -300px;
    /* Hidden by default */
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.side-menu.open {
    left: 0;
}

.mobile-menu-items {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu-items a {
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

/* Mobile Navigation and Layout Improvements */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
        /* Kenar boÅŸluklarÄ± artÄ±rÄ±ldÄ± (15px -> 20px) */
        position: relative;
        /* Logo ortalamak iÃ§in */
    }

    .mobile-menu-btn {
        display: block;
        /* Hamburger menÃ¼ */
        font-size: 1.8rem;
        /* Hamburger ikon bÃ¼yÃ¼tÃ¼ldÃ¼ (1.5rem -> 1.8rem) */
        color: #333;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 10;
        /* Ãœstte kalsÄ±n */
        padding: 5px;
        /* TÄ±klama alanÄ± geniÅŸletildi */
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
        z-index: 5;
    }

    .logo img {
        max-height: 50px;
        /* Logo bir tÄ±k bÃ¼yÃ¼tÃ¼ldÃ¼ */
    }

    /* Mobil Sepet DÃ¼zeltmesi */
    .side-cart-item {
        padding-right: 30px;
        /* Silme ikonu iÃ§in boÅŸluk */
        position: relative;
    }

    .side-cart-item-remove {
        position: absolute;
        top: 10px;
        right: 0;
    }

    .nav-menu {
        display: none;
        /* Mobilde masaÃ¼stÃ¼ menÃ¼yÃ¼ gizle */
    }

    /* Mobil Sepet DÃ¼zeltmesi */
    .cart-item {
        padding-right: 30px;
        /* Silme ikonu iÃ§in boÅŸluk */
        position: relative;
    }

    .cart-item .remove-btn {
        position: absolute;
        top: 10px;
        right: 0;
    }

    .nav-menu {
        display: none;
        /* Mobilde masaÃ¼stÃ¼ menÃ¼yÃ¼ gizle */
    }

    .header-actions a {
        font-size: 1.8rem;
        /* Sepet ikonu bÃ¼yÃ¼tÃ¼ldÃ¼ (1.2rem -> 1.8rem) */
        padding: 5px;
        /* TÄ±klama alanÄ± */
        display: inline-block;
        /* Padding iÅŸlesin diye */
        position: relative;
        /* Badge iÃ§in relative ÅŸart */
    }

    .header-actions .cart-count {
        top: 5px;
        /* Padding (5px) kadar iÃ§eri iterek ikona yapÄ±ÅŸtÄ±r */
        right: 5px;
        min-width: 16px;
        height: 16px;
        line-height: 16px;
        font-size: 0.7rem;
        /* Ä°konun Ã¼zerine hafif binmesi iÃ§in border ekleyelim ki karÄ±ÅŸmasÄ±n */
        border: 1px solid white;
    }

    .header-actions .search-form {
        display: none !important;
    }

    /* Hero YazÄ± Boyutu (Mobil) */
    .hero h1 {
        font-size: 2rem;
    }

    /* Mobilde buton yazÄ±larÄ±nÄ± bÃ¼yÃ¼t */
    .btn {
        font-size: 1rem !important;
        /* Mobilde butonlar daha okunur olsun */
        padding: 10px 15px;
        /* TÄ±klama alanÄ±nÄ± koru/bÃ¼yÃ¼t */
    }

    /* ÃœrÃ¼n gridini mobilde 2'li yap */
    /* ÃœrÃ¼n gridini mobilde 2'li yap */
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
        /* BoÅŸluk daha da azaldÄ± */
    }

    /* Gerekirse Ã¼rÃ¼n kartÄ± iÃ§indeki padding/font kÃ¼Ã§Ã¼ltÃ¼lebilir, sÄ±ÄŸmasÄ± iÃ§in */
    /* Gerekirse Ã¼rÃ¼n kartÄ± iÃ§indeki padding/font kÃ¼Ã§Ã¼ltÃ¼lebilir, sÄ±ÄŸmasÄ± iÃ§in */
    .product-info {
        padding: 10px;
    }

    .product-title {
        font-size: 0.95rem;
        /* YÃ¼kseklik kÄ±sÄ±tlamasÄ± kaldÄ±rÄ±ldÄ± */
    }

    .product-price {
        font-size: 0.95rem;
        margin-bottom: 2px !important;
        margin-top: 2px !important;
    }

    .product-img {
        height: 220px;
        /* YÃ¼kseklik biraz artÄ±rÄ±ldÄ± */
    }
}

/* ÃœrÃ¼n Detay SayfasÄ± Ä°yileÅŸtirmeleri */
.product-detail-wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .product-detail-wrapper {
        gap: 20px !important;
        /* Mobilde aradaki boÅŸluÄŸu azalt */
    }

    .product-detail-wrapper h1 {
        margin-top: -10px !important;
        /* BaÅŸlÄ±ÄŸÄ± biraz daha yukarÄ± Ã§ek */
        font-size: 1.5rem !important;
    }
}

/* Sayfa TasarÄ±mlarÄ± (Static Pages & Contact) */
.page-container {
    padding: 30px 0 60px;
    max-width: 1000px;
    /* Okunabilirlik iÃ§in Ã§ok geniÅŸ olmasÄ±n */
    margin: 0 auto;
}

.page-title {
    font-size: 1.75rem;
    /* 2.2rem -> 1.75rem */
    color: var(--dark);
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* ... (Intermediate content omitted for brevity, assuming we target specific blocks or replace the end if needed) ... */
/* Let's try replacing the specific blocks instead of the whole file end to prevent context errors */


.page-content {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    line-height: 1.8;
    color: #444;
    font-size: 1.05rem;
}

/* Newsletter Section - Premium Redesign */
.newsletter-section {
    background: linear-gradient(135deg, #11998e, #38ef7d);
    /* Modern YeÅŸil Tonu */
    background: linear-gradient(135deg, #2c3e50, #4ca1af);
    /* Alternatif: ÅÄ±k Koyu Ton (Bunu seÃ§tim) */
    position: relative;
    padding: 80px 0;
    margin-top: 50px;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.newsletter-wrapper {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.newsletter-content {
    flex: 1;
    color: #fff;
    min-width: 300px;
}

.newsletter-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.newsletter-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.6;
}

.newsletter-form {
    flex: 1.2;
    display: flex;
    background: #fff;
    padding: 8px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.newsletter-form .input-group {
    flex: 1;
}

.newsletter-form input {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
    padding: 0 20px;
    font-size: 1rem;
    color: #333;
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form input[name="name"] {
    border-right: 1px solid #eee;
}

.newsletter-form button {
    background: var(--dark);
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 15px 35px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: #000;
}

@media (max-width: 992px) {
    .newsletter-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .newsletter-content {
        margin-bottom: 20px;
    }

    .newsletter-form {
        width: 100%;
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        padding: 0;
        gap: 15px;
        border-radius: 0;
    }

    .newsletter-form input {
        background: #fff;
        height: 55px;
        border-radius: 10px;
        border: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .newsletter-form input[name="name"] {
        border-right: none;
    }

    .newsletter-form button {
        width: 100%;
        height: 55px;
        border-radius: 10px;
    }
}

.page-content h2,
.page-content h3 {
    color: var(--dark);
    margin-top: 30px;
}

/* Ä°letiÅŸim SayfasÄ± */
.contact-wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 300px;
}

.contact-header {
    margin: 0 0 25px;
    font-size: 1.5rem;
    color: var(--dark);
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

/* Form ElemanlarÄ± */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(40, 121, 254, 0.1);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f9f9f9;
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(40, 121, 254, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.contact-value {
    color: #666;
    line-height: 1.5;
}

.contact-value a {
    color: inherit;
}

.contact-value a:hover {
    color: var(--primary);
}

.map-container {
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Ã–deme SayfasÄ± (Checkout) */
.checkout-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 30px;
}

.checkout-form-box {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.checkout-summary-box {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    height: fit-content;
    position: sticky;
    top: 90px;
}

.checkout-title {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
    font-weight: 600;
}

.checkout-summary-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
}

.checkout-summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    border-bottom: 1px dashed #f0f0f0;
    padding-bottom: 12px;
    color: #444;
    font-size: 0.95rem;
}

.checkout-summary-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.checkout-summary-item strong {
    font-weight: 500;
    display: inline;
    /* Yan yana gelmesi iÃ§in block yerine inline */
    margin-bottom: 0;
}

.checkout-summary-item small {
    font-size: 0.85em;
    color: #888;
}

.checkout-summary-item span:last-child {
    white-space: nowrap;
    text-align: right;
    min-width: 80px;
    /* Hizalama iÃ§in */
    margin-left: 10px;
}



@media (max-width: 992px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .checkout-summary-box {
        position: static;
        order: 1;
        /* Mobilde formdan SONRA gelsin */
        margin-top: 20px;
    }

    .checkout-form-box {
        order: 0;
        /* Form baÅŸta */
    }
}

/* KiÅŸisel Checkout DÃ¼zeltmeleri */
.checkout-summary-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checkout-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f9f9f9;
}

.checkout-total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #eee;
}

.checkout-total div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    width: 100%;
    /* GeniÅŸliÄŸi zorla */
}

.checkout-total span:first-child {
    font-weight: 500;
    color: #555;
    text-align: left;
}

.checkout-total span:last-child {
    font-weight: bold;
    color: #333;
    text-align: right;
    /* KÄ±rÄ±lmayÄ± Ã¶nle */
    margin-left: auto;
    /* SaÄŸa yasla */
}

/* Badge Styles (Re-added) */
/* Badge Styles (Re-added) */
.badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
    /* Fiyatla arasÄ±na boÅŸluk */
    justify-content: center;
    /* Ortala */
}

.custom-badge,
.badge-free-shipping,
.badge-discount {
    padding: 2px 8px;
    /* Daha da az boÅŸluk */
    border-radius: 50px;
    color: white;
    font-size: 0.55rem;
    /* Ã‡ok daha kÃ¼Ã§Ã¼k (Minimal) */
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
    text-align: center;
    letter-spacing: 0.2px;
}

.badge-free-shipping {
    background-color: #28a745;
    gap: 5px;
}

.badge-discount {
    background-color: var(--danger);
}

.bg-primary {
    background-color: var(--primary);
}

.bg-secondary {
    background-color: #6c757d;
}

.bg-success {
    background-color: var(--success);
}

.bg-danger {
    background-color: var(--danger);
}

.bg-warning {
    background-color: #ffc107;
    color: #333;
}

.bg-info {
    background-color: #17a2b8;
}

.bg-dark {
    background-color: #343a40;
}

/* Hero Section */
/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    /* Background image removed in favor of video, but keeping color white */
    color: white;
    padding: 120px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* KarartÄ± azaltÄ±ldÄ± */
    z-index: 1;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #fff !important;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #fff !important;
}

/* Hero Social Icons */
.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.hero-social {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    /* Glass effect */
    padding: 10px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 50px;
    /* Butonla aynÄ± yÃ¼kseklik */
}

.hero-social span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.hero-social a {
    color: #fff;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.hero-social a:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        gap: 20px;
    }

    .hero-social {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }
}



/* Close Button Improvements */
.close-cart {
    background: #f4f4f4 !important;
    border: none !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    color: #666 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-size: 16px !important;
    outline: none !important;
    margin-right: -10px;
    margin-top: -5px;
}

.close-cart:hover {
    background: #e0e0e0 !important;
    color: #333 !important;
    transform: rotate(90deg) !important;
}

.close-cart:active {
    transform: scale(0.9) rotate(90deg) !important;
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 25px;
    left: 25px;
    /* right -> left */
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}



.whatsapp-toggle {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    color: white;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: none;
}

.whatsapp-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

.whatsapp-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #FF3B30;
    color: white;
    font-size: 12px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    animation: bounceIn 0.5s;
}

.whatsapp-chat-box {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 320px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom left;
}

.whatsapp-widget.open .whatsapp-chat-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.wa-header {
    background: #075E54;
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.wa-avatar {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    padding: 2px;
    position: relative;
}

.wa-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
    background: #fff;
}

.wa-status-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: #25D366;
    border: 2px solid #075E54;
    border-radius: 50%;
}

.wa-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.wa-info p {
    margin: 2px 0 0;
    font-size: 12px;
    opacity: 0.8;
}

.wa-close {
    margin-left: auto;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
    opacity: 0.8;
    transition: 0.3s;
}

.wa-close:hover {
    opacity: 1;
}

.wa-body {
    padding: 20px;
    background-color: #e5ddd5;
    background-image: url("https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png");
    height: 250px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.wa-message {
    background: white;
    padding: 10px 15px;
    border-radius: 0 12px 12px 12px;
    font-size: 14px;
    color: #333;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    max-width: 85%;
    position: relative;
    margin-bottom: 5px;
    margin-top: 10px;
}

.wa-message-time {
    display: block;
    text-align: right;
    font-size: 10px;
    color: #999;
    margin-top: 5px;
}

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

.wa-btn {
    display: block;
    width: 100%;
    background: #25D366;
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.wa-btn:hover {
    background: #1faf57;
    color: white;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* Quick Add Button Styles */
/* Quick Add Button Styles - Refined */
.btn-quick-add {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 8px;
    background: transparent;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: none;
}

.btn-quick-add:hover {
    background: #f9f9f9;
    border-color: #ccc;
    color: var(--primary);
    transform: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.btn-quick-add:active {
    background: #f0f0f0;
}

.btn-quick-add i {
    font-size: 1.1em;
    color: var(--primary);
}

/* Adjust Product Card to accommodate button */
.product-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.product-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.badge-container {
    margin-top: auto;
    /* Push badges to bottom if needed, or adjust spacing */
    padding-top: 10px;
}