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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f5f5;
    min-height: 100vh;
    padding: 0;
    color: #333;
    position: relative;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background: white;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

header {
    background: linear-gradient(135deg, #7B1F7B 0%, #8B2F8B 50%, #9B3A9B 100%);
    color: white;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    border-top: 3px solid #5B0F5B;
}
.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 25px 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 30px;
    min-height: 120px;
}

.header-sol {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    margin-right: auto;
}

.site-logo {
    height: 80px !important;
    width: auto !important;
    max-width: 350px !important;
    min-width: 250px !important;
    max-height: none !important;
    object-fit: contain;
    margin-right: 0;
    display: block;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    z-index: 10;
    position: relative;
    background: transparent;
}

.site-logo:hover {
    transform: scale(1.05);
}

/* Logo container için responsive ayarlar */
.header-sol h1 {
    margin: 0;
    font-size: 2em;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 1px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    transition: all 0.3s ease;
}

.header-sol h1:hover {
    transform: scale(1.05);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
}

.header-sag {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    margin-left: auto;
    white-space: nowrap;
    z-index: 10;
    position: relative;
    padding-left: 20px;
    margin-right: 0;
}

.nav-icon {
    margin-right: 6px;
    font-size: 1.1em;
    display: inline-block;
}

header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

header h1,
header nav {
    position: relative;
    z-index: 1;
}

header h1 {
    font-size: 2.5em;
    margin: 0;
    position: relative;
    display: inline-block;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 1px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap;
    margin-top: 0;
    flex: 1;
    justify-content: center;
    white-space: nowrap;
    padding: 0 20px;
    margin-left: 20px;
}

.nav-link {
    color: white !important;
    text-decoration: none;
    padding: 12px 18px;
    background: transparent;
    border-radius: 0;
    transition: all 0.3s;
    font-size: 0.9em;
    font-weight: 500;
    border: none;
    border-bottom: 3px solid transparent;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255,255,255,0.1);
    border-bottom-color: white;
}

.sepet-link {
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 10px 18px;
    margin-right: 0;
}

main {
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    background: #f5f5f5;
    min-height: calc(100vh - 200px);
}

h2 {
    margin-bottom: 30px;
    color: #667eea;
}

/* Filtre Bar */
.filtre-bar {
    background: white;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
    border: none;
    margin: 0;
}
.filtre-sol {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}
.filtre-dropdown {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9em;
    background: white;
    cursor: pointer;
    min-width: 120px;
    transition: border-color 0.3s;
}

.filtre-dropdown:hover {
    border-color: #9B3A9B;
}

.filtre-dropdown:focus {
    outline: none;
    border-color: #9B3A9B;
    box-shadow: 0 0 0 2px rgba(155, 58, 155, 0.1);
}
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9em;
    color: #333;
}
.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}
.filtre-sag {
    color: #666;
    font-size: 0.9em;
}
.urun-sayisi {
    font-weight: 500;
}
.kategori-baslik {
    margin-left: 15px;
    font-weight: 600;
    color: #9B3A9B;
    font-size: 1em;
}

/* Çiçek Listesi */
.cicek-listesi {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 20px;
    padding: 0 40px 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
.urun-link {
    text-decoration: none;
    color: inherit;
}

.urun-resim-link {
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    z-index: 1;
}

.urun-baslik-link {
    text-decoration: none;
    color: inherit;
}

.urun-baslik-link:hover h3 {
    color: #9B3A9B;
}

.cicek-kart {
    background: white;
    border-radius: 0;
    padding: 0;
    text-align: left;
    transition: all 0.3s;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    cursor: default;
}

.cicek-kart::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
    pointer-events: none;
}

.cicek-kart:hover::before {
    opacity: 1;
}

.cicek-kart:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border-color: #9B3A9B;
}

.urun-bilgi {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 5;
    pointer-events: auto;
}

.urun-butonlar {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-direction: column;
    position: relative;
    z-index: 20;
    pointer-events: auto;
}

.cicek-kart img:not(.site-logo) {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 0;
    margin: 0;
    display: block;
    transition: transform 0.3s ease;
}

.cicek-kart:hover img {
    transform: scale(1.03);
}

.urun-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #4CAF50;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7em;
    font-weight: 600;
    z-index: 2;
    white-space: nowrap;
}

/* Resim yükleme hatası için */
.cicek-kart img[src=""],
.cicek-kart img:not([src]) {
    display: none;
}

.resim-yok {
    font-size: 120px;
    margin-bottom: 20px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.2) 0%, rgba(255, 218, 185, 0.2) 100%);
    border-radius: 15px;
}

.cicek-kart h3 {
    color: #333;
    margin: 0 0 8px 0;
    font-size: 0.95em;
    font-weight: 500;
    line-height: 1.4;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}

