/*
Theme Name: Parisian Butik
Description: Moda ve stil odaklı WooCommerce teması
Version: 1.0
Text Domain: parisian-butik
*/


/* TEMEL SIFIRLAMA VE STİLLER */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html, body { 
    overflow-x: hidden; 
    width: 100%; 
}
body { 
    color: #333; 
    line-height: 1.6; 
    background-color: #f9f9f9; 
}
a { 
    text-decoration: none; 
    color: inherit; 
}
ul { 
    list-style: none; 
    padding-left: 0; 
    margin-bottom: 0; 
}
.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 15px; 
}

/* KATEGORİ SAYFASI CONTAINER - DAHA GENIŞ */
.category-products-wrapper .container {
    max-width: 1600px;
}

/* ÜST BANNER - KAYAN YAZI */
.top-banner {
    background-color: #000;
    color: #fff;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.scrolling-text {
    white-space: nowrap;
    animation: scrollText 25s linear infinite;
    display: inline-block;
}

@keyframes scrollText {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* HEADER BAŞLANGIÇ */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* ÜST İKON VE LOGO SIRASI */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.logo img {
    height: 50px; /* Masaüstü Logo Boyutu */
}

.user-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-shrink: 0;
}

.user-actions a {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
    position: relative;
}

/* Masaüstünde normal görünüm */
.user-actions .desktop-text {
    display: inline;
}

.user-actions .count-badge {
    display: inline;
}

.user-actions i {
    font-size: 18px;
}

/* KULLANICI MENÜ DROPDOWN */
.user-menu-dropdown {
    position: relative;
}

.user-menu-toggle {
    cursor: pointer;
}

.user-dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 1000;
}

.user-dropdown-content::before {
    content: '';
    position: absolute;
    top: -10px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white;
}

.user-dropdown-content a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: #333;
    transition: background 0.2s;
    font-size: 14px;
}

.user-dropdown-content a:hover {
    background: #f8f8f8;
}

.user-dropdown-content a.logout-link {
    border-top: 1px solid #eee;
    margin-top: 5px;
    color: #f44336;
}

.user-dropdown-content a.logout-link:hover {
    background: #ffebee;
}

.user-menu-dropdown.active .user-dropdown-content {
    display: block;
}

/* ARAMA VE NAVİGASYON ROW */
.header-main { 
    display: flex; 
    align-items: center; 
    gap: 30px; 
    flex-grow: 1; 
    justify-content: center; 
}

.search-box {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 25px;
    padding: 8px 15px;
    flex-grow: 1;
    max-width: 500px;
    position: relative;
}

.search-box-large {
    max-width: 600px;
    width: 100%;
    padding: 8px 20px;
    background: #f5f5f5;
    border-radius: 30px;
    box-shadow: none;
    margin: 0 auto;
    position: relative;
}

.search-box input {
    border: none;
    background: transparent;
    padding: 8px 16px;
    flex-grow: 1;
    outline: none;
    font-size: 18px;
    height: 48px;
}
.search-box button {
    background: #d4a574;
    border: none;
    color: white;
    padding: 0 28px;
    border-radius: 22px;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 18px;
    font-weight: 600;
    height: 44px;
    min-width: 90px;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* AJAX ARAMA SONUÇLARI */
.ajax-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    margin-top: 10px;
    max-height: 500px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.ajax-search-list {
    padding: 10px;
}

.ajax-search-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    border-radius: 8px;
    transition: background 0.2s;
}

.ajax-search-item:hover {
    background: #f8f8f8;
}

.ajax-search-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.ajax-search-info {
    flex: 1;
}

.ajax-search-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #333;
}

.ajax-search-price {
    font-size: 15px;
    font-weight: 700;
    color: #d4a574;
}

.ajax-search-all {
    display: block;
    text-align: center;
    padding: 15px;
    background: #f8f8f8;
    color: #d4a574;
    font-weight: 600;
    border-radius: 0 0 12px 12px;
    transition: background 0.2s;
}

.ajax-search-all:hover {
    background: #d4a574;
    color: white;
}

.ajax-search-loading,
.ajax-search-empty,
.ajax-search-error {
    padding: 30px;
    text-align: center;
    color: #666;
}

.ajax-search-error {
    color: #f44336;
}

/* MASAÜSTÜ NAVİGASYON (HEADER-NAV) */
.header-bottom {
    display: flex;
    justify-content: flex-start;
    padding: 15px 0;
}

.header-bottom nav ul {
    display: flex;
    gap: 25px;
}

.header-bottom nav a {
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
    display: block;
    white-space: nowrap;
}

/* MASAÜSTÜ DROPDOWN STİLLERİ (HOVER) */
.header-bottom .dropdown {
    position: relative;
}

.header-bottom .dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 10;
    top: 100%;
    left: 0;
    border-radius: 4px;
    padding: 10px 0;
    border-top: 2px solid #d4a574;
}

.header-bottom .dropdown-content a {
    padding: 8px 15px;
    font-weight: 500;
}

.header-bottom .dropdown-content a:hover {
    background-color: #f5f5f5;
    color: #d4a574;
}

/* Masaüstünde hover ile açılma */
.header-bottom .dropdown:hover .dropdown-content {
    display: block;
}

/* MOBİL MENÜ BUTONU VE STİL */
.mobile-menu-btn {
    display: none; /* Masaüstünde gizli */
    font-size: 28px;
    cursor: pointer;
}

/* MOBİL OVERLAY MENÜ STİLLERİ (YENİ) */
.header-bottom nav {
    /* Masaüstünde inline block veya flex olarak kalmalı */
    position: static; 
    width: auto;
    height: auto;
    box-shadow: none;
    background: none;
    padding: 0;
    z-index: 100;
}

/* Mobil Menü (Overlay) Stilleri */
.mobile-overlay-menu {
    position: fixed;
    top: 0;
    left: -100%; 
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background-color: #fff;
    z-index: 10000; 
    box-shadow: 2px 0 15px rgba(0,0,0,0.2);
    transition: left 0.3s ease-in-out;
    padding: 20px;
    overflow-y: auto;
}

.mobile-overlay-menu.active {
    left: 0;
}

