/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #2d5a27;
    --secondary-green: #4a7c59;
    --light-green: #7fb069;
    --cream: #f5f1e8;
    --light-cream: #faf8f3;
    --dark-cream: #e8e0d0;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-cream);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-green);
    font-size: 1.5rem;
    font-weight: bold;
}

.logo i {
    font-size: 2rem;
    margin-right: 0.5rem;
}

.search-section {
    flex: 1;
    max-width: 500px;
    margin: 0 2rem;
}

.search-form {
    display: flex;
    position: relative;
}

.search-form input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--dark-cream);
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-form input:focus {
    border-color: var(--primary-green);
}

.search-form button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-form button:hover {
    background: var(--secondary-green);
}

/* Search Suggestions */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--dark-cream);
    border-top: none;
    border-radius: 0 0 25px 25px;
    box-shadow: var(--shadow-hover);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
}

.suggestion-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease;
}

.suggestion-item:hover {
    background: var(--light-cream);
}

.suggestion-item i {
    color: var(--primary-green);
    font-size: 0.9rem;
}

.suggestion-item span {
    color: var(--text-dark);
    font-size: 0.9rem;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-icon, .user-icon {
    position: relative;
    color: var(--primary-green);
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cart-icon:hover, .user-icon:hover {
    color: var(--secondary-green);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--light-green);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: var(--white);
    padding: 4rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--light-green);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-green);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
}

/* Categories Section */
.categories {
    padding: 4rem 0;
    background: var(--light-cream);
}

/* Products Section */
.products {
    padding: 4rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.category-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.category-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-image {
    height: 200px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-info {
    padding: 1.5rem;
    text-align: center;
}

.category-info h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.category-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.discount-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--light-green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.product-info h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-info h3 a:hover {
    color: var(--secondary-green);
}

.product-category {
    color: var(--light-green);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.current-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-green);
}

.old-price {
    font-size: 1.1rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-add-cart {
    background: var(--cream);
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    flex: 1;
}

.btn-add-cart:hover {
    background: var(--primary-green);
    color: var(--white);
}

.btn-buy-now {
    background: var(--primary-green);
    color: var(--white);
    flex: 1;
}

.btn-buy-now:hover {
    background: var(--secondary-green);
}

/* Footer */
.footer {
    background: var(--primary-green);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1rem;
    color: var(--light-green);
}

.footer-section p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--light-green);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--light-green);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: var(--light-green);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--secondary-green);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .search-section {
        margin: 0;
        width: 100%;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeInUp 0.6s ease forwards;
}

.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.2s; }
.product-card:nth-child(4) { animation-delay: 0.3s; }
.product-card:nth-child(5) { animation-delay: 0.4s; }
.product-card:nth-child(6) { animation-delay: 0.5s; }

/* View All Products */
.view-all-products {
    text-align: center;
    margin-top: 3rem;
}

.no-products {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

/* User Dropdown */
.user-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-hover);
    border-radius: 8px;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.user-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background: var(--light-cream);
    color: var(--primary-green);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    display: none;
}

.hero-slide:first-child {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .category-image {
        height: 150px;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        margin-top: 1rem;
    }
    
    .user-dropdown:hover .dropdown-menu {
        transform: none;
    }
}

/* FAQ Section */
.faq-section {
    background: var(--light-cream);
    padding: 3rem 0;
}
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}
.faq-item {
    border-radius: 10px;
    background: var(--white);
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 1.2rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background 0.2s;
}
.faq-question:hover {
    background: var(--cream);
}
.faq-icon {
    transition: transform 0.3s;
    margin-left: 1rem;
    color: var(--primary-green);
    font-size: 1.2rem;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: var(--cream);
    color: var(--text-dark);
    padding: 0 1.5rem;
    font-size: 1rem;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
}
.faq-item.active .faq-answer {
    padding: 1rem 1.5rem;
    max-height: 300px;
}
@media (max-width: 768px) {
    .faq-list { max-width: 100%; }
    .faq-question { font-size: 1rem; padding: 1rem; }
    .faq-answer { font-size: 0.95rem; }
}

/* SSS başlığı ile footer arası boşluk ayarı */
.faq-section + .footer {
    margin-top: 0;
}