.fiyat {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    margin: 0 0 3px 0;
}

.kdv-text {
    font-size: 0.8em;
    color: #999;
    margin: 0 0 0 0;
}

.btn-sepete-ekle,
.btn-siparis-ver {
    display: block;
    text-align: center;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 0.9em;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 25;
    pointer-events: auto;
}

.btn-sepete-ekle {
    background: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
    width: 100%;
}

.btn-sepete-ekle:hover {
    background: #9B3A9B;
    color: white;
    border-color: #9B3A9B;
    transform: translateY(-1px);
}

.btn-siparis-ver {
    background: linear-gradient(135deg, #9B3A9B 0%, #8B2F8B 100%);
    color: white;
    width: 100%;
}

.btn-siparis-ver:hover {
    background: linear-gradient(135deg, #8B2F8B 0%, #7B1F7B 100%);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(155, 58, 155, 0.3);
}

.cicek-kart .btn-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 16px 35px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    background: linear-gradient(135deg, #5568d3 0%, #653a8a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: #4CAF50;
}

.btn-primary:hover {
    background: #45a049;
}

.btn-sec {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    display: block;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.btn-sec:hover {
    background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

.btn-kucuk {
    padding: 6px 12px;
    font-size: 14px;
}

/* Sipariş Formu */
.siparis-formu {
    max-width: 800px;
    margin: 0 auto;
}

.cicek-bilgi {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
}

.cicek-bilgi img:not(.site-logo) {
    max-width: 200px;
    border-radius: 8px;
    margin: 15px 0;
}

.form {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.iban-bilgi {
    background: #e7f3ff;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #2196F3;
}

.iban-kutu {
    background: white;
    padding: 15px;
    border-radius: 5px;
    margin-top: 10px;
}

.iban-kutu p {
    margin: 8px 0;
}

/* Mesajlar */
.mesaj {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.mesaj.basarili {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.mesaj.hata {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.uyari {
    color: #856404;
    background: #fff3cd;
    padding: 10px;
    border-radius: 5px;
}

/* İstatistikler */
.istatistikler {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.istatistik-kart {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.istatistik-kart h3 {
    font-size: 1em;
    margin-bottom: 10px;
    opacity: 0.9;
}

.istatistik-kart .sayi {
    font-size: 2.5em;
    font-weight: bold;
}

.hizli-linkler {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Tablo */
.tablo {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: white;
}

.tablo thead {
    background: #667eea;
    color: white;
}

.tablo th,
.tablo td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.tablo tbody tr:hover {
    background: #f8f9fa;
}

/* Durum Badge */
.durum-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: bold;
}

.durum-beklemede {
    background: #ffc107;
    color: #333;
}

.durum-onaylandi {
    background: #17a2b8;
    color: white;
}

.durum-tamamlandi {
    background: #28a745;
    color: white;
}

.durum-iptal {
    background: #dc3545;
    color: white;
}

/* Filtreler */
.filtreler {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.filtreler .btn.aktif {
    background: #4CAF50;
}

/* Form Container */
.form-container {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.bilgi-notu {
    margin-top: 15px;
    color: #666;
    font-size: 0.9em;
    font-style: italic;
}

footer {
    background: #f8f9fa;
    padding: 20px;
    text-align: center;
    color: #666;
    border-top: 1px solid #ddd;
    margin-top: 50px;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #9B3A9B;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5em;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(155, 58, 155, 0.4);
    transition: all 0.3s;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top:hover {
    background: #8B2F8B;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(155, 58, 155, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.8em;
    }
    
    .cicek-listesi {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 15px 30px;
        gap: 15px;
    }
    .filtre-bar {
        padding: 15px 20px;
        flex-direction: column;
        align-items: flex-start;
    }
    .filtre-sag {
        width: 100%;
        margin-top: 10px;
    }
    .main-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .nav-link {
        padding: 10px 15px;
    }
    .sepet-link {
        margin-left: 0;
        margin-top: 10px;
    }
    header h1 {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .istatistikler {
        grid-template-columns: 1fr;
    }
    
    .tablo {
        font-size: 0.9em;
    }
    
    .tablo th,
    .tablo td {
        padding: 8px;
    }
}

/* Responsive Grid */
@media (max-width: 768px) {
    .cicek-listesi {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    .cicek-listesi {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .cicek-listesi {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1200px) {
    .cicek-listesi {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* Bildirimler */
.bildirim-badge {
    display: inline-block;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    margin-left: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.bildirimler-panel {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
}

.bildirimler-panel h3 {
    margin-bottom: 20px;
    color: #667eea;
}

.bildirim-listesi {
    max-height: 400px;
    overflow-y: auto;
}

.bildirim-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    border-left: 4px solid #667eea;
    transition: all 0.3s;
}

.bildirim-item.okunmamis {
    background: #e7f3ff;
    border-left-color: #ff4444;
    font-weight: bold;
}

.bildirim-item strong {
    display: block;
    color: #667eea;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 0.85em;
}

.bildirim-item.okunmamis strong {
    color: #ff4444;
}

.bildirim-item p {
    margin: 8px 0;
    color: #333;
}

.bildirim-item small {
    color: #666;
    font-size: 0.85em;
}

/* Sepet Stilleri - Modern */
.sepet-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.sepet-baslik {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.sepet-baslik h2 {
    font-size: 2em;
    color: #333;
    margin: 0;
}

.sepet-urun-sayisi {
    background: #9B3A9B;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
}

/* Boş Sepet */
.sepet-bos {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.sepet-bos-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.sepet-bos h3 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 10px;
}

.sepet-bos p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1em;
}

/* Sepet İçerik */
.sepet-icerik {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 20px;
    align-items: start;
}

.sepet-sol-taraf {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Sepet Ürünleri */
.sepet-urunler {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sepet-urun-kart {
    display: flex;
    gap: 15px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.sepet-urun-kart:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    border-color: #9B3A9B;
}

.sepet-urun-resim {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
}

.sepet-urun-resim img:not(.site-logo) {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.resim-yok-sepet {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    background: #f5f5f5;
}

.sepet-urun-detay {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.sepet-urun-detay h3 {
    font-size: 1.2em;
    color: #333;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.birim-fiyat-sepet {
    color: #666;
    font-size: 0.9em;
    margin: 0 0 15px 0;
}

.sepet-miktar-kontrol {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 10;
}

.miktar-form {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 10;
}

.miktar-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: #333;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.miktar-btn:hover {
    background: #9B3A9B;
    color: white;
    border-color: #9B3A9B;
}

.miktar-input {
    width: 60px;
    height: 32px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1em;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.sepet-urun-fiyat {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    min-width: 120px;
    position: relative;
    z-index: 2;
}

.toplam-item-sepet {
    font-size: 1.4em;
    font-weight: bold;
    color: #9B3A9B;
    margin: 0 0 10px 0;
}

.sil-btn {
    background: #ff4444;
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    text-decoration: none;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.sil-btn:hover {
    background: #cc0000;
    transform: scale(1.1);
}

/* Sağ Panel */
.sepet-sag-panel {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: sticky;
    top: 20px;
}

.sepet-ozet-kutu {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.sepet-ozet-kutu h3 {
    font-size: 1.3em;
    color: #333;
    margin: 0 0 15px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #e0e0e0;
}

.ozet-satir {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 1em;
    color: #666;
}

.ozet-satir.toplam {
    font-size: 1.3em;
    font-weight: bold;
    color: #333;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 2px solid #e0e0e0;
}

.toplam-fiyat-sepet {
    color: #9B3A9B;
    font-size: 1.2em;
}

.ucretsiz {
    color: #4CAF50;
    font-weight: 600;
}

.ozet-cizgi {
    height: 1px;
    background: #e0e0e0;
    margin: 12px 0;
}


/* Sipariş Formu */
.siparis-form-kutu {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.siparis-form-kutu h3 {
    font-size: 1.3em;
    color: #333;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

/* Sipariş Formu - Ürünlerin Altında */
.siparis-form-kutu-alt {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-top: 15px;
}

.siparis-form-kutu-alt h3 {
    font-size: 1.5em;
    color: #333;
    margin: 0 0 15px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #e0e0e0;
}

.form-grid-sepet {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group-full {
    grid-column: 1 / -1;
}

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

.form-group-sepet label {
    display: block;
    margin-bottom: 6px;
    color: #333;
    font-weight: 500;
    font-size: 0.95em;
}

.form-group-sepet input,
.form-group-sepet textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group-sepet input:focus,
.form-group-sepet textarea:focus {
    outline: none;
    border-color: #9B3A9B;
    box-shadow: 0 0 0 3px rgba(155, 58, 155, 0.1);
}

.form-group-sepet textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-sepet-siparis {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #9B3A9B 0%, #8B2F8B 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.btn-sepet-siparis:hover:not(:disabled) {
    background: linear-gradient(135deg, #8B2F8B 0%, #7B1F7B 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(155, 58, 155, 0.3);
}

.btn-sepet-siparis:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #ccc;
}

/* Responsive */
@media (max-width: 1024px) {
    .sepet-icerik {
        grid-template-columns: 1fr;
    }
    
    .sepet-sag-panel {
        position: static;
    }
    
    .form-grid-sepet {
        grid-template-columns: 1fr;
    }
}

/* Toast Notifications */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 10000;
    min-width: 300px;
    max-width: 400px;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-success {
    border-left: 4px solid #4CAF50;
}

.toast-error {
    border-left: 4px solid #f44336;
}

.toast-info {
    border-left: 4px solid #2196F3;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-icon {
    font-size: 1.5em;
    font-weight: bold;
}

.toast-success .toast-icon {
    color: #4CAF50;
}

.toast-error .toast-icon {
    color: #f44336;
}

.toast-info .toast-icon {
    color: #2196F3;
}

.toast-message {
    flex: 1;
    color: #333;
    font-size: 0.95em;
}

/* Form Validasyon Hataları */
.field-error {
    color: #f44336;
    font-size: 0.85em;
    margin-top: 5px;
    display: block;
}

input.error,
textarea.error,
select.error {
    border-color: #f44336 !important;
    box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.1) !important;
}

/* Loading States */
.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #667eea;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Lazy Loading */
img[data-src] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[data-src].loaded {
    opacity: 1;
}

@media (max-width: 768px) {
    .sepet-container {
        padding: 20px;
    }
    
    .sepet-urun-kart {
        flex-direction: column;
    }
    
    .sepet-urun-resim {
        width: 100%;
        height: 200px;
    }
    
    .sepet-urun-fiyat {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    
    /* Header Mobil */
    .header-content {
        padding: 15px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .header-sol {
        width: 100%;
        justify-content: flex-start;
    }
    
    .header-content {
        padding: 20px 15px;
        min-height: 100px;
        flex-direction: column;
        gap: 15px;
    }
    
    .header-sol {
        width: 100%;
        justify-content: center;
    }
    
    .header-sol h1 {
        font-size: 1.6em;
        letter-spacing: 1px;
    }
    
    .header-sol a span {
        font-size: 1.5em !important;
    }
    
    .main-nav {
        width: 100%;
        justify-content: center;
        overflow-x: auto;
        padding: 0 10px;
    }
    
    .header-sag {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        padding-left: 0;
    }
    
    header h1 {
        font-size: 1.8em;
        margin: 0;
    }
    
    .header-sol a {
        display: flex;
        align-items: center;
    }
    
    .main-nav {
        width: 100%;
        flex-wrap: wrap;
        gap: 5px;
        justify-content: flex-start;
        order: 3;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .main-nav::-webkit-scrollbar {
        display: none;
    }
    
    .main-nav {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    .header-sag {
        width: 100%;
        flex-wrap: wrap;
        gap: 5px;
        justify-content: flex-start;
        order: 2;
        margin-left: 0;
    }
    
    .nav-link {
        padding: 10px 12px;
        font-size: 0.85em;
    }
    
    .sepet-link {
        margin-top: 0;
        width: auto;
        text-align: left;
    }
    
    /* Filtre Bar Mobil */
    .filtre-bar {
        padding: 15px 20px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filtre-sol {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }
    
    .filtre-dropdown {
        width: 100%;
        min-width: auto;
    }
    
    .filtre-sag {
        width: 100%;
        margin-top: 15px;
        text-align: left;
    }
    
    .kategori-baslik {
        margin-left: 0;
        margin-top: 10px;
    }
    
    /* Çiçek Listesi Mobil */
    .cicek-listesi {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
        padding: 15px;
    }
    
    .cicek-kart {
        margin-bottom: 0;
    }
    
    .urun-badge {
        font-size: 0.7em;
        padding: 4px 8px;
    }
    
    .urun-bilgi h3 {
        font-size: 1em;
    }
    
    .fiyat {
        font-size: 1.2em;
    }
    
    .urun-butonlar {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-sepete-ekle,
    .btn-siparis-ver {
        font-size: 0.9em;
        padding: 10px;
    }
    
    /* Scroll Top Button Mobil */
    .scroll-top {
        width: 45px;
        height: 45px;
        font-size: 1.2em;
        bottom: 20px;
        right: 20px;
    }
    
    /* Footer Mobil */
    footer {
        padding: 20px;
        font-size: 0.9em;
    }
    
    /* Form Mobil */
    .form-container {
        padding: 20px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        font-size: 16px; /* iOS zoom önleme */
    }
    
    /* Tablo Mobil */
    .tablo {
        font-size: 0.85em;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .tablo thead,
    .tablo tbody,
    .tablo tr {
        display: block;
    }
    
    .tablo th,
    .tablo td {
        display: block;
        text-align: left;
        padding: 8px;
        border-bottom: 1px solid #ddd;
    }
    
    .tablo th {
        background: #f5f5f5;
        font-weight: bold;
    }
    
    /* Butonlar Mobil */
    .btn {
        width: 100%;
        padding: 12px;
        font-size: 1em;
    }
    
    /* Mesajlar Mobil */
    .mesaj {
        padding: 15px;
        font-size: 0.9em;
        margin: 15px 20px;
    }
    
    /* Toast Mobil */
    .toast {
        top: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
    }
}