.mobile-overlay-menu .close-menu {
    position: absolute;
    top: 15px; 
    right: 15px; 
    font-size: 24px;
    cursor: pointer;
    color: #333;
    z-index: 10001;
    transition: color 0.3s;
}

.mobile-overlay-menu .close-menu:hover {
    color: #d4a574;
}

.mobile-overlay-menu ul {
    margin-top: 50px;
    padding: 0;
    list-style: none;
}

.mobile-overlay-menu li {
    border-bottom: 1px solid #eee;
}

.mobile-overlay-menu li:last-child {
    border-bottom: none;
}

/* MOBİL MENÜ DROPDOWN (AKORDİYON) STİLLERİ */
.mobile-overlay-menu > ul > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.mobile-overlay-menu > ul > li > a:hover {
    color: #d4a574;
}

.mobile-overlay-menu .sub-menu {
    display: none;
    padding: 10px 0 10px 15px;
    background-color: #f9f9f9;
    list-style: none;
    margin: 0;
}

.mobile-overlay-menu .sub-menu li {
    border-bottom: 1px solid #e0e0e0;
}

.mobile-overlay-menu .sub-menu li:last-child {
    border-bottom: none;
}

.mobile-overlay-menu .sub-menu a {
    display: block;
    padding: 10px 0;
    font-weight: 400;
    font-size: 14px;
    color: #666;
    text-transform: none;
    letter-spacing: normal;
}

.mobile-overlay-menu .sub-menu a:hover {
    color: #d4a574;
}

.mobile-overlay-menu .fa-chevron-down {
    transition: transform 0.3s ease;
    font-size: 12px;
    color: #999;
}

.mobile-overlay-menu .menu-item-has-children.active > a .fa-chevron-down {
    transform: rotate(180deg);
    color: #d4a574;
}

/* Mobil İletişim ve Sosyal Medya */
.mobile-contact { 
    padding: 30px 0 20px;
    margin-top: 30px;
    border-top: 1px solid #eee;
} 
    border-top: 1px solid #eee; 
    margin-top: 20px; 
}
.mobile-contact p { 
    font-size: 14px; 
    margin-bottom: 10px; 
}
.social-icons-mobile a { 
    font-size: 24px; 
    margin-right: 15px; 
    color: #333; 
    transition: color 0.3s; 
}

/* ARKA PLAN KARARTMASI */
.menu-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}
.menu-backdrop.active {
    display: block;
}

/* Modal Stilleri - Arama Modalı için */
.search-modal {
    display: none; /* Varsayılan olarak gizli */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
    padding-top: 60px;
}

.search-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border-radius: 8px;
    width: 80%; 
    max-width: 600px;
    position: relative;
}

.search-modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.search-modal-close:hover,
.search-modal-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* SEPET MODALI STİLLERİ */
.cart-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.cart-modal-content {
    background-color: #fefefe;
    margin-left: auto;
    width: 400px;
    height: 100%;
    padding: 20px;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.cart-modal-close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
}

.cart-modal-close:hover,
.cart-modal-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    padding-right: 30px;
    border-bottom: 1px solid #eee;
}

.cart-title {
    font-size: 20px;
    font-weight: 600;
}

