/* ========================================
   Online Çiçek - Ana Stylesheet
   SEO Uyumlu, Mobil Uyumlu Çiçekçi Sitesi
   ======================================== */

/* Reset & Variables */
:root {
    --primary: #2d6a4f;
    --primary-light: #40916c;
    --primary-dark: #1b4332;
    --secondary: #d4a373;
    --accent: #e76f51;
    --text: #212529;
    --text-light: #6c757d;
    --bg: #ffffff;
    --bg-light: #f8f9fa;
    --bg-warm: #fef9ef;
    --border: #dee2e6;
    --shadow: 0 2px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
    --font-main: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    --max-width: 1200px;
}

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

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

body {
    font-family: var(--font-main);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul { list-style: none; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Sale Banner - Üstte Satılık Bildirimi
   ======================================== */
.sale-banner {
    background: linear-gradient(135deg, #e76f51, #f4845f);
    color: #fff;
    padding: 4px 0;
    position: relative;
    z-index: 9999;
}

.sale-banner .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.sale-banner p {
    font-size: 0.78rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
}

.sale-banner a {
    color: #fff;
    text-decoration: underline;
    font-weight: 700;
}

.banner-close {
    background: rgba(255,255,255,0.25);
    border: none;
    color: #fff;
    font-size: 0.95rem;
    cursor: pointer;
    padding: 1px 7px;
    border-radius: 50%;
    line-height: 1.2;
}

/* ========================================
   Header
   ======================================== */
.header {
    background: var(--bg);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 9998;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    gap: 20px;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
}

.logo-sub {
    font-size: 0.68rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Arama */
.search-box {
    position: relative;
    flex: 1;
    max-width: 420px;
}

.search-box input {
    width: 100%;
    padding: 9px 44px 9px 16px;
    border: 2px solid var(--border);
    border-radius: 25px;
    font-size: 0.85rem;
    transition: var(--transition);
    font-family: var(--font-main);
}

.search-box input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(45,106,79,0.1);
}

.search-box button {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
}

.search-box button:hover {
    background: var(--primary-dark);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--bg-light);
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition);
}

.phone-btn:hover {
    background: var(--bg-warm);
}

.phone-text { color: var(--primary-dark); }

/* Navigation */
.main-nav {
    background: var(--primary-dark);
    border-radius: 10px 10px 0 0;
    position: relative;
}

.main-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.main-nav > .container > ul > li > a {
    display: block;
    padding: 12px 18px;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255,255,255,0.92);
    border-radius: 8px 8px 0 0;
    white-space: nowrap;
    transition: var(--transition);
}

.main-nav > .container > ul > li > a:hover,
.main-nav > .container > ul > li > a.active {
    background: var(--primary);
    color: #fff;
}

/* Dropdown - Modern Mega Menü */
.dropdown {
    position: static;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    width: 680px;
    max-width: min(680px, calc(100vw - 40px));
    background: var(--bg);
    border-radius: 16px;
    box-shadow: 0 20px 55px rgba(0,0,0,0.16);
    border: 1px solid var(--border);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    z-index: 1000;
    list-style: none;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.dropdown-menu::before {
    display: none;
}

.dropdown:hover > .dropdown-menu,
.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu .dd-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 18px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    grid-column: 1 / -1;
    border-radius: 16px 16px 0 0;
    margin: 0;
}

.dropdown-menu .dd-header span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.dropdown-menu .dd-header a {
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    opacity: 0.95;
    padding: 0;
}

.dropdown-menu .dd-header a:hover {
    opacity: 1;
    color: #fff;
}

.dropdown-menu > li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    font-size: 0.85rem;
    color: var(--text);
    border-radius: 10px;
    transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu a .dd-icon {
    font-size: 1.05rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.dropdown-menu a:hover {
    background: var(--bg-warm);
    color: var(--primary);
}

.dropdown-menu .dd-footer {
    display: block;
    text-align: center;
    grid-column: 1 / -1;
    margin: 6px 14px 10px;
    padding: 0;
    border-top: 1px dashed var(--border);
}

.dropdown-menu .dd-footer a {
    display: inline-flex;
    justify-content: center;
    padding: 10px 0 0;
    font-weight: 700;
    color: var(--primary);
}

.dropdown-menu .dd-footer a:hover {
    color: var(--primary-dark);
    background: none;
    transform: none;
}

.arrow {
    font-size: 0.7rem;
    margin-left: 4px;
    display: inline-block;
    transition: transform 0.2s ease;
}

.dropdown:hover > a .arrow {
    transform: rotate(180deg);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    height: 550px;
    overflow: hidden;
}

.hero-slider { position: relative; height: 100%; }

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active { opacity: 1; }

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27,67,50,0.85), rgba(45,106,79,0.7));
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 80px 0;
    color: #fff;
}

.slide-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

.slide-content h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.slide-content h1 span {
    display: block;
    font-size: 1.8rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 8px;
}

