/*
Theme Name: Hidroponik City
Theme URI: https://hidroponikcity.com
Author: Hidroponik City
Author URI: https://hidroponikcity.com
Description: Topraksız tarım ve sera ürünleri için profesyonel e-ticaret teması
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hidroponik-city
Tags: e-commerce, custom-post-types, custom-fields, responsive, clean, modern
*/

/* ===== CSS Variables ===== */
:root {
    --primary-color: #005ba5;
    --primary-dark: #003366;
    --primary-light: #0097dd;
    --secondary-color: #0097dd;
    --accent-color: #00bae9;
    --text-dark: #212121;
    --text-medium: #475569;
    --text-light: #94a3b8;
    --bg-light: #F5F5F5;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
}

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

ul {
    list-style: none;
}

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

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

/* ===== Top Bar ===== */
.top-bar {
    background: var(--primary-dark);
    color: white;
    padding: 8px 0;
    font-size: 13px;
}

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

.top-bar-left {
    display: flex;
    gap: 25px;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-left i {
    color: var(--accent-color);
}

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

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    gap: 30px;
}

.logo img {
    height: 50px;
    width: auto;
}

/* Navigation */
.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-dark);
    padding: 5px 0;
    position: relative;
}

.main-nav .has-dropdown > a {
    align-items: center;
    gap: 6px;
}

.main-nav .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    border-radius: 10px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 100;
}

.main-nav .submenu li {
    margin: 0;
}

.main-nav .submenu a {
    display: block;
    padding: 10px 18px;
    color: var(--text-dark);
    font-size: 14px;
}

.main-nav .submenu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.main-nav li:hover > .submenu,
.main-nav li:focus-within > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-color);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
/* === Sera Banner Modern Tasarım === */
.sera-banner-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.sera-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.sera-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 91, 165, 0.1);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.sera-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.sera-content p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 40px;
    max-width: 600px;
}

.sera-features-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 45px;
}

.sera-f-item {
    display: flex;
    gap: 20px;
    align-items: center;
    background: white;
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: var(--transition);
    border: 1px solid transparent;
}

.sera-f-item:hover {
    transform: translateX(10px);
    border-color: var(--primary-light);
    box-shadow: 0 10px 30px rgba(0, 91, 165, 0.08);
}

