/*
Theme Name: Bizimle Paylas
Theme URI: https://bizimlepaylas.com
Author: Bizimle Paylas
Description: Dugunler icin dijital ani kutusu ve dosya yukleme platformu
Version: 1.0
Text Domain: bizimlepaylas
*/

/* --- GENEL AYARLAR --- */
:root {
    --primary-color: #7d3c43; /* Butonlardaki bordo/kırmızımsı renk */
    --bg-color: #fdfaf7; /* Hafif krem arka plan */
    --text-dark: #333333;
    --check-green: #2ecc71;
}

html { scroll-behavior: smooth; }
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    margin: 0; padding: 0;
}
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- HEADER & MENÜ --- */
.site-header {
    background: #fff;
    position: sticky; top: 0; z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 15px 0;
}
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 24px; font-weight: bold; color: var(--primary-color); }
.main-nav ul { list-style: none; display: flex; gap: 30px; margin: 0; padding: 0; }
.main-nav a { font-weight: 500; transition: color 0.3s; }
.main-nav a:hover { color: var(--primary-color); }

/* --- BÖLÜMLER (SECTIONS) --- */
section { padding: 80px 0; }
.section-title { text-align: center; font-size: 32px; margin-bottom: 50px; }

/* --- FİYATLANDIRMA KARTLARI (Görsel 2) --- */
.pricing-grid { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; }
.pricing-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    width: 320px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    display: flex; flex-direction: column;
    position: relative;
}
.pricing-card img { max-height: 120px; object-fit: contain; margin-bottom: 20px; }
.pricing-card h3 { text-align: center; font-size: 20px; margin-bottom: 10px; }
.price-area { text-align: center; margin-bottom: 20px; }
.old-price { color: #999; text-decoration: line-through; font-size: 14px; }
.discount { color: var(--check-green); font-size: 14px; font-weight: bold; margin-left: 5px;}
.new-price { display: block; font-size: 36px; font-weight: bold; color: var(--primary-color); margin-top: 5px; }
.kdv-badge { display: inline-block; background: #f0f0f0; font-size: 12px; padding: 4px 10px; border-radius: 20px; color: #666; margin-top: 10px; }

.features-list { list-style: none; padding: 0; margin: 30px 0; flex-grow: 1; }
.features-list li { margin-bottom: 12px; font-size: 14px; display: flex; align-items: center; gap: 10px; }
.features-list li::before { content: '✓'; color: var(--check-green); font-weight: bold; }

.ek-ozellikler { margin-top: 15px; padding-top: 15px; border-top: 1px solid #eee; }
.ek-ozellikler p { font-weight: bold; font-size: 14px; margin-bottom: 10px; }
.ek-ozellikler li::before { color: #ccc; }

.btn-siparis {
    display: block; width: 100%; text-align: center;
    background: var(--primary-color); color: #fff;
    padding: 15px 0; border-radius: 8px; font-weight: bold;
    margin-top: auto; transition: background 0.3s;
    border: none; cursor: pointer;
}
.btn-siparis:hover { background: #612c33; }
.siparis-not { text-align: center; font-size: 11px; color: #888; margin-top: 10px; }

/* --- TASARIMLAR VİTRİNİ --- */
.tasarim-vitrini {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 10px 40px 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; /* Mobilde yumuşak kaydırma */
}

.tasarim-kutu {
    flex: 0 0 auto;
    width: 260px; /* Telefon görünümü genişliği */
    scroll-snap-align: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.tasarim-kutu:hover {
    transform: translateY(-10px); /* Mouse üzerine gelince hafif yukarı kalkar */
}

.tasarim-kutu img {
    width: 100%;
    border-radius: 30px; /* Telefon ekranı kıvrımı */
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 6px solid #f9f9f9;
}

.tasarim-kutu h4 {
    margin-top: 20px;
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

/* Kaydırma Çubuğunu (Scrollbar) Güzelleştirme */
.tasarim-vitrini::-webkit-scrollbar {
    height: 8px;
}
.tasarim-vitrini::-webkit-scrollbar-track {
    background: #f1f1f1; 
    border-radius: 10px;
}
.tasarim-vitrini::-webkit-scrollbar-thumb {
    background: #ccc; 
    border-radius: 10px;
}
.tasarim-vitrini::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color); 
}