/* Font Awesome CDN */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* SweetAlert2 CDN */
@import url('https://cdn.jsdelivr.net/npm/sweetalert2@11.10.1/dist/sweetalert2.min.css');

/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #7dd3c0;
    --primary-dark: #6bc4b0;
    --primary-light: #e6f7f3;
    --text-dark: #2c3e50;
    --text-medium: #596b7e;
    --text-light: #95a5a6;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --danger: #ff6b6b;
    --success: #2ecc71;
    --warning: #f1c40f;
    --info: #3498db;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 5px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.contact-info {
    display: flex;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
    color: #666;
}

.header-actions {
    display: flex;
    align-items: center;
}

.header-actions a {
    margin-left: 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.header-actions a:hover {
    color: #7dd3c0;
}

.main-nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 0;
    position: relative;
}

.logo img {
    max-height: 60px;
    width: auto;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #7dd3c0;
}

.search-box {
    display: flex;
    align-items: center;
}

.search-box input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 25px;
    outline: none;
    width: 200px;
}

.search-box button {
    background: none;
    border: none;
    margin-left: -35px;
    cursor: pointer;
    font-size: 16px;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 650px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 650px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.slide.prev {
    transform: translateX(-100%);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 100%;
    pointer-events: none;
}

.hero-nav button {
    position: absolute;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    pointer-events: auto;
}

.hero-nav button:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.5);
}

.hero-nav .prev {
    left: 30px;
}

.hero-nav .next {
    right: 30px;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 100px; /* Sola yasla */
    right: auto;
    transform: translateY(-50%); /* Sadece dikey ortala */
    text-align: left; /* Metni sola yasla */
    color: white;
    z-index: 10;
    width: auto;
    min-width: 400px; /* Kısa metinlerde bile kutu dolgun görünsün */
    max-width: 600px; /* Genişliği sınırla */
    padding: 50px;
    background: rgba(0, 0, 0, 0.7); /* Daha koyu ve okunaklı arka plan */
    border-radius: 8px; /* Daha modern köşe */
    backdrop-filter: blur(10px); /* Arka planı bulanıklaştır */
    border-left: 6px solid #7dd3c0; /* Sol tarafa şık bir çizgi */
    box-shadow: 0 15px 40px rgba(0,0,0,0.4); /* Derinlik kat */
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translate(-50px, -50%);
    }
    to {
        opacity: 1;
        transform: translate(0, -50%);
    }
}

.slide-content h2 {
    font-size: 18px;
    font-weight: 600;
    color: #7dd3c0;
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: rgba(125, 211, 192, 0.1);
    display: inline-block;
    padding: 5px 10px;
    border-radius: 4px;
}

.slide-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    color: white;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.slide-content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(125, 211, 192, 0.1), rgba(107, 196, 176, 0.1));
    z-index: 5;
}

@media (max-width: 768px) {
    .hero-slider {
        height: 500px;
    }

    .slide {
        height: 500px;
    }

    .slide-content {
        left: 20px;
        right: 20px;
        width: auto;
        max-width: none;
        padding: 30px;
        transform: translateY(-50%);
        bottom: auto;
    }

    .slide-content h1 {
        font-size: 32px;
    }

    .slide-content h2 {
        font-size: 18px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .hero-nav .prev {
        left: 15px;
    }

    .hero-nav .next {
        right: 15px;
    }

    .hero-nav button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 400px;
    }

    .slide {
        height: 400px;
    }

    .slide-content {
        padding: 20px;
    }

    .slide-content h1 {
        font-size: 28px;
    }

    .slide-content h2 {
        font-size: 16px;
    }

    .slide-content p {
        font-size: 14px;
    }

    .hero-nav .prev {
        left: 10px;
    }

    .hero-nav .next {
        right: 10px;
    }
}

/* About Section */
.about-section {
    padding: 80px 0;
    text-align: center;
    background: #f8f9fa;
}

.about-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #7dd3c0;
    font-weight: 300;
}

.about-section p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    color: #666;
    line-height: 1.8;
}

/* Featured Products */
.featured-products {
    padding: 80px 0;
}

.featured-products h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #666;
    font-weight: 300;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.product-item {
    text-align: center;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee;
    position: relative;
}

.product-item.clickable {
    cursor: pointer;
}

.product-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Product Badges */
.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 8px;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    width: 35px;
    height: 35px;
}

.product-badge i {
    font-size: 16px;
}

/* Badge Renkleri */
.badge-new {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
}

