/**
 * WooCommerce Styles - Complete Version
 * @package Kraftdijital
 */

/* ==========================================================================
   SHOP PAGE - Ürün Listeleme
   ========================================================================== */

.kraft-shop-page {
    background: #f8f9fa;
    min-height: 100vh;
}

.kraft-shop-hero {
    background: linear-gradient(135deg, #0d9668 0%, #10b981 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.kraft-shop-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.shop-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.shop-hero-title {
    font-size: 56px;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.shop-hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 40px 0;
}

/* Shop Content Layout */
.kraft-shop-content {
    padding: 40px 0;
}

.shop-layout-sidebar {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

/* Left Sidebar */
.shop-sidebar-left {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.widget-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 20px 0;
}

/* Categories Widget */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-item {
    margin-bottom: 8px;
}

.category-item a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #64748b;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.category-item a:hover,
.category-item.active a {
    background: #f0fdf4;
    color: #10b981;
}

.cat-icon {
    font-size: 20px;
}

.cat-name {
    flex: 1;
    font-weight: 500;
}

.cat-count {
    background: #f1f5f9;
    color: #64748b;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.category-item.active .cat-count {
    background: #10b981;
    color: #ffffff;
}

/* Price Filter */
.price-filter-content {
    padding: 10px 0;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.price-input-group {
    flex: 1;
}

.price-input-group label {
    display: block;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 4px;
}

.price-input {
    width: 100%;
    padding: 8px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 14px;
}

.apply-price-filter {
    width: 100%;
    padding: 10px;
    background: #10b981;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.apply-price-filter:hover {
    background: #0d9668;
}

/* Contact Widget */
.contact-widget {
    background: linear-gradient(135deg, #0d9668 0%, #10b981 100%);
}

.contact-widget-inner {
    text-align: center;
    color: #ffffff;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.contact-widget h4 {
    color: #ffffff;
    margin: 0 0 8px 0;
}

.contact-widget p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin: 0 0 16px 0;
}

.contact-btn,
.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.contact-btn:hover,
.whatsapp-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Shop Main Content */
.shop-main-content {
    flex: 1;
}

/* Toolbar */
.shop-toolbar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.results-count {
    font-size: 16px;
    color: #64748b;
}

.results-count strong {
    color: #10b981;
    font-weight: 700;
}

/* Ürün Kartları */
.products-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0;
}

.kraft-product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.kraft-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #f8fafc;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(16, 185, 129, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.kraft-product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view {
    color: #ffffff;
    font-weight: 600;
}

.product-info {
    padding: 24px;
}

.product-category {
    color: #10b981;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.product-title a {
    color: #1a1a1a;
    text-decoration: none;
}

.product-title a:hover {
    color: #10b981;
}

.product-excerpt {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

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

.product-price-wrapper {
    font-size: 24px;
    font-weight: 700;
    color: #10b981;
}

.add-to-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #0d9668 0%, #10b981 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Badges */
.sale-badge,
.featured-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 10;
}

.sale-badge {
    background: #dc2626;
    color: #ffffff;
}

.featured-badge {
    background: #f59e0b;
    color: #ffffff;
    top: 52px;
}

/* No Products Found */
.no-products-found {
    text-align: center;
    padding: 80px 20px;
}

.no-products-icon {
    margin-bottom: 20px;
    color: #cbd5e1;
}

.no-products-found h2 {
    color: #1a1a1a;
    margin-bottom: 12px;
}

.no-products-found p {
    color: #64748b;
    margin-bottom: 24px;
}

.btn-back-shop {
    display: inline-block;
    padding: 12px 24px;
    background: #10b981;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
}

.btn-back-shop:hover {
    background: #0d9668;
}

/* ==========================================================================
   SINGLE PRODUCT PAGE - Ürün Detay
   ========================================================================== */

.kraft-single-product {
    background: #f8fafc;
    min-height: 100vh;
}

.product-hero-section {
    background: #ffffff;
    padding: 60px 0;
    margin-bottom: 40px;
}

.product-hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-hero-gallery {
    position: relative;
}

.product-images {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.product-images img {
    width: 100%;
    height: auto;
    display: block;
}

.sale-badge-large {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #dc2626;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.featured-badge-large {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f59e0b;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.product-hero-info {
    padding: 20px 0;
}

.product-category-badge {
    display: inline-block;
    background: #f0fdf4;
    color: #10b981;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    margin-bottom: 16px;
}

.product-category-badge:hover {
    background: #10b981;
    color: #ffffff;
}

.product-main-title {
    font-size: 42px;
    font-weight: 900;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.product-summary-text {
    color: #64748b;
    font-size: 16px;
    line-height: 1.8;
    margin: 20px 0;
}

.product-price-box {
    margin: 30px 0;
}

.product-price-box .price {
    font-size: 28px;
    font-weight: 800;
    color: #10b981;
    display: block;
}

.product-purchase-section {
    margin: 30px 0;
}

.product-purchase-section .cart {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0;
}

.product-purchase-section .quantity {
    display: flex;
    align-items: center;
    gap: 8px;
    border: none !important;
}

.product-purchase-section .quantity input {
    width: 70px;
    padding: 14px;
    border: none;
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    background: transparent;
    outline: none;
}

.product-purchase-section .single_add_to_cart_button {
    flex: 1;
    background: linear-gradient(135deg, #0d9668 0%, #10b981 100%);
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.product-purchase-section .single_add_to_cart_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.product-contact-buttons {
    display: flex;
    gap: 12px;
    margin: 24px 0;
}

.contact-link {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link.phone {
    background: #f0fdf4;
    color: #10b981;
    border: 2px solid #10b981;
    white-space: nowrap;
}

.contact-link.phone:hover {
    background: #10b981;
    color: #ffffff;
}

.contact-link.whatsapp {
    background: #dcfce7;
    color: #16a34a;
    border: 2px solid #16a34a;
    white-space: nowrap;
}

.contact-link.whatsapp:hover {
    background: #16a34a;
    color: #ffffff;
}

.product-trust-icons {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    padding: 24px;
    background: #f8fafc;
    border-radius: 12px;
}

.trust-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 14px;
}

.trust-icon svg {
    color: #10b981;
}

/* Product Content Section */
.product-content-section {
    padding: 40px 0;
}

.product-description-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 24px 0;
}

.description-content {
    color: #64748b;
    font-size: 16px;
    line-height: 1.8;
}

/* Related Products Section */
.related-products-section {
    padding: 60px 0;
    background: #ffffff;
}

.section-header-simple {
    text-align: center;
    margin-bottom: 40px;
}

.section-header-simple h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.section-header-simple p {
    color: #64748b;
    font-size: 16px;
    margin: 0;
}

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

.single-product .product {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.woocommerce div.product div.images {
    width: 48%;
    float: left;
}

.woocommerce div.product div.summary {
    width: 48%;
    float: right;
}

.woocommerce div.product .woocommerce-product-gallery {
    position: relative;
}

.woocommerce div.product .woocommerce-product-gallery img {
    border-radius: 12px;
    width: 100%;
    height: auto;
}

/* Product Summary */
.summary {
    padding-left: 40px;
}

.product_title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.woocommerce-product-details__short-description {
    color: #64748b;
    font-size: 16px;
    line-height: 1.8;
    margin: 20px 0;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #10b981;
    margin: 20px 0;
    display: block;
}

/* Add to Cart Form */
.cart {
    margin: 30px 0;
}

.quantity {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-right: 16px;
    border: none !important;
}

.quantity input[type="number"] {
    width: 80px;
    padding: 12px;
    border: none;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    background: transparent;
    outline: none;
}

/* Tüm quantity container ve input'larda border kaldır */
.woocommerce .quantity,
.woocommerce-page .quantity,
.quantity,
div.quantity {
    border: none !important;
    background: transparent !important;
}

.woocommerce .quantity input,
.woocommerce .quantity input[type="number"],
.woocommerce-page .quantity input,
.woocommerce-page .quantity input[type="number"],
input.qty,
input[name="quantity"] {
    border: none !important;
    background: transparent !important;
    outline: none !important;
}

.woocommerce .quantity input:focus,
.woocommerce .quantity input[type="number"]:focus,
input.qty:focus,
input[name="quantity"]:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.single_add_to_cart_button {
    background: linear-gradient(135deg, #0d9668 0%, #10b981 100%);
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.single_add_to_cart_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

/* Product Meta */
.product_meta {
    margin: 30px 0;
    padding: 20px;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 14px;
}

.product_meta > span {
    display: block;
    margin-bottom: 8px;
    color: #64748b;
}

.product_meta a {
    color: #10b981;
    text-decoration: none;
}

.product_meta a:hover {
    text-decoration: underline;
}

/* Tabs */
.woocommerce-tabs {
    margin-top: 60px;
}

.woocommerce-tabs .tabs {
    display: flex;
    gap: 8px;
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 30px;
    padding: 0;
    list-style: none;
}

.woocommerce-tabs .tabs li {
    margin: 0;
}

.woocommerce-tabs .tabs li a {
    display: block;
    padding: 16px 24px;
    color: #64748b;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.woocommerce-tabs .tabs li.active a,
.woocommerce-tabs .tabs li a:hover {
    color: #10b981;
    border-bottom-color: #10b981;
}

.woocommerce-Tabs-panel {
    padding: 30px;
    background: #f8fafc;
    border-radius: 12px;
}

.woocommerce-Tabs-panel h2 {
    font-size: 24px;
    color: #1a1a1a;
    margin: 0 0 20px 0;
}

/* Related Products */
.related.products {
    margin-top: 60px;
}

.related.products h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

/* Stock Status */
.stock {
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    display: inline-block;
    margin: 16px 0;
}

.stock.in-stock {
    background: #f0fdf4;
    color: #10b981;
}

.stock.out-of-stock {
    background: #fef2f2;
    color: #dc2626;
}

/* ==========================================================================
   MY ACCOUNT PAGE - Hesabım
   ========================================================================== */

.kraft-account-page {
    background: #f8fafc;
    min-height: 100vh;
    padding-top: 85px;
}

/* Hesabım sayfası yazı boyutları */
.kraft-account-page h1,
.kraft-account-page .page-title {
    font-size: 24px !important;
}

.kraft-account-page h2,
.kraft-account-page .section-title {
    font-size: 20px !important;
}

.kraft-account-page h3 {
    font-size: 18px !important;
}

.kraft-account-page .price {
    font-size: 14px !important;
}

.kraft-account-page .woocommerce-Price-amount {
    font-size: 14px !important;
}

.kraft-account-page .amount {
    font-size: 14px !important;
}

.kraft-account-hero {
    display: none;
}

.kraft-account-main {
    padding: 40px 0;
}

.account-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: start;
}

.account-sidebar {
    position: sticky;
    top: 120px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.account-nav {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    list-style: none;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f1f5f9;
}

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

.nav-item:hover {
    background: #f8fafc;
    color: #10b981;
}

.nav-item.active {
    background: linear-gradient(135deg, #0d9668 0%, #10b981 100%);
    color: #ffffff;
}

.nav-item.active .nav-icon,
.nav-item.active .nav-label {
    color: #ffffff;
}

.nav-icon {
    flex-shrink: 0;
}

.account-content {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    min-height: 400px;
}

/* Dashboard */
.account-welcome {
    margin-bottom: 40px;
}

.account-welcome h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin: 0 0 10px 0;
}

.account-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 8px;
}

.stat-label {
    color: #64748b;
    font-size: 14px;
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.action-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    gap: 16px;
}

.action-card:hover {
    border-color: #10b981;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.action-icon {
    width: 48px;
    height: 48px;
    background: #f0fdf4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    flex-shrink: 0;
}

.action-content h4 {
    margin: 0 0 8px 0;
    color: #1a1a1a;
    font-size: 16px;
}

.action-content p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

/* ==========================================================================
   CART PAGE - Sepet
   ========================================================================== */

.woocommerce-cart .cart-page-header {
    background: linear-gradient(135deg, #0d9668 0%, #10b981 100%);
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.cart-page-header .page-title {
    color: #ffffff;
    font-size: 48px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

/* ==========================================================================
   CHECKOUT PAGE - Ödeme
   ========================================================================== */

.woocommerce-checkout .checkout-page-header {
    background: linear-gradient(135deg, #0d9668 0%, #10b981 100%);
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.checkout-page-header .page-title {
    color: #ffffff;
    font-size: 48px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

/* ==========================================================================
   HEADER STYLING - Account, Checkout, Cart
   ========================================================================== */

body.woocommerce-account .page-title,
body.woocommerce-checkout .page-title,
body.woocommerce-cart .page-title {
    display: none !important;
}

body.woocommerce-account .site-header,
body.woocommerce-checkout .site-header,
body.woocommerce-cart .site-header,
body.single-product .site-header {
    position: static !important;
    background: linear-gradient(135deg, #0d9668 0%, #10b981 100%) !important;
    box-shadow: none !important;
}

body.woocommerce-account .site-header .nav-link,
body.woocommerce-account .site-header .site-title,
body.woocommerce-checkout .site-header .nav-link,
body.woocommerce-checkout .site-header .site-title,
body.woocommerce-cart .site-header .nav-link,
body.woocommerce-cart .site-header .site-title,
body.single-product .site-header .nav-link,
body.single-product .site-header .site-title {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

body.woocommerce-account .mobile-menu-toggle,
body.woocommerce-checkout .mobile-menu-toggle,
body.woocommerce-cart .mobile-menu-toggle,
body.single-product .mobile-menu-toggle {
    color: #ffffff !important;
}

body.woocommerce-account .site-logo img,
body.woocommerce-checkout .site-logo img,
body.woocommerce-cart .site-logo img,
body.single-product .site-logo img {
    filter: brightness(0) invert(1);
}

/* ==========================================================================
   SHOP SEARCH - Ürün Arama
   ========================================================================== */

/* Shop Search Bar - Hero Section */
.shop-search-bar {
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.shop-search-bar form {
    position: relative;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-icon {
    position: absolute;
    left: 20px;
    color: #64748b;
    z-index: 2;
    width: 20px;
    height: 20px;
}

.search-input-wrapper input[type="search"] {
    width: 100%;
    padding: 16px 60px 16px 50px;
    border: none;
    background: transparent;
    font-size: 16px;
    color: #1a1a1a;
    outline: none;
    border-radius: 50px;
}

.search-input-wrapper input[type="search"]::placeholder {
    color: #9ca3af;
    font-weight: 500;
}

.search-input-wrapper button[type="submit"] {
    position: absolute;
    right: 8px;
    background: linear-gradient(135deg, #0d9668 0%, #10b981 100%);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.search-input-wrapper button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* WooCommerce Product Search */
.woocommerce-product-search {
    position: relative;
    margin-bottom: 30px;
}

.woocommerce-product-search .search-field {
    width: 100%;
    padding: 16px 50px 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    background: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.woocommerce-product-search .search-field:focus {
    border-color: #10b981;
    outline: none;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.woocommerce-product-search .search-field::placeholder {
    color: #9ca3af;
    font-weight: 500;
}

/* Search Button */
.woocommerce-product-search .search-submit {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0d9668 0%, #10b981 100%);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.woocommerce-product-search .search-submit:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.woocommerce-product-search .search-submit svg {
    width: 18px;
    height: 18px;
}

/* Search Form Container */
.woocommerce-product-search-form {
    background: #ffffff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

/* Search Results */
.woocommerce-product-search-results {
    margin-top: 20px;
}

.woocommerce-product-search-results .search-results-count {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 20px;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #10b981;
}

/* No Results */
.woocommerce-product-search-no-results {
    text-align: center;
    padding: 40px 20px;
    color: #64748b;
}

.woocommerce-product-search-no-results h3 {
    color: #374151;
    margin-bottom: 10px;
}

.woocommerce-product-search-no-results p {
    margin-bottom: 20px;
}

/* Search Suggestions */
.woocommerce-product-search-suggestions {
    margin-top: 15px;
    padding: 16px;
    background: #f0fdf4;
    border-radius: 8px;
    border: 1px solid #bbf7d0;
}

.woocommerce-product-search-suggestions h4 {
    color: #166534;
    font-size: 14px;
    margin-bottom: 8px;
}

.woocommerce-product-search-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-product-search-suggestions li {
    margin-bottom: 4px;
}

.woocommerce-product-search-suggestions a {
    color: #10b981;
    text-decoration: none;
    font-size: 13px;
}

.woocommerce-product-search-suggestions a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   ADD TO CART BUTTONS - Sepete Ekle Butonları
   ========================================================================== */

/* Tüm sepete ekle butonları - Agresif override */
.woocommerce .single_add_to_cart_button,
.woocommerce .add_to_cart_button,
.woocommerce .product_type_simple .add_to_cart_button,
.woocommerce .product_type_variable .add_to_cart_button,
.woocommerce .product_type_grouped .add_to_cart_button,
.woocommerce .product_type_external .add_to_cart_button,
.woocommerce a.add_to_cart_button,
.woocommerce button.add_to_cart_button,
.woocommerce input.add_to_cart_button,
.woocommerce .button,
.woocommerce .button.alt,
.woocommerce .button.primary,
.woocommerce .button.secondary,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce .button[type="submit"],
.woocommerce input[type="submit"],
.woocommerce button[type="submit"] {
    background: linear-gradient(135deg, #0d9668 0%, #10b981 100%) !important;
    background-color: #10b981 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3) !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
}

.woocommerce .single_add_to_cart_button:hover,
.woocommerce .add_to_cart_button:hover,
.woocommerce .product_type_simple .add_to_cart_button:hover,
.woocommerce .product_type_variable .add_to_cart_button:hover,
.woocommerce .product_type_grouped .add_to_cart_button:hover,
.woocommerce .product_type_external .add_to_cart_button:hover,
.woocommerce a.add_to_cart_button:hover,
.woocommerce button.add_to_cart_button:hover,
.woocommerce input.add_to_cart_button:hover,
.woocommerce .button:hover,
.woocommerce .button.alt:hover,
.woocommerce .button.primary:hover,
.woocommerce .button.secondary:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce .button[type="submit"]:hover,
.woocommerce input[type="submit"]:hover,
.woocommerce button[type="submit"]:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4) !important;
    background: linear-gradient(135deg, #0b7d5a 0%, #0ea070 100%) !important;
    background-color: #0ea070 !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

/* Shop sayfası ürün kartlarındaki butonlar */
.woocommerce .products .product .add_to_cart_button,
.woocommerce .products .product a.add_to_cart_button {
    background: linear-gradient(135deg, #0d9668 0%, #10b981 100%) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3) !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    width: 100% !important;
    margin-top: 12px !important;
}

.woocommerce .products .product .add_to_cart_button:hover,
.woocommerce .products .product a.add_to_cart_button:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4) !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

/* Related products butonları */
.woocommerce .related .add_to_cart_button,
.woocommerce .upsells .add_to_cart_button {
    background: linear-gradient(135deg, #0d9668 0%, #10b981 100%) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3) !important;
    text-decoration: none !important;
}

.woocommerce .related .add_to_cart_button:hover,
.woocommerce .upsells .add_to_cart_button:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4) !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

/* Özel buton sınıfları */
.add-to-cart-btn,
.product-actions .add-to-cart-btn,
.woocommerce .add-to-cart-btn,
.woocommerce .button.add-to-cart-btn {
    background: linear-gradient(135deg, #0d9668 0%, #10b981 100%) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3) !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
}

.add-to-cart-btn:hover,
.product-actions .add-to-cart-btn:hover,
.woocommerce .add-to-cart-btn:hover,
.woocommerce .button.add-to-cart-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4) !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

/* WooCommerce loop butonları */
.woocommerce .products .product .add-to-cart-btn,
.woocommerce .products .product .button.add-to-cart-btn {
    background: linear-gradient(135deg, #0d9668 0%, #10b981 100%) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3) !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    width: 100% !important;
    margin-top: 12px !important;
}

.woocommerce .products .product .add-to-cart-btn:hover,
.woocommerce .products .product .button.add-to-cart-btn:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4) !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

/* ==========================================================================
   PRICE FONT SIZE OVERRIDE - Tüm Fiyatları Küçült
   ========================================================================== */

/* Tüm WooCommerce fiyat sınıfları için genel override */
.woocommerce .price,
.woocommerce .woocommerce-Price-amount,
.woocommerce .amount,
.woocommerce .price-wrapper .price,
.woocommerce .product-price .price,
.woocommerce .product-price .woocommerce-Price-amount,
.woocommerce .product-price .amount,
.woocommerce .product .price,
.woocommerce .product .woocommerce-Price-amount,
.woocommerce .product .amount,
.woocommerce .cart .price,
.woocommerce .cart .woocommerce-Price-amount,
.woocommerce .cart .amount,
.woocommerce .shop .price,
.woocommerce .shop .woocommerce-Price-amount,
.woocommerce .shop .amount {
    font-size: 16px !important;
    font-weight: 600 !important;
}

/* Single product sayfası için özel fiyat boyutu */
.woocommerce .single-product .price,
.woocommerce .single-product .woocommerce-Price-amount,
.woocommerce .single-product .amount {
    font-size: 20px !important;
    font-weight: 700 !important;
}

/* Shop sayfası ürün kartları için fiyat boyutu */
.woocommerce .products .product .price,
.woocommerce .products .product .woocommerce-Price-amount,
.woocommerce .products .product .amount {
    font-size: 14px !important;
    font-weight: 600 !important;
}

/* Checkout sayfası için fiyat boyutu */
.woocommerce .checkout .price,
.woocommerce .checkout .woocommerce-Price-amount,
.woocommerce .checkout .amount {
    font-size: 12px !important;
    font-weight: 600 !important;
}

/* Cart sayfası için fiyat boyutu */
.woocommerce .cart .price,
.woocommerce .cart .woocommerce-Price-amount,
.woocommerce .cart .amount {
    font-size: 14px !important;
    font-weight: 600 !important;
}

/* ==========================================================================
   SALE/DISCOUNT PRICE STYLING - İndirimli Fiyatlar
   ========================================================================== */

/* İndirimli ürünlerde eski fiyat (çizgili fiyat) */
.woocommerce .price del,
.woocommerce .price .del,
.woocommerce .woocommerce-Price-amount del,
.woocommerce .woocommerce-Price-amount .del,
.woocommerce .amount del,
.woocommerce .amount .del,
.woocommerce del,
.woocommerce .del {
    text-decoration: line-through !important;
    text-decoration-color: #dc2626 !important;
    text-decoration-thickness: 2px !important;
    text-decoration-style: solid !important;
    color: #9ca3af !important;
    font-size: 0.9em !important;
    opacity: 0.8 !important;
    position: relative !important;
}

/* İndirimli fiyat (yeni fiyat) */
.woocommerce .price ins,
.woocommerce .price .ins,
.woocommerce .woocommerce-Price-amount ins,
.woocommerce .woocommerce-Price-amount .ins,
.woocommerce .amount ins,
.woocommerce .amount .ins,
.woocommerce ins,
.woocommerce .ins {
    text-decoration: none !important;
    color: #10b981 !important;
    font-weight: 700 !important;
    font-size: 1.1em !important;
}

/* Fiyat wrapper'ında indirimli fiyat düzenlemesi */
.woocommerce .price-wrapper {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
}

.woocommerce .price-wrapper del {
    order: 1 !important;
    margin-right: 8px !important;
}

.woocommerce .price-wrapper ins {
    order: 2 !important;
    font-weight: 700 !important;
    color: #10b981 !important;
}

/* Single product sayfasında indirimli fiyat */
.woocommerce .single-product .price del,
.woocommerce .single-product .price .del {
    font-size: 20px !important;
    color: #9ca3af !important;
    text-decoration: line-through !important;
    text-decoration-color: #dc2626 !important;
    text-decoration-thickness: 2px !important;
}

.woocommerce .single-product .price ins,
.woocommerce .single-product .price .ins {
    font-size: 28px !important;
    color: #10b981 !important;
    font-weight: 800 !important;
    margin-left: 12px !important;
}

/* Shop sayfasında indirimli fiyat */
.woocommerce .products .product .price del,
.woocommerce .products .product .price .del {
    font-size: 12px !important;
    color: #9ca3af !important;
    text-decoration: line-through !important;
    text-decoration-color: #dc2626 !important;
    text-decoration-thickness: 1px !important;
}

.woocommerce .products .product .price ins,
.woocommerce .products .product .price .ins {
    font-size: 16px !important;
    color: #10b981 !important;
    font-weight: 700 !important;
    margin-left: 6px !important;
}

/* Checkout sayfasında indirimli fiyat */
.woocommerce .checkout .price del,
.woocommerce .checkout .price .del {
    font-size: 10px !important;
    color: #9ca3af !important;
    text-decoration: line-through !important;
    text-decoration-color: #dc2626 !important;
    text-decoration-thickness: 1px !important;
}

.woocommerce .checkout .price ins,
.woocommerce .checkout .price .ins {
    font-size: 14px !important;
    color: #10b981 !important;
    font-weight: 700 !important;
    margin-left: 4px !important;
}

/* Sale badge ile birlikte kullanım */
.woocommerce .product .sale-badge + .price del {
    opacity: 0.7 !important;
}

.woocommerce .product .sale-badge + .price ins {
    color: #dc2626 !important;
    font-weight: 800 !important;
}

/* ==========================================================================
   PRODUCT SORTING DROPDOWN - Ürün Sıralaması
   ========================================================================== */

/* Ürün sıralaması dropdown */
.woocommerce .woocommerce-ordering,
.woocommerce-ordering,
.filter-sort,
.toolbar-actions .filter-sort {
    position: relative;
    display: inline-block;
}

.woocommerce .woocommerce-ordering select,
.woocommerce-ordering select,
.filter-sort select,
.toolbar-actions .filter-sort select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 40px 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    min-width: 200px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 16px;
}

.woocommerce .woocommerce-ordering select:hover,
.woocommerce-ordering select:hover,
.filter-sort select:hover,
.toolbar-actions .filter-sort select:hover {
    border-color: #10b981;
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.1);
}

.woocommerce .woocommerce-ordering select:focus,
.woocommerce-ordering select:focus,
.filter-sort select:focus,
.toolbar-actions .filter-sort select:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1), 0 4px 12px rgba(16, 185, 129, 0.15);
}

/* Custom dropdown arrow */
.woocommerce .woocommerce-ordering::after,
.woocommerce-ordering::after,
.filter-sort::after,
.toolbar-actions .filter-sort::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    transition: transform 0.3s ease;
}

/* Dropdown options styling */
.woocommerce .woocommerce-ordering select option,
.woocommerce-ordering select option,
.filter-sort select option,
.toolbar-actions .filter-sort select option {
    padding: 12px 16px;
    background: #ffffff;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    border: none;
}

.woocommerce .woocommerce-ordering select option:hover,
.woocommerce-ordering select option:hover,
.filter-sort select option:hover,
.toolbar-actions .filter-sort select option:hover {
    background: #f3f4f6;
    color: #10b981;
}

/* Shop toolbar styling */
.shop-toolbar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px 24px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.shop-toolbar-top .results-count {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.shop-toolbar-top .results-count strong {
    color: #10b981;
    font-weight: 700;
}

/* Toolbar actions container */
.toolbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Filter sort container */
.filter-sort {
    position: relative;
}

/* Responsive design */
@media (max-width: 768px) {
    .shop-toolbar-top {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
        padding: 16px 20px;
    }
    
    .toolbar-actions {
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 12px;
    }
    
    .woocommerce .woocommerce-ordering select,
    .woocommerce-ordering select,
    .filter-sort select,
    .toolbar-actions .filter-sort select {
        min-width: 100%;
        font-size: 13px;
        padding: 10px 36px 10px 14px;
    }
    
    .results-count {
        text-align: center;
    }
    
    /* Mobile Filter Button */
    .mobile-filter-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: #ffffff;
        border: 2px solid #e5e7eb;
        border-radius: 8px;
        padding: 10px 16px;
        font-size: 14px;
        font-weight: 600;
        color: #374151;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .mobile-filter-toggle:hover {
        border-color: #10b981;
        box-shadow: 0 4px 8px rgba(16, 185, 129, 0.1);
    }
    
    .mobile-filter-toggle svg {
        width: 18px;
        height: 18px;
    }
}

/* Desktop - Hide mobile filter button */
@media (min-width: 769px) {
    .mobile-filter-toggle {
        display: none !important;
    }
}

/* ==========================================================================
   MOBILE FILTER POPUP - Mobil Filtre Popup
   ========================================================================== */

/* Mobile Filter Overlay */
.mobile-filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.mobile-filter-overlay.active {
    display: flex;
}

/* Mobile Filter Popup */
.mobile-filter-popup {
    background: #ffffff;
    border-radius: 20px 20px 0 0;
    width: 100%;
    max-width: 500px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.mobile-filter-overlay.active .mobile-filter-popup {
    transform: translateY(0);
}

/* Mobile Filter Header */
.mobile-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
    background: #ffffff;
    border-radius: 20px 20px 0 0;
}

.mobile-filter-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.mobile-filter-close {
    background: none;
    border: none;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    color: #6b7280;
    transition: all 0.3s ease;
}

.mobile-filter-close:hover {
    background: #f3f4f6;
    color: #374151;
}

.mobile-filter-close svg {
    width: 20px;
    height: 20px;
}

/* Mobile Filter Content */
.mobile-filter-content {
    flex: 1;
    overflow-y: auto;
    padding: 0 24px 24px;
}

.mobile-filter-section {
    margin-bottom: 32px;
}

.mobile-filter-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f3f4f6;
}

/* Mobile Categories */
.mobile-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-category-item {
    margin-bottom: 8px;
}

.mobile-category-item a {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 10px;
    text-decoration: none;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mobile-category-item a:hover {
    background: #e2e8f0;
    color: #1a1a1a;
}

.mobile-category-item.active a {
    background: linear-gradient(135deg, #0d9668 0%, #10b981 100%);
    color: #ffffff;
    border-color: #10b981;
}

.mobile-category-item .cat-icon {
    font-size: 18px;
    margin-right: 12px;
    min-width: 20px;
}

.mobile-category-item .cat-name {
    flex: 1;
}

.mobile-category-item .cat-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.mobile-category-item:not(.active) .cat-count {
    background: #e2e8f0;
    color: #64748b;
}

/* Mobile Price Filter */
.mobile-price-filter .price-inputs {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.mobile-price-filter .price-input-group {
    flex: 1;
}

.mobile-price-filter .price-input-group label {
    display: block;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 4px;
    font-weight: 500;
}

.mobile-price-filter .price-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    color: #374151;
    background: #ffffff;
    transition: all 0.3s ease;
}

.mobile-price-filter .price-input:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.mobile-price-filter-btn {
    width: 100%;
    background: linear-gradient(135deg, #0d9668 0%, #10b981 100%);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.mobile-price-filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

/* Mobile Sort Options */
.mobile-sort-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    color: #374151;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 16px;
    padding-right: 40px;
}

.mobile-sort-select:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Mobile Filter Footer */
.mobile-filter-footer {
    display: flex;
    gap: 12px;
    padding: 20px 24px;
    border-top: 1px solid #e5e7eb;
    background: #ffffff;
}

.mobile-filter-clear {
    flex: 1;
    background: #f8fafc;
    color: #64748b;
    border: 2px solid #e5e7eb;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-filter-clear:hover {
    background: #e2e8f0;
    color: #374151;
}

.mobile-filter-apply {
    flex: 2;
    background: linear-gradient(135deg, #0d9668 0%, #10b981 100%);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.mobile-filter-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

/* Desktop - Hide mobile filter popup */
@media (min-width: 769px) {
    .mobile-filter-overlay {
        display: none !important;
    }
}

/* ==========================================================================
   AGGRESSIVE BUTTON OVERRIDE - Tüm Butonları Yeşil Yap
   ========================================================================== */

/* Tüm WooCommerce butonları için agresif override */
.woocommerce *[class*="button"],
.woocommerce *[class*="add-to-cart"],
.woocommerce *[class*="cart"],
.woocommerce a[href*="add-to-cart"],
.woocommerce a[href*="cart"],
.woocommerce button[class*="button"],
.woocommerce input[class*="button"],
.woocommerce input[type="submit"],
.woocommerce button[type="submit"],
.woocommerce .button,
.woocommerce .button.alt,
.woocommerce .button.primary,
.woocommerce .button.secondary,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background: linear-gradient(135deg, #0d9668 0%, #10b981 100%) !important;
    background-color: #10b981 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3) !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
}

.woocommerce *[class*="button"]:hover,
.woocommerce *[class*="add-to-cart"]:hover,
.woocommerce *[class*="cart"]:hover,
.woocommerce a[href*="add-to-cart"]:hover,
.woocommerce a[href*="cart"]:hover,
.woocommerce button[class*="button"]:hover,
.woocommerce input[class*="button"]:hover,
.woocommerce input[type="submit"]:hover,
.woocommerce button[type="submit"]:hover,
.woocommerce .button:hover,
.woocommerce .button.alt:hover,
.woocommerce .button.primary:hover,
.woocommerce .button.secondary:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4) !important;
    background: linear-gradient(135deg, #0b7d5a 0%, #0ea070 100%) !important;
    background-color: #0ea070 !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

/* ==========================================================================
   CHECKOUT PAGE - Ödeme Sayfası
   ========================================================================== */

.kraft-checkout-page {
    background: #f8fafc;
    min-height: 100vh;
    padding: 40px 0;
}

.checkout-page-header {
    text-align: center;
    margin-bottom: 40px;
}

.checkout-page-header .page-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.checkout-page-header .page-title svg {
    color: #10b981;
}

/* Checkout Steps */
.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 500px;
    margin: 0 auto;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: linear-gradient(135deg, #0d9668 0%, #10b981 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.step-name {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
}

.step.active .step-name {
    color: #10b981;
}

.step-line {
    width: 80px;
    height: 2px;
    background: #e5e7eb;
    margin: 0 8px;
}

/* Checkout Layout */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 40px;
    align-items: start;
}

.checkout-form-section {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.checkout-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 24px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-section-title svg {
    color: #10b981;
}

/* Checkout Fields */
.woocommerce-checkout .form-row {
    margin-bottom: 20px;
}

.woocommerce-checkout label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 14px;
}

.woocommerce-checkout .required {
    color: #dc2626;
    margin-left: 4px;
}

.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout select,
.woocommerce-checkout textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.woocommerce-checkout input:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
    border-color: #10b981;
    outline: none;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last {
    width: 48%;
    float: left;
}

.woocommerce-checkout .form-row-last {
    float: right;
}

.woocommerce-checkout .form-row-wide {
    clear: both;
}

/* Order Review */
.checkout-review-section {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 120px;
}

.woocommerce-checkout-review-order {
    margin-top: 20px;
}

.woocommerce-checkout-review-order-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
    text-align: left;
}

.woocommerce-checkout-review-order-table th {
    font-weight: 600;
    color: #64748b;
    font-size: 13px;
    text-transform: uppercase;
}

.woocommerce-checkout-review-order-table .product-name {
    font-weight: 600;
    color: #1a1a1a;
}

.woocommerce-checkout-review-order-table .product-total {
    text-align: right;
    font-weight: 700;
    color: #10b981;
    font-size: 16px;
}

.order-total th,
.order-total td {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    padding-top: 24px;
    border-top: 2px solid #e5e7eb;
}

.order-total .woocommerce-Price-amount {
    color: #10b981;
    font-size: 14px !important;
}

/* Daha spesifik fiyat kuralları */
.woocommerce-checkout-review-order .order-total .woocommerce-Price-amount {
    font-size: 14px !important;
}

.woocommerce-checkout-review-order .woocommerce-Price-amount {
    font-size: 12px !important;
}

/* WooCommerce fiyat kuralları override */
.woocommerce-checkout-review-order-table .amount {
    font-size: 12px !important;
}

.woocommerce-checkout-review-order-table .woocommerce-Price-amount {
    font-size: 12px !important;
}

.woocommerce-checkout-review-order-table .product-total .amount {
    font-size: 12px !important;
}

.woocommerce-checkout-review-order-table .product-total .woocommerce-Price-amount {
    font-size: 12px !important;
}

/* Order total override */
.woocommerce-checkout-review-order .order-total .amount {
    font-size: 14px !important;
}

.woocommerce-checkout-review-order .order-total .woocommerce-Price-amount {
    font-size: 14px !important;
}

/* WooCommerce .price sınıfı override */
.woocommerce-checkout-review-order .price {
    font-size: 12px !important;
}

.woocommerce-checkout-review-order .order-total .price {
    font-size: 14px !important;
}

.woocommerce-checkout-review-order-table .price {
    font-size: 12px !important;
}

/* Genel .price override */
.woocommerce-checkout .price {
    font-size: 12px !important;
}

/* Payment Methods */
.woocommerce-checkout-payment {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
}

.wc_payment_methods {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.wc_payment_method {
    margin-bottom: 12px;
}

.wc_payment_method label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wc_payment_method label:hover {
    border-color: #10b981;
}

.wc_payment_method input[type="radio"]:checked + label {
    border-color: #10b981;
    background: #f0fdf4;
}

/* Place Order Button */
#place_order {
    width: 100%;
    background: linear-gradient(135deg, #0d9668 0%, #10b981 100%);
    color: #ffffff;
    border: none;
    padding: 18px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    margin-top: 20px;
}

#place_order:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

/* Privacy Policy */
.woocommerce-privacy-policy-text {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin: 16px 0;
}

.woocommerce-privacy-policy-text a {
    color: #10b981;
    text-decoration: none;
}

.woocommerce-privacy-policy-text a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   FORMS - Genel Form Stilleri
   ========================================================================== */

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

.woocommerce-Input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.woocommerce-Input:focus {
    border-color: #10b981;
    outline: none;
}

.woocommerce-Button {
    background: linear-gradient(135deg, #0d9668 0%, #10b981 100%);
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.woocommerce-Button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {
    /* Shop Page */
    .shop-layout-sidebar {
        grid-template-columns: 1fr;
    }
    
    .shop-sidebar-left {
        position: static;
        order: 2;
    }
    
    .products-wrapper {
        grid-template-columns: 1fr;
    }
    
    .shop-hero-title {
        font-size: 36px;
    }
    
    /* Single Product */
    .product-hero-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-main-title {
        font-size: 28px;
    }
    
    .product-price-box .price {
        font-size: 24px;
    }
    
    .product-purchase-section .cart {
        flex-direction: column;
        align-items: stretch;
    }
    
    .product-purchase-section .single_add_to_cart_button {
        width: 100%;
    }
    
    .product-contact-buttons {
        flex-direction: column;
    }
    
    .product-trust-icons {
        flex-direction: column;
        gap: 12px;
    }
    
    .related-products-grid-3 {
        grid-template-columns: 1fr;
    }
    
    .woocommerce div.product div.images,
    .woocommerce div.product div.summary {
        width: 100%;
        float: none;
    }
    
    .summary {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .product_title {
        font-size: 28px;
    }
    
    .price {
        font-size: 20px;
    }
    
    .single_add_to_cart_button {
        width: 100%;
        padding: 14px 32px;
        font-size: 16px;
    }
    
    /* Account Page */
    .account-layout {
        grid-template-columns: 1fr;
    }
    
    .account-sidebar {
        position: static;
    }
    
    .kraft-account-main {
        padding: 60px 0 40px;
    }
    
    .account-content {
        padding: 24px;
    }
    
    .account-stats,
    .quick-actions {
        grid-template-columns: 1fr;
    }
    
    .kraft-account-page {
        padding-top: 65px;
    }
    
    /* Checkout Page */
    .checkout-layout {
        grid-template-columns: 1fr;
    }
    
    .checkout-review-section {
        position: static;
        order: 2;
    }
    
    .checkout-page-header .page-title {
        font-size: 28px;
    }
    
    .checkout-steps {
        max-width: 100%;
    }
    
    .step-line {
        width: 40px;
    }
    
    .woocommerce-checkout .form-row-first,
    .woocommerce-checkout .form-row-last {
        width: 100%;
        float: none;
    }
    
    .checkout-form-section {
        padding: 24px;
    }
    
    .checkout-review-section {
        padding: 24px;
    }
    
    /* Shop Search Responsive */
    .woocommerce-product-search .search-field {
        font-size: 14px;
        padding: 14px 45px 14px 16px;
    }
    
    .woocommerce-product-search .search-submit {
        width: 36px;
        height: 36px;
    }
    
    .woocommerce-product-search .search-submit svg {
        width: 16px;
        height: 16px;
    }
    
    .woocommerce-product-search-form {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    /* Shop Search Bar Responsive */
    .shop-search-bar {
        margin-top: 30px;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .search-input-wrapper {
        padding: 6px;
    }
    
    .search-input-wrapper input[type="search"] {
        padding: 14px 55px 14px 45px;
        font-size: 14px;
    }
    
    .search-icon {
        left: 16px;
        width: 18px;
        height: 18px;
    }
    
    .search-input-wrapper button[type="submit"] {
        padding: 10px 20px;
        font-size: 13px;
        right: 6px;
    }
    
    /* Add to Cart Buttons Responsive */
    .woocommerce .single_add_to_cart_button,
    .woocommerce .add_to_cart_button {
        padding: 10px 20px !important;
        font-size: 13px !important;
    }
    
    .woocommerce .products .product .add_to_cart_button,
    .woocommerce .products .product a.add_to_cart_button {
        padding: 8px 16px !important;
        font-size: 12px !important;
    }
}

