/* ===== CSS Variables ===== */
:root {
    --primary: #4A7C3F;
    --primary-light: #6BAF5A;
    --primary-dark: #2D5A2A;
    --secondary: #D4A84B;
    --secondary-light: #E8C96A;
    --cream: #F5F0E6;
    --brown: #8B7355;
    --text-dark: #2C2C2C;
    --text-light: #6B6B6B;
    --white: #FFFFFF;
    --shadow: 0 4px 15px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
    --radius: 12px;
    --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-family: 'Georgia', serif;
    font-weight: 700;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.4rem;
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--secondary);
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 10px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

/* ===== HEADER ===== */
header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    margin-right: 12px;
}

.logo-text h1 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    line-height: 1;
}

.logo-text span {
    display: block;
    font-size: 0.8rem;
    color: var(--secondary);
    font-weight: 600;
    letter-spacing: 2px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: nowrap;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
}

.header-phone i {
    font-size: 1.2rem;
}

.header-phone span {
    white-space: nowrap;
}

.header-cart {
    position: relative;
    cursor: pointer;
    padding: 10px;
    background: var(--cream);
    border-radius: 50%;
    transition: var(--transition);
    flex-shrink: 0;
}

.header-cart:hover {
    background: var(--primary);
    color: var(--white);
}

.header-cart i {
    font-size: 1.3rem;
    color: var(--primary-dark);
}

.header-cart:hover i {
    color: var(--white);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}


/* ===== SLIDER - KÜÇÜK (GÜÇLENDİRİLMİŞ) ===== */
.hero-slider {
    position: relative !important;
    overflow: hidden !important;
    background: var(--primary-dark) !important;
    min-height: 300px !important;
    max-height: 300px !important;
}

.slider-container {
    position: relative !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    height: 100% !important;
}

.slider-wrapper {
    position: relative !important;
    min-height: 300px !important;
    max-height: 300px !important;
}

.hero-slide {
    display: none !important;
    padding: 15px 20px !important;
    animation: slideFade 0.8s ease !important;
    min-height: 300px !important;
    max-height: 300px !important;
}

.hero-slide.active {
    display: block !important;
}

@keyframes slideFade {
    from { opacity: 0.3; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

.hero-slide .hero-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
    align-items: center !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    height: 100% !important;
}

.hero-slide .hero-text {
    color: white !important;
}

.hero-slide .hero-text h2 {
    font-size: 1.3rem !important;
    line-height: 1.2 !important;
    margin-bottom: 5px !important;
    color: white !important;
}

.hero-slide .hero-text p {
    font-size: 0.8rem !important;
    opacity: 0.9 !important;
    margin-bottom: 10px !important;
    max-width: 500px !important;
}

.hero-slide .hero-buttons {
    display: flex !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
}

.hero-slide .hero-buttons .btn {
    padding: 6px 16px !important;
    font-size: 0.75rem !important;
    border-radius: 30px !important;
}

.hero-slide .hero-image {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.hero-slide .hero-image img {
    width: 100% !important;
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow-hover) !important;
    height: 250px !important;
    max-height: 250px !important;
    object-fit: cover !important;
}

/* Slider Kontroller */
.slider-btn {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: rgba(255,255,255,0.2) !important;
    color: white !important;
    border: none !important;
    width: 28px !important;
    height: 28px !important;
    border-radius: 50% !important;
    font-size: 0.8rem !important;
    cursor: pointer !important;
    transition: 0.3s !important;
    z-index: 10 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.slider-btn:hover {
    background: rgba(255,255,255,0.4) !important;
}

.slider-btn.prev {
    left: 8px !important;
}

.slider-btn.next {
    right: 8px !important;
}

.slider-dots {
    position: absolute !important;
    bottom: 6px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    gap: 5px !important;
    z-index: 10 !important;
}

.slider-dots .dot {
    width: 7px !important;
    height: 7px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.4) !important;
    cursor: pointer !important;
    transition: 0.3s !important;
}

.slider-dots .dot.active {
    background: white !important;
    transform: scale(1.2) !important;
}

.slider-dots .dot:hover {
    background: rgba(255,255,255,0.8) !important;
}



/* ===== Contact ===== */
.contact {
    padding: 60px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary);
    width: 40px;
    height: 40px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h4 {
    font-size: 1rem;
    color: var(--primary-dark);
}

.contact-item p {
    color: var(--text-light);
}

.contact-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.contact-social a {
    width: 45px;
    height: 45px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    margin-bottom: 15px;
    font-family: inherit;
    background: var(--cream);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}

.contact-form textarea {
    resize: vertical;
}

/* ===== Footer ===== */
footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 40px 0 15px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 25px;
}

