:root {
    --primary: #0f172a;
    --accent: #fbbf24;
    --accent-dark: #d97706;
    --text: #1e293b;
    --text-light: #64748b;
    --bg: #f8fafc;
    --white: #ffffff;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding-bottom: 70px; /* Balanced space for sticky footer */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    height: 80px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--primary);
    letter-spacing: -1px;
}

.logo a span {
    color: var(--accent-dark);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-dark);
}

.btn-order-nav {
    background: var(--primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600 !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 2100;
}

.mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background: var(--primary);
    border-radius: 10px;
    transition: var(--transition);
}

/* Mobile Menu Button Animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

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

/* Hero Section */
.hero {
    padding: 80px 0;
    background: radial-gradient(circle at top right, #fef3c7 0%, #f8fafc 40%);
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 25px;
    color: var(--primary);
    font-weight: 900;
    letter-spacing: -2px;
}

.hero-content h1 span {
    background: linear-gradient(90deg, var(--accent-dark), #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(251, 191, 36, 0.1);
    color: var(--accent-dark);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 25px;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.pulse {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    position: relative;
}

.pulse::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-ring 1.5s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(3); opacity: 0; }
}

/* Hero Buttons */
.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--primary);
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.3);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 45px rgba(251, 191, 36, 0.5);
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--primary);
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}


.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item strong {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 800;
}

.stat-item span {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-image {
    position: relative;
}

.image-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 120%; height: 120%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, transparent 70%);
    z-index: -1;
    filter: blur(40px);
}

.hero-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.15);
}



/* Badges */
.badges {
    padding: 60px 0;
    background: var(--white);
}

.badge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.badge-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    background: var(--bg);
    transition: var(--transition);
}

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

.badge-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.badge-card h3 {
    margin-bottom: 10px;
    font-weight: 700;
}

.badge-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Products */
.products {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 5px; /* Boşluğu 5px yaptık */
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

/* Sekme butonları kaldırıldı */

.shop-header {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 80px 0 5px; /* Alt boşluğu 5px'e çektik */
    border-bottom: 1px solid #e2e8f0;
}

.shop-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.header-left {
    max-width: 600px;
}

.header-left .breadcrumb {
    margin-bottom: 20px;
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
}

.sorting-box {
    background: white;
    padding: 15px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.sorting-box span {
    font-size: 1rem;
    color: #0f172a;
    font-weight: 700;
}

.sorting-box select {
    padding: 10px;
    border: none;
    border-radius: 12px;
    font-family: inherit;
    cursor: pointer;
    outline: none;
    background: #f8fafc;
    font-weight: 600;
    color: #0f172a;
    font-size: 1rem;
}

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

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: scale(1.02);
}

.product-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #f1f5f9;
}

.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-sku {
    font-size: 0.7rem;
    color: #94a3b8;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.product-rating {
    color: #fbbf24;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.product-rating span {
    color: #64748b;
    font-size: 0.8rem;
}

.product-tag {
    background: #fef3c7;
    color: #d97706;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
}

.product-info h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--primary);
    line-height: 1.3;
}

.product-desc {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    margin-top: auto;
    flex-wrap: nowrap;
}

.current-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

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

.product-actions {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 10px;
}

.btn-detail {
    background: #f1f5f9;
    color: var(--primary);
    text-align: center;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-detail:hover {
    background: #e2e8f0;
}

.btn-buy-direct {
    background: var(--accent-dark);
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.btn-buy-direct:hover {
    background: var(--primary);
}

/* Related Products in Blog */
.related-products-box {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #f1f5f9;
}

.related-products-box h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 30px;
    text-align: center;
}

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

.related-card {
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}

.related-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.related-card img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 15px;
}

.related-card h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.related-card .price {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent-dark);
    margin-bottom: 15px;
}

.related-card .btn-sm {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
}

.related-card .btn-sm:hover {
    background: var(--accent-dark);
}

@media (max-width: 768px) {
    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* Detail Page */
.detail-page {
    padding: 60px 0;
    background: #f8fafc;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumb a {
    text-decoration: none;
    color: var(--text-light);
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #f1f5f9;
}

.image-wrapper img {
    width: 100%;
    display: block;
    transition: var(--transition);
}

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

.detail-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-dark);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
}

.detail-info-section h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.detail-rating {
    color: #fbbf24;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.detail-rating span {
    color: var(--text-light);
}

.detail-price-box {
    margin-bottom: 40px;
    padding: 30px;
    background: #f8fafc;
    border-radius: 30px;
    display: flex;
    align-items: baseline;
    gap: 20px;
}

