/* ==========================================================================
   Webreta Product Catalog - Flatsome Compatible Styles
   ========================================================================== */

/* Reset Flatsome overrides */
.wpc-catalog *,
.wpc-brand-catalog *,
.wpc-lightbox * {
    box-sizing: border-box;
}

/* Body state when lightbox is open */
body.wpc-lightbox-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
}

body.wpc-lightbox-open .header,
body.wpc-lightbox-open .footer,
body.wpc-lightbox-open #wrapper,
body.wpc-lightbox-open .sticky-header,
body.wpc-lightbox-open .header-wrapper {
    z-index: 1 !important;
}

/* ==========================================================================
   Brand Cards (Marka Listesi)
   ========================================================================== */

.wpc-brands-grid {
    display: grid;
    gap: 1.5rem;
}

.wpc-brands-grid.wpc-cols-2 { grid-template-columns: repeat(2, 1fr); }
.wpc-brands-grid.wpc-cols-3 { grid-template-columns: repeat(3, 1fr); }
.wpc-brands-grid.wpc-cols-4 { grid-template-columns: repeat(4, 1fr); }
.wpc-brands-grid.wpc-cols-5 { grid-template-columns: repeat(5, 1fr); }
.wpc-brands-grid.wpc-cols-6 { grid-template-columns: repeat(6, 1fr); }

@media (max-width: 1024px) {
    .wpc-brands-grid.wpc-cols-4,
    .wpc-brands-grid.wpc-cols-5,
    .wpc-brands-grid.wpc-cols-6 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .wpc-brands-grid.wpc-cols-3,
    .wpc-brands-grid.wpc-cols-4,
    .wpc-brands-grid.wpc-cols-5,
    .wpc-brands-grid.wpc-cols-6 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .wpc-brands-grid { grid-template-columns: 1fr; }
}

.wpc-brand-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none !important;
    color: inherit !important;
}