.footer-info h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.footer-info p {
    opacity: 0.8;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.footer-social h4 {
    margin-bottom: 12px;
    color: var(--secondary);
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    text-align: center;
    opacity: 0.7;
    font-size: 0.8rem;
}



/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
    .hero-slide .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .hero-slide .hero-text h2 {
        font-size: 1.1rem;
    }
    .hero-slide .hero-text p {
        font-size: 0.75rem;
        margin-bottom: 8px;
    }
    .hero-slide .hero-image img {
        height: 95px;
    }
    .hero-slider {
        min-height: 110px;
    }
    .slider-wrapper {
        min-height: 110px;
    }
    .hero-slide {
        min-height: 110px;
        padding: 14px 15px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
}

/* Mobil - Yatay ve Küçük */
@media (max-width: 768px) {
    .hero-slider {
        min-height: 170px !important;
        max-height: 170px !important;
    }
    .slider-wrapper {
        min-height: 170px !important;
        max-height: 170px !important;
    }
    .hero-slide {
        min-height: 170px !important;
        max-height: 170px !important;
        padding: 10px 12px !important;
    }
    .hero-slide .hero-content {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }
    .hero-slide .hero-text h2 {
        font-size: 0.95rem !important;
        margin-bottom: 3px !important;
    }
    .hero-slide .hero-text p {
        font-size: 0.7rem !important;
        margin-bottom: 6px !important;
        max-width: 100% !important;
    }
    .hero-slide .hero-image img {
        height: 150px !important;
        max-height: 150px !important;
    }
    .hero-slide .hero-buttons .btn {
        padding: 4px 12px !important;
        font-size: 0.65rem !important;
    }
    .slider-btn {
        width: 24px !important;
        height: 24px !important;
        font-size: 0.65rem !important;
    }
    .slider-btn.prev { left: 5px !important; }
    .slider-btn.next { right: 5px !important; }
    .slider-dots .dot {
        width: 6px !important;
        height: 6px !important;
    }
}

/* Küçük Mobil */
@media (max-width: 480px) {
    .hero-slider {
        min-height: 170px !important;
        max-height: 170px !important;
    }
    .slider-wrapper {
        min-height: 170px !important;
        max-height: 170px !important;
    }
    .hero-slide {
        min-height: 170px !important;
        max-height: 170px !important;
        padding: 8px 10px !important;
    }
    .hero-slide .hero-content {
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
    }
    .hero-slide .hero-text h2 {
        font-size: 0.8rem !important;
        margin-bottom: 2px !important;
    }
    .hero-slide .hero-text p {
        font-size: 0.6rem !important;
        margin-bottom: 4px !important;
        line-height: 1.3 !important;
    }
    .hero-slide .hero-image img {
        height: 150px !important;
        max-height: 150px !important;
    }
    .hero-slide .hero-buttons .btn {
        padding: 3px 10px !important;
        font-size: 0.55rem !important;
    }
    .slider-btn {
        width: 20px !important;
        height: 20px !important;
        font-size: 0.55rem !important;
    }
    .slider-btn.prev { left: 3px !important; }
    .slider-btn.next { right: 3px !important; }
    .slider-dots .dot {
        width: 5px !important;
        height: 5px !important;
    }
}    .slider-dots {
        bottom: 3px;
        gap: 3px;
    }

    /* Section Header */
    .section-header h2 {
        font-size: 1.5rem;
    }
    .section-header p {
        font-size: 0.8rem;
    }

    /* Contact */
    .contact {
        padding: 30px 0;
    }
    .contact-item i {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    .contact-item h4 {
        font-size: 0.85rem;
    }
    .contact-item p {
        font-size: 0.75rem;
    }
    .contact-form input,
    .contact-form textarea {
        padding: 10px 14px;
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    /* Footer */
    footer {
        padding: 25px 0 10px;
    }
    .footer-info h3 {
        font-size: 1.1rem;
    }
    .footer-info p {
        font-size: 0.8rem;
    }
    .footer-bottom {
        font-size: 0.7rem;
    }
    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    /* Butonlar */
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}
/* ===== HEADER LEFT ===== */
.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ===== MOBİL MENÜ ===== */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-dark);
    cursor: pointer;
    padding: 5px 8px;
    border-radius: 8px;
    transition: var(--transition);
}
.mobile-menu-toggle:hover {
    background: var(--cream);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    max-width: 85%;
    height: 100%;
    background: var(--white);
    z-index: 2001;
    transition: left 0.3s ease;
    box-shadow: 2px 0 30px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.mobile-menu.open {
    left: 0;
}
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 2px solid var(--cream);
    background: var(--primary-dark);
    color: white;
    flex-shrink: 0;
}
.mobile-menu-title {
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Georgia', serif;
}
.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    transition: var(--transition);
}
.mobile-menu-close:hover {
    transform: rotate(90deg);
}
.mobile-menu-body {
    padding: 10px 0;
    flex: 1;
    overflow-y: auto;
}
.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    border-left: 3px solid transparent;
}
.mobile-menu-link i {
    width: 22px;
    color: var(--primary-light);
    font-size: 1rem;
}
.mobile-menu-link:hover {
    background: var(--cream);
    color: var(--primary);
    border-left-color: var(--primary);
}
.mobile-menu-link.active {
    background: var(--cream);
    color: var(--primary);
    border-left-color: var(--primary);
}
.mobile-menu-link.active i {
    color: var(--primary);
}
.mobile-menu-count {
    margin-left: auto;
    background: #e8e8e8;
    padding: 1px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    color: #7f8c8d;
    font-weight: 600;
}
.mobile-menu-link:hover .mobile-menu-count {
    background: var(--primary-light);
    color: white;
}
.mobile-menu-link.active .mobile-menu-count {
    background: var(--primary);
    color: white;
}

/* Mobilde Sidebar gizle, Hamburger göster */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    .sidebar {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 280px;
        max-width: 90%;
    }
    .mobile-menu-link {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    .mobile-menu-toggle {
        font-size: 1.3rem;
        padding: 4px 6px;
    }
}