/* -----------------------------------------------------------
   style.css - ANA STİL DOSYASI (FULL VERSİYON)
   İçerik: Fontlar, Reset, Header, Slider, Vitrin, Grid, Footer
----------------------------------------------------------- */

/* 1. FONTLAR VE İKONLAR */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

/* 2. TEMEL AYARLAR (RESET) */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary: #D66C93;
    --primary-dark: #b54b70;
    --secondary: #6CC0B1;
    --dark: #2c3e50;
    --text: #333;
    --light: #fff;
    --bg-gray: #f8f9fa;
    --border: #e1e1e1;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-gray);
    color: var(--text);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font-family: inherit; }

/* 3. KAYAN YAZI */
.ticker-wrapper {
    background: linear-gradient(90deg, var(--primary) 0%, #c45d82 100%);
    color: #fff;
    padding: 12px 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    font-size: 0.95rem;
    font-weight: 500;
}
.ticker-content {
    display: inline-block;
    white-space: nowrap;
    animation: ticker 60s linear infinite;
    padding-left: 100%;
}
.ticker-item { display: inline-block; padding: 0 60px; }
@keyframes ticker {
    0%   { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}
.ticker-wrapper:hover .ticker-content { animation-play-state: paused; }

/* 4. HEADER */
header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo { font-size: 2.2rem; font-weight: 700; letter-spacing: -1px; }
.text-torten { color: var(--primary); }
.text-box    { color: var(--secondary); }

.main-nav { display: flex; align-items: center; gap: 30px; }
.nav-item  { position: relative; height: 100%; display: flex; align-items: center; }
.nav-link  { font-weight: 500; color: #555; font-size: 1rem; padding: 10px 0; position: relative; }
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px; background: var(--primary); transition: 0.3s;
}
.nav-link:hover::after { width: 100%; }

.dropdown-menu {
    display: none; position: absolute; top: 100%; left: 0;
    background: #fff; min-width: 240px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 3px solid var(--primary);
    border-radius: 0 0 5px 5px; z-index: 999;
}
.nav-item:hover .dropdown-menu { display: block; animation: fadeIn 0.3s ease; }
.dropdown-menu li { border-bottom: 1px solid #f9f9f9; }
.dropdown-menu a { display: block; padding: 14px 20px; color: #555; font-size: 0.95rem; }
.dropdown-menu a:hover { background: #fff0f5; color: var(--primary); padding-left: 25px; }

.hamburger-menu { display: none; }

/* 5. SLIDER (HERO SECTION) */
.hero-section {
    position: relative;
    height: 600px;
    background-color: #ddd;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
/* GÖLGE KALDIRILDI — ::before yorum satırı */
/*
.hero-section::before {
    content: ''; position: absolute; top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,0.4);
}
*/
.hero-overlay {
    position: relative; z-index: 2;
    background: rgba(255,255,255,0.95);
    padding: 50px 70px;
    border-radius: 8px; border-left: 8px solid var(--primary);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    max-width: 800px;
}
.hero-overlay h1 { font-size: 2.8rem; margin-bottom: 15px; color: var(--dark); line-height: 1.2; }
.hero-overlay p  { font-size: 1.2rem; color: #666; margin-bottom: 25px; }
.hero-btn {
    display: inline-block; background: var(--primary); color: #fff;
    padding: 15px 40px; border-radius: 50px; font-weight: 600; font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(214,108,147,0.4);
}
.hero-btn:hover { background: var(--secondary); transform: translateY(-3px); }

/* 6. KATEGORİ */
.cat-section { padding: 50px 0; background: #fff; text-align: center; }
.cat-container {
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;
}
.cat-box { width: 18%; min-width: 120px; text-align: center; cursor: pointer; margin-bottom: 20px; }
.cat-circle {
    width: 100px; height: 100px;
    background: #fff; border: 2px solid var(--secondary); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; color: var(--secondary);
    margin: 0 auto 15px; transition: 0.3s;
}
.cat-box:hover .cat-circle { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-5px); }

/* 7. PROMO BANNER */
.promo-section { padding: 50px 20px; background: #e7d8c8; }
.promo-container { max-width: 1200px; margin: 0 auto; display: flex; gap: 30px; }
.promo-box {
    flex: 1; height: 500px; border-radius: 15px; overflow: hidden; position: relative;
    display: flex; align-items: center; padding-left: 50px; color: #fff;
    background-size: cover; background-position: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1); transition: 0.3s;
    border: ridge;
}
.promo-box:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.2); }

}
.promo-content { position: relative; z-index: 2; max-width: 60%; }
.promo-title { font-size: 2rem; font-weight: 700; margin-bottom: 10px; }
.promo-btn {
    background: var(--primary); color: #fff; padding: 10px 25px;
    border-radius: 25px; font-weight: 600; font-size: 0.9rem; display: none;
}

/* 8. GÜVEN ŞERİDİ */
.trust-section { background: #fff; padding: 40px 0; border-top: 1px solid #eee; margin-top: 30px; }
.trust-grid { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-around; flex-wrap: wrap; text-align: center; gap: 30px; }
.trust-item { flex: 1; min-width: 200px; }
.trust-icon { font-size: 3rem; color: var(--secondary); margin-bottom: 15px; transition: 0.3s; }
.trust-item:hover .trust-icon { color: var(--primary); transform: scale(1.1); }
.trust-title { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 5px; }

/* 9. ÜRÜN IZGARASI */
.main-content { max-width: 1200px; margin: 50px auto; padding: 0 20px; }
.section-title { font-size: 2.2rem; color: var(--dark); margin-bottom: 50px; text-align: center; position: relative; }
.section-title::after { content: ''; display: block; width: 80px; height: 4px; background: var(--secondary); margin: 15px auto 0; border-radius: 2px; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.card {
    background: #fff; border: 1px solid var(--border); border-radius: 12px;
    overflow: hidden; display: flex; flex-direction: column; height: 100%;
    transition: all 0.3s ease; position: relative;
}
.card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.1); border-color: var(--primary); transform: translateY(-10px); }
.card-img { height: 240px; padding: 25px; display: flex; align-items: center; justify-content: center; border-bottom: 1px solid #f9f9f9; background: #fff; }
.card-img img { max-height: 100%; object-fit: contain; }
.card-head { background: var(--primary); color: #fff; padding: 12px; text-align: center; font-weight: 600; font-size: 1.1rem; }
.card-body { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; }
.row-spec { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #f0f0f0; padding: 8px 0; font-size: 0.9rem; }
.row-spec:last-of-type { border-bottom: none; }
.label { color: #888; } .val { font-weight: 700; color: #333; }
.price-btn { background: var(--secondary); color: #fff; text-align: center; padding: 12px; border-radius: 8px; font-weight: bold; font-size: 1.3rem; margin-top: auto; transition: 0.3s; }
.card:hover .price-btn { background: var(--dark); }

/* 10. İLETİŞİM FORMU */
.contact-wrapper { display: flex; gap: 40px; }
.contact-info, .contact-form { flex: 1; background: #fff; padding: 40px; border-radius: 12px; border: 1px solid #eee; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.form-control { width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 8px; font-size: 1rem; margin-bottom: 20px; }
.btn-submit { width: 100%; background: var(--dark); color: #fff; padding: 15px; border: none; border-radius: 8px; font-weight: 600; cursor: pointer; transition: 0.3s; }
.btn-submit:hover { background: var(--primary); }

/* 11. FOOTER */
footer { background: #1a1a1a; color: #b0b0b0; font-size: 0.95rem; margin-top: auto; }
.footer-newsletter { background: #252525; padding: 40px 0; border-bottom: 1px solid #333; }
.newsletter-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.news-text h3 { color: #fff; margin-bottom: 5px; font-size: 1.5rem; }
.news-text p  { margin: 0; color: #bbb; }
.news-form  { display: flex; gap: 10px; flex: 1; max-width: 500px; }
.news-input { flex: 1; padding: 12px 15px; border-radius: 5px; border: none; outline: none; }
.news-btn   { background: var(--primary); color: #fff; border: none; padding: 0 25px; border-radius: 5px; font-weight: 600; cursor: pointer; transition: 0.3s; }
.news-btn:hover { background: #fff; color: var(--primary); }
.footer-main { padding: 70px 0 50px; }
.footer-wrapper { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; }
.f-col { flex: 1; min-width: 220px; }
.f-col h4 { color: #fff; font-size: 1.2rem; margin-bottom: 25px; position: relative; padding-bottom: 10px; }
.f-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 50px; height: 2px; background: var(--secondary); }
.f-links li  { margin-bottom: 12px; }
.f-links a   { color: #b0b0b0; transition: 0.3s; display: block; }
.f-links a:hover { color: var(--primary); transform: translateX(5px); }
.contact-list li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 15px; }
.contact-list i  { color: var(--primary); margin-top: 5px; }
.social-icons { display: flex; gap: 10px; margin-top: 20px; }
.social-btn { width: 40px; height: 40px; background: #333; color: #fff; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: 0.3s; }
.social-btn:hover { background: var(--primary); transform: translateY(-3px); }
.footer-bottom { background: #111; padding: 25px 0; border-top: 1px solid #222; }
.bottom-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.payment-icons { display: flex; gap: 15px; font-size: 2rem; color: #fff; opacity: 0.8; }

/* 12. CTA */
.cta-section { background: linear-gradient(135deg, var(--dark) 0%, #111 100%); padding: 60px 20px; text-align: center; color: #fff; margin-top: 50px; }
.cta-container { max-width: 800px; margin: 0 auto; }
.cta-title { font-size: 2.2rem; font-weight: 700; margin-bottom: 15px; color: #fff; }
.cta-text  { font-size: 1.1rem; margin-bottom: 30px; color: #ccc; line-height: 1.6; }
.cta-btn   { background: var(--secondary); color: #fff; padding: 15px 45px; border-radius: 50px; font-size: 1.1rem; font-weight: 700; display: inline-block; transition: 0.3s; box-shadow: 0 10px 20px rgba(108,192,177,0.3); }
.cta-btn:hover { background: #fff; color: var(--dark); transform: translateY(-3px); }

/* 13. MOBİL - SLIDER */
@media (max-width: 768px) {
    .hero-section {
        height: 480px !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }
}

/* ===== INSTAGRAM SECTION ===== */
@keyframes ig-shimmer {
    0%   { transform: translateX(-100%) rotate(25deg); }
    100% { transform: translateX(350%) rotate(25deg); }
}
@keyframes ig-pulse {
    0%,100% { transform: scale(1); }
    50%      { transform: scale(1.06); }
}
.ig-section { padding: 0; margin-top: 0; }
.ig-wrap {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #6f23c0 0%, #c13584 35%, #e1306c 60%, #f77737 85%, #fcaf45 100%);
    padding: 56px 48px;
}
.ig-wrap::before {
    content: '';
    position: absolute; top: -60%; left: -30%;
    width: 40%; height: 220%;
    background: rgba(255,255,255,0.12);
    animation: ig-shimmer 3.5s ease-in-out infinite;
    pointer-events: none;
}
.ig-inner {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; gap: 32px;
}
.ig-left  { display: flex; align-items: center; gap: 28px; }
.ig-icon  {
    width: 88px; height: 88px; border-radius: 24px; flex-shrink: 0;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.5);
    display: flex; align-items: center; justify-content: center;
    animation: ig-pulse 3s ease-in-out infinite;
}
.ig-eyebrow { color: rgba(255,255,255,0.75); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin: 0 0 6px; }
.ig-handle  { color: #fff; font-size: 28px; font-weight: 700; margin: 0 0 6px; letter-spacing: -0.5px; }
.ig-sub     { color: rgba(255,255,255,0.8); font-size: 14px; margin: 0; }
.ig-dots    { display: flex; gap: 6px; margin-top: 10px; }
.ig-dot     { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.4); }
.ig-dot-active { background: #fff; width: 18px; border-radius: 3px; }
.ig-right { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.ig-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: #fff; color: #c13584;
    padding: 16px 36px; border-radius: 50px;
    font-weight: 700; font-size: 16px; text-decoration: none;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}
.ig-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.ig-stats  { display: flex; gap: 24px; }
.ig-stat   { text-align: center; }
.ig-stat-n { color: #fff; font-size: 14px; font-weight: 600; display: block; }
.ig-stat-l { color: rgba(255,255,255,0.7); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }

@media (max-width: 768px) {
    .ig-wrap  { padding: 40px 24px; }
    .ig-inner { flex-direction: column; text-align: center; }
    .ig-left  { flex-direction: column; align-items: center; }
    .ig-dots  { justify-content: center; }
    .ig-handle { font-size: 22px; }
}
/* ===== /INSTAGRAM SECTION ===== */