.detail-price-box .old-price {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 1.4rem;
}

.detail-price-box .current-price {
    font-size: 2.8rem;
    font-weight: 900;
    color: #0f172a;
}

.detail-warning-banner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.detail-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.f-item {
    font-weight: 600;
    color: #334155;
    font-size: 0.95rem;
}

.detail-description {
    margin-bottom: 40px;
    line-height: 1.8;
}

.detail-description h3 {
    margin-bottom: 15px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
}

.trust-badges-inline {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.trust-badges-inline img {
    width: 20px;
    height: 20px;
}

.trust-badges-inline span {
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: 15px;
}

/* Footer Consolidated */
footer {
    padding: 80px 0 40px;
    background: #020617;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    align-items: start;
}

.footer-brand .logo a {
    color: white;
}

.footer-brand p {
    margin-top: 20px;
    color: #94a3b8;
    line-height: 1.6;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}

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

.payment-icons {
    display: flex;
    gap: 12px;
}

.payment-icons img {
    height: 25px;
    filter: grayscale(1) brightness(1.5);
    opacity: 0.7;
}

/* Premium Footer Styles */
.main-footer {
    background: #0f172a;
    color: white;
    padding: 80px 0 40px;
    border-top: 4px solid #fbbf24;
    position: relative;
    z-index: 10;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo a {
    color: white;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.footer-logo span {
    color: #fbbf24;
}

.footer-brand p {
    color: #94a3b8;
    line-height: 1.7;
    margin: 20px 0;
    font-size: 0.95rem;
}

.footer-trust-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-trust-icons span {
    font-size: 0.8rem;
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

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

.footer-col h4, .footer-payment h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-weight: 800;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #fbbf24;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

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

.footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: #fbbf24;
    padding-left: 5px;
}

.footer-payment p {
    color: #94a3b8;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.payment-badges {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.03);
    padding: 15px;
    border-radius: 12px;
}

.footer-eeat {
    background: rgba(255, 255, 255, 0.02);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 40px;
}

.footer-eeat p {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #475569;
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-nav {
        grid-template-columns: 1fr 1fr;
    }

    .footer-payment {
        display: none !important;
    }
}

@media (max-width: 600px) {
    .footer-nav {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-trust-icons {
        justify-content: center;
    }
    
    .footer-col h4 {
        font-size: 1rem;
    }
    
    .footer-payment {
        display: none !important;
    }
}


/* Features */
.features {
    padding: 100px 0;
    background: var(--primary);
    color: white;
}

/* Neden Biz Section Styles */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    padding: 30px;
    border-radius: 25px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #fffcf0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 1px solid #fef3c7;
    flex-shrink: 0;
}

.feature-title {
    font-size: 1.3rem;
    color: #0f172a;
    font-weight: 800;
    margin: 0;
}

.feature-desc {
    color: #475569;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }
    
    .feature-card {
        padding: 12px !important;
        border-radius: 15px !important;
    }
    
    .feature-header {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 8px !important;
    }
    
    .feature-title {
        font-size: 0.85rem !important;
    }
    
    .feature-desc {
        font-size: 0.75rem !important;
        line-height: 1.4 !important;
        text-align: center !important;
    }
    
    .feature-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.2rem !important;
        margin-bottom: 5px !important;
    }
}

.features-image img {
    width: 100%;
    border-radius: 30px;
}

.features-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 800;
    font-size: 1.2rem;
}

/* Order Form Section */
.order-form-section {
    padding: 100px 0;
    background: #f1f5f9;
}

.order-card {
    background: white;
    max-width: 700px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.order-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.1);
}