.f-icon {
    width: 54px;
    height: 54px;
    background: var(--primary-color);
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.f-text h4 { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.f-text p { font-size: 14px !important; color: var(--text-light) !important; margin: 0 !important; }

.sera-graphic {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.graphic-bg {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 151, 221, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.sera-graphic > i {
    font-size: 280px;
    color: var(--primary-color);
    opacity: 0.1;
    filter: drop-shadow(0 20px 30px rgba(0, 91, 165, 0.2));
}

.floating-icons i { position: absolute; color: var(--primary-light); opacity: 0.5; }
.icon-1 { top: 15%; left: 10%; font-size: 45px; animation: float 6s infinite ease-in-out; }
.icon-2 { bottom: 15%; right: 10%; font-size: 60px; animation: float 8s infinite ease-in-out -2s; }
.icon-3 { top: 45%; right: -5%; font-size: 40px; animation: float 7s infinite ease-in-out -1s; }

@media (max-width: 992px) {
    .sera-wrapper { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .sera-f-item { text-align: left; }
    .sera-content p { margin-left: auto; margin-right: auto; }
    .sera-cta { display: flex; justify-content: center; }
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px); position: absolute !important; height: 1px; width: 1px; overflow: hidden;
}

/* WordPress Varsayılan (Gutenberg) Arama Bloğunu Gizle */
.wp-block-search {
    display: none !important;
}

.search-box {
    display: flex;
    align-items: center;
    background: var(--bg-light);
    border-radius: 25px;
    padding: 5px 5px 5px 15px;
    border: 1px solid var(--border-color);
}

.search-box input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    width: 150px;
}

.search-box button {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

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

.user-actions {
    display: flex;
    gap: 12px;
}

.login-btn,
.cart-btn,
.payment-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 8px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.login-btn:hover,
.cart-btn:hover,
.payment-btn:hover {
    background: var(--bg-light);
}

.login-btn i,
.cart-btn i,
.payment-btn i {
    font-size: 20px;
    color: var(--text-dark);
}

.cart-btn .cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--secondary-color);
    color: white;
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: var(--bg-white);
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu a {
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

/* ===== Categories Bar ===== */
.categories-accordion {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 50;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.categories-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 15px 25px;
    padding: 12px 24px;
    background: transparent;
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
}

.categories-toggle:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.categories-accordion.active .categories-toggle {
    background: var(--primary-color);
    color: white;
}

.categories-toggle i:first-child {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.categories-toggle:hover i:first-child {
    transform: rotate(90deg);
}

.toggle-icon {
    font-size: 12px;
    transition: transform 0.4s ease;
}

.categories-accordion.active .toggle-icon {
    transform: rotate(180deg);
}

.categories-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
}

.categories-accordion.active .categories-panel {
    max-height: 900px;
    transition: max-height 0.6s ease-in-out;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    padding: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 15px;
    background: white;
    border-radius: 16px;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: all 0.4s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.05);
    border-radius: 50%;
}

.category-icon i {
    font-size: 22px;
    color: white;
    transition: color 0.3s ease;
}

.category-card:hover .category-icon i {
    color: white;
}

.category-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 4px;
    letter-spacing: 0.2px;
}

.category-count {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 400;
}

/* ===== Hero Slider ===== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: var(--text-dark);
    z-index: 1;
    isolation: isolate;
}

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

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
    flex-shrink: 0;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
    z-index: 1;
}

.slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.slide.active img {
    transform: scale(1.1);
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 50px;
    color: white;
    animation: slideContentIn 1s ease-out forwards;
}

@keyframes slideContentIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-content h2 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.slide-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 400;
}

.slide-badge {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 35px;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 40px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.dot::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: white;
    transition: width 0.3s ease;
}

.dot.active::after {
    width: 100%;
}

.dot:hover {
    background: rgba(255,255,255,0.5);
}

.slider-arrows {
    display: flex;
    gap: 12px;
}

.slider-prev,
.slider-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.1);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-prev:hover,
.slider-next:hover {
    background: white;
    color: var(--primary-dark);
    border-color: white;
}

/* Slider Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: var(--accent-color);
    transition: width 0.1s linear;
    z-index: 10;
}

/* Slider Counter */
.slider-counter {
    position: absolute;
    bottom: 40px;
    right: 50px;
    z-index: 10;
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.slider-counter .current {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
}

.slider-counter .separator {
    margin: 0 5px;
    opacity: 0.5;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary-color);
    color: white;
    padding: 14px 30px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #E65100;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Contact Page Specific Styles */
.contact-section { padding: 80px 0; }

.info-item { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 30px; }
.info-icon { width: 50px; height: 50px; background: var(--primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-icon i { color: white; font-size: 20px; }
.info-item h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; color: var(--text-dark); }
.info-item p { color: var(--text-medium); line-height: 1.6; }

.social-links-section { margin-top: 40px; }
.social-links-section h3 { font-size: 18px; font-weight: 600; margin-bottom: 20px; color: var(--text-dark); }
.social-links-section .social-links { display: flex; gap: 15px; }
.social-links-section .social-links a { width: 45px; height: 45px; background: var(--primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; transition: var(--transition); }
.social-links-section .social-links a:hover { background: var(--primary-dark); }
.social-links-section .social-links a i { font-size: 18px; }

.contact-form-wrapper { background: white; padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.contact-form-wrapper form { display: flex; flex-direction: column; gap: 20px; }
.contact-form-wrapper .form-group label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 8px; color: var(--text-dark); }
.contact-form-wrapper .form-group input,
.contact-form-wrapper .form-group textarea { width: 100%; padding: 12px 15px; border: 1px solid var(--border-color); border-radius: var(--radius-md); font-size: 14px; transition: var(--transition); }
.contact-form-wrapper .form-group input:focus,
.contact-form-wrapper .form-group textarea:focus { border-color: var(--primary-color); outline: none; box-shadow: 0 0 0 3px rgba(0, 91, 165, 0.1); }
.contact-form-wrapper .form-group textarea { resize: vertical; }
.contact-form-wrapper .btn-primary { align-self: flex-start; }
.contact-form-wrapper .btn-primary i { margin-left: 8px; }

.contact-success { background: #4CAF50; color: white; padding: 15px; border-radius: var(--radius-md); margin-bottom: 20px; }
.contact-error { background: #f44336; color: white; padding: 15px; border-radius: var(--radius-md); margin-bottom: 20px; }

.map-section { margin-top: 80px; }
.map-section h2 { font-size: 32px; font-weight: 700; margin-bottom: 30px; color: var(--text-dark); text-align: center; }
.map-container { width: 100%; height: 400px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.map-container iframe { border:0; }

/* Blog Page Specific Styles */
.blog-section { padding: 80px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.blog-card { background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }

.blog-image { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.blog-card:hover .blog-image img { transform: scale(1.05); }

.blog-content { padding: 25px; }
.blog-meta { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; font-size: 13px; color: var(--text-light); }
.blog-meta i { margin-right: 5px; }

.blog-title { font-size: 20px; font-weight: 600; margin-bottom: 15px; line-height: 1.4; }
.blog-title a { color: var(--text-dark); transition: var(--transition); }
.blog-title a:hover { color: var(--primary-color); }

.blog-excerpt { color: var(--text-medium); line-height: 1.6; margin-bottom: 20px; }

.read-more { display: inline-flex; align-items: center; gap: 8px; color: var(--primary-color); font-weight: 500; font-size: 14px; transition: var(--transition); }
.read-more:hover { color: var(--primary-dark); }
.read-more i { margin-left: 0; } /* Override default btn-primary i margin */

.no-posts { text-align: center; padding: 60px 0; }
.no-posts i { font-size: 64px; color: var(--text-light); margin-bottom: 20px; }
.no-posts h3 { font-size: 24px; font-weight: 600; margin-bottom: 10px; color: var(--text-dark); }
.no-posts p { color: var(--text-medium); }

/* Pagination Styles (for blog and general archives) */
.pagination { display: flex; justify-content: center; gap: 10px; margin-top: 50px; }
.pagination ul { list-style: none; display: flex; gap: 8px; }
.pagination li { margin: 0; }
.pagination a, .pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}
.pagination a:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}
.pagination .current {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    font-weight: 600;
}
.pagination .prev, .pagination .next {
    font-size: 14px;
}

/* Single Post Styles */
.single-post-section { padding: 80px 0; }
.single-post-wrapper { max-width: 900px; margin: 0 auto; }
.single-post { background: white; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); }
.post-meta { display: flex; align-items: center; gap: 20px; margin-bottom: 25px; padding-bottom: 25px; border-bottom: 1px solid var(--border-color); font-size: 14px; color: var(--text-medium); }
.post-meta i { margin-right: 5px; }
.post-title { font-size: 36px; font-weight: 700; margin-bottom: 25px; line-height: 1.3; color: var(--text-dark); }
.post-thumbnail { margin-bottom: 30px; border-radius: var(--radius-lg); overflow: hidden; }
.post-thumbnail img { width: 100%; height: auto; }
.post-content { font-size: 16px; line-height: 1.8; color: var(--text-dark); }
.post-content p { margin-bottom: 1em; }
.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 { margin-top: 1.5em; margin-bottom: 0.8em; color: var(--text-dark); }
.post-content ul, .post-content ol { margin-left: 20px; margin-bottom: 1em; }
.post-content ul li, .post-content ol li { margin-bottom: 0.5em; }
.post-tags { margin-top: 30px; padding-top: 30px; border-top: 1px solid var(--border-color); }
.post-tags span { font-weight: 600; color: var(--text-dark); margin-right: 10px; }
.post-tags a { display: inline-block; background: var(--bg-light); padding: 5px 12px; border-radius: 20px; font-size: 13px; color: var(--text-medium); margin-right: 8px; margin-bottom: 8px; transition: var(--transition); }
.post-tags a:hover { background: var(--primary-color); color: white; }
.share-buttons { margin-top: 30px; padding-top: 30px; border-top: 1px solid var(--border-color); }
.share-buttons span { font-weight: 600; color: var(--text-dark); margin-right: 15px; }
.share-buttons a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; margin-right: 10px; transition: var(--transition); color: white; }
.share-buttons a:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.share-buttons .fa-facebook-f { background: #1877F2; }
.share-buttons .fa-twitter { background: #1DA1F2; }
.share-buttons .fa-linkedin-in { background: #0A66C2; }
.share-buttons .fa-whatsapp { background: #25D366; }
.author-box { margin-top: 40px; padding: 30px; background: var(--bg-light); border-radius: var(--radius-lg); display: flex; gap: 20px; align-items: flex-start; }
.author-avatar { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.author-box img { border-radius: 50%; }
.author-info h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; color: var(--text-dark); }
.author-info p { color: var(--text-medium); line-height: 1.6; font-size: 14px; }
.post-navigation { margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--border-color); display: flex; justify-content: space-between; gap: 20px; }
.post-navigation .prev-post, .post-navigation .next-post { flex: 1; padding: 20px; background: var(--bg-light); border-radius: var(--radius-md); }
.post-navigation span { font-size: 13px; color: var(--text-light); display: block; margin-bottom: 8px; }
.post-navigation a { font-weight: 600; color: var(--text-dark); transition: var(--transition); }
.post-navigation a:hover { color: var(--primary-color); }
.post-navigation .next-post { text-align: right; }
.comments-section { margin-top: 50px; padding-top: 50px; border-top: 1px solid var(--border-color); }
.comments-section h3 { font-size: 28px; font-weight: 700; margin-bottom: 30px; color: var(--text-dark); }

/* ===== Features Section ===== */
.features-section {
    padding: 50px 0;
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 10;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.15);
    margin-top: -1px;
}

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

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 20px;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.1);
}

.feature-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.feature-item p {
    font-size: 13px;
    color: var(--text-medium);
    line-height: 1.5;
}

/* About Page Specific Styles */
.about-section { padding: 80px 0; }
.about-content { max-width: 900px; margin: 0 auto; }

/* Contact Page Styles */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info h2, .contact-form-wrapper h2 { font-size: 32px; font-weight: 700; margin-bottom: 30px; color: var(--text-dark); }

/* Archive Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header h1 { font-size: 48px; font-weight: 700; margin-bottom: 15px; line-height: 1.2; }
    .page-header p { font-size: 18px; opacity: 0.9; }

/* Sidebar Filters for Product Archives */
.products-sidebar {
    background: var(--bg-white);
    padding: 25px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    height: fit-content;
    position: sticky;
    top: 100px; /* Header'ın altından başla */
    z-index: 10;
}

/* === Ürün Arşiv Sayfası Tasarımı === */
.archive-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.archive-description {
    font-size: 18px;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.products-section {
    padding: 80px 0;
    background-color: #fcfcfc;
}

.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.filter-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.filter-section h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    position: relative;
    padding-left: 12px;
}

.filter-section h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 18px;
    background: var(--primary-light);
    border-radius: 2px;
}

/* Products Toolbar (Sonuç Sayısı & Sıralama) */
.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 25px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.woocommerce-result-count {
    margin: 0 !important;
    font-size: 13px;
    color: var(--text-medium);
    font-weight: 500;
}

.woocommerce-ordering { margin: 0 !important; }

.woocommerce-ordering select {
    border: 1px solid var(--border-color);
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-dark);
    cursor: pointer;
    background: #fcfcfc;
    transition: var(--transition);
    outline: none;
    font-family: inherit;
}

.woocommerce-ordering select:hover { border-color: var(--primary-light); }
.woocommerce-ordering select:focus { border-color: var(--primary-color); }

/* Modern Shop Layout */
.shop-wrapper {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
    align-items: flex-start;
}

.shop-sidebar-new {
    position: sticky;
    top: 100px;
}

.sidebar-block {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 25px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.sidebar-block:hover, .sidebar-filter-widget:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.sidebar-title, .widget-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f1f5f9;
    color: var(--text-dark);
    position: relative;
}

.sidebar-title::after, .widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.shop-category-list li {
    margin-bottom: 5px;
}

.shop-category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--text-medium);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 3px solid transparent;
}

.shop-category-list li a i {
    font-size: 10px;
    margin-right: 12px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.shop-category-list li.active a, .shop-category-list a:hover {
    background: rgba(0, 91, 165, 0.05);
    color: var(--primary-color);
    font-weight: 600;
    border-left-color: var(--primary-color);
    padding-left: 18px;
}

.shop-category-list li.active a i, .shop-category-list a:hover i {
    opacity: 1;
    transform: translateX(0);
}

.shop-category-list .count {
    background: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 10px;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.shop-category-list li.active .count, .shop-category-list a:hover .count {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Sidebar Filter Widgets Styling (WooCommerce Standard) */
.sidebar-filter-widget {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 25px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.sidebar-filter-widget ul {
    list-style: none;
    padding: 0;
}

.sidebar-filter-widget ul li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Fallback Price Range Selector Design */
.price-range-selector .range-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
}

.price-range-selector input {
    width: 100%;
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.price-range-selector input:focus {
    border-color: var(--primary-color);
}

.apply-filter-btn {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

/* Modern Toolbar */
.shop-toolbar-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.toolbar-info { font-size: 13px; color: var(--text-light); }

/* Modern Product Card */
.product-card-modern {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.product-card-modern:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transform: translateY(-5px);
    border-color: var(--primary-light);
}

.product-thumb {
    position: relative;
    aspect-ratio: 1/1;
    background: #f8fafc;
    overflow: hidden;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.product-card-modern:hover .product-thumb img {
    transform: scale(1.1);
}

.sale-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 2;
}

/* Rozet Tiplerine Göre Renkler */
.sale-tag.new { background: #10b981; } /* Yeşil */
.sale-tag.bestseller { background: #f59e0b; } /* Turuncu */
.sale-tag.top { background: #6366f1; } /* Mor */

.thumb-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(0deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0) 100%);
    transition: 0.3s ease;
    opacity: 0;
}

.product-card-modern:hover .thumb-overlay {
    bottom: 0;
    opacity: 1;
}

.product-card-modern .thumb-overlay button {
    width: 35px;
    height: 35px;
    background: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: 0.2s;
}

.product-card-modern .thumb-overlay button:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

.product-details-modern {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.product-details-modern .cat-label {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 600;
}

.product-details-modern .title {
    font-size: 13px;
    font-weight: 700;
    margin: 0;
    min-height: 2.8em;
    line-height: 1.4;
    color: var(--text-dark);
}

.footer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
}

.price-box {
    display: flex;
    flex-direction: column;
}

.price-box .woocommerce-Price-amount {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 16px;
    letter-spacing: -0.5px;
}

.price-box del .woocommerce-Price-amount {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 400;
    text-decoration: line-through;
}

.add-to-cart-btn {
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 91, 165, 0.2);
}

.add-to-cart-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 91, 165, 0.3);
}

.add-to-cart-btn i {
    font-size: 18px;
}

/* About Page Specific Styles (Continued) */
.about-section .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.about-feature-item {
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.about-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.about-feature-item i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.about-feature-item:hover i {
    transform: scale(1.1);
}

.about-feature-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.about-feature-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

.stats-section {
    background: var(--primary-color);
    padding: 60px 0;
    border-radius: var(--radius-lg);
    margin-top: 80px;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.team-section { margin-top: 80px; }

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

.team-member {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.member-image {
    width: 120px;
    height: 120px;
    background: var(--bg-light);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* For actual images */
}

.member-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.member-image i { font-size: 48px; color: var(--primary-color); }

.team-member h3 { font-size: 20px; font-weight: 600; margin-bottom: 10px; color: var(--text-dark); }
.team-member .member-position { color: var(--primary-color); font-weight: 500; margin-bottom: 15px; }
.team-member .member-description { color: var(--text-medium); font-size: 14px; line-height: 1.6; }

/* Yeni Ürün Kartı Tasarımı */
.products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px; /* Daha dar boşluk */
}

.product-card {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 91, 165, 0.1);
    border-color: rgba(0, 91, 165, 0.1);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-light);
    color: white;
    padding: 5px 10px; /* Daha küçük rozet */
    border-radius: 8px;
    font-size: 8px;
    font-weight: 800;
    z-index: 5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Görsel Alanı */
.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1; /* Kare görsel */
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-link, .product-img-link {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding: 0; /* Görselin kutuyu tam doldurması için padding'i sıfırladık */
}

.product-image img, .centered-img {
    width: 100%;
    height: 100%;
    object-fit: cover !important; /* Küçük kartlarda 'cover' daha dolu bir görünüm sağlar */
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

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

/* Aksiyon Butonları (Hover) */
.product-actions {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(0deg, #fff 40%, rgba(255,255,255,0) 100%);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 3;
}

.product-card:hover .product-actions {
    bottom: 0;
}

.action-btn {
    width: 30px; /* Çok daha küçük butonlar */
    height: 30px;
    border-radius: 10px;
    background: #fff;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px) rotate(8deg);
}

/* Bilgi Alanı */
.product-info {
    padding: 10px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-grow: 1;
}

.product-meta {
    font-size: 9px; /* Çok küçük meta yazı */
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.product-title a {
    font-size: 11px; /* Çok küçük başlık */
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
    transition: color 0.3s ease;
}

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

.product-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 8px;
}

.product-price {
    font-size: 12px; /* Çok küçük fiyat */
    font-weight: 800;
    color: var(--primary-color);
    display: flex; /* Ensure price and old price align */
    align-items: center;
    gap: 4px;
}

.product-price ins { text-decoration: none; }
.product-price del { font-size: 10px; color: var(--text-light); font-weight: 400; } /* Çok küçük eski fiyat */

.add-to-cart-icon {
    width: 30px; /* Çok daha küçük sepet butonu */
    height: 30px;
    border-radius: 10px;
    background: #f1f5f9;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-to-cart-icon:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

/* ===== Footer ===== */
.main-footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 0;
}

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

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-col p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

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

.footer-col ul a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition);
}

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

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-info i {
    color: var(--primary-light);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 28px;
    color: rgba(255,255,255,0.6);
}

/* ===== Modals ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 0;
    max-width: 440px;
    width: 90%;
    position: relative;
    animation: modalSlide 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.modal-auth-header {
    display: flex;
    background: #f8fafc;
    padding: 8px;
    gap: 8px;
    border-bottom: 1px solid #f1f5f9;
}

.auth-tab-btn {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: #64748b;
    transition: all 0.3s ease;
}

.auth-tab-btn.active {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.modal-body {
    padding: 32px 40px 40px;
}

.auth-section {
    display: none;
    animation: authFadeIn 0.4s ease forwards;
}

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

.auth-section.active {
    display: block;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 20px;
    cursor: pointer;
    color: #94a3b8;
    transition: all 0.2s ease;
    z-index: 10;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.8);
}

.close-btn:hover {
    color: #ef4444;
    background: #fee2e2;
    transform: rotate(90deg);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i {
    position: absolute;
    left: 16px;
    color: #94a3b8;
    transition: all 0.3s ease;
    font-size: 14px;
}

.form-group input,
.input-with-icon input {
    width: 100%;
    padding: 14px 16px;
    padding-left: 46px;
    border: 2px solid #f1f5f9;
    border-radius: 14px;
    background: #f8fafc;
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus,
.input-with-icon input:focus {
    border-color: var(--primary-color);
    background: white;
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 151, 221, 0.1);
}

.input-with-icon input:focus + i {
    color: var(--primary-color);
}

.auth-info-box {
    font-size: 12px;
    color: #475569;
    margin: 16px 0 24px;
    line-height: 1.6;
    padding: 14px;
    background: #eff6ff;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    display: flex;
    align-items: flex-start;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .half {
    flex: 1;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 13px;
}

.form-options label {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.form-options a {
    color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

/* Payment Modal Specific Styles */
.payment-badge-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.payment-badge {
    width: 48px;
    height: 32px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 18px;
}

.payment-summary-box {
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px;
    margin: 10px 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px dashed #cbd5e1;
}

/* Cart Modal Specific Styles */
.cart-items {
    max-height: 350px;
    overflow-y: auto;
    padding-right: 8px;
    margin-bottom: 10px;
}

.cart-items::-webkit-scrollbar {
    width: 5px;
}

.cart-items::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 10px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
    transition: var(--transition);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.cart-item-info p {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
}

.remove-item {
    background: #fee2e2;
    color: #ef4444;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-item:hover {
    background: #ef4444;
    color: white;
    transform: scale(1.1);
}

.empty-cart {
    text-align: center;
    padding: 40px 0;
    color: var(--text-light);
    font-size: 14px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr); /* Daha az sütun */
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
    
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .slide-content h2 {
        font-size: 36px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr); /* Mobilde bile 2 sütun yaparak küçük tutalım */
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .top-bar-left {
        flex-direction: column;
        gap: 10px;
    }
}

/* ===== WooCommerce Styles ===== */
/* WooCommerce Container */
.woocommerce .container,
.woocommerce-page .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* WooCommerce Products Grid */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Standard WooCommerce List Items - Mağaza sayfasını sisteme uydurma */
.woocommerce ul.products li.product {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    width: auto;
    margin: 0;
    float: none;
}

.woocommerce ul.products li.product:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
    border-color: rgba(0, 91, 165, 0.1);
}

/* WooCommerce Product Image */
.woocommerce ul.products li.product .woocommerce-loop-product__link {
    display: block;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.woocommerce ul.products li.product .woocommerce-loop-product__link img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

/* WooCommerce Product Title */
.woocommerce ul.products li.product h2.woocommerce-loop-product__title {
    padding: 10px 10px 0;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
}

/* WooCommerce Price */
.woocommerce ul.products li.product .price {
    padding: 8px 10px 10px;
    font-size: 12px;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 4px;
}

.woocommerce ul.products li.product .price del {
    font-size: 10px;
    color: var(--text-light);
    font-weight: 400;
}

/* WooCommerce Add to Cart Button */
.woocommerce ul.products li.product .button {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    text-align: center;
}

.woocommerce ul.products li.product .button:hover {
    background: var(--primary-dark);
}

/* WooCommerce Single Product */
.woocommerce div.product {
    display: grid;
    grid-template-columns: 750px 1fr; /* Büyük görsel boyutuna geri dönüldü */
    gap: 50px;
    margin-bottom: 60px;
}

.woocommerce div.product .images {
    margin-bottom: 30px;
}

/* === WooCommerce Product Gallery & Slider Robust Fix === */
.woocommerce div.product .woocommerce-product-gallery {
    width: 100%;
    margin-bottom: 30px;
    opacity: 1 !important;
    display: block;
}

.woocommerce div.product .images .flex-viewport {
    border-radius: var(--radius-lg);
    border: 1px solid #f1f5f9;
    background: #fff;
    margin-bottom: 15px;
    overflow: hidden;
}

/* Küçük Resimlerin (Gallery Thumbnails) Dizilimi */
.woocommerce div.product .images .flex-control-thumbs {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin: 15px 0 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.woocommerce div.product .images .flex-control-thumbs li {
    width: 80px !important;
    height: 80px !important;
    margin: 0 !important;
    flex: 0 0 auto;
}

.woocommerce div.product .images .flex-control-thumbs img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    opacity: 0.6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.woocommerce div.product .images .flex-control-thumbs img.flex-active,
.woocommerce div.product .images .flex-control-thumbs img:hover {
    opacity: 1;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

/* Lightbox ve Zoom İkonlarını Tasarıma Uydurma */
.woocommerce div.product .woocommerce-product-gallery__trigger {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 99;
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

/* Slider Oklarını Sabitleme */
.flex-direction-nav {
    margin: 0;
    padding: 0;
    list-style: none;
}

.flex-direction-nav a {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
    position: absolute;
    top: 50%;
    z-index: 50;
    transform: translateY(-50%);
    text-decoration: none;
}

.flex-direction-nav .flex-prev { left: 10px; }
.flex-direction-nav .flex-next { right: 10px; }

.woocommerce div.product .summary {
    margin-bottom: 0;
}

.woocommerce div.product .product_title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.woocommerce div.product .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.woocommerce div.product form.cart {
    margin-bottom: 30px;
}

.woocommerce div.product .quantity input.qty {
    width: 80px;
    height: 45px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0 15px;
    font-size: 16px;
}

.woocommerce div.product .single_add_to_cart_button {
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.woocommerce div.product .single_add_to_cart_button:hover {
    background: var(--primary-dark);
}

/* WooCommerce Cart Page */
.woocommerce-cart .woocommerce {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.woocommerce table.shop_table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 30px;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.woocommerce table.shop_table th {
    font-weight: 600;
    color: var(--text-dark);
}

.woocommerce .cart-collaterals .cart_totals {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius-lg);
}

.woocommerce .cart-collaterals .cart_totals h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.woocommerce .checkout-button {
    background: var(--primary-color);
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    text-align: center;
}

.woocommerce .checkout-button:hover {
    background: var(--primary-dark);
}

/* WooCommerce Checkout Page */
.woocommerce-checkout .woocommerce {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.woocommerce form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.woocommerce form .form-row .form-row-first,
.woocommerce form .form-row .form-row-last {
    flex: 1;
}

.woocommerce form .form-row input,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 14px;
}

.woocommerce form .form-row label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.woocommerce #payment {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius-lg);
}

.woocommerce #payment ul.payment_methods {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}

.woocommerce #payment ul.payment_methods li {
    margin-bottom: 15px;
}

.woocommerce #payment .place-order {
    margin-top: 20px;
}

.woocommerce #payment .place-order button {
    background: var(--primary-color);
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.woocommerce #payment .place-order button:hover {
    background: var(--primary-dark);
}

/* Payment Modal Styles */
.payment-badge-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.payment-badge {
    width: 52px;
    height: 36px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 18px;
    transition: var(--transition);
}

.payment-badge:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: #fff;
}

.payment-summary-box {
    background: #f1f5f9;
    border-radius: 12px;
    padding: 16px 20px;
    margin: 10px 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px dashed #cbd5e1;
}

.payment-summary-box span { font-size: 14px; color: #475569; }
.payment-summary-box strong { font-size: 18px; color: var(--primary-color); font-weight: 800; }

/* WooCommerce Responsive */
@media (max-width: 1024px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(5, 1fr);
    }
    .contact-grid { grid-template-columns: 1fr; gap: 30px; }
    .woocommerce div.product {
        grid-template-columns: 1fr;
    }

    .woocommerce-cart .woocommerce, /* Bu kural zaten var */
    .woocommerce-checkout .woocommerce {
        grid-template-columns: 1fr;
    }

    .shop-wrapper { grid-template-columns: 1fr; }
    .shop-sidebar-new { position: static; margin-bottom: 30px; }

    /* About Page Responsive */
    .about-feature-item { padding: 20px; }
    .about-feature-item i { font-size: 40px; margin-bottom: 15px; }
    .about-feature-item h3 { font-size: 18px; margin-bottom: 10px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stat-number { font-size: 36px; }
    .stat-label { font-size: 14px; }
    .team-grid { grid-template-columns: 1fr; gap: 20px; }
    .team-member { padding: 20px; }
    .member-image { width: 100px; height: 100px; margin-bottom: 15px; }
    .member-image i { font-size: 40px; }
    .team-member h3 { font-size: 18px; }
    .team-member .member-position { margin-bottom: 10px; }
    .team-member .member-description { font-size: 13px; }
    .page-header h1 { font-size: 36px; }
    .page-header p { font-size: 16px; }

    /* My Account Mobile */
    .woocommerce-account .woocommerce {
        flex-direction: column;
    }
    .woocommerce-MyAccount-navigation {
        margin-bottom: 20px;
    }

    .account-welcome-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .account-quick-stats {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(4, 1fr);
    }    
    .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 480px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-grid { grid-template-columns: 1fr; gap: 15px; }
    
    .products-toolbar {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        padding: 15px;
    }

    .woocommerce form .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* === WooCommerce Hesabım (My Account) Sayfası Tasarımı === */

.woocommerce-account .page-header,
.woocommerce-checkout .page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    padding: 60px 0;
    margin-bottom: 0;
}

.woocommerce-account .products-section,
.woocommerce-checkout .products-section {
    background-color: #f8fafc;
    padding: 60px 0;
}

.woocommerce-account .woocommerce {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Dashboard Welcome Banner */
.account-welcome-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    padding: 30px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(0, 91, 165, 0.15);
}

.account-welcome-banner h2 { margin: 0 0 5px; font-size: 24px; font-weight: 700; }
.account-welcome-banner p { margin: 0; opacity: 0.9; font-size: 14px; }

.account-quick-stats { display: flex; gap: 20px; }
.stat-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
}

.woocommerce-MyAccount-navigation {
    flex: 0 0 280px;
    background: #fff;
    padding: 15px;
    border-radius: var(--radius-lg);
    border: 1px solid #f1f5f9;
    box-shadow: var(--shadow-sm);
}

.woocommerce-MyAccount-navigation ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.woocommerce-MyAccount-navigation li {
    margin-bottom: 5px;
    border-bottom: 1px solid #f8fafc;
}

.woocommerce-MyAccount-navigation li:last-child {
    border-bottom: none;
}

.woocommerce-MyAccount-navigation li a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-medium);
    border-radius: var(--radius-md);
    transition: var(--transition);
    position: relative;
}

/* Menü İkonları (Font Awesome kullanılarak) */
.woocommerce-MyAccount-navigation li a::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 12px;
    width: 20px;
    text-align: center;
    font-size: 16px;
    color: var(--text-light);
    transition: var(--transition);
}

.woocommerce-MyAccount-navigation-link--dashboard a::before { content: "\f0e4"; }
.woocommerce-MyAccount-navigation-link--orders a::before { content: "\f46d"; }
.woocommerce-MyAccount-navigation-link--downloads a::before { content: "\f019"; }
.woocommerce-MyAccount-navigation-link--edit-address a::before { content: "\f3c5"; }
.woocommerce-MyAccount-navigation-link--edit-account a::before { content: "\f007"; }
.woocommerce-MyAccount-navigation-link--customer-logout a::before { content: "\f2f5"; }

.woocommerce-MyAccount-navigation li.is-active a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 70%;
    width: 4px;
    background: var(--accent-color);
    border-radius: 0 4px 4px 0;
}