/* Avantajlar (Özellikler) Alanı */
.advantages-section {
    background: var(--light-cream);
    padding: 2rem 0 1.5rem 0;
    border-bottom: 1px solid var(--dark-cream);
}
.advantages-list {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 1.2rem;
    flex-wrap: wrap;
}
.advantage-item {
    flex: 1 1 170px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.7rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 1rem 1rem 0.9rem 1rem;
    min-width: 150px;
    max-width: 260px;
    min-height: 110px;
    transition: box-shadow 0.3s;
}
.advantage-item i,
.advantage-icon-multi {
    font-size: 1.7rem;
    color: var(--primary-green);
    min-width: 32px;
    text-align: center;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 2px;
}
.advantage-item strong {
    display: block;
    color: var(--primary-green);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
    letter-spacing: 0.2px;
    line-height: 1.2;
}
.advantage-item span {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.3;
}
.advantage-item div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 48px;
}
@media (max-width: 1200px) {
    .advantage-item {
        max-width: 220px;
        font-size: 0.97rem;
        padding: 0.8rem 0.5rem;
        min-height: 90px;
    }
}
@media (max-width: 900px) {
    .advantage-item {
        flex: 1 1 45%;
        min-width: 140px;
        max-width: 100%;
        font-size: 0.95rem;
        padding: 0.7rem 0.4rem;
        min-height: 80px;
    }
}
@media (max-width: 600px) {
    .advantages-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    .advantage-item {
        flex: 1 1 100%;
        font-size: 0.93rem;
        padding: 0.7rem 0.5rem;
        max-width: 100%;
        min-height: 60px;
    }
    .advantage-item i,
    .advantage-icon-multi {
        font-size: 1.3rem;
        min-width: 26px;
    }
    .advantage-item strong {
        font-size: 0.98rem;
    }
    .advantage-item span {
        font-size: 0.92rem;
    }
}

.advantage-icon-multi {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.15em;
    min-width: 32px;
}
.advantage-icon-multi i {
    font-size: 1.7rem;
    color: var(--primary-green);
    margin: 0 !important;
    position: static !important;
}
.advantage-icon-multi i:last-child {
    font-size: 1.1rem;
    margin-left: -8px !important;
    margin-top: 4px !important;
}

@media (max-width: 600px) {
    .advantage-icon-multi {
        min-width: 26px;
    }
    .advantage-icon-multi i {
        font-size: 1.3rem;
    }
    .advantage-icon-multi i:last-child {
        font-size: 0.9rem;
        margin-left: -6px !important;
        margin-top: 3px !important;
    }
}

.cards-bar {
    width: 100%;
    background: #fff;
    border-top: 1px solid var(--dark-cream);
    padding: 1.2rem 0 0.7rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cards-bar-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 420px;
    width: 100%;
}
.cards-bar img {
    max-width: 960px;
    height: auto;
    display: block;
    margin-bottom: 0.4rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
}
.cards-bar-desc {
    color: var(--text-dark);
    font-size: 0.98rem;
    opacity: 0.85;
    text-align: center;
}
@media (max-width: 600px) {
    .cards-bar-inner {
        max-width: 98vw;
    }
    .cards-bar img {
        display: none;
    }
    .cards-bar-desc {
        font-size: 0.93rem;
    }
}

.scroll-to-top {
    position: fixed;
    right: 2.2rem;
    bottom: 2.2rem;
    width: 48px;
    height: 48px;
    background: var(--primary-green);
    color: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(44,62,80,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    z-index: 9999;
    transition: opacity 0.3s, background 0.2s;
}
.scroll-to-top.show {
    opacity: 1;
    pointer-events: auto;
}
.scroll-to-top:hover {
    background: var(--secondary-green);
    color: #fff;
}
@media (max-width: 600px) {
    .scroll-to-top {
        right: 1rem;
        bottom: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Müşteri Yorumları (Testimonial) Slider */
.testimonials-section {
    background: #fff;
    padding: 48px 0 32px 0;
    margin-bottom: 0;
}
.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 24px;
}
.testimonials-section .section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.testimonials-section .section-header p {
    color: #444;
    font-size: 1.1rem;
    margin-bottom: 0;
}
.testimonials-slider-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}
.testimonials-slider {
    display: flex;
    overflow-x: auto;
    gap: 24px;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: #7bb661 #e6e6e6;
    flex: 1;
}
.testimonial-card {
    min-width: 340px;
    max-width: 360px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px 0 rgba(123,182,97,0.08);
    padding: 28px 24px 20px 24px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    border: 2px solid #e6e6e6;
    transition: border-color 0.2s;
}
.testimonial-card:focus-within, .testimonial-card:hover {
    border-color: #7bb661;
}
.testimonial-stars {
    color: #f5b50a;
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 2px;
}
.testimonial-verified {
    color: #2d5a27;
    margin-left: 6px;
    font-size: 1.1rem;
}
.testimonial-meta {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 8px;
    display: flex;
    gap: 10px;
    align-items: center;
}
.testimonial-product {
    color: #2d5a27;
    font-weight: 600;
}
.testimonial-title {
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
}
.testimonial-content {
    font-size: 1.08rem;
    color: #3d4d2b;
    margin-bottom: 0;
    font-style: normal;
}
.testimonial-text {
    margin: 0;
}
.testimonial-arrow {
    background: #fff;
    border: 1.5px solid #e6e6e6;
    color: #2d5a27;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    margin: 0 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: background 0.2s, border-color 0.2s;
    z-index: 2;
}
.testimonial-arrow:hover {
    background: #7bb661;
    color: #fff;
    border-color: #7bb661;
}
@media (max-width: 600px) {
    .testimonial-card {
        min-width: 90vw;
        max-width: 95vw;
        padding: 18px 10px 14px 10px;
    }
    .testimonials-section {
        padding: 32px 0 16px 0;
    }
}
.testimonial-name {
    margin-top: 14px;
    font-size: 0.98rem;
    color: #888;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-align: left;
} 