.btn-submit {
    background: var(--accent-dark);
    color: white;
    border: none;
    padding: 20px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.btn-submit:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Premium FAQ Styles */
.faq {
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%), url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2394a3b8' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 120px 0;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

@media (max-width: 992px) {
    .faq-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}
@media (max-width: 768px) {
    .faq-question {
        font-size: 0.9rem !important;
        padding: 15px !important;
    }
    .faq-answer {
        font-size: 0.85rem !important;
        padding: 0 15px 15px !important;
    }
    .faq-question::after {
        width: 20px !important;
        height: 20px !important;
        font-size: 1.2rem !important;
    }
}

.faq-item:hover {
    border-color: var(--accent);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px 30px;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: var(--transition);
}

.faq-item.active .faq-question {
    color: var(--primary);
    background: #f8fafc;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent-dark);
    transition: transform 0.4s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fffbeb;
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
    background: var(--primary);
    color: white;
}

.faq-answer {
    padding: 0 30px 30px;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    display: none;
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Footer redundant blocks removed */

/* Animations */
.fade-in {
    animation: fadeIn 1s ease forwards;
}

.fade-in-delayed {
    opacity: 0;
    animation: fadeIn 1s ease 0.3s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}
/* SEO Content */
.seo-content {
    padding: 80px 0;
    background: #f1f5f9;
}

.seo-card {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    max-width: 900px;
    margin: 0 auto;
}

.seo-card h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.seo-card p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.seo-card strong {
    color: var(--primary);
}
/* Blog Section */
.blog {
    padding: 100px 0;
    background: white;
}

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

.blog-card {
    background: #f8fafc;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.blog-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--accent-dark);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.blog-card h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-text {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-text:hover {
    color: var(--accent-dark);
    padding-left: 5px;
}

/* Blog Detail Page */
.blog-detail-page {
    padding: 60px 0 100px;
    background: #f8fafc;
}

.blog-post-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.post-header {
    margin-bottom: 30px;
}

.post-date {
    color: var(--accent-dark);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.post-header h1 {
    font-size: 2.5rem;
    color: var(--primary);
    line-height: 1.2;
}

.post-image {
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.post-content h3 {
    color: var(--primary);
    margin: 35px 0 15px;
    font-size: 1.5rem;
}

.post-content p {
    margin-bottom: 20px;
}

.post-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.related-products-box {
    margin-top: 60px;
}

.related-products-box h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
    color: var(--primary);
}

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

@media (max-width: 768px) {
    .related-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
    }
    
    .related-card {
        padding: 10px !important;
    }
    
    .related-card img {
        height: 110px !important;
        object-fit: contain;
        margin-bottom: 8px !important;
    }
    
    .related-card h4 {
        font-size: 0.65rem !important;
        margin-bottom: 5px !important;
        height: 35px;
        overflow: hidden;
    }
    
    .related-card .price {
        font-size: 0.75rem !important;
        display: block;
        margin-bottom: 5px;
    }
    
    .related-card .btn-sm {
        padding: 4px 8px !important;
        font-size: 0.6rem !important;
        width: 100%;
    }
}

.related-item {
    text-align: center;
    background: #f1f5f9;
    padding: 20px;
    border-radius: 15px;
}

.related-item img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.related-item h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.related-item .price {
    display: block;
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .blog-post-container { padding: 25px; }
    .post-header h1 { font-size: 1.8rem; }
    .related-grid { grid-template-columns: 1fr; }
}

/* Sticky Footer */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #e2e8f0;
}

.sticky-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.sticky-text {
    font-weight: 700;
    color: var(--primary);
}

.btn-sticky {
    background: linear-gradient(45deg, #fbbf24, #f59e0b, #fbbf24);
    background-size: 200% 200%;
    color: #0f172a;
    padding: 12px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    animation: stickyPulse 2s infinite, gradientMove 3s ease infinite;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
    transition: all 0.3s ease;
}

@keyframes stickyPulse {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 4px 25px rgba(251, 191, 36, 0.6); }
    100% { transform: scale(1); box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4); }
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-sticky:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.testimonial-card p {
    font-style: italic;
    color: #475569;
    margin-bottom: 25px;
    line-height: 1.6;
}

.testimonial-card .stars {
    color: #fbbf24;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.avatar-blue { background: #e0f2fe; color: #0369a1; }
.avatar-amber { background: #fef3c7; color: #92400e; }
.avatar-green { background: #dcfce7; color: #166534; }
.avatar-purple { background: #fae8ff; color: #86198f; }
.avatar-orange { background: #ffedd5; color: #9a3412; }
.avatar-slate { background: #f1f5f9; color: #475569; }

@media (max-width: 768px) {
    .sticky-text { display: none; }
    .btn-sticky { width: 100%; text-align: center; }
    .sticky-footer .container { justify-content: center; }
}

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

@media (max-width: 768px) {
    .mobile-menu-btn { display: flex; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        transition: 0.4s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        display: flex !important; /* Force flex but hidden by position */
        z-index: 2050;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        width: 100%;
        text-align: center;
        padding: 15px 0;
    }

    .btn-order-nav {
        margin-top: 20px;
    }

    .product-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px;
    }
    .blog-grid { grid-template-columns: 1fr; }
    .hero-grid { 
        grid-template-columns: 1fr; 
        text-align: center;
        position: relative;
        padding: 0;
        width: 100%;
    }
    
    .hero {
        position: relative;
        overflow: hidden;
        min-height: auto !important; /* Masaüstünden gelen hayalet boşluğu sildik */
        padding: 0 15px;
        display: flex;
        align-items: flex-start;
        padding-top: 20px;
        justify-content: center;
    }

    .hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        opacity: 0.3;
        filter: blur(5px);
    }

    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0;
        box-shadow: none;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        background: none;
        backdrop-filter: none;
        padding: 0;
        border-radius: 0;
        border: none;
        box-shadow: none;
    }

    .hero-content .badge {
        display: block !important;
        width: fit-content;
        margin: 0 auto 15px !important;
    }

    .hero-content h1 { 
        font-size: 2.2rem; 
        margin-bottom: 15px;
        background: rgba(255, 255, 255, 0.9);
        display: inline-block;
        padding: 5px 15px;
        border-radius: 10px;
        line-height: 1.4;
    }
    
    .hero-content p {
        display: none !important;
    }

    .hero-btns { 
        flex-direction: column;
        gap: 12px;
        justify-content: center; 
        margin-bottom: 20px !important;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        padding: 14px;
    }

    .hero-trust { 
        justify-content: center; 
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 20px;
    }

    .nav-links { display: none; }
    
    /* Shop Header Mobile Optimization */
    .shop-header { padding: 20px 0 5px !important; }
    .shop-header .container { 
        display: flex !important;
        flex-direction: row !important; 
        justify-content: space-between !important; 
        align-items: center !important;
        gap: 10px !important;
        flex-wrap: nowrap !important;
    }
    .header-left { flex: 1; }
    .header-left .breadcrumb { display: none; } /* Mobilde yer kazanmak için gizli */
    .header-left h1 { font-size: 1.1rem !important; margin-bottom: 0 !important; white-space: nowrap; }
    .header-left p { display: none; } /* Açıklamayı mobilde gizliyoruz */
    
    .header-right { flex-shrink: 0; }
    .sorting-box { 
        padding: 6px 12px !important; 
        border-radius: 10px !important; 
        gap: 8px !important;
        background: #f1f5f9 !important;
        border: none !important;
    }
    .sorting-box span { display: none; } /* "Sıralama:" yazısını gizleyerek sadece kutuyu bırakıyoruz */
    .sorting-box select { 
        font-size: 0.8rem !important; 
        padding: 4px !important; 
        background: transparent !important;
        font-weight: 700 !important;
    }

    /* Promo Banner Mobile Fix */
    .shop-main .container > div:first-child {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 15px !important;
        gap: 10px !important;
    }
    .shop-main .container > div:first-child div:last-child {
        margin-left: 0 !important;
    }
    .shop-main .container > div:first-child div:nth-child(2) {
        font-size: 0.95rem !important;
    }

    .shop-main { padding: 5px 0 !important; }

    .features-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .product-card { flex-direction: column; height: 100%; }
    .product-info { padding: 12px; display: flex; flex-direction: column; flex-grow: 1; }
    .product-info h3 { font-size: 0.95rem; margin-bottom: 8px; min-height: 2.8em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .product-sku { font-size: 0.6rem; margin-bottom: 4px; }
    .product-rating { font-size: 0.75rem; margin-bottom: 8px; }
    .product-desc { display: none; } /* Mobilde 2'li düzende açıklama gizlenir, temiz görünür */
    .product-price { 
        display: flex !important; 
        flex-direction: column !important; /* Dar alanda fiyatlar alt alta ama düzenli */
        align-items: flex-start !important; 
        gap: 2px !important;
        margin-bottom: 12px !important;
        margin-top: auto !important;
    }
    .current-price { font-size: 1.2rem; font-weight: 800; }
    .old-price { font-size: 0.85rem; }
    .product-actions { grid-template-columns: 1fr; gap: 6px; }
    .btn-detail, .btn-buy-direct { padding: 8px 5px; font-size: 0.75rem; border-radius: 8px; }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .testimonial-card {
        padding: 20px 15px !important;
    }

    .testimonial-card p {
        font-size: 0.75rem !important;
        line-height: 1.4 !important;
        margin-bottom: 15px !important;
    }

    .testimonial-card .stars {
        font-size: 0.75rem !important;
        margin-bottom: 10px !important;
    }

    .navbar { height: 60px; }
    .logo a { font-size: 1.2rem; }
    
    .badge-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .badge-card {
        padding: 20px 15px !important;
    }

    .badge-card .icon {
        font-size: 1.8rem !important;
        margin-bottom: 10px !important;
    }

    .badge-card h3 {
        font-size: 0.95rem !important;
    }

    .badge-card p {
        font-size: 0.75rem !important;
    }
/* User Avatar Blur Effect */
.user-avatar-blur {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    filter: blur(4px);
    object-fit: cover;
    border: 2px solid #e2e8f0;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

/* Responsive for New Sections */
@media (max-width: 768px) {
    body {
    }
    footer {
        padding-bottom: 40px !important; /* Reduced mobile padding */
    }
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .comparison-wrapper {
        margin: 0 -20px;
        padding: 0 20px;
        overflow-x: auto;
    }
    
    .comparison table th, .comparison table td {
        padding: 12px 10px !important;
        font-size: 0.85rem;
        min-width: 120px;
    }

    /* Product Detail Page Mobile Fixes */
    .detail-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding: 20px !important;
        margin: 0 !important;
    }

    .detail-info-section h1 {
        font-size: 1.8rem !important;
        margin-top: 20px;
    }

    .detail-price-box {
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 8px !important;
        padding: 20px 15px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        text-align: center !important;
    }
    .detail-price-box .current-price {
        font-size: 2.2rem !important;
    }
    .detail-price-box .old-price {
        font-size: 1.2rem !important;
    }
    .detail-warning-banner {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 12px 15px !important;
        margin-bottom: 25px !important;
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        width: 100% !important;
        box-sizing: border-box !important;
        word-break: break-word !important;
    }

    .detail-features {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        width: 100% !important;
    }

    .f-item {
        font-size: 0.95rem !important;
        margin-bottom: 0 !important;
        white-space: normal !important;
        word-break: break-word !important;
    }

    .trust-badges-inline {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px !important;
    }

    .trust-badges-inline span {
        margin-right: 5px !important;
    }

    .detail-page {
        padding: 15px 0 !important;
    }

    .detail-description {
        font-size: 1rem;
    }

    /* Product Detail Page Description Mobile Fix */
    .detail-page .product-seo-content {
        margin-top: 25px !important;
    }
    .detail-page .product-seo-content > div {
        padding: 25px 15px !important;
        border-radius: 20px !important;
    }
    .detail-page .product-seo-content h2 {
        font-size: 1.45rem !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }
    .detail-page .product-seo-content h3 {
        font-size: 1.2rem !important;
        line-height: 1.3 !important;
        margin-top: 25px !important;
        margin-bottom: 12px !important;
    }
    .detail-page .detail-description {
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
    }
    .detail-page .detail-description div[style*="padding: 25px"] {
        padding: 15px !important;
        margin: 20px 0 !important;
        border-radius: 10px !important;
    }
    .detail-page .detail-description div[style*="dashed"] {
        padding: 25px 15px !important;
        margin: 30px 0 10px !important;
        border-radius: 15px !important;
    }
    .detail-page .detail-description div[style*="dashed"] a[style*="linear-gradient"] {
        display: block !important;
        width: 100% !important;
        padding: 15px 10px !important;
        font-size: 1.05rem !important;
        font-weight: 800 !important;
        border-radius: 30px !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        line-height: 1.3 !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
        text-align: center;
    }

    .footer-brand, .footer-links, .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .trust-icons, .payment-methods > div {
        justify-content: center;
    }
}

/* Sticky Footer CTA */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 15px 0;
    z-index: 2000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    border-top: 1px solid rgba(251, 191, 36, 0.3);
}

.sticky-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-text {
    font-weight: 700;
    font-size: 1.1rem;
}

.btn-sticky {
    background: var(--accent);
    color: var(--primary);
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.btn-sticky:hover {
    transform: scale(1.05);
    background: white;
}

@media (max-width: 768px) {
    .sticky-text {
        font-size: 0.9rem;
        max-width: 60%;
    }
    .btn-sticky {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
}

/* Legal Pages Styling */
.legal-page h1 {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.legal-content h3 {
    border-left: 5px solid var(--accent);
    padding-left: 15px;
    margin-top: 50px !important;
}

.legal-content p {
    margin-bottom: 20px;
}

.legal-content ul li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 40px 0 !important;
    }
    .legal-page .container {
        padding: 30px 20px !important;
        border-radius: 20px !important;
    }
    .legal-page h1 {
        font-size: 1.8rem !important;
        margin-bottom: 20px !important;
    }
    .legal-page h2 {
        font-size: 1.3rem !important;
        margin: 30px 0 15px !important;
    }
    .legal-page div[style*="font-size: 1.1rem"],
    .legal-page .legal-content {
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
    }
    .legal-page div[style*="background: #f8fafc"],
    .legal-page div[style*="background: #f0fdf4"],
    .legal-page div[style*="background: #fdf4ff"] {
        padding: 15px !important;
        margin: 20px 0 !important;
        border-radius: 12px !important;
    }
}