.slide-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 2px solid #fff;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-family: var(--font-main);
    white-space: nowrap;
}

.btn-primary {
    background: var(--secondary);
    color: var(--primary-dark);
}

.btn-primary:hover {
    background: #c4956a;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212,163,115,0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    padding: 10px 16px;
    font-size: 0.8rem;
    border-radius: 25px;
}

.btn-whatsapp:hover { background: #1da851; }

.btn-phone {
    background: var(--primary);
    color: #fff;
    padding: 10px 16px;
    font-size: 0.8rem;
    border-radius: 25px;
}

.btn-phone:hover { background: var(--primary-dark); }

/* ========================================
   Trust Bar
   ======================================== */
.trust-bar {
    background: var(--primary-dark);
    padding: 20px 0;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.trust-icon {
    font-size: 1.8rem;
}

.trust-item strong {
    display: block;
    font-size: 0.9rem;
}

.trust-item small {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* ========================================
   Categories
   ======================================== */
.categories {
    padding: 80px 0;
    background: var(--bg-light);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.category-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: block;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.cat-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.category-card:hover .cat-image {
    transform: scale(1.05);
}

.cat-content {
    padding: 20px;
    background: var(--bg);
}

.cat-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.cat-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.cat-count {
    font-size: 0.75rem;
    background: var(--bg-warm);
    color: var(--secondary);
    padding: 3px 10px;
    border-radius: 15px;
    font-weight: 600;
}

/* ========================================
   Products
   ======================================== */
.popular-products {
    padding: 80px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 5;
    background: var(--primary);
    color: #fff;
}

.product-badge.bestseller { background: var(--accent); }
.product-badge.new { background: #2196F3; }
.product-badge.discount { background: #f44336; }

.product-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

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

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay .btn {
    background: #fff;
    color: var(--primary-dark);
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 0.75rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin: 8px 0;
    line-height: 1.3;
}

.product-info h3 a:hover {
    color: var(--primary);
}

.product-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.5;
}

.product-price {
    margin-bottom: 15px;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.old-price {
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 8px;
}

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

.section-footer {
    text-align: center;
    margin-top: 40px;
}

/* ========================================
   Special Days
   ======================================== */
.special-days {
    padding: 80px 0;
    background: var(--bg-warm);
}

.days-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.day-card {
    background: var(--bg);
    padding: 35px 25px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.day-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.day-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.day-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.day-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   Why Us
   ======================================== */
.why-us {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid var(--border);
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   Testimonials
   ======================================== */
.testimonials {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: var(--bg);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.stars {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--primary-dark);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ========================================
   SEO Content
   ======================================== */
.seo-content {
    padding: 60px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.content-block h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.content-block h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.content-block p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 12px;
}

.content-block a {
    color: var(--primary);
    font-weight: 600;
    border-bottom: 1px solid var(--primary);
}

.content-block a:hover {
    color: var(--primary-dark);
}

.content-block ul {
    list-style: disc;
    padding-left: 20px;
}

.content-block li {
    font-size: 0.88rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 6px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: #1a1a2e;
    color: #ccc;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.footer-logo .logo-main { color: #fff; font-size: 1.3rem; }
.footer-logo .logo-sub { color: #aaa; font-size: 0.65rem; }

.footer-col > p {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    font-size: 1.4rem;
    transition: var(--transition);
}

.social-links a:hover { transform: translateY(-3px); }

.footer-col h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    font-size: 0.85rem;
    color: #aaa;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.contact-list li {
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.contact-list a { color: #aaa; }
.contact-list a:hover { color: var(--secondary); }

.payment-methods {
    margin-top: 20px;
}

.payment-methods h5 {
    font-size: 0.8rem;
    margin-bottom: 8px;
    color: #aaa;
}

.payment-icons {
    display: flex;
    gap: 10px;
    font-size: 1.5rem;
}

.whatsapp-footer {
    display: inline-block;
    margin-top: 15px;
    background: #25d366;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
}

.whatsapp-footer:hover { background: #1da851; }

/* Footer SEO Links */
.footer-seo-links {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-seo-links h4 {
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 10px;
}

.footer-seo-links p {
    font-size: 0.8rem;
    line-height: 2;
    color: #888;
}

.footer-seo-links a {
    color: #999;
}

.footer-seo-links a:hover {
    color: var(--secondary);
}

/* Footer Bottom */
.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.8rem;
    color: #777;
}

.footer-bottom a {
    color: #aaa;
}

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

.footer-note {
    margin-top: 10px;
    color: var(--accent) !important;
    font-weight: 600;
    font-size: 0.85rem !important;
}

/* ========================================
   Alt Sayfalar - Breadcrumb, Page Header vb.
   ======================================== */
.breadcrumb-section {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-light);
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li + li::before {
    content: '/';
    margin: 0 8px;
    color: var(--border);
    font-weight: 400;
}

.breadcrumb li a {
    color: var(--primary);
    font-weight: 500;
}

.breadcrumb li a:hover {
    color: var(--primary-dark);
}

.breadcrumb li.active {
    color: var(--text);
    font-weight: 600;
}

.page-header {
    background: var(--bg-warm);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.page-header p {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.filters-section {
    padding: 30px 0 0;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-bar a {
    padding: 10px 20px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
}

.filter-bar a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-bar a.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.products-section {
    padding: 50px 0;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1px dashed var(--border);
}

.no-results h2, .no-results h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.no-results p {
    color: var(--text-light);
    margin-bottom: 10px;
}

.search-results {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 20px;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text);
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.search-result-item:hover {
    background: var(--bg-warm);
    border-color: var(--primary);
    color: var(--primary-dark);
}

.sri-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.sri-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sri-title {
    font-weight: 600;
    font-size: 0.92rem;
}

.sri-sub {
    font-size: 0.76rem;
    color: var(--text-light);
}

.about-section,
.contact-section {
    padding: 60px 0;
}

/* İl / İlçe sayfa listeleri */
.ilce-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 25px 0;
    list-style: none;
}

.ilce-list a {
    display: block;
    padding: 14px 18px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-weight: 500;
    color: var(--primary);
    text-align: center;
}

.ilce-list a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.ilce-urunler {
    list-style: none;
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    text-align: left;
}

.ilce-urunler a {
    color: var(--primary);
    font-weight: 500;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .search-box { display: none; }
    .phone-text { display: none; }
    .phone-btn { padding: 8px 10px; font-size: 0.9rem; }
    .mobile-toggle { display: flex; }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg);
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 12px 12px;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 10px;
    }

    .main-nav > .container > ul > li > a {
        color: var(--text);
        border-radius: var(--radius-sm);
        padding: 12px 16px;
    }

    .main-nav > .container > ul > li > a:hover,
    .main-nav > .container > ul > li > a.active {
        background: var(--primary);
        color: #fff;
    }

    .dropdown > a {
        position: relative;
        padding-right: 36px;
    }

    .dropdown > a::after {
        content: '';
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid currentColor;
        transition: transform 0.3s ease;
    }

    .dropdown.open > a::after {
        transform: translateY(-50%) rotate(180deg);
    }

    .dropdown-menu {
        display: none;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        left: auto;
        max-width: none;
        box-shadow: none;
        width: 100%;
        margin: 4px 0 8px;
        padding: 0;
        background: var(--bg-light);
        border: none;
        border-radius: var(--radius-sm);
    }

    .dropdown.open > .dropdown-menu {
        display: block;
    }

    .dropdown-menu .dd-header {
        border-radius: var(--radius-sm);
        padding: 11px 16px;
    }

    .dropdown-menu .dd-footer {
        margin: 2px 12px 10px;
    }

    .dropdown-menu a {
        color: var(--text);
        padding: 10px 20px;
    }

    .dropdown-menu a:hover {
        background: var(--bg-warm);
        color: var(--primary);
    }

    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .days-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .content-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero { height: 450px; }
    .slide-content h1 { font-size: 2rem; }
    .slide-content h1 span { font-size: 1.2rem; }
    .trust-items { grid-template-columns: repeat(2, 1fr); }
    .category-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr; }
    .days-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .header-actions { gap: 5px; }
}

@media (max-width: 480px) {
    .hero { height: 400px; }
    .slide-content h1 { font-size: 1.6rem; }
    .slide-content p { font-size: 0.9rem; }
    .section-header h2 { font-size: 1.6rem; }
    .trust-items { grid-template-columns: 1fr; }
}

/* ==================== Ürün Detay Sayfası ==================== */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.product-detail .product-image {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg);
    padding: 20px;
    text-align: center;
}

.product-detail .product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.product-detail .product-info h1 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.product-detail .product-category {
    display: inline-block;
    background: var(--bg-warm);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.product-detail .product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
    font-size: 1.4rem;
    font-weight: 700;
}

.product-detail .old-price {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.product-detail .stock {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--success, #2e7d32);
    font-size: 0.85rem;
    font-weight: 600;
    margin: 8px 0 18px;
}

.product-detail .product-features {
    list-style: none;
    margin: 18px 0;
}

.product-detail .product-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px dashed var(--border);
    font-size: 0.85rem;
    color: var(--text-light);
}

.product-detail .product-features li:last-child {
    border-bottom: none;
}

.product-detail .qty-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 16px 0;
}

.product-detail .qty {
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 6px 10px;
    width: 100px;
    font-size: 0.9rem;
}

.detail-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 16px;
}

.detail-gallery img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border);
    cursor: pointer;
}

@media (max-width: 1024px) {
    .product-detail { grid-template-columns: 1fr; }
    .detail-gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .detail-gallery { grid-template-columns: 2fr 1fr; }
}