.wpc-brand-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.wpc-brand-logo {
    aspect-ratio: 16 / 9;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.wpc-brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.wpc-brand-placeholder {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.wpc-brand-info {
    padding: 1rem;
    text-align: center;
}

.wpc-brand-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.25rem 0;
}

.wpc-brand-excerpt {
    font-size: 0.8125rem;
    color: #666;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.wpc-brand-count {
    font-size: 0.75rem;
    color: #2563eb;
    font-weight: 500;
}

/* ==========================================================================
   Brand Page (Marka Sayfası)
   ========================================================================== */

.wpc-brand-page {
    max-width: 1200px;
    margin: 0 auto;
}

.wpc-brand-header {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.wpc-brand-page-logo {
    flex-shrink: 0;
    width: 200px;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.wpc-brand-page-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.wpc-brand-page-info {
    flex: 1;
}

.wpc-brand-page-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
}

.wpc-brand-page-desc {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.wpc-brand-page-desc p {
    margin: 0 0 0.75rem 0;
}

.wpc-brand-website {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: #2563eb;
    color: #fff !important;
    border-radius: 8px;
    text-decoration: none !important;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.2s ease;
}

.wpc-brand-website:hover {
    background: #1d4ed8;
}

.wpc-brand-website svg {
    stroke: currentColor;
}

@media (max-width: 768px) {
    .wpc-brand-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .wpc-brand-page-logo {
        width: 150px;
    }
    
    .wpc-brand-page-title {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   Sidebar Layout
   ========================================================================== */

.wpc-catalog.wpc-has-sidebar {
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 2rem;
    align-items: start;
}

.wpc-sidebar {
    position: sticky;
    top: 160px;
    background: #fff;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.wpc-sidebar-section {
    margin-bottom: 1.25rem;
}

.wpc-sidebar-section:last-child {
    margin-bottom: 0;
}

.wpc-sidebar-title {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
    margin: 0 0 0.5rem 0;
    padding-left: 0.25rem;
}

.wpc-sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.375rem;
}

/* Flatsome reset */
.wpc-sidebar-list li {
    margin: 0;
    padding: 0;
    margin-left: 0 !important;
    list-style: none;
}

.wpc-sidebar-list li::before {
    display: none !important;
}

.wpc-sidebar-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.375rem;
    padding: 0.5rem 0.625rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s ease;
    color: #666;
    background: #f3f4f6;
    font-size: 0.8125rem;
    font-weight: 500;
    min-width: 0;
}

.wpc-sidebar-item:hover {
    background: #e5e7eb;
    color: #333;
}

.wpc-sidebar-item.active {
    background: #27a29a;
    color: #fff;
}

.wpc-sidebar-logo {
    width: 32px;
    height: 13px;
    object-fit: contain;
    object-position: left;
    flex-shrink: 0;
}

.wpc-sidebar-item.active .wpc-sidebar-logo {
    filter: brightness(0) invert(1);
}

.wpc-sidebar-name {
    flex: 1;
    font-size: 0.8125rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wpc-sidebar-count {
    font-size: 0.75rem;
    color: #999;
    font-weight: 500;
    flex-shrink: 0;
}

.wpc-sidebar-item.active .wpc-sidebar-count {
    color: rgba(255,255,255,0.8);
}
}

.wpc-main-content {
    min-width: 0;
}

/* Mobile sidebar */
@media (max-width: 1024px) {
    .wpc-catalog.wpc-has-sidebar {
        grid-template-columns: 220px 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .wpc-catalog.wpc-has-sidebar {
        grid-template-columns: 1fr;
    }
    
    .wpc-sidebar {
        position: static;
    }
    
    .wpc-sidebar-section {
        margin-bottom: 1rem;
    }
    
    .wpc-sidebar-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.375rem;
    }
    
    .wpc-sidebar-item {
        padding: 0.5rem 0.625rem;
        margin: 0;
        font-size: 0.75rem;
        background: #f3f4f6;
        justify-content: center;
        text-align: center;
    }
    
    .wpc-sidebar-logo {
        display: none;
    }
    
    .wpc-sidebar-name {
        text-align: center;
    }
    
    .wpc-sidebar-item.active {
        background: #2563eb;
    }
    
    .wpc-sidebar-count {
        display: none;
    }
}

/* ==========================================================================
   Filter Bar (Legacy - artık sidebar kullanılıyor)
   ========================================================================== */

.wpc-filter-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.wpc-filter-section:last-of-type {
    margin-bottom: 1.5rem;
}

.wpc-filter-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

.wpc-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.wpc-filter-btn {
    all: unset;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #666;
    background: #f5f5f5;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wpc-filter-btn:hover {
    background: #e5e7eb;
    color: #333;
}

.wpc-filter-btn.active {
    background: #2563eb;
    color: #fff;
}

.wpc-filter-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    border-radius: 3px;
}

.wpc-filter-btn.active .wpc-filter-logo {
    filter: brightness(0) invert(1);
}

/* Product wrapper for filtering */
.wpc-product-wrapper {
    transition: opacity 0.15s ease;
}

.wpc-product-wrapper.wpc-hidden {
    display: none !important;
}

@media (max-width: 768px) {
    .wpc-filter-section {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    
    .wpc-filter-bar {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .wpc-filter-btn {
        flex: 1 1 auto;
        min-width: calc(33.333% - 0.5rem);
        padding: 0.5rem 0.75rem;
        font-size: 0.8125rem;
        text-align: center;
        justify-content: center;
    }
    
    .wpc-filter-logo {
        width: 28px;
        height: 14px;
    }
}

/* ==========================================================================
   Brand & Category Titles
   ========================================================================== */

/* Filter Breadcrumb */
.wpc-filter-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1.25rem;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    color: #333;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.wpc-breadcrumb-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.0625rem;
}

.wpc-breadcrumb-logo {
    height: 28px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
}

.wpc-breadcrumb-sep {
    color: #94a3b8;
    font-weight: 400;
    font-size: 1.125rem;
}

.wpc-breadcrumb-category {
    color: #64748b;
    font-weight: 500;
    font-size: 1rem;
}

.wpc-brand-title {
    font-size: 2rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.wpc-brand-desc {
    color: #666;
    margin: 0 0 2rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

.wpc-category-section {
    margin-bottom: 3rem;
}

.wpc-category-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 1.25rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.wpc-category-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #2563eb;
}

/* ==========================================================================
   Products Grid
   ========================================================================== */

.wpc-products-grid {
    display: grid;
    gap: 1.5rem;
}

.wpc-cols-2 { grid-template-columns: repeat(2, 1fr); }
.wpc-cols-3 { grid-template-columns: repeat(3, 1fr); }
.wpc-cols-4 { grid-template-columns: repeat(4, 1fr); }
.wpc-cols-5 { grid-template-columns: repeat(5, 1fr); }
.wpc-cols-6 { grid-template-columns: repeat(6, 1fr); }

@media (max-width: 1024px) {
    .wpc-cols-4,
    .wpc-cols-5,
    .wpc-cols-6 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .wpc-cols-3,
    .wpc-cols-4,
    .wpc-cols-5,
    .wpc-cols-6 { grid-template-columns: repeat(2, 1fr); }
    
    .wpc-products-grid { gap: 0.75rem; }
}

@media (max-width: 480px) {
    .wpc-cols-2,
    .wpc-cols-3,
    .wpc-cols-4,
    .wpc-cols-5,
    .wpc-cols-6 { grid-template-columns: repeat(2, 1fr); }
    
    .wpc-products-grid { gap: 0.5rem; }
}

/* ==========================================================================
   Product Card
   ========================================================================== */

.wpc-product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.wpc-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* Product Image */
.wpc-product-image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f8f9fa;
}

.wpc-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.wpc-product-image img.wpc-hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.wpc-product-card:hover .wpc-product-image img.wpc-main-img {
    opacity: 0;
}

.wpc-product-card:hover .wpc-product-image img.wpc-hover-img {
    opacity: 1;
}

/* Overlay */
.wpc-product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

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

.wpc-view-btn {
    background: #fff;
    color: #1a1a1a;
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.wpc-product-card:hover .wpc-view-btn {
    transform: translateY(0);
}

/* Product Info */
.wpc-product-info {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.wpc-product-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.25rem 0;
    line-height: 1.4;
}

.wpc-product-code {
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 0.5rem;
    display: block;
}

.wpc-product-desc {
    font-size: 0.875rem;
    color: #666;
    margin: 0 0 0.75rem 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Feature Tags */
.wpc-product-features {
    display: flex;
    gap: 0.375rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.wpc-feature-tag {
    font-size: 0.6875rem;
    line-height: 1;
    padding: 0.375rem 0.5rem;
    background: #f0f7ff;
    border-radius: 4px;
    color: #1e40af;
    font-weight: 500;
}

.wpc-feature-more {
    font-size: 0.6875rem;
    color: #666;
    padding: 0.375rem 0.5rem;
    background: #f5f5f5;
    border-radius: 4px;
}

.wpc-product-price {
    font-size: 1rem;
    font-weight: 600;
    color: #2563eb;
    margin-top: auto;
}

/* ==========================================================================
   Buttons - Flatsome Reset & Custom Styles
   ========================================================================== */

.wpc-product-buttons {
    display: flex;
    gap: 0.5rem;
    padding: 0 1rem 1rem 1rem;
}

/* Flatsome button reset */
.wpc-btn,
.wpc-btn:visited,
.wpc-btn:focus,
.wpc-btn:active {
    all: unset;
    box-sizing: border-box;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    flex: 1;
    padding: 0.625rem 0.75rem;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 500;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    line-height: 1;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background-image: none !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.wpc-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    fill: currentColor;
    stroke: currentColor;
}

/* Phone Button */
.wpc-btn-phone {
    background: #153657 !important;
    color: #fff !important;
}

.wpc-btn-phone:hover {
    background: #27a29a !important;
    color: #fff !important;
    transform: translateY(-1px);
}

/* WhatsApp Button */
.wpc-btn-whatsapp {
    background: #25d366 !important;
    color: #fff !important;
}

.wpc-btn-whatsapp:hover {
    background: #1fb855 !important;
    color: #fff !important;
    transform: translateY(-1px);
}

/* Secondary/Outline Button */
.wpc-btn-outline {
    background: transparent !important;
    color: #333 !important;
    border: 1px solid #ddd !important;
}

.wpc-btn-outline:hover {
    background: #f5f5f5 !important;
    border-color: #ccc !important;
}

@media (max-width: 480px) {
    .wpc-product-buttons {
        flex-direction: column;
    }
    
    .wpc-btn span {
        display: inline;
    }
}

/* ==========================================================================
   Lightbox
   ========================================================================== */

.wpc-lightbox {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 9999999 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    isolation: isolate;
}

.wpc-lightbox.active {
    opacity: 1;
    visibility: visible;
}

/* Flatsome override - ensure lightbox is above everything */
body .wpc-lightbox,
html .wpc-lightbox,
#wrapper .wpc-lightbox,
.header .wpc-lightbox,
.footer .wpc-lightbox,
.mfp-wrap ~ .wpc-lightbox {
    z-index: 9999999 !important;
}

.wpc-lightbox-backdrop {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    z-index: 1;
}

.wpc-lightbox-content {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 16px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s ease;
}

.wpc-lightbox.active .wpc-lightbox-content {
    transform: scale(1) translateY(0);
}

.wpc-lightbox-close {
    all: unset;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s ease;
    line-height: 1;
}

.wpc-lightbox-close:hover {
    background: rgba(0, 0, 0, 0.7);
}

.wpc-lightbox-inner {
    display: grid;
    grid-template-columns: 500px 400px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    max-width: 900px;
    width: 95vw;
}

/* Gallery Slider */
.wpc-lightbox-gallery {
    background: #1a1a1a;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 500px;
}

.wpc-gallery-main {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.wpc-gallery-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wpc-gallery-nav {
    all: unset;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 5;
}

.wpc-gallery-nav:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.wpc-gallery-prev { left: 12px; }
.wpc-gallery-next { right: 12px; }

/* Thumbnails - görselin üstünde */
.wpc-gallery-thumbs {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    z-index: 5;
}

.wpc-gallery-thumb {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    opacity: 0.7;
}

.wpc-gallery-thumb:hover {
    opacity: 1;
}

.wpc-gallery-thumb.active {
    border-color: #fff;
    opacity: 1;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.3);
}

.wpc-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wpc-lightbox-details {
    display: flex;
    flex-direction: column;
    height: 500px;
    overflow: hidden;
}

.wpc-lightbox-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    min-height: 0;
}

.wpc-lightbox-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.wpc-lightbox-desc {
    font-size: 0.9375rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.wpc-lightbox-desc p {
    margin: 0 0 1rem 0;
}

.wpc-lightbox-desc p:last-child {
    margin-bottom: 0;
}

.wpc-lightbox-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 1rem;
}

/* Lightbox Features */
.wpc-lightbox-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.wpc-lightbox-feature {
    padding: 0.5rem 0.875rem;
    background: #f0f7ff;
    border-radius: 6px;
    font-size: 0.8125rem;
    color: #1e40af;
    font-weight: 500;
}

/* Lightbox Specs Table */
.wpc-lightbox-specs {
    margin-top: 1rem;
}

.wpc-lightbox-specs .wpc-specs-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.wpc-lightbox-specs .wpc-spec-row {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.wpc-lightbox-specs .wpc-spec-label {
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #888;
}

.wpc-lightbox-specs .wpc-spec-value {
    font-size: 0.875rem;
    color: #333;
    font-weight: 500;
}

/* Avantajlar - sağ tarafta */
.wpc-lightbox-advantages {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #e5e7eb;
}

.wpc-lightbox-advantages:empty {
    display: none;
}

.wpc-lightbox-advantages .wpc-advantages-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.wpc-lightbox-advantages .wpc-advantages-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    color: #333;
    font-size: 0.875rem;
    line-height: 1.5;
}

.wpc-lightbox-advantages .wpc-advantages-list li svg {
    width: 18px;
    height: 18px;
    color: #22c55e;
    flex-shrink: 0;
    margin-top: 1px;
}

@media (max-width: 768px) {
    .wpc-lightbox-specs .wpc-specs-table {
        grid-template-columns: 1fr;
    }
}

.wpc-lightbox-code {
    font-size: 0.8125rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.wpc-lightbox-buttons {
    display: flex;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    flex-shrink: 0;
}

.wpc-lightbox-buttons:empty {
    display: none;
}

.wpc-lightbox-buttons .wpc-btn {
    flex: 1;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    justify-content: center;
}

@media (max-width: 950px) {
    .wpc-lightbox-inner {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .wpc-lightbox-gallery {
        height: auto;
        aspect-ratio: 1 / 1;
        max-height: 50vh;
    }
    
    .wpc-gallery-thumbs {
        padding: 6px 10px;
        gap: 6px;
    }
    
    .wpc-gallery-thumb {
        width: 40px;
        height: 40px;
    }
    
    .wpc-lightbox-details {
        height: auto;
        max-height: 45vh;
    }
    
    .wpc-lightbox-scroll {
        padding: 1.25rem;
    }
    
    .wpc-lightbox-title {
        font-size: 1.25rem;
    }
    
    .wpc-lightbox-buttons {
        padding: 0.875rem 1.25rem;
    }
    
    .wpc-lightbox-buttons .wpc-btn {
        padding: 0.75rem 1rem;
        font-size: 0.8125rem;
    }
}

/* ==========================================================================
   No Products Message
   ========================================================================== */

.wpc-no-products {
    text-align: center;
    padding: 3rem 1rem;
    color: #666;
    background: #f8f9fa;
    border-radius: 12px;
}

.wpc-no-products-filter {
    text-align: center;
    padding: 3rem 1rem;
    color: #888;
    background: #f8f9fa;
    border-radius: 12px;
    margin-top: 1rem;
    font-size: 0.9375rem;
}

/* ==========================================================================
   Loading State
   ========================================================================== */

.wpc-lightbox-loading .wpc-lightbox-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #f0f0f0;
    animation: wpc-pulse 1.5s ease-in-out infinite;
}

@keyframes wpc-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
    .wpc-lightbox {
        display: none !important;
    }
    
    .wpc-product-overlay {
        display: none !important;
    }
    
    .wpc-product-buttons {
        display: none !important;
    }
}