.badge-popular {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.badge-discount {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.badge-limited {
    background: linear-gradient(135deg, #ffeaa7, #fdcb6e);
    color: #2d3436;
}

.badge-warning {
    background: linear-gradient(135deg, #fdcb6e, #e17055);
}

.badge-out {
    background: linear-gradient(135deg, #636e72, #2d3436);
}

/* Multiple Badges */
.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
}

.product-item h3 {
    padding: 20px 20px 10px 20px;
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.product-item .product-price {
    font-size: 20px;
    color: #7dd3c0;
    font-weight: bold;
    margin-bottom: 30px;
    padding: 0 20px 20px 20px;
}

.product-item .price {
    font-size: 20px;
    color: #7dd3c0;
    font-weight: bold;
    margin-bottom: 30px;
    padding: 0 20px 20px 20px;
}

.add-to-cart {
    background: #7dd3c0;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: background 0.3s;
}

.add-to-cart:hover {
    background: #6bc4b0;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #666;
    font-weight: 300;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.stars {
    color: #ffd700;
    margin-bottom: 15px;
    text-align: center;
}

.stars i {
    margin-right: 3px;
}

.testimonial {
    text-align: center;
    padding: 40px;
}

.testimonial blockquote {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    color: #666;
    position: relative;
}

.testimonial blockquote:before,
.testimonial blockquote:after {
    content: '"';
    font-size: 48px;
    color: #7dd3c0;
    position: absolute;
}

.testimonial blockquote:before {
    left: -20px;
    top: -10px;
}

.testimonial blockquote:after {
    right: -20px;
    bottom: -30px;
}

.testimonial cite {
    color: #333;
    font-weight: bold;
}

/* Gallery */
.gallery {
    padding: 80px 0;
}

.gallery h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #666;
    font-weight: 300;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
}

.gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.btn-see-all {
    color: #7dd3c0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.btn-see-all:hover {
    color: #6bc4b0;
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #7dd3c0;
}

.newsletter {
    display: flex;
    margin-bottom: 20px;
}

.newsletter input {
    flex: 1;
    padding: 12px;
    border: 1px solid #555;
    background: #444;
    color: #fff;
    border-radius: 5px 0 0 5px;
}

.newsletter button {
    background: #7dd3c0;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #7dd3c0;
}

.social-links a {
    display: block;
    margin-bottom: 10px;
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #7dd3c0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #999;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-btn a {
    background: #25D366;
    color: white;
    padding: 15px 20px;
    border-radius: 25px;
    text-decoration: none;
}

/* Cart Counter */
#cart-count {
    background: #7dd3c0;
    color: white;
    border-radius: 10px;
    padding: 2px 6px;
    font-size: 12px;
    min-width: 18px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-nav {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        z-index: 1000;
        gap: 15px;
    }

    .nav-menu.mobile-active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .logo img {
        max-height: 60px;
    }
    
    .hero {
        height: 400px;
    }
    
    .slide-content {
        left: 20px;
        right: 20px;
    }
    
    .slide-content h1 {
        font-size: 48px;
    }
    
    .testimonials .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .header-top {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .product-item img {
        height: 250px;
    }
    
    .slide-content h1 {
        font-size: 36px;
    }
    
    .about-section h2 {
        font-size: 28px;
    }
    
    .featured-products h2 {
        font-size: 24px;
    }
}

/* Index Page Specifics */
.products-grid.items-1 {
    grid-template-columns: 1fr !important;
    max-width: 350px;
    margin: 0 auto;
}

.products-grid.items-2 {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 750px;
    margin: 0 auto;
}

.products-grid.items-3 {
    grid-template-columns: repeat(3, 1fr) !important;
}

.products-grid.items-4,
.products-grid.items-5,
.products-grid.items-6 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
}

@media (max-width: 768px) {
    .products-grid.items-2,
    .products-grid.items-3 {
        grid-template-columns: 1fr !important;
        max-width: 350px;
        margin: 0 auto;
    }
}

/* Hakkimizda Sayfasi Stilleri */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-section {
    margin-bottom: 60px;
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 25px 0;
}

.content-section h1 {
    font-size: 42px;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 300;
}

.content-section h2 {
    font-size: 28px;
    color: #7dd3c0;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 400;
}

.content-section h3 {
    font-size: 24px;
    color: #333;
    margin: 35px 0 20px 0;
    font-weight: 600;
}

.content-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
    text-align: justify;
}

.content-section b,
.content-section strong {
    color: #7dd3c0;
    font-weight: 600;
}

.content-section u {
    text-decoration: none;
    color: #7dd3c0;
    border-bottom: 2px solid #7dd3c0;
    padding-bottom: 2px;
}

.vizyon-section {
    background: linear-gradient(135deg, #f8fdfc 0%, #e8f5f3 100%);
    padding: 50px;
    border-radius: 20px;
    border-left: 5px solid #7dd3c0;
    margin: 40px 0;
}

/* Page Header Override/Extension */
.page-header-alt {
    background: linear-gradient(135deg, #7dd3c0 0%, #6bc4b0 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.page-header-alt h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 300;
}

.breadcrumb-alt {
    font-size: 14px;
    opacity: 0.9;
}

.breadcrumb-alt a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
}

.breadcrumb-alt a:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .about-content {
        padding: 0 15px;
    }
    
    .vizyon-section {
        padding: 30px 20px;
        margin: 30px 0;
    }
    
    .page-header-alt {
        padding: 60px 0;
    }
    
    .page-header-alt h1 {
        font-size: 36px;
    }
}

/* =========================================
   Contact Page Styles
   ========================================= */

/* Header contact info styling to avoid CSS conflicts */
.header-contact-info {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #666;
}

.header-contact-info span {
    color: #666;
}

.contact-container {
    padding: 60px 0;
}

.contact-info-section {
    background: transparent;
    padding: 0;
    margin-bottom: 40px;
    text-align: center;
}

.contact-info-section h2 {
    color: #333;
    margin-bottom: 50px;
    font-size: 36px;
    font-weight: 300;
}

/* Flat Layout (No Cards) */
.contact-details {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-item {
    background: transparent;
    padding: 20px;
    width: 300px;
    text-align: center;
}

/* Removed hover effects */
.contact-item:hover {
    transform: none;
    box-shadow: none;
}

.contact-icon {
    font-size: 1rem;
    color: #7dd3c0;
    width: 70px;
    height: 70px;
    background: rgba(125, 211, 192, 0.3);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
   font-size: 1.5rem;
}

.contact-item h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.contact-item p, 
.contact-item div {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* Social Media Contact Styles */
.social-links-contact {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
    align-items: center;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: white !important;
    text-decoration: none;
    font-size: 20px;
    /* Removed shadow and transition */
}

.social-btn:hover {
    opacity: 0.8;
}

.social-btn.whatsapp {
    background: #25D366;
    width: auto;
    padding: 0 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    height: 44px;
}

.social-btn.whatsapp i {
    margin-right: 8px;
    font-size: 20px;
}

.social-btn.instagram { background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d); }
.social-btn.facebook { background: #1877F2; }

@media (max-width: 768px) {
    .contact-details {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-item {
        width: 100%;
        max-width: 350px;
        margin-bottom: 30px;
    }
}

/* =========================================
   Auth Pages Styles (Login, Register, etc.)
   ========================================= */

/* Container */
.login-container, .register-container,
.reset-container, .forgot-container,
.verify-container {
    padding: 60px 0;
    background-color: #f0f2f5;
    min-height: calc(100vh - 350px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container .container, .register-container .container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.login-wrapper, .register-wrapper {
    width: 100%;
    max-width: 550px; /* Fine-tuned width */
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.reset-wrapper, .forgot-wrapper {
    width: 500px;
    max-width: 100%;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    border: 1px solid #eee;
    overflow: hidden;
}

.verify-wrapper {
    max-width: 550px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    overflow: hidden;
    animation: slideInUp 0.6s ease-out;
}

/* Header Section */
.login-header, .register-header {
    background: white;
    padding: 40px 30px 20px;
    text-align: center;
}

.reset-header, .forgot-header {
    background: linear-gradient(135deg, #7dd3c0, #6bc4b0);
    padding: 40px 30px;
    text-align: center;
    color: white;
}

.verify-header {
    background: linear-gradient(135deg, #7dd3c0, #6bc4b0);
    padding: 50px 30px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.login-header h1, .register-header h1 {
    font-size: 28px;
    margin: 15px 0 10px;
    font-weight: 700;
    color: #333;
    letter-spacing: -0.5px;
}

.reset-header h1, .forgot-header h1 {
    font-size: 28px;
    margin: 0 0 10px 0;
    font-weight: 300;
}

.verify-header h1 {
    font-size: 32px;
    margin: 0 0 10px 0;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.login-header i, .register-header i {
    font-size: 40px;
    color: #7dd3c0;
    margin-bottom: 10px;
    display: inline-block;
    background: rgba(125, 211, 192, 0.1);
    padding: 15px;
    border-radius: 50%;
}

.verify-header i {
    font-size: 72px;
    margin-bottom: 20px;
    display: block;
    position: relative;
    z-index: 2;
    animation: pulse 2s infinite;
}

.login-header p, .register-header p {
    margin: 0;
    color: #666;
    font-size: 15px;
}

.reset-header p, .forgot-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 16px;
}

.verify-header p {
    margin: 0;
    opacity: 0.95;
    font-size: 18px;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

/* Forms */
.login-form, .register-form {
    padding: 10px 30px 30px;
}

.reset-form, .forgot-form {
    padding: 40px 30px;
}

.verify-content {
    padding: 50px 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f9f9f9;
    color: #333;
}

.form-group input:focus {
    outline: none;
    border-color: #7dd3c0;
    background: #fff;
}

.verification-input {
    width: 100%;
    padding: 25px 20px;
    border: 3px solid #e1e8ed;
    border-radius: 15px;
    font-size: 28px;
    text-align: center;
    letter-spacing: 10px;
    font-weight: bold;
    transition: all 0.3s;
    background: #fafbfc;
    font-family: 'Courier New', monospace;
}

.verification-input:focus {
    outline: none;
    border-color: #7dd3c0;
    background: white;
    box-shadow: 0 0 0 4px rgba(125,211,192,0.1);
}

/* Password Toggle */
.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #aaa;
    cursor: pointer;
    padding: 5px;
    font-size: 16px;
    transition: color 0.3s;
}

.toggle-password:hover {
    color: #7dd3c0;
}

/* Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

.remember-me input {
    width: 18px;
    height: 18px;
    accent-color: #7dd3c0;
    cursor: pointer;
}

.remember-me label {
    margin: 0;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    user-select: none;
}

.forgot-password {
    color: #7dd3c0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.forgot-password:hover {
    color: #6bc4b0;
    text-decoration: underline;
}

/* Buttons */
.login-btn, .register-btn, .reset-btn, .verify-btn, .resend-btn {
    width: 100%;
    background: #7dd3c0;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(125, 211, 192, 0.3);
}

.login-btn:hover, .register-btn:hover, .reset-btn:hover, .verify-btn:hover {
    background: #6bc4b0;
}

.resend-btn {
    background: linear-gradient(45deg, #6c757d, #5a6268);
    color: white;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.resend-btn:hover {
    background: linear-gradient(45deg, #5a6268, #495057);
}

/* Footer Links */
.register-link, .login-link, .back-to-login {
    text-align: center;
    padding: 20px 30px 30px;
    background: #fcfcfc;
    color: #666;
    font-size: 14px;
    border-top: 1px solid #f0f0f0;
}

.register-link a, .login-link a, .back-to-login a {
    color: #7dd3c0;
    text-decoration: none;
    font-weight: 700;
    margin-left: 5px;
}

.register-link a:hover, .login-link a:hover, .back-to-login a:hover {
    text-decoration: underline;
}

/* Messages */
.error-message, .success-message, .user-info, .info-text {
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.error-message {
    background: #ffe5e5;
    color: #d63031;
    border-left: 4px solid #d63031;
}

.success-message {
    background: #e6fffa;
    color: #00b894;
    border-left: 4px solid #00b894;
}

.user-info {
    background: #e8f5e8;
    color: #2e7d32;
    border-left: 4px solid #4caf50;
    justify-content: center;
}

.info-text {
    background: #e3f2fd;
    color: #0277bd;
    border-left: 4px solid #0277bd;
}

/* Password Requirements */
.password-requirements {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-size: 14px;
}

.password-requirements h4 {
    color: #333;
    margin: 0 0 15px 0;
    font-size: 16px;
}

.password-requirements ul {
    margin: 0;
    padding-left: 20px;
    color: #666;
}

.password-requirements li {
    margin-bottom: 8px;
    line-height: 1.4;
}

.password-requirements li.valid {
    color: #28a745;
    text-decoration: line-through;
}

.password-strength {
    margin-top: 10px;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    display: none;
}

.password-strength.weak { background: #f8d7da; color: #721c24; }
.password-strength.medium { background: #fff3cd; color: #856404; }
.password-strength.strong { background: #d1edda; color: #155724; }

/* Phone Info specific */
.phone-info {
    text-align: center;
    margin-bottom: 40px;
    padding: 25px;
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    border: 2px solid #e9ecef;
}

.phone-number {
    font-size: 24px;
    font-weight: bold;
    color: #7dd3c0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.phone-number i { color: #6bc4b0; }

.countdown {
    text-align: center;
    margin-top: 25px;
    color: #6c757d;
    font-size: 15px;
    font-weight: 500;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.countdown.expired {
    color: #dc3545;
    background: #f8d7da;
    border-color: #f5c6cb;
    font-weight: 600;
}

@media (max-width: 768px) {
    .login-wrapper, .register-wrapper, .verify-wrapper, .reset-wrapper, .forgot-wrapper {
        max-width: 100%;
        margin: 0 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .verification-input {
        font-size: 24px;
        letter-spacing: 6px;
        padding: 20px 15px;
    }
}

/* =========================================
   404 Page Styles
   ========================================= */

.error-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    background: white;
}

.error-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.error-number {
    font-size: 120px;
    font-weight: bold;
    color: #7dd3c0;
    margin: 0;
    line-height: 1;
}

.error-title {
    font-size: 36px;
    color: #333;
    margin: 20px 0;
    font-weight: 300;
}

.error-description {
    font-size: 18px;
    color: #666;
    margin: 30px 0;
    line-height: 1.6;
}

.error-actions {
    margin: 40px 0;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(45deg, #7dd3c0, #6bc4b0);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #6bc4b0, #5ab3a0);
}

.btn-secondary {
    background: transparent;
    color: #7dd3c0;
    padding: 15px 30px;
    border: 2px solid #7dd3c0;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #7dd3c0;
    color: white;
}

@media (max-width: 768px) {
    .error-number {
        font-size: 80px;
    }
    
    .error-title {
        font-size: 28px;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* =========================================
   Maintenance (Bakim) Page Styles
   ========================================= */

.maintenance-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    padding: clamp(40px, 8vw, 80px) clamp(20px, 6vw, 60px);
    text-align: center;
    max-width: min(600px, calc(100vw - 40px));
    width: 100%;
    border-top: 4px solid #7dd3c0;
    margin: auto;
}

.maintenance-icon {
    font-size: clamp(48px, 10vw, 80px);
    color: #7dd3c0;
    margin-bottom: clamp(16px, 4vw, 32px);
}

.maintenance-title {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    color: #333;
    margin-bottom: clamp(12px, 3vw, 24px);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.maintenance-message {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #666;
    margin-bottom: clamp(30px, 6vw, 50px);
    line-height: 1.7;
    max-width: 100%;
}

.contact-section {
    border-top: 1px solid #eee;
    padding-top: 30px;
    margin-top: 30px;
}

.contact-title {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.contact-item {
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-item i {
    color: #7dd3c0;
    width: 16px;
}

.maintenance-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.maintenance-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #7dd3c0;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.2s ease;
}

.maintenance-social-link:hover {
    background: #6bc4b0;
}

.maintenance-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #aaa;
    font-size: 14px;
}

@media (max-width: 600px) {
    .maintenance-container {
        padding: 40px 20px;
        margin: 20px;
    }
    
    .maintenance-title {
        font-size: 1.5rem;
    }
    
    .maintenance-icon {
        font-size: 48px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 15px;
    }
}

/* =========================================
   Blog Listing Styles
   ========================================= */

.blog-container {
    padding: 80px 0;
}

.blog-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.category-tag {
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid #e1e8ed;
    color: #333;
}

.category-tag:hover,
.category-tag.active {
    border-color: #7dd3c0;
    color: #7dd3c0;
    /* Removed transform and box-shadow */
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 5px;
    justify-items: center;
    padding: 0 10px;
}

.blog-post {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #eee; /* Replaced box-shadow */
    transition: all 0.4s;
    cursor: pointer;
    position: relative;
    width: 100%;
    max-width: 420px;
}

.blog-post:hover {
    /* Removed transform and box-shadow */
}

.post-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.blog-post:hover .post-image img {
    /* Removed scale */
}

.post-badges {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
}

.badge {
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.badge.featured {
    background: linear-gradient(135deg, #7dd3c0, #6bc4b0);
}

.post-content {
    padding: 35px;
}

.post-date {
    color: #7dd3c0;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.post-excerpt {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 15px;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.read-more {
    color: #7dd3c0;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.read-more:hover {
    color: #6bc4b0;
}

.post-meta {
    font-size: 13px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
}

.featured-post {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.featured-post .post-image {
    height: 450px;
}

.featured-post .post-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-post .post-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.featured-post .post-excerpt {
    font-size: 18px;
    line-height: 1.6;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 80px;
    gap: 15px;
}

.pagination a, .pagination span {
    padding: 15px 25px;
    background: white;
    color: #333;
    text-decoration: none;
    border-radius: 12px;
    border: 1px solid #eee; /* Replaced box-shadow */
    transition: all 0.3s;
    font-weight: 600;
}

.pagination a:hover {
    background: #7dd3c0;
    color: white;
    /* Removed transform */
}

.pagination .current {
    background: linear-gradient(135deg, #7dd3c0, #6bc4b0);
    color: white;
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 100px 20px;
    color: #666;
}

.empty-state i {
    font-size: 64px;
    margin-bottom: 30px;
    opacity: 0.3;
    color: #7dd3c0;
}

.empty-state h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
}

.empty-state p {
    font-size: 16px;
    margin-bottom: 25px;
}

.empty-state a {
    color: #7dd3c0;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

@media (max-width: 768px) {
    .featured-post {
        grid-template-columns: 1fr;
    }
    
    .featured-post .post-content {
        padding: 40px 30px;
    }
    
    .featured-post .post-title {
        font-size: 28px;
    }
    
    .blog-posts {
        grid-template-columns: 1fr;
    }
    
    .blog-categories {
        gap: 10px;
    }
    
    .category-tag {
        font-size: 12px;
        padding: 8px 15px;
    }
}

/* =========================================
   Blog Detail Styles
   ========================================= */

.blog-detail-container {
    padding: 40px 0 80px;
}

.blog-detail-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-detail-hero {
    position: relative;
    height: 600px;
    border-radius: 0;
    overflow: hidden;
    margin: 0 auto 40px auto;
    max-width: 1200px;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 40px;
}

.post-badges-large {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.badge-large {
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(10px);
}

.badge-large.pinned {
    background: rgba(125, 211, 192, 0.9);
}

.badge-large.featured {
    background: rgba(255, 107, 107, 0.9);
}

.blog-title {
    font-size: 48px;
    color: #333;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-categories-header {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #333;
}

.blog-content h1 {
    font-size: 36px;
    color: #333;
    font-weight: 600;
    margin: 40px 0 20px;
    border-bottom: 3px solid #7dd3c0;
    padding-bottom: 10px;
}

.blog-content h2 {
    font-size: 28px;
    color: #444;
    font-weight: 600;
    margin: 35px 0 18px;
    position: relative;
}

.blog-content h2::before {
    content: '';
    position: absolute;
    left: -20px; 
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: #7dd3c0;
    border-radius: 2px;
}

.blog-content h3 {
    font-size: 24px;
    color: #555;
    font-weight: 600;
    margin: 30px 0 15px;
}

.blog-content p {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: justify;
}

.blog-content ul, .blog-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-content li {
    font-size: 18px;
    margin-bottom: 10px;
}

.blog-content b, .blog-content strong {
    font-weight: 700;
    color: #333;
}

.blog-content u {
    text-decoration: underline;
    text-decoration-color: #7dd3c0;
    text-decoration-thickness: 2px;
}

.blog-content br {
    line-height: 2;
}

/* Blog görselleri */
.blog-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 12px;
    margin: 30px 0;
    border: 1px solid #eee; /* Replaced box-shadow */
    object-fit: contain;
    display: block;
    background: #f8f9fa;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-image:hover {
    /* Removed transform and box-shadow */
}

/* Image Modal/Lightbox */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    animation: modalFadeIn 0.3s ease-out;
}

.image-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    animation: modalZoomIn 0.3s ease-out;
}

.modal-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 95vh;
    object-fit: contain;
    border-radius: 8px;
    /* Removed box-shadow */
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.modal-close:hover {
    background: white;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalZoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .modal-close {
        top: -35px;
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}

/* Görsel grid sistemi */
.blog-image-grid {
    display: grid;
    gap: 15px;
    margin: 30px 0;
}

.blog-image-grid.grid-2 {
    grid-template-columns: 1fr 1fr;
}

.blog-image-grid.grid-2x2 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.blog-image-grid .blog-image {
    margin: 0;
    height: 250px;
    object-fit: cover;
}

/* Sosyal medya paylaşım */
.social-share {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
    text-align: center;
}

.social-share h4 {
    color: #333;
    margin-bottom: 20px;
    font-size: 18px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-btn:hover {
    /* Removed transform */
}

.share-btn.facebook { background: #3b5998; }
.share-btn.instagram { background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d); }
.share-btn.twitter { background: #1da1f2; }
.share-btn.whatsapp { background: #25d366; }

/* İlgili yazılar */
.related-posts {
    margin-top: 80px;
}

.related-posts h3 {
    text-align: center;
    font-size: 32px;
    color: #333;
    margin-bottom: 40px;
    font-weight: 300;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.related-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #eee; /* Replaced box-shadow */
    transition: transform 0.3s;
    cursor: pointer;
}

.related-post:hover {
    /* Removed transform */
}

.related-post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-content {
    padding: 25px;
}

.related-date {
    color: #7dd3c0;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.related-title {
    font-size: 18px;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 15px;
}

.related-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Navigation */
.blog-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 60px 0 40px;
    padding: 20px 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.nav-link {
    color: #7dd3c0;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #6bc4b0;
}

@media (max-width: 768px) {
    .blog-title {
        font-size: 32px;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .blog-detail-hero {
        height: 300px;
    }
    
    .hero-overlay {
        padding: 20px;
    }
    
    .blog-content h1 {
        font-size: 28px;
    }
    
    .blog-content h2 {
        font-size: 24px;
    }
    
    .blog-content p,
    .blog-content li {
        font-size: 16px;
    }
    
    .blog-image-grid.grid-2,
    .blog-image-grid.grid-2x2 {
        grid-template-columns: 1fr;
    }
    
    .share-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .blog-navigation {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* =========================================
   Customer Dashboard Styles
   ========================================= */

/* Genel Düzen */
.dashboard-container {
    display: flex;
    gap: 30px;
    padding: 40px 0 80px;
    background-color: var(--bg-light);
    min-height: calc(100vh - 80px); /* Header yüksekliğini düştük */
    align-items: flex-start;
}

/* Sidebar */
.sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    transition: var(--transition);
}

.user-info {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.user-avatar {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    font-weight: 700;
    margin: 0 auto 15px;
    box-shadow: 0 5px 15px rgba(125, 211, 192, 0.4);
    border: 4px solid var(--white);
}

.user-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.user-balance {
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin-bottom: 8px;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    color: var(--text-medium);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: var(--transition);
    font-weight: 500;
    font-size: 15px;
}

.sidebar-menu a i {
    font-size: 18px;
    width: 24px;
    text-align: center;
    transition: var(--transition);
}

.sidebar-menu a:hover {
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

.sidebar-menu a.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 12px rgba(125, 211, 192, 0.4);
}

.sidebar-menu a.active i {
    transform: scale(1.1);
}

/* Main Content */
.main-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    flex: 1;
    min-height: 500px;
}

.page-title {
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: 35px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* İstatistik Kartları */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.stat-card {
    background: var(--white);
    border: 1px solid #edf2f7;
    padding: 25px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.stat-card:hover {
    border-color: var(--primary-light);
}

.stat-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 4px;
}

.stat-value small {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-medium);
}

.stat-label {
    font-size: 14px;
    color: var(--text-medium);
    font-weight: 500;
}

/* Tablo Stilleri */
h2 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.history-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.history-table th {
    background: #f1f5f9;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--text-medium);
    font-size: 14px;
    border-bottom: 2px solid #e2e8f0;
}

.history-table th:first-child {
    border-top-left-radius: 8px;
}

.history-table th:last-child {
    border-top-right-radius: 8px;
}

.history-table td {
    padding: 15px;
    border-bottom: 1px solid #edf2f7;
    color: var(--text-dark);
    font-size: 14px;
    transition: background-color 0.2s;
}

.history-table tr:last-child td {
    border-bottom: none;
}

.history-table tr:hover td {
    background-color: var(--primary-light);
}

.amount-positive {
    color: var(--success);
    font-weight: 600;
}

.amount-negative {
    color: var(--danger);
    font-weight: 600;
}

/* Kupon Kartları */
.coupon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.coupon-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #edf2f7;
    position: relative;
    display: flex;
    flex-direction: column;
}

.coupon-card:hover {
    /* Shadow removed */
}

.coupon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
}

.coupon-header {
    padding: 20px;
    background: var(--bg-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed #dcdcdc;
}

.coupon-code {
    background: var(--white);
    border: 1px solid var(--primary-color);
    color: var(--primary-dark);
    padding: 8px 15px;
    border-radius: 6px;
    font-weight: 700;
    font-family: monospace;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.coupon-code::after {
    content: '\f0c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 12px;
    opacity: 0.5;
}

.coupon-code:hover {
    background: var(--primary-color);
    color: var(--white);
}

.coupon-discount {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
}

.coupon-body {
    padding: 20px;
    flex: 1;
}

.coupon-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.coupon-details p {
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 8px;
}

.coupon-details p i {
    color: var(--primary-color);
    width: 16px;
}

.coupon-expiry {
    margin-top: 15px;
    font-size: 12px;
    color: #856404;
    background: #fff3cd;
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-block;
    font-weight: 600;
}

/* Sipariş Kartları */
.orders-grid {
    display: grid;
    gap: 25px;
}

.order-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid #edf2f7;
    overflow: hidden;
    transition: var(--transition);
}

.order-card:hover {
    border-color: var(--primary-light);
}

.order-header {
    background: #f8fafc;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #edf2f7;
}

.order-number {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 16px;
}

.order-date {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
}

.order-body {
    padding: 20px 25px;
}

.order-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-item {
    display: flex;
    gap: 15px;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
}

.order-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #edf2f7;
}

.item-info {
    flex: 1;
}

.item-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-size: 15px;
}

.item-meta {
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    gap: 10px;
}

.item-price {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 15px;
}

.order-footer {
    padding: 15px 25px;
    background: #fff;
    border-top: 1px solid #edf2f7;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-total-label {
    font-size: 13px;
    color: var(--text-light);
}

.order-total-amount {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
}

.order-actions {
    display: flex;
    gap: 10px;
}

/* Durum Rozetleri */
.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-yeni { background: #fff3e0; color: #f57c00; }
.status-beklemede { background: #fff8e1; color: #ff8f00; }
.status-onaylandi { background: #e8f5e9; color: #2e7d32; }
.status-hazirlaniyor { background: #e3f2fd; color: #1565c0; }
.status-kargoda { background: #f3e5f5; color: #7b1fa2; }
.status-teslim_edildi { background: #e8f5e9; color: #1b5e20; }
.status-iptal_edildi { background: #f5f5f5; color: #616161; }
.status-iade_edildi { background: #ffebee; color: #c62828; }

/* Tab Menü */
.profile-tabs {
    display: flex;
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 30px;
    background: #f8f9fa;
    border-radius: 8px 8px 0 0;
    padding: 10px 10px 0 10px;
}

.profile-tab-btn {
    padding: 12px 20px;
    background: transparent;
    border: none;
    border-radius: 8px 8px 0 0;
    color: var(--text-medium);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: -1px;
    border: 1px solid transparent;
    white-space: nowrap;
}

.profile-tab-btn:hover {
    color: var(--primary-dark);
    background: rgba(0,0,0,0.02);
}

.profile-tab-btn.active {
    background: var(--white);
    color: var(--primary-dark);
    border-color: #dee2e6 #dee2e6 var(--white);
}

.profile-tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.profile-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Adres Kartları */
.address-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.address-card {
    background: var(--white);
    border: 1px solid #edf2f7;
    border-radius: var(--radius-md);
    padding: 20px;
    position: relative;
    transition: var(--transition);
}

.address-card:hover {
    border-color: var(--primary-light);
}

.address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f1f5f9;
}

.address-title {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 16px;
}

.address-badge {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-teslimat { background: #e3f2fd; color: #1565c0; }
.badge-fatura { background: #fff3e0; color: #ef6c00; }
.badge-ikisi { background: #e8f5e9; color: #2e7d32; }

.address-body p {
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.5;
}

.address-footer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.btn-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-edit { background: #e3f2fd; color: #1565c0; }
.btn-edit:hover { background: #bbdefb; }

.btn-delete { background: #ffebee; color: #c62828; }
.btn-delete:hover { background: #ffcdd2; }

/* Profil Formu */
.profile-section {
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: var(--radius-md);
    padding: 30px;
    margin-bottom: 30px;
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid #edf2f7;
}

.section-title i {
    color: var(--primary-color);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #edf2f7;
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-dark);
    transition: var(--transition);
}

.form-input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px var(--primary-light);
}

.form-input[readonly] {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.btn-primary:hover {
    box-shadow: 0 5px 15px rgba(125, 211, 192, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-outline:hover {
    background: var(--primary-light);
}

/* Responsive */
@media (max-width: 991px) {
    .dashboard-container {
        flex-direction: column;
        padding: 20px 0;
    }
    
    .sidebar {
        width: 100%;
        position: static;
        margin-bottom: 20px;
    }
    
    .sidebar-menu {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .sidebar-menu li {
        margin: 0;
        flex: 1;
    }
    
    .sidebar-menu a {
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        text-align: center;
        font-size: 12px;
        padding: 10px;
    }
    
    .sidebar-menu a i {
        font-size: 20px;
    }
    
    .user-info {
        display: flex;
        align-items: center;
        gap: 20px;
        text-align: left;
        padding-bottom: 20px;
    }
    
    .user-avatar {
        margin: 0;
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .user-details {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .profile-tabs {
        overflow-x: auto;
        padding-bottom: 0;
    }

    .sidebar-menu a {
        flex-direction: row;
        font-size: 14px;
        justify-content: flex-start;
    }
    
    .sidebar-menu li {
        flex: 100%;
    }

    .order-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .order-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .order-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Cart Page Styles
   ========================================= */

.cart-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.cart-items-section {
    flex: 1;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    margin-bottom: 30px;
}
/* Using specific selectors to override products.css conflicts */
.cart-items-section .cart-items-header,
.cart-items-section .cart-item {
    display: grid !important;
    grid-template-columns: 4fr 1.5fr 1.5fr 1.5fr 0.5fr !important;
    gap: 10px;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}
.cart-items-header {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #555;
    font-size: 0.9em;
    letter-spacing: 0.5px;
}
.cart-item:last-child {
    border-bottom: none;
}

/* Grid Column Alignment */
.cart-items-header > div:nth-child(1),
.cart-items-section .cart-item > .item-product {
    justify-self: start;
    text-align: left;
}

.cart-items-header > div:nth-child(2),
.cart-items-section .cart-item > .item-price {
    justify-self: center;
    text-align: center;
    white-space: nowrap;
}

.cart-items-header > div:nth-child(3),
.cart-items-section .cart-item > .quantity-controls {
    justify-self: center;
}

.cart-items-header > div:nth-child(4),
.cart-items-section .cart-item > .item-total {
    justify-self: center;
    text-align: center;
    white-space: nowrap;
}

.cart-items-header > div:nth-child(5),
.cart-items-section .cart-item > .remove-btn {
    justify-self: center;
}

.item-product {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%; /* Ensure flex container takes grid cell width */
}
.item-product img {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    flex-shrink: 0;
}
.item-details .category-name {
    font-size: 12px;
    color: #999;
    margin-bottom: 4px;
}
.item-details h3 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
}
.item-details h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}
.item-details h3 a:hover {
    color: #7dd3c0;
}
.size-info {
    font-size: 13px;
    color: #888;
    margin-top: 4px;
}
.item-price, .item-total {
    font-weight: 600;
    font-size: 15px;
    color: #333;
}
.item-total {
    color: #7dd3c0;
    font-size: 16px;
}
.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f1f3f5;
    padding: 5px 10px;
    border-radius: 20px;
    width: fit-content;
}
.quantity-btn {
    background: none;
    border: none;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    color: #555;
    transition: all 0.2s;
    border-radius: 50%;
}
.quantity-btn:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.quantity {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
    font-size: 14px;
}
.remove-btn {
    background: none;
    border: none;
    color: #adb5bd;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
}
.remove-btn:hover {
    background: #ffe3e3;
    color: #fa5252;
}

/* Cart Summary Styles */
.cart-summary {
    width: 100%;
    max-width: 350px;
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 100px;
    flex-shrink: 0;
}

.summary-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.shipping-info {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.shipping-info h4 {
    font-size: 15px;
    margin-bottom: 10px;
    color: #333;
}

.shipping-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shipping-info li {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
    padding-left: 15px;
    position: relative;
}

.shipping-info li::before {
    content: '✓';
    color: var(--success);
    position: absolute;
    left: 0;
}

.free-shipping-progress {
    margin-bottom: 20px;
}

.progress-bar {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 15px;
    color: #555;
}

.summary-row.total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #eee;
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.checkout-btn {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.checkout-btn:hover {
    background: var(--primary-dark);
}

.checkout-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.agreements {
    margin-top: 20px;
    font-size: 13px;
}

.agreements h4 {
    margin-bottom: 10px;
    font-size: 14px;
}

.agreement-item {
    margin-bottom: 8px;
}

.agreement-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
}

.agreement-checkbox {
    margin-top: 3px;
}

.agreement-label a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.agreement-label a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.continue-shopping {
    text-align: center;
    margin-top: 15px;
}

.continue-shopping a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.continue-shopping a:hover {
    color: var(--primary-color);
}

/* Checkout Styles */
.checkout-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.checkout-form {
    flex: 1;
}

.order-summary {
    width: 100%;
    max-width: 350px;
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 100px;
    flex-shrink: 0;
}

.place-order-btn {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.place-order-btn:hover {
    background: var(--primary-dark);
}

@media (max-width: 991px) {
    .cart-content,
    .checkout-content {
        flex-direction: column;
    }
    
    .cart-summary,
    .order-summary {
        width: 100%;
        max-width: 100%;
        position: static;
    }
}

@media (max-width: 768px) {
    .cart-items-header {
        display: none;
    }
    .cart-item {
        grid-template-columns: 1fr;
        gap: 15px;
        position: relative;
        padding: 20px;
        margin-bottom: 15px;
        border-bottom: 1px solid #eee;
    }
    .item-product {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .item-product img {
        width: 100%;
        height: 200px;
    }
    .item-price, .item-total, .quantity-controls {
        justify-self: start;
    }
    .item-price::before { content: 'Birim Fiyat: '; color: #888; font-weight: normal; margin-right: 5px; }
    .item-total::before { content: 'Toplam: '; color: #888; font-weight: normal; margin-right: 5px; }
    .remove-btn {
        position: absolute;
        top: 15px;
        right: 15px;
        background: #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
}

/* Empty Cart Styles */
.empty-cart {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin: 40px auto;
    max-width: 600px;
}

.empty-cart h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
}

.empty-cart p {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

.shop-now-btn {
    display: inline-block;
    background: #7dd3c0;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.shop-now-btn:hover {
    background: #6bc4b0;
    box-shadow: 0 5px 15px rgba(125, 211, 192, 0.4);
}

/* =========================================
   Verification Page Styles (Dogrulama)
   ========================================= */

.verify-container { padding: 60px 0; background: #f8f9fa; min-height: 80vh; display: flex; align-items: center; }
.verify-wrapper { max-width: 500px; margin: 0 auto; background: #fff; border-radius: 16px; padding: 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); text-align: center; }
.verify-icon { width: 80px; height: 80px; background: #e0f2f1; color: #7dd3c0; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 32px; margin-bottom: 20px; }
.verify-title { font-size: 24px; color: #2c3e50; margin-bottom: 10px; font-weight: 700; }
.verify-text { color: #666; margin-bottom: 30px; line-height: 1.6; }
.input-group { margin-bottom: 25px; text-align: left; }
.input-group label { display: block; margin-bottom: 8px; font-weight: 500; color: #2c3e50; }
.form-control { width: 100%; padding: 12px 15px; border: 2px solid #eee; border-radius: 8px; font-size: 16px; transition: all 0.3s; }
.form-control:focus { border-color: #7dd3c0; outline: none; }
.resend-link { display: inline-block; margin-top: 20px; color: #7dd3c0; text-decoration: none; font-weight: 500; font-size: 14px; cursor: pointer; }
.resend-link:hover { text-decoration: underline; }
.resend-link.disabled { color: #999; cursor: not-allowed; text-decoration: none; pointer-events: none; }
.steps-indicator { display: flex; justify-content: center; gap: 10px; margin-bottom: 30px; }
.step-dot { width: 12px; height: 12px; border-radius: 50%; background: #eee; }
.step-dot.active { background: #7dd3c0; }
.countdown { font-size: 13px; color: #999; margin-left: 5px; }
.btn-primary:disabled { background: #ccc; cursor: not-allowed; transform: none; }

/* Dashboard Empty State Styles */
.dashboard-empty-state {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    margin-top: 20px;
}

.empty-state-icon {
    width: 80px;
    height: 80px;
    background: #e3f2fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.empty-state-icon i {
    font-size: 36px;
    color: #1976d2;
}

.empty-state-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.empty-state-text {
    color: #666;
    margin-bottom: 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
    line-height: 1.6;
}

.btn-start-shopping {
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    background-color: #7dd3c0 !important;
    color: #ffffff !important;
    border: none;
    box-shadow: 0 4px 6px rgba(125, 211, 192, 0.3);
    transition: all 0.3s ease;
    font-size: 16px;
    cursor: pointer;
}

.btn-start-shopping:hover {
    background-color: #6bc4b0 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(125, 211, 192, 0.4);
}

.btn-start-shopping i {
    margin-right: 8px;
    font-size: 18px;
    color: #ffffff !important;
}
/* Support System Styles */
.support-chat-container {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    height: 600px;
}

.chat-messages {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f9f9f9;
}

.message {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.message-user {
    align-items: flex-end;
}

.message-admin {
    align-items: flex-start;
}

.message-bubble {
    max-width: 75%;
    padding: 15px 20px;
    border-radius: 15px;
    font-size: 15px;
    line-height: 1.5;
    position: relative;
    word-wrap: break-word;
}

.message-user .message-bubble {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 2px;
    box-shadow: 0 2px 5px rgba(125, 211, 192, 0.4);
}

.message-admin .message-bubble {
    background: white;
    color: #333;
    border-bottom-left-radius: 2px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.message-meta {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.chat-input-area {
    padding: 20px;
    background: white;
    border-top: 1px solid #eee;
}

.ticket-status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Badge Fix */
.badge {
    display: inline-flex;
    width: fit-content;
    white-space: nowrap;
}

/* Chat System Styles */
.chat-wrapper { display: flex; gap: 0; height: calc(100vh - 140px); min-height: 600px; border: 1px solid #e0e0e0; border-radius: 12px; overflow: hidden; background: #fff; }
.chat-main { flex: 1; display: flex; flex-direction: column; position: relative; }
.chat-header { padding: 15px 20px; background: #fff; border-bottom: 1px solid #eee; display: flex; align-items: center; justify-content: space-between; }
.chat-body { flex: 1; overflow-y: auto; padding: 25px; background-color: #f8f9fa; }

/* Scoped Chat Classes to avoid conflicts */
.crm-chat-row { display: flex; gap: 15px; margin-bottom: 25px; width: 100%; align-items: flex-start; }
.crm-chat-row.user { justify-content: flex-end; }
.crm-chat-row.support { justify-content: flex-start; }

.crm-chat-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.crm-chat-avatar.support { background: #fff; color: #555; border: 1px solid #eee; }
.crm-chat-avatar.user { background: #7dd3c0; color: #fff; }

.crm-chat-content { max-width: 65%; display: flex; flex-direction: column; }
.crm-chat-row.user .crm-chat-content { align-items: flex-end; }
.crm-chat-row.support .crm-chat-content { align-items: flex-start; }

.crm-chat-name { font-size: 12px; color: #999; margin-bottom: 5px; font-weight: 600; }

.crm-chat-bubble { padding: 15px 20px; border-radius: 12px; font-size: 14px; line-height: 1.6; position: relative; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.crm-chat-row.support .crm-chat-bubble { background: #fff; color: #333; border-top-left-radius: 0; border: 1px solid #eee; }
.crm-chat-row.user .crm-chat-bubble { background: #7dd3c0; color: #fff; border-top-right-radius: 0; }

.crm-chat-time { font-size: 11px; color: #aaa; margin-top: 6px; }
.crm-chat-row.user .crm-chat-time { text-align: right; }

.chat-footer { padding: 20px; background: #fff; border-top: 1px solid #eee; }
.chat-input-wrapper { background: #f8f9fa; border-radius: 30px; padding: 5px 20px; display: flex; align-items: center; border: 1px solid #eee; transition: all 0.3s; }
.chat-input-wrapper:focus-within { border-color: #7dd3c0; box-shadow: 0 0 0 3px rgba(125, 211, 192, 0.1); }
.chat-input { border: none; outline: none; width: 100%; resize: none; max-height: 120px; padding: 12px 0; font-family: inherit; background: transparent; font-size: 14px; }
.chat-send-btn { background: #7dd3c0; border: none; color: white; cursor: pointer; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-left: 10px; transition: 0.2s; box-shadow: 0 2px 5px rgba(125, 211, 192, 0.4); }
.chat-send-btn:hover { background: #64c2ad; transform: translateY(-2px); }

.chat-sidebar { width: 320px; background: #fff; border-left: 1px solid #e0e0e0; padding: 30px; }
.chat-sidebar-section { margin-bottom: 30px; padding-bottom: 25px; border-bottom: 1px solid #f0f0f0; }
.chat-sidebar-label { color: #888; font-size: 11px; margin-bottom: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.chat-sidebar-value { color: #333; font-weight: 500; font-size: 15px; }
@media (max-width: 991px) { .chat-sidebar { display: none; } }

/* Chat Media Images */
.chat-media-wrapper {
    margin-bottom: 10px;
}
.chat-media-img {
    max-width: 100%;
    min-width: 150px;
    max-height: 300px;
    width: auto;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    border: 1px solid #eee;
}