.clear-cart {
    background: none;
    border: none;
    color: #777;
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    margin-right: 15px;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.cart-item-price {
    font-size: 14px;
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 10px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    background: #f5f5f5;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
}

.quantity-value {
    font-size: 14px;
    font-weight: 500;
    min-width: 20px;
    text-align: center;
}

.cart-footer {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 18px;
}

.cart-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkout-btn, .continue-shopping {
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s;
}

.checkout-btn {
    background: #d4a574;
    color: white;
    border: none;
}

.continue-shopping {
    background: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}

.empty-cart {
    text-align: center;
    padding: 40px 0;
    color: #777;
}

.empty-cart i {
    font-size: 48px;
    margin-bottom: 15px;
    color: #ddd;
}

/* HEADER BİTİŞ */

/* DİĞER ALANLAR */

/* ÜRÜN VE PERFORMANS DÜZELTMELERİ */
.product-image { height: 380px; overflow: hidden; position: relative; background: #eee; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; display: block; }
.product-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 3px 10px rgba(0,0,0,0.1); transition: transform 0.3s, box-shadow 0.3s; margin: 0 10px; height: 100%; position: relative; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.15); }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-info { 
    padding: 15px; 
    display: flex; 
    flex-direction: column; 
    flex-grow: 1; 
    min-height: 160px; 
}
.product-title-area { 
    display: flex; 
    justify-content: space-between; 
    align-items: flex-start; 
    flex-wrap: wrap; 
    gap: 8px; 
    margin-bottom: 8px;
}
.product-title { 
    font-size: 16px; 
    margin-bottom: 8px; 
    font-weight: 500; 
    line-height: 1.2;
    overflow: hidden; 
    flex: 1 1 100%;
    min-height: 38px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* CAROUSEL ÜRÜN KARTLARI İÇİN VARYANT BEDEN SEÇİMİ */
.product-card .product-sizes-custom {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin: 0;
    align-items: center;
}

.product-card .size-btn-custom {
    min-width: 26px;
    height: 26px;
    padding: 0 7px;
    border: 1.5px solid #e0e0e0;
    background: #fff;
    color: #666;
    font-size: 11px;
    font-weight: 600;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.product-card .size-btn-custom:hover {
    border-color: #d4a574;
    color: #d4a574;
    background: #fef9f5;
}

.product-card .size-btn-custom.selected {
    background: #d4a574;
    border-color: #d4a574;
    color: #fff;
    box-shadow: 0 2px 5px rgba(212, 165, 116, 0.3);
}

.product-badge { position: absolute; top: 10px; left: 10px; background-color: #d4a574; color: #fff; padding: 5px 10px; border-radius: 4px; font-size: 12px; font-weight: 600; z-index: 2; text-transform: uppercase; letter-spacing: 0.5px; }
.product-badge.new-badge { background-color: #28a745; }
.add-to-fav { 
    position: absolute; 
    top: 10px; 
    right: 10px; 
    background: rgba(255, 255, 255, 0.9); 
    border: none; 
    cursor: pointer; 
    font-size: 20px; 
    color: #555; 
    transition: all 0.3s; 
    width: 40px; 
    height: 40px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 50%; 
    padding: 0; 
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.add-to-fav:hover { 
    background: #fff; 
    color: #ff6b6b; 
    transform: scale(1.1);
}
/* Favoride olan ürünler için dolu kalp */
.add-to-fav i.fas { 
    color: #ff6b6b !important;
}
.add-to-fav.favorited,
.add-to-fav[style*="color: rgb(255, 107, 107)"] {
    color: #ff6b6b !important;
}
.add-to-fav.favorited i,
.add-to-fav[style*="color: rgb(255, 107, 107)"] i {
    color: #ff6b6b !important;
}

/* Kalp animasyonu */
@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.3); }
    50% { transform: scale(1.1); }
    75% { transform: scale(1.2); }
}

.add-to-fav.animate-heart {
    animation: heartBeat 0.3s ease-in-out;
}

.add-to-fav.animate-heart i {
    color: #ff6b6b !important;
}
.product-actions { position: absolute; bottom: 0; left: 0; width: 100%; background: #fff; padding: 8px 12px; box-shadow: 0 -2px 5px rgba(0,0,0,0.05); display: flex; justify-content: space-between; align-items: center; gap: 8px; transform: translateY(100%); opacity: 0; visibility: hidden; transition: transform 0.3s ease-out, opacity 0.3s ease-out, visibility 0s 0.3s; }
.product-card:hover .product-actions { transform: translateY(0); opacity: 1; visibility: visible; transition-delay: 0s; }
.add-to-cart, .detail-link { background: #d4a574; color: white; border: none; padding: 8px 12px; border-radius: 4px; cursor: pointer; font-weight: 600; transition: background 0.3s; flex-grow: 1; text-align: center; font-size: 13px; }
.add-to-cart:disabled { 
    background: #ccc; 
    cursor: not-allowed; 
    opacity: 0.6;
}
.add-to-cart:not(:disabled):hover { 
    background: #c49564; 
}
.detail-link { background: #555; }
.detail-link:hover { background: #333; }

/* MOBİL SEPETE EKLE BUTONU - MASAÜSTÜNDE GİZLİ */
.mobile-add-to-cart {
    display: none;
}

.product-price { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    margin-top: auto;
    padding-top: 8px;
}
.current-price { 
    font-size: 18px; 
    font-weight: 600; 
    color: #d4a574;
}
.current-price del,
.current-price del .woocommerce-Price-amount {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
}
.current-price ins,
.current-price ins .woocommerce-Price-amount {
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: #d4a574;
}
.current-price .woocommerce-Price-amount:last-child {
    order: -1;
}
.old-price { font-size: 14px; color: #999; text-decoration: line-through; }
.slider-section { position: relative; margin: 0; margin-bottom: 0; width: 100%; overflow: hidden; padding: 0; }

/* Slick yüklenmeden önce içeriği gizle - FOUC önleme */
.desktop-slider:not(.slick-initialized),
.mobile-slider:not(.slick-initialized),
.products-carousel:not(.slick-initialized) {
    opacity: 0;
    visibility: hidden;
}
.desktop-slider.slick-initialized,
.mobile-slider.slick-initialized,
.products-carousel.slick-initialized {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
}

.desktop-slider { display: block !important; }
.mobile-slider { display: none !important; }
.slider-item { position: relative; height: 700px; background-size: cover; background-position: center; }
.slider-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.section-title { text-align: center; margin: 40px 0 30px; position: relative; }
.section-title h2 { display: inline-block; font-size: 28px; font-weight: 600; padding-bottom: 10px; border-bottom: 2px solid #d4a574; }
.products-section { margin-bottom: 50px; position: relative; width: 100%; }

/* 4'lü Layout - Container içinde ortalı */
.products-carousel.layout-4 { 
    margin: 0 auto; 
    width: 100%; 
    max-width: 1200px; 
    padding: 0 15px; 
    box-sizing: border-box; 
}

/* 6'lı Layout - Ekrana yayılır */
.products-carousel.layout-6 { 
    margin: 0 auto; 
    width: 100%; 
    max-width: 100%; 
    padding: 0 15px; 
    box-sizing: border-box; 
}

/* Eski carousel için default */
.products-carousel { 
    margin: 0 auto; 
    width: 100%; 
    max-width: 1200px; 
    padding: 0 15px; 
    box-sizing: border-box; 
}

.instagram-section { margin: 50px 0; position: relative; }
.instagram-banner { height: 700px; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; position: relative; }
.instagram-banner::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); }
.instagram-content { position: relative; z-index: 1; text-align: center; color: #fff; }
.instagram-content h3 { font-size: 32px; margin-bottom: 15px; }
.instagram-btn { background-color: transparent; border: 2px solid #fff; color: #fff; padding: 12px 25px; border-radius: 4px; font-weight: 600; cursor: pointer; transition: all 0.3s; display: inline-block; }
footer { background-color: #2c2c2c; color: #fff; padding: 50px 0 20px; }
footer > .container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.footer-content { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-bottom: 40px; }
.footer-column h4 { font-size: 18px; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-column h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background-color: #d4a574; }
.footer-column ul { list-style: none; padding: 0; margin: 0; }
.footer-column ul li { margin-bottom: 10px; line-height: 1.6; }
.footer-column ul li a { color: #fff; text-decoration: none; transition: color 0.3s; }
.footer-column ul li a:hover { color: #d4a574; }
.footer-column ul li i { margin-right: 8px; color: #d4a574; }
.footer-column p { line-height: 1.8; margin-bottom: 10px; }

/* Footer Sosyal Medya */
.footer-social { 
    text-align: center; 
    padding: 30px 0; 
}
.footer-social h4 { 
    font-size: 18px; 
    font-weight: 700; 
    color: #fff; 
    margin: 0 0 20px 0; 
}
.social-icons { 
    display: flex; 
    justify-content: center; 
    gap: 15px; 
}
.social-icons a { 
    width: 45px; 
    height: 45px; 
    background: #444; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #fff; 
    font-size: 20px; 
    transition: all 0.3s; 
}
.social-icons a:hover { 
    background: #d4a574; 
    transform: translateY(-3px); 
}

.ssl-section { 
    text-align: center; 
    padding: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.ssl-section img { 
    max-width: 600px; 
    height: auto; 
    width: auto;
    object-fit: contain; 
}
.footer-bottom { text-align: center; padding: 20px 0; font-size: 14px; color: #aaa; }

/* ANASAYFA BANNER STİLLERİ */
.home-banners-section {
    margin: 50px 0;
    padding: 0;
}

.home-banners-container {
    max-width: 1920px;
    margin: 0 auto;
}

.home-banner-item {
    width: 100%;
    margin-bottom: 30px;
}

.home-banner-item:last-child {
    margin-bottom: 0;
}

.home-banner-item a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.home-banner-item a:hover {
    transform: scale(1.01);
}

.home-banner-item img {
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: cover;
    display: block;
}

/* YENİ ÜRÜNLER ALTI 3'LÜ BANNER STİLLERİ */
.new-products-bottom-banners,
.featured-products-bottom-banners {
    margin: 50px 0;
    padding: 0;
}

.new-products-bottom-banners .container,
.featured-products-bottom-banners .container {
    max-width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

.triple-banners {
    display: grid;
    gap: 20px;
    max-width: 1920px;
    margin: 0 auto;
}

.triple-banners.grid-1 {
    grid-template-columns: 1fr;
    max-width: 621px;
}

.triple-banners.grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1262px;
}

.triple-banners.grid-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1903px;
}

.triple-banner-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 621px;
    height: 782px;
    background-color: #fff;
    padding: 0;
    margin: 0;
}

.triple-banner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.triple-banner-item a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

.triple-banner-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background-color: transparent;
    transition: transform 0.5s ease;
    display: block;
    padding: 0;
    margin: 0;
}

.triple-banner-item:hover img {
    transform: scale(1.05);
}

.triple-banner-overlay {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
}

.triple-banner-overlay h3 {
    color: #333;
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: none;
}

.triple-banner-overlay p {
    color: #666;
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    text-transform: lowercase;
    letter-spacing: 0.5px;
    text-shadow: none;
}

/* Butik TİPİ BİLGİ GRİDİ STİLLERİ */
.info-grid-section { 
    margin: 40px 0;
    padding: 0;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #eee;
    background-color: #fff;
    gap: 0;
}
.info-item {
    padding: 25px 15px;
    text-align: center;
    border-right: 1px solid #eee;
}
.info-item:last-child {
    border-right: none;
}
.info-item i {
    font-size: 36px;
    color: #d4a574;
    margin-bottom: 10px;
}
.info-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}
.info-item p {
    font-size: 13px;
    color: #555;
    line-height: 1.4;
}

/* KATEGORİ BANNER STİLLERİ */
.category-banners {
    margin: 40px 0;
}

.category-banners-grid {
    display: grid;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.category-banners-grid.grid-1 {
    grid-template-columns: 1fr;
    max-width: 412px;
}

.category-banners-grid.grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 844px;
}

.category-banners-grid.grid-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1276px;
}

.category-banner {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 596px;
}

.category-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.category-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.category-banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 20px;
    text-align: center;
}

.category-banner h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.category-banner p {
    font-size: 14px;
    opacity: 0.9;
}

/* MOBİL ARAMA KUTUSU */
.mobile-search-box {
    display: none;
    background: #f5f5f5;
    border-radius: 25px;
    padding: 10px 15px;
    margin: 15px 0;
}

.mobile-search-box input {
    border: none;
    background: transparent;
    padding: 8px 12px;
    flex-grow: 1;
    outline: none;
    font-size: 14px;
    width: 100%;
}

/* RESPONSIVE TASARIM */

/* MOBİL (768px ve altı) */
@media (max-width: 768px) {
    
    /* Yeni Ürünler Altı 3'lü Banner Mobil */
    .new-products-bottom-banners {
        margin: 30px 0;
    }
    
    .triple-banners.grid-1,
    .triple-banners.grid-2,
    .triple-banners.grid-3 {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0;
        max-width: 100%;
    }
    
    .triple-banner-item {
        width: 100%;
        height: 480px;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .triple-banner-item img {
        object-fit: cover;
        width: 100%;
        height: 100%;
        padding: 0;
        margin: 0;
    }
    
    .triple-banner-item a {
        display: block;
        width: 100%;
        height: 100%;
        padding: 0;
        margin: 0;
    }
    
    .triple-banner-overlay {
        bottom: 40px;
    }
    
    .triple-banner-overlay h3 {
        font-size: 32px;
    }
    
    .triple-banner-overlay p {
        font-size: 14px;
    }
    
    /* HEADER SIRALAMA DÜZENLEMESİ */
    .header-top {
        padding: 15px 0 0 0;
        border-bottom: none;
        flex-wrap: wrap;
        flex-direction: row;
    }
    
    .header-bottom {
        display: none; /* Masaüstü navigasyon gizli */
    }

    .logo { 
        order: 2; /* Logoyu ortala */
        flex: 1;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .logo img {
        height: 50px;
    }
    
    .user-actions {
        order: 3; /* İkonları sağa al */
        gap: 12px;
        flex-shrink: 0;
    }

    .user-actions a {
        font-size: 20px; 
        padding: 0 3px;
        position: relative;
    }
    
    /* Mobilde sadece ikonları göster, metinleri gizle */
    .user-actions .desktop-text {
        display: none !important;
    }
    
    /* Hesabım metnini de gizle */
    .user-actions .user-menu-toggle span {
        display: none !important;
    }
    
    /* Mobilde sayıları badge olarak göster */
    .user-actions .count-badge,
    .user-actions a .count-badge {
        position: absolute !important;
        top: -5px !important;
        right: -5px !important;
        background: #d4a574 !important;
        color: #fff !important;
        font-size: 10px !important;
        font-weight: 700 !important;
        min-width: 16px !important;
        height: 16px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 2px !important;
        line-height: 1 !important;
        border: 2px solid #fff !important;
    }
    
    .header-main {
        display: none; /* Masaüstü arama kutusu gizli */
    }

    .mobile-menu-btn {
        display: block; /* Hamburger butonunu göster */
        order: 1; /* Sola al */
        flex-shrink: 0;
    }
    
    /* MOBİL OVERLAY MENU STİLLERİ */
    .mobile-overlay-menu {
        display: block; /* Sadece başlangıçta -100% de */
    }
    
    /* Anasayfa Banner Mobil */
    .home-banners-section {
        margin: 30px 0;
    }
    
    .home-banner-item {
        margin-bottom: 20px;
    }
    
    .home-banner-item img {
        max-height: 400px;
        border-radius: 4px;
    }
    
    /* MOBİL ÜRÜN KARTLARI - SABİT EŞİT YÜKSEKLİK */
    .product-card {
        display: flex;
        flex-direction: column;
        height: 420px !important; /* Sabit toplam yükseklik - daha da azaltıldı */
        margin: 0 8px;
    }
    
    .product-image {
        height: 280px; /* Görsel yüksekliği azaltıldı */
        flex-shrink: 0;
    }
    
    .product-info {
        height: 140px; /* Sabit info alanı yüksekliği - azaltıldı */
        display: flex;
        flex-direction: column;
        flex-shrink: 0;
        padding: 8px 12px 6px; /* Tüm paddingleri azalt */
        overflow: hidden;
    }
    
    .product-title {
        min-height: 30px;
        max-height: 30px;
        font-size: 12px;
        margin-bottom: 4px;
        line-height: 1.15;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    
    .product-title-area {
        margin-bottom: 4px;
        flex-shrink: 0;
    }
    
    .product-sizes-custom {
        margin-top: 3px;
        min-height: 26px;
        max-height: 52px;
        overflow: hidden;
        flex-shrink: 0;
    }
    
    .product-price {
        margin-top: auto;
        margin-bottom: 5px;
        padding-top: 0;
        flex-shrink: 0;
    }
    
    .current-price {
        font-size: 16px;
    }
    
    .old-price {
        font-size: 12px;
    }
    
    /* MOBİL SEPETE EKLE BUTONU - GÖRÜNÜR YAP */
    .mobile-add-to-cart {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        width: 100%;
        height: 36px; /* Sabit yükseklik - azaltıldı */
        padding: 0 8px;
        background: linear-gradient(135deg, #d4a574, #c49564);
        color: #fff;
        border: none;
        border-radius: 5px;
        font-size: 12px;
        font-weight: 600;
        cursor: pointer;
        margin-top: auto;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }
    
    .mobile-add-to-cart:disabled {
        background: #ccc;
        cursor: not-allowed;
        opacity: 0.7;
    }
    
    .mobile-add-to-cart:not(:disabled):active {
        background: linear-gradient(135deg, #c49564, #b38654);
        transform: scale(0.98);
    }
    
    /* HOVER BUTONLARINI GİZLE */
    .product-actions {
        display: none !important;
    }

    /* Mobil Slider */
    .desktop-slider { display: none !important; }
    .mobile-slider { display: block !important; }

    /* MOBİL BİLGİ GRİD DÜZELTMESİ (2x2) */
    .info-grid-section { margin: 20px 0; }
    .info-grid {
        grid-template-columns: repeat(2, 1fr); 
        border: none;
        gap: 0;
    }

    .info-item {
        padding: 15px 10px;
        border-right: 1px solid #eee; 
        border-bottom: 1px solid #eee;
    }
    .info-item:nth-child(even) {
        border-right: none; 
    }
    .info-item:nth-child(n+3) {
        border-bottom: none;
    }
    
    /* Footer Mobil Akordiyon */
    footer { padding: 30px 0 10px; } 
    .footer-content { grid-template-columns: 1fr; gap: 0; }
    .footer-column { border-bottom: 1px solid #444; padding: 10px 0; }
    .footer-column h4 { 
        margin-bottom: 0; 
        cursor: pointer; 
        padding-bottom: 0; 
        display: flex; 
        justify-content: space-between;
        align-items: center;
        font-size: 16px; 
        font-weight: 600;
    }
    .footer-column h4::after { display: none; }
    .footer-column ul, .footer-column p {
        display: none; /* Varsayılan olarak gizli */
        padding-top: 10px;
        margin-bottom: 0;
        font-size: 14px;
    }
    .footer-column h4 .toggle-icon {
        font-size: 14px;
        transition: transform 0.3s;
    }
    .footer-column h4.active .toggle-icon {
        transform: rotate(180deg);
    }
    .ssl-section { display: none; }
    
    /* MOBİL ÜRÜN KARTI DÜZELTMELERİ */
    .product-actions { display: none !important; }
    .product-info { padding-bottom: 15px; min-height: 120px; }
    
    /* Instagram Banner Mobil */
    .instagram-section { margin: 0; } 
    .instagram-banner {
        height: 250px;
        margin: 0 -15px;
        width: calc(100% + 30px);
        border-radius: 0;
    }
    
    /* Bilgi Grid Tam Ekran */
    .info-grid-section .container {
        padding: 0;
    }
    .info-grid {
        margin: 0 -15px;
        width: calc(100% + 30px);
    }
    
    /* Mobil Menü Yazıları Sola Yaslı */
    .mobile-overlay-menu a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        font-size: 16px;
        font-weight: 600;
        text-align: left;
    }
    
    .social-icons-mobile a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 16px;
        margin-right: 15px;
        margin-bottom: 10px;
    }
    
    /* MOBİL ARAMA KUTUSU GÖSTER */
    .mobile-search-box {
        display: block;
    }
    
    /* MOBİL KATEGORİ BANNER */
    .category-banners-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .category-banner {
        height: auto;
        border-radius: 8px;
        overflow: hidden;
    }
    .category-banner img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    .top-banner {
        font-size: 12px;
        padding: 6px 0;
    }
    
    /* MOBİL SEPET MODALI */
    .cart-modal-content {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .slider-item { height: 300px; }
    .product-image { height: 240px; }
    .logo img { height: 45px; }
    
    .instagram-banner {
        height: 200px;
    }
    .instagram-content h3 {
        font-size: 24px;
    }
    
    .category-banner {
        height: 350px;
    }
}

/* MASAÜSTÜ İÇİN ÖZEL KURALLAR (769px ve üzeri) */
@media (min-width: 769px) {
    /* Masaüstünde mobil ikonlar ve overlay gizlenir */
    .mobile-overlay-menu, .menu-backdrop {
        display: none !important;
    }
    
    .mobile-search-box {
        display: none !important;
    }
}

/* SEPET İÇİN EK STİLLER */
.mini-cart-item-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.mini-cart-image {
    flex-shrink: 0;
    width: 60px;
}

.mini-cart-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.mini-cart-details {
    flex-grow: 1;
}

.mini-cart-title {
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 14px;
}

.mini-cart-title a {
    color: #333;
}

.mini-cart-price-quantity {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.mini-cart-quantity-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mini-cart-quantity-buttons .quantity-btn {
    width: 25px;
    height: 25px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.mini-cart-quantity-buttons .quantity-value {
    font-weight: 500;
    min-width: 20px;
    text-align: center;
}

.woocommerce-mini-cart-item {
    position: relative;
}

.woocommerce-mini-cart-item .remove {
    position: absolute;
    top: 5px;
    right: 0;
    color: #ff0000;
    font-size: 18px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* AJAX yüklenme efekti */
.cart-items.loading {
    opacity: 0.6;
    pointer-events: none;
}

.cart-items.loading::after {
    content: 'Yükleniyor...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.9);
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
}
/* SEPET MODALI TASARIM DÜZELTMELERİ */
.cart-modal-content {
    background-color: #fefefe;
    margin-left: auto;
    width: 400px;
    height: 100%;
    padding: 20px;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    margin-bottom: 20px;
    min-height: 200px;
}

/* SEPET ÖĞELERİ TASARIMI */
.woocommerce-mini-cart-item {
    position: relative;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 0;
}

.mini-cart-item-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    position: relative;
}

.mini-cart-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.mini-cart-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.mini-cart-details {
    flex-grow: 1;
    min-width: 0;
}

.mini-cart-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    line-height: 1.3;
}

.mini-cart-title a {
    color: #333;
    text-decoration: none;
}

.mini-cart-price-quantity {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    flex-wrap: wrap;
    gap: 10px;
}

.mini-cart-quantity-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mini-cart-quantity-buttons .quantity-btn {
    width: 25px;
    height: 25px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s;
}

.mini-cart-quantity-buttons .quantity-btn:hover {
    background: #e9e9e9;
}

.mini-cart-quantity-buttons .quantity-value {
    font-weight: 500;
    min-width: 20px;
    text-align: center;
    font-size: 14px;
}

/* SİL BUTONU STİLİ */
.remove_from_cart_button {
    position: absolute;
    top: 5px;
    right: 0;
    color: #ff0000 !important;
    font-size: 18px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2;
}

.remove_from_cart_button:hover {
    color: #cc0000 !important;
    background: none;
}

/* BOŞ SEPET MESAJI */
.woocommerce-mini-cart__empty-message {
    text-align: center;
    padding: 40px 20px;
    color: #777;
    font-style: italic;
}

/* SEPET TOPLAM ALANI - GİZLE (header.php'de manuel var) */
.woocommerce-mini-cart__total {
    display: none !important;
}

/* SEPET BUTONLARI - GİZLE (header.php'de manuel var) */
.woocommerce-mini-cart__buttons {
    display: none !important;
}

.woocommerce-mini-cart__buttons .button {
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    display: block;
}

.woocommerce-mini-cart__buttons .checkout {
    background: #d4a574;
    color: white;
    border: none;
}

.woocommerce-mini-cart__buttons .checkout:hover {
    background: #c49564;
}

.woocommerce-mini-cart__buttons .button:not(.checkout) {
    background: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}

.woocommerce-mini-cart__buttons .button:not(.checkout):hover {
    background: #e5e5e5;
}

/* MOBİL SEPET DÜZENLEMESİ */
@media (max-width: 768px) {
    .cart-modal-content {
        width: 100%;
        padding: 15px;
    }
    
    .mini-cart-item-content {
        gap: 10px;
    }
    
    .mini-cart-image {
        width: 60px;
        height: 60px;
    }
    
    .mini-cart-title {
        font-size: 13px;
    }
    
    .mini-cart-price-quantity {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* SEPET YÜKLEME ANİMASYONU */
.woocommerce-mini-cart-item.loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.woocommerce-mini-cart-item.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #d4a574;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
}

.cart-items.loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.cart-items.loading::after {
    content: "Yükleniyor...";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.9);
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* KATEGORİ SAYFASI STİLLERİ */
.category-header-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin-bottom: 40px;
}

.category-header-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-header-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d4a574 0%, #b8915f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgba(255,255,255,0.3);
}

.category-header-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 60px 0 30px;
    color: white;
}

.category-title {
    font-size: 42px;
    font-weight: 700;
    margin: 0;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.category-description {
    font-size: 16px;
    color: #ddd;
    margin-top: 10px;
    line-height: 1.6;
}

.category-products-wrapper {
    padding-bottom: 50px;
}

.products-sort {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* WOOCOMMERCE GRID - SADECE HOMEPAGE CAROUSEL */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce ul.products li.product {
    margin: 0;
    list-style: none;
}

/* ARCHIVE SAYFASI - ÜRÜN LİSTESİ */
.archive-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 30px;
}

.archive-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.archive-filters {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.archive-filters .widget {
    margin-bottom: 25px;
}

.archive-filters .widget:last-child {
    margin-bottom: 0;
}

.filters-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #d4a574;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
}

.archive-products {
    width: 100%;
    display: block;
}

.archive-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 8px;
}

.products-count {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* KATEGORİ SAYFASI ÜRÜN KARTI - SIFIRDAN RESPONSİVE TASARIM */
.archive-products ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
    width: 100% !important;
}

.archive-products ul.products li.product {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
}

.cat-product {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.cat-product:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.cat-product-link {
    display: block;
    text-decoration: none;
    color: inherit;
    flex: 1;
    width: 100%;
}

.cat-product-img {
    position: relative;
    width: 100%;
    padding-top: 125%;
    background: #f5f5f5;
    overflow: hidden;
}

.cat-product-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.cat-product:hover .cat-product-img img {
    transform: scale(1.08);
}

.cat-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #d4a574;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

.cat-product-fav {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 3;
}

.cat-product-fav:hover {
    background: #fff;
    color: #d4a574;
    transform: scale(1.15);
}

.cat-product-info {
    padding: 15px;
}

.cat-product-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin: 0 0 10px;
    line-height: 1.4;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.cat-product-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cat-price-new {
    font-size: 18px;
    font-weight: 700;
    color: #d4a574;
}

.cat-price-old {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.cat-product-btn {
    width: calc(100% - 30px);
    margin: 0 15px 15px;
    padding: 12px;
    background: #d4a574;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cat-product-btn:hover {
    background: #c49564;
}

.cat-product-btn i {
    font-size: 14px;
}

/* RESPONSİVE TASARIM */
@media (max-width: 1200px) {
    .archive-products ul.products {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .archive-layout {
        grid-template-columns: 1fr;
    }
    
    .archive-sidebar {
        margin-bottom: 20px;
    }
    
    .archive-products ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .cat-product-img {
        padding-top: 130%;
    }
    
    .cat-product-name {
        font-size: 13px;
        height: 36px;
    }
    
    .cat-price-new {
        font-size: 16px;
    }
    
    .cat-product-btn {
        font-size: 13px;
        padding: 10px;
    }

@media (max-width: 480px) {
    .archive-products ul.products {
        gap: 10px;
    }
    
    .cat-product-info {
        padding: 12px;
    }
    
    .cat-product-btn {
        width: calc(100% - 24px);
        margin: 0 12px 12px;
    }
}

/* MOBIL BREAKPOINT */
@media (max-width: 768px) {
    .archive-layout {
        grid-template-columns: 1fr;
    }
    
    .archive-sidebar {
        position: static;
        margin-bottom: 20px;
    }
    
    .archive-products .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .archive-products .product-image {
        height: 200px;
    }
}

/* FİLTRE STİLLERİ */
.widget_layered_nav,
.widget_layered_nav_filters,
.widget_price_filter,
.widget_product_categories {
    margin-bottom: 25px;
}

.widget_layered_nav h3,
.widget_layered_nav_filters h3,
.widget_price_filter h3,
.widget_product_categories h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #d4a574;
    color: #333;
}

/* WIDGET STYLES RESTORED */
.widget {
    margin-bottom: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.widget-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f5f5f5;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Product Categories Widget */
.widget_product_categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget_product_categories li {
    margin-bottom: 8px;
}

.widget_product_categories a {
    display: block;
    padding: 8px 12px;
    background: #f9f9f9;
    border-radius: 4px;
    color: #555;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

.widget_product_categories a:hover {
    background: #d4a574;
    color: #fff;
    padding-left: 15px;
}

.widget_product_categories .current-cat > a {
    background: #d4a574;
    color: #fff;
    font-weight: 600;
}

/* Price Filter Widget */
.widget_price_filter .price_slider {
    margin-bottom: 20px;
    background: #eee;
    border-radius: 10px;
}

.widget_price_filter .price_slider_amount {
    text-align: right;
    line-height: 2.4;
    font-size: 14px;
}

.widget_price_filter .price_slider_amount .button {
    float: left;
    background: #333;
    color: #fff;
    border: none;
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
}

.widget_price_filter .ui-slider .ui-slider-handle {
    background-color: #d4a574;
    border-radius: 50%;
    cursor: pointer;
    top: -.3em;
}

.widget_price_filter .ui-slider .ui-slider-range {
    background-color: #d4a574;
}

/* Layered Nav (Attributes) */
.widget_layered_nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget_layered_nav li {
    margin-bottom: 8px;
}

.widget_layered_nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    color: #555;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

.widget_layered_nav a:hover {
    color: #d4a574;
}

.widget_layered_nav .count {
    background: #f5f5f5;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    color: #999;
}

.widget_layered_nav .chosen a {
    color: #d4a574;
    font-weight: 600;
}

/* ===========================================
   SINGLE PRODUCT PAGE STYLES
   =========================================== */

/* Product Detail Page Layout */
.product-detail-page {
    padding: 20px 0;
    background: #fff;
    font-family: Arial, sans-serif;
}

/* Breadcrumb */
.product-breadcrumb {
    margin-bottom: 30px;
    font-size: 14px;
    color: #666;
}

.product-breadcrumb a {
    color: #d4a574;
    text-decoration: none;
}

.product-breadcrumb a:hover {
    text-decoration: underline;
}

/* Main Product Layout */
.product-detail-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.product-gallery-side {
    position: relative;
}

.main-product-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    cursor: zoom-in;
}

.main-product-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.main-product-image:hover img {
    transform: scale(1.02);
}

/* ZOOM LENS */
.zoom-lens {
    position: absolute;
    border: 2px solid #d4a574;
    background: rgba(212, 165, 116, 0.2);
    cursor: zoom-in;
    display: none;
    pointer-events: none;
    z-index: 10;
}

/* ZOOM MODAL */
.zoom-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    animation: fadeIn 0.3s;
}

.zoom-modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
    animation: zoomIn 0.3s;
}

.zoom-modal-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.zoom-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.zoom-close:hover {
    color: #d4a574;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: translateY(-50%) scale(0.7); }
    to { transform: translateY(-50%) scale(1); }
}

/* TOAST NOTIFICATION */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1001;
    display: none;
    animation: slideInRight 0.3s, slideOutRight 0.3s 2.7s;
    max-width: 300px;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast-content i {
    font-size: 20px;
}

.toast-message {
    font-weight: 600;
    font-size: 14px;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Product Gallery Thumbnails */
.product-gallery-thumbnails {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.thumbnail-item {
    width: 70px;
    height: 70px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail-item:hover {
    border-color: #d4a574;
    transform: scale(1.05);
}

.thumbnail-item.active {
    border-color: #d4a574;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info Side */
.product-info-side {
    padding: 0 20px;
}

.product-main-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

/* RATING STYLES */
.product-rating {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.star-rating {
    display: inline-block;
    font-size: 16px;
    color: #ffb100;
}

.rating-count {
    font-size: 14px;
    color: #666;
}

.no-rating {
    font-size: 14px;
    color: #999;
    font-style: italic;
}

.product-sku {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.product-price-large .price {
    font-size: 28px;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 25px;
    display: block;
}

/* Varyant Seçimi */
.variation-section {
    margin-bottom: 20px;
}

.variations_form .variations {
    margin-bottom: 20px;
}

.variations_form .variations tr {
    display: block;
    margin-bottom: 15px;
}

.variations_form .variations td {
    display: block;
    padding: 0;
}

.variations_form .variations select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-width: 200px;
    font-size: 14px;
}

.variations_form .single_variation_wrap {
    margin-top: 20px;
}

.variations_form .woocommerce-variation-add-to-cart {
    display: flex !important;
    gap: 10px;
    align-items: center;
}

.variations_form .quantity {
    display: inline-flex;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.variations_form .qty {
    width: 60px;
    border: none;
    text-align: center;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    font-size: 14px;
}

.variations_form .single_add_to_cart_button {
    background: #d4a574 !important;
    color: white !important;
    border: none !important;
    padding: 15px 30px !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    font-size: 16px !important;
}

.variations_form .single_add_to_cart_button:hover {
    background: #c1915e !important;
}

.variations_form .single_add_to_cart_button:disabled {
    background: #ccc !important;
    cursor: not-allowed !important;
}

/* Divider */
.divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 25px 0;
}

/* Beden Tablosu */
.size-chart-section {
    margin: 20px 0;
}

.size-chart-section h4 {
    margin-bottom: 15px;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.size-chart-table {
    overflow-x: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.size-chart-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 12px;
}

.size-chart-table th,
.size-chart-table td {
    padding: 10px 8px;
    text-align: center;
    border: 1px solid #ddd;
}

.size-chart-table th {
    background: #f8f8f8;
    font-weight: 600;
    color: #333;
}

.size-chart-table tr:nth-child(even) {
    background: #f9f9f9;
}

.size-chart-table tr:hover {
    background: #f0f0f0;
}

/* Miktar Seçici */
.quantity-section {
    margin: 25px 0;
}

.quantity-section label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.quantity-selector {
    display: inline-flex;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.qty-btn {
    background: #f8f8f8;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.qty-btn:hover {
    background: #e8e8e8;
}

.qty-input {
    width: 60px;
    border: none;
    text-align: center;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    font-size: 14px;
}

/* Add to Cart Section */
.add-to-cart-section {
    margin-bottom: 25px;
    display: flex;
    gap: 10px;
}

.add-to-cart-btn-large {
    background: #d4a574;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    flex: 1;
    font-size: 16px;
    transition: background 0.3s;
}

.add-to-cart-btn-large:hover {
    background: #c1915e;
}

/* Ajax Mesaj */
.ajax-message {
    padding: 12px;
    margin: 10px 0;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    animation: fadeInOut 2s ease-in-out;
}

.ajax-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.ajax-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(-10px); }
    10% { opacity: 1; transform: translateY(0); }
    90% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-10px); }
}

/* Action Buttons */
.product-action-buttons {
    margin-bottom: 25px;
}

.action-buttons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.action-btn {
    background: none;
    border: 1px solid #ddd;
    padding: 10px 5px;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
    font-size: 12px;
    white-space: nowrap;
}

.action-btn:hover {
    border-color: #d4a574;
    color: #d4a574;
}

/* Product Features */
.product-features h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.feature-content {
    line-height: 1.6;
    color: #666;
    font-size: 14px;
}

/* Tabs Styling */
.product-tabs-container {
    border-top: 1px solid #eee;
    padding-top: 30px;
    margin-bottom: 50px;
}

.tab-buttons {
    display: flex;
    border-bottom: 2px solid #eee;
    margin-bottom: 30px;
}

.tab-button {
    background: none;
    border: none;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.tab-button.active {
    color: #d4a574;
    border-bottom-color: #d4a574;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-pane h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.product-attributes {
    list-style: none;
    padding: 0;
}

.product-attributes li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

/* Similar Products */
.similar-products-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

/* Custom Variation Selector Styles */
.variation-label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.size-buttons-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.single-size-btn {
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-size-btn:hover {
    border-color: #d4a574;
    color: #d4a574;
}

.single-size-btn.selected {
    background: #d4a574;
    border-color: #d4a574;
    color: #fff;
    box-shadow: 0 4px 10px rgba(212, 165, 116, 0.3);
}

.stock-out-message {
    color: #e74c3c;
    font-weight: 500;
    padding: 10px;
    background: #fdf0ed;
    border-radius: 4px;
}

/* Fiyat Uyarı Modal Stilleri */
.price-alert-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s;
}

.price-alert-modal-content {
    position: relative;
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
    animation: slideDown 0.3s;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.price-alert-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.price-alert-close:hover {
    color: #333;
}

.price-alert-modal-content h3 {
    margin: 0 0 10px 0;
    font-size: 22px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-alert-modal-content h3 i {
    color: #d4a574;
}

.price-alert-modal-content > p {
    margin-bottom: 25px;
    color: #666;
    font-size: 14px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #d4a574;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #999;
    font-size: 12px;
}

.price-alert-current {
    background: #f8f9fa;
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 15px;
}

.price-alert-current strong {
    color: #d4a574;
}

.btn-submit-alert {
    width: 100%;
    background: linear-gradient(135deg, #d4a574, #c49564);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit-alert:hover {
    background: linear-gradient(135deg, #c49564, #b38654);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-submit-alert:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .product-detail-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .add-to-cart-section {
        flex-direction: column;
    }
    
    .action-buttons-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .tab-buttons {
        flex-direction: column;
    }
    
    .variations_form .woocommerce-variation-add-to-cart {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .toast-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .price-alert-modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .thumbnail-item {
        width: 50px;
        height: 50px;
    }
    
    .zoom-modal-content {
        width: 95%;
        padding: 10px;
    }
}