.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation li a:hover {
    background: #f8fafc;
    color: var(--primary-light);
    padding-left: 25px;
}

.woocommerce-MyAccount-navigation li.is-active a::before,
.woocommerce-MyAccount-navigation li a:hover::before {
    color: var(--primary-color);
}

.woocommerce-MyAccount-content {
    flex: 1;
    background: #fff;
    padding: 0; /* İçerik padding'i kartlar için sıfırladık */
    border: none;
    box-shadow: none;
    background: transparent;
}

/* Dashboard Shortcuts */
.dashboard-shortcuts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.shortcut-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    display: block; /* Kartın tamamını tıklanabilir yap */
}

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

.shortcut-card .icon-box {
    width: 50px;
    height: 50px;
    background: rgba(0, 91, 165, 0.1);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
    transition: 0.3s ease;
}

.shortcut-card:hover .icon-box {
    background: var(--primary-color);
    color: #fff;
}

.shortcut-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); }
.shortcut-card p { font-size: 13px; color: var(--text-light); margin: 0; line-height: 1.5; }
.shortcut-card.logout .icon-box { color: #ef4444; background: rgba(239, 68, 68, 0.1); }
.shortcut-card.logout:hover .icon-box { background: #ef4444; color: #fff; }

.woocommerce-MyAccount-content p {
    margin-bottom: 20px;
    color: var(--text-medium);
    line-height: 1.8;
    padding: 0 20px;
}

.woocommerce-MyAccount-content mark {
    background: rgba(0, 151, 221, 0.1);
    color: var(--primary-color);
    padding: 0 5px;
}

.woocommerce-MyAccount-content .woocommerce-info {
    border-top-color: var(--primary-color);
    background-color: #f8fafc;
    padding: 18px 25px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 15px; /* İkon ve yazı arasındaki boşluğu buradan kontrol edebilirsiniz */
    line-height: 1.4;
}

.woocommerce-MyAccount-content .woocommerce-info::before {
    position: static !important; /* Üst üste binmeyi engellemek için konumu sıfırlıyoruz */
    margin: 0 !important;
    color: var(--primary-color);
    font-size: 20px;
}

.woocommerce-MyAccount-content .woocommerce-info .button {
    margin-left: auto; /* "Ürünlere Göz At" butonu varsa en sağa yaslar */
    padding: 8px 16px;
    font-size: 13px;
}

/* === Hesap Detayları (Edit Account) Hizalama ve Tasarımı === */
.woocommerce-EditAccountForm {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.woocommerce-EditAccountForm .woocommerce-form-row {
    flex: 1 1 100%;
    margin-bottom: 25px !important;
}

/* Ad ve Soyad Alanlarını Yan Yana Getir */
@media (min-width: 768px) {
    .woocommerce-EditAccountForm .woocommerce-form-row--first,
    .woocommerce-EditAccountForm .woocommerce-form-row--last {
        flex: 0 0 48%;
    }
}

.woocommerce-EditAccountForm input.input-text {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-family: inherit;
    transition: var(--transition);
}

.woocommerce-EditAccountForm input.input-text:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 91, 165, 0.1);
    outline: none;
}

/* Şifre Değiştirme Alanını Grupla */
.woocommerce-EditAccountForm fieldset {
    flex: 1 1 100%;
    margin-top: 20px;
    padding: 30px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #f8fafc;
}

.woocommerce-EditAccountForm legend {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    padding: 0 15px;
    margin-bottom: 20px;
}

/* Tablo Tasarımı */
.woocommerce-MyAccount-content table.shop_table {
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid #f1f5f9;
    margin-top: 20px;
    border-collapse: separate;
    border-spacing: 0;
}

.woocommerce-MyAccount-content table.shop_table thead {
    background: #f8fafc;
}

.woocommerce-MyAccount-content table.shop_table th {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    padding: 18px 15px;
    border-bottom: 2px solid #f1f5f9;
    text-align: left;
}

.woocommerce-MyAccount-content table.shop_table td {
    padding: 20px 15px;
    vertical-align: middle;
    border-bottom: 1px solid #f8fafc;
    font-size: 14px;
    color: var(--text-medium);
}

.woocommerce-MyAccount-content table.shop_table tr:last-child td {
    border-bottom: none;
}

/* Sipariş Sütun Hizalamaları */
.woocommerce-orders-table__cell-order-actions {
    text-align: right !important;
}

/* Sipariş Durum Rozetleri (Status Badges) */
.woocommerce-MyAccount-content mark.order-status {
    background: transparent;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    line-height: 1;
}

.woocommerce-MyAccount-content .status-completed { background: #dcfce7; color: #166534; }
.woocommerce-MyAccount-content .status-processing { background: #e0f2fe; color: #0369a1; }
.woocommerce-MyAccount-content .status-on-hold { background: #fef9c3; color: #854d0e; }
.woocommerce-MyAccount-content .status-cancelled,
.woocommerce-MyAccount-content .status-failed { background: #fee2e2; color: #991b1b; }

/* Görüntüle Butonu Özelleştirme */
.woocommerce-MyAccount-content .woocommerce-button.view {
    display: inline-block;
    background: var(--primary-color);
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 91, 165, 0.1);
}

.woocommerce-MyAccount-content .woocommerce-button.view:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 91, 165, 0.15);
}

/* Butonlar */
.woocommerce-MyAccount-content .button {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
}

/* === Yasal Bilgiler Sayfası Modern Tasarım === */
.legal-page-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.legal-wrapper {
    max-width: 960px;
    margin: 0 auto;
}

.legal-intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(0, 91, 165, 0.05);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
}

.legal-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.legal-item {
    background: white;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.legal-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.legal-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 91, 165, 0.1);
}

.legal-header {
    padding: 25px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    background: #ffffff;
    transition: background 0.3s ease;
}

.legal-item.active .legal-header {
    background: #fcfcfc;
}

.lh-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lh-left i {
    width: 46px;
    height: 46px;
    background: #f8fafc;
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.legal-item.active .lh-left i {
    background: var(--primary-color);
    color: white;
}

.lh-left span {
    font-weight: 700;
    font-size: 18px;
    color: var(--text-dark);
}

.legal-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.legal-item.active .legal-content {
    max-height: 2000px;
}

.legal-inner {
    padding: 10px 35px 40px 101px; /* İkon kutusuyla hizalı başlasın */
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 15.5px;
    border-top: 1px solid #f8fafc;
}

.toggle-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.legal-item.active .toggle-icon {
    transform: rotate(45deg);
    background: #fee2e2;
    color: #ef4444;
}

.extra-content {
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    border: 1px dashed #e2e8f0;
    color: var(--text-medium);
}
