/* ============================================
   SHOP CATALOG - WOOCOMMERCE
   ============================================ */

/* Catalog Container */
.edz-shop-catalog {
    padding: 40px 0;
    background-color: var(--edz-bg, #0C0C0C);
    color: var(--edz-text, #ffffff);
}

/* Breadcrumbs */
.edz-shop-catalog .edz-product-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: var(--edz-text-muted, #9a9a9a);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.edz-shop-catalog .edz-product-breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.edz-shop-catalog .edz-product-breadcrumb a:hover {
    color: var(--edz-accent, #FD8D27);
}

@media (max-width: 768px) {
    .edz-shop-catalog .edz-product-breadcrumb {
        font-size: 12px;
        margin-bottom: 16px;
    }
}

.edz-shop-catalog .container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Filter Sidebar - Always off-canvas */
.edz-shop-filter {
    width: 100%;
    max-width: 400px;
    background-color: var(--edz-surface, #111);
    padding: 24px;
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    max-height: 100vh;
    z-index: 9999;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    scrollbar-width: thin;
    scrollbar-color: var(--edz-border, #2a2a2a) transparent;
}

.edz-shop-filter.active {
    left: 0;
}

/* Custom scrollbar for filter */
.edz-shop-filter::-webkit-scrollbar {
    width: 4px;
}

.edz-shop-filter::-webkit-scrollbar-track {
    background: transparent;
}

.edz-shop-filter::-webkit-scrollbar-thumb {
    background-color: var(--edz-border, #2a2a2a);
    border-radius: 2px;
}

.edz-shop-filter::-webkit-scrollbar-thumb:hover {
    background-color: var(--edz-text-muted, #9a9a9a);
}

.edz-shop-filter__close {
    display: flex;
    padding: 0;
    margin-bottom: 1rem;
    top: 16px;
    right: 16px;
    width: 100%;
    height: 32px;
    border: none;
    background: transparent;
    color: var(--edz-text, #ffffff);
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    justify-content: flex-end;
}

.edz-shop-filter__section {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--edz-border, #2a2a2a);
}

.edz-shop-filter__section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.edz-shop-filter__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--edz-text, #ffffff);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.edz-shop-filter__toggle {
    background: none;
    border: none;
    color: var(--edz-text-muted, #9a9a9a);
    font-size: 14px;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
}

.edz-shop-filter__toggle:hover {
    color: var(--edz-text, #ffffff);
}

.edz-shop-filter__toggle i {
    transition: transform 0.3s ease;
}

.edz-shop-filter__section[data-collapsed="true"] .edz-shop-filter__toggle i {
    transform: rotate(-90deg);
}

.edz-shop-filter__content {
    display: block;
}

.edz-shop-filter__section[data-collapsed="true"] .edz-shop-filter__content {
    display: none;
}

/* Categories Filter */
.edz-shop-filter__categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.edz-shop-filter__category {
    margin-bottom: 8px;
}

.edz-shop-filter__category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--edz-text-soft, #bdbdbd);
    text-decoration: none;
    padding: 8px 0;
    font-size: 14px;
    transition: color 0.3s ease;
}

.edz-shop-filter__category-link:hover {
    color: var(--edz-accent, #FD8D27);
}

.edz-shop-filter__category-link i {
    font-size: 12px;
    color: var(--edz-text-muted, #9a9a9a);
    transition: transform 0.3s ease, color 0.3s ease;
}

.edz-shop-filter__category--has-children .edz-shop-filter__category-link i {
    transform: rotate(-90deg);
}

.edz-shop-filter__subcategories {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 16px;
    display: none;
}

.edz-shop-filter__category--expanded .edz-shop-filter__subcategories {
    display: block;
}

.edz-shop-filter__subcategory {
    margin-bottom: 6px;
}

.edz-shop-filter__subcategory-link {
    color: var(--edz-text-muted, #9a9a9a);
    text-decoration: none;
    font-size: 13px;
    padding: 6px 0;
    display: block;
    transition: color 0.3s ease;
}

.edz-shop-filter__subcategory-link:hover {
    color: var(--edz-accent, #FD8D27);
}

/* Price Filter */
.edz-shop-filter__price {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.edz-shop-filter__price-slider {
    width: 100%;
    height: 4px;
    background: var(--edz-border, #2a2a2a);
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.edz-shop-filter__price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--edz-accent, #FD8D27);
    border-radius: 50%;
    cursor: pointer;
}

.edz-shop-filter__price-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: var(--edz-accent, #FD8D27);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.edz-shop-filter__price-inputs {
    display: flex;
    gap: 12px;
}

.edz-shop-filter__price-input {
    flex: 1;
    padding: 10px 12px;
    background-color: var(--edz-bg, #0C0C0C);
    border: 1px solid var(--edz-border, #2a2a2a);
    border-radius: 5px;
    color: var(--edz-text, #ffffff);
    font-size: 14px;
}

.edz-shop-filter__price-input:focus {
    outline: none;
    border-color: var(--edz-accent, #FD8D27);
}

/* Type Filter (Checkboxes) */
.edz-shop-filter__types {
    list-style: none;
    padding: 0;
    margin: 0;
}

.edz-shop-filter__type {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.edz-shop-filter__type-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--edz-text-soft, #bdbdbd);
    font-size: 14px;
    flex: 1;
}

.edz-shop-filter__type-checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid var(--edz-border, #2a2a2a);
    border-radius: 3px;
    background-color: transparent;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.edz-shop-filter__type-checkbox:checked {
    background-color: var(--edz-accent, #FD8D27);
    border-color: var(--edz-accent, #FD8D27);
}

.edz-shop-filter__type-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

.edz-shop-filter__type-count {
    color: var(--edz-text-muted, #9a9a9a);
    font-size: 13px;
}

/* Main Content Area */
.edz-shop-main {
    width: 100%;
    flex: 1;
    min-width: 0;
}

/* Shop Banner */
.edz-shop-banner {
    position: relative;
    width: 100%;
    min-height: 400px;
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
    background-image: url('https://epicdropzone.com/wp-content/uploads/2025/11/banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.edz-shop-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgb(0 0 0 / 85%) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.edz-shop-banner__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 60ch;
    padding: 3rem;
}

@media (max-width: 768px) {
    .edz-shop-banner__content {
        max-width: 45ch;
    }
}
@media (max-width: 576px) {
    .edz-shop-banner__content {
        max-width: 38ch;
    }
}
.edz-shop-banner__title {
    text-align: start;
    font-size: 42px;
    font-weight: 700;
    color: var(--edz-text-light, #ffffff);
    margin: 0 0 16px 0;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.edz-shop-banner__text {
    text-align: start;
    font-size: 18px;
    color: var(--edz-text-light, #ffffff);
    margin: 0;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .edz-shop-banner {
        min-height: 300px;
        margin-bottom: 32px;
        border-radius: 12px;
    }

    .edz-shop-banner__content {
        padding: 32px 16px;
    }

    .edz-shop-banner__title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .edz-shop-banner__text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .edz-shop-banner {
        min-height: 250px;
        margin-bottom: 24px;
    }

    .edz-shop-banner__title {
        font-size: 24px;
    }

    .edz-shop-banner__text {
        font-size: 14px;
    }
}

/* Catalog Header */
.edz-shop-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 20px;
    flex-wrap: wrap;
}

.edz-shop-header__left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.edz-shop-header__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--edz-text, #ffffff);
    margin: 0;
}

.edz-shop-header__count {
    color: var(--edz-text-muted, #9a9a9a);
    font-size: 14px;
}

.edz-shop-header__right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.edz-shop-header__controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Sort icon button */
.edz-shop-sort-icon {
    position: relative;
}

.edz-shop-sort-toggle {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--edz-btn-gradient, linear-gradient(90deg, #FD8D27, #2b84d8));
    border-radius: var(--edz-btn-border-radius, 5px);
    color: var(--edz-text, #ffffff);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.edz-shop-sort-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(253, 141, 39, 0.4);
}

.edz-shop-sort-icon .dropdown-menu {
    min-width: 200px;
}

/* View Toggle Buttons */
.edz-shop-view-toggle {
    display: flex;
    gap: 8px;
    background-color: var(--edz-surface, #111);
    border-radius: 5px;
    padding: 4px;
}

.edz-shop-view-toggle__btn {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: var(--edz-text-muted, #9a9a9a);
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 16px;
}

.edz-shop-view-toggle__btn:hover {
    color: var(--edz-text, #ffffff);
    background-color: var(--edz-bg, #0C0C0C);
}

.edz-shop-view-toggle__btn.active {
    color: var(--edz-accent, #FD8D27);
    background-color: var(--edz-bg, #0C0C0C);
}

/* Sort Dropdown */
.edz-shop-sort {
    position: relative;
}

.edz-shop-sort__select,
.edz-shop-sort select,
.edz-shop-sort .orderby {
    padding: 10px 36px 10px 12px;
    background-color: var(--edz-surface, #111);
    border: 1px solid var(--edz-border, #2a2a2a);
    border-radius: 5px;
    color: var(--edz-text, #ffffff);
    font-size: 14px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239a9a9a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.edz-shop-sort__select:focus,
.edz-shop-sort select:focus,
.edz-shop-sort .orderby:focus {
    outline: none;
    border-color: var(--edz-accent, #FD8D27);
}

/* WooCommerce ordering form */
.edz-shop-sort form {
    margin: 0;
}

.edz-shop-sort .woocommerce-ordering {
    margin: 0;
}

/* Dropdown menu styling */
.edz-shop-sort-icon .dropdown-menu,
.dropdown-menu.dropdown-menu-right {
    background-color: var(--edz-surface, #111) !important;
    border: 1px solid var(--edz-border, #2a2a2a);
    border-radius: 5px;
    padding: 8px 0;
    margin-top: 8px;
}

.edz-shop-sort-icon .dropdown-menu.show,
.dropdown-menu.dropdown-menu-right.show {
    display: block;
}

.edz-shop-sort-icon .dropdown-item,
.dropdown-menu.dropdown-menu-right .dropdown-item {
    color: var(--edz-text, #ffffff) !important;
    padding: 10px 16px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.edz-shop-sort-icon .dropdown-item i,
.dropdown-menu.dropdown-menu-right .dropdown-item i {
    width: 16px;
    text-align: center;
    opacity: 0.8;
}

.edz-shop-sort-icon .dropdown-item:hover,
.edz-shop-sort-icon .dropdown-item:focus,
.dropdown-menu.dropdown-menu-right .dropdown-item:hover,
.dropdown-menu.dropdown-menu-right .dropdown-item:focus {
    background-color: var(--edz-bg, #0C0C0C) !important;
    color: var(--edz-accent, #FD8D27) !important;
}

.edz-shop-sort-icon .dropdown-item:hover i,
.edz-shop-sort-icon .dropdown-item:focus i,
.dropdown-menu.dropdown-menu-right .dropdown-item:hover i,
.dropdown-menu.dropdown-menu-right .dropdown-item:focus i {
    opacity: 1;
}

.edz-shop-sort-icon .dropdown-item.active,
.dropdown-menu.dropdown-menu-right .dropdown-item.active {
    background-color: var(--edz-accent, #FD8D27) !important;
    color: var(--edz-text, #ffffff) !important;
}

.edz-shop-sort-icon .dropdown-item.active i,
.dropdown-menu.dropdown-menu-right .dropdown-item.active i {
    opacity: 1;
}

/* Pagination spacing */
.cartzilla-shop-pagination {
    padding-top: 0;
    margin-top: var(--edz-section-gap, 1rem);
}

/* Shop Card - для каталога (отдельные классы от главной страницы) */
.edz-shop-card {
    background-color: var(--edz-surface, #1a1a1a);
    border-radius: 8px;
    overflow: visible;
    min-height: 380px;
    border: 2px solid transparent;
    padding: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
}

/* On wishlist page only - hide action buttons and adjust card height */
.edz-wishlist-page .edz-shop-card .edz-shop-card__actions {
    display: none !important;
}

.edz-wishlist-page .edz-shop-card {
    min-height: 300px;
}

.edz-shop-card__remove {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    padding: 0;
    font-size: 14px;
    text-decoration: none;
    line-height: 1;
}

.edz-shop-card__remove:hover {
    background-color: rgba(220, 53, 69, 0.9);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.edz-shop-card__remove i {
    font-size: 12px;
}

/* Bulk Select Styles */
.edz-wishlist-bulk-select {
    margin-right: 15px;
}

.edz-bulk-select-all {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    font-size: 14px;
    color: var(--edz-text, #ffffff);
}

.edz-bulk-select-all input[type="checkbox"] {
    margin-right: 8px;
    cursor: pointer;
}

.edz-shop-card__checkbox-wrapper {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 15;
    pointer-events: auto;
}

.edz-shop-card:hover .edz-shop-card__checkbox-wrapper {
    z-index: 16;
}

.edz-shop-card__checkbox-wrapper input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.edz-checkbox-label {
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.edz-checkbox-label:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 12px;
    height: 12px;
    background-color: var(--edz-accent, #FD8D27);
    border-radius: 2px;
    transition: transform 0.2s ease;
}

.edz-shop-card__checkbox-wrapper input[type="checkbox"]:checked + .edz-checkbox-label {
    background-color: rgba(253, 141, 39, 0.2);
    border-color: var(--edz-accent, #FD8D27);
}

.edz-shop-card__checkbox-wrapper input[type="checkbox"]:checked + .edz-checkbox-label:after {
    transform: translate(-50%, -50%) scale(1);
}

.edz-shop-card__checkbox-wrapper input[type="checkbox"]:focus + .edz-checkbox-label {
    outline: 2px solid var(--edz-accent, #FD8D27);
    outline-offset: 2px;
}

/* Bulk Actions Bar */
.edz-wishlist-bulk-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 20px;
    background-color: rgba(253, 141, 39, 0.1);
    border: 1px solid rgba(253, 141, 39, 0.3);
    border-radius: 8px;
    gap: 20px;
}

.edz-bulk-actions__info {
    flex: 1;
}

.edz-bulk-actions__count {
    font-size: 14px;
    color: var(--edz-text, #ffffff);
    font-weight: 500;
}

.edz-bulk-actions__buttons {
    display: flex;
    gap: 10px;
}

.edz-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.edz-btn--secondary {
    background-color: var(--edz-accent, #FD8D27);
    color: #ffffff;
}

.edz-btn--secondary:hover {
    background-color: rgba(253, 141, 39, 0.8);
    transform: translateY(-2px);
}

.edz-btn--danger {
    background-color: rgba(220, 53, 69, 0.8);
    color: #ffffff;
}

.edz-btn--danger:hover {
    background-color: rgba(220, 53, 69, 1);
    transform: translateY(-2px);
}

.edz-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

@media (max-width: 768px) {
    .edz-wishlist-bulk-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .edz-bulk-actions__buttons {
        flex-direction: column;
    }
    
    .edz-btn {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .edz-shop-card {
        height: 340px;
    }
}

.edz-shop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(253, 141, 39, 0.3);
    border-color: var(--edz-accent, #FD8D27);
}

.edz-shop-card__link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #ffffff;
    height: 100%;
    position: relative;
    z-index: 1;
}

/* Image - как в ps-mega-menu, но с увеличенной высотой */
.edz-shop-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 12px;
    background-color: #1a1a1a;
}

/* Name - как в ps-mega-menu */
.edz-shop-card__name {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--edz-product-card-title, #ffffff);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
    min-height: 40px;
}

/* Price - как в ps-mega-menu */
.edz-shop-card__price {
    font-size: 16px;
    font-weight: 700;
    color: #FD8D27;
    margin-top: auto;
}

/* Адаптивная высота для фото от 1100px и ниже - только для каталога */
@media (max-width: 1100px) {
    .edz-shop-card__image {
        height: auto;
        min-height: 120px;
        max-height: 190px;
        object-fit: contain;
    }
}

@media (max-width: 520px) {
    .edz-shop-card__image {
        max-height: 120px;
    }
}

.edz-shop-card__actions {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 8px;
    opacity: 0;
    max-height: 0;
    transition: opacity .2s ease, max-height .25s ease;
}

.edz-shop-card__actions .edz-wishlist {
    flex: none;
}

.edz-shop-card:hover .edz-shop-card__actions {
    opacity: 1;
    max-height: 60px;
}

/* На мобилке actions всегда видны (hover не работает) - только для каталога */
@media (max-width: 1100px) {
    .edz-shop-card__actions {
        opacity: 1 !important;
        max-height: 60px !important;
        pointer-events: auto !important;
    }
}

/* Products Grid */
.edz-shop-products--grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
}

/* Responsive Grid */
@media (max-width: 1440px) {
    .edz-shop-products--grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1200px) {
    .edz-shop-products--grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .edz-shop-products--grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .edz-shop-filter {
        padding-bottom: 100px; /* Extra padding for mobile browsers */
    }
    
    .edz-shop-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .edz-shop-header__left {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .edz-shop-header__title {
        font-size: 20px;
    }
    
    .edz-shop-header__count {
        font-size: 13px;
    }
    
    .edz-shop-header__right {
        width: 100%;
        justify-content: space-between;
    }
    
    .edz-shop-catalog {
        padding: 24px 0;
    }
}

/* Products List View */
.edz-shop-products--list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.edz-shop-products--list .edz-shop-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding: 20px;
}

.edz-shop-products--list .edz-shop-card__link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    flex: 1;
    height: auto;
}

.edz-shop-products--list .edz-shop-card__image {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
    margin-bottom: 0;
    object-fit: cover;
}

.edz-shop-products--list .edz-shop-card__name {
    font-size: 18px;
    margin-bottom: 8px;
    min-height: auto;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.edz-shop-products--list .edz-shop-card__price {
    font-size: 20px;
    font-weight: 700;
    margin-top: 0;
}

.edz-shop-products--list .edz-shop-card__actions {
    margin-top: 0;
    flex-shrink: 0;
    opacity: 1 !important;
    max-height: none !important;
    padding-top: 0;
}

.edz-shop-products--list .edz-product-card__btn {
    width: auto;
    min-width: 150px;
    flex: none;
}

@media (max-width: 768px) {
    .edz-shop-products--list .edz-shop-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
        gap: 16px;
    }
    
    .edz-shop-products--list .edz-shop-card__link {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .edz-shop-products--list .edz-shop-card__image {
        width: 100%;
        height: 200px;
        border-radius: 8px;
    }
    
    .edz-shop-products--list .edz-shop-card__name {
        font-size: 16px;
        margin-bottom: 4px;
    }
    
    .edz-shop-products--list .edz-shop-card__price {
        font-size: 18px;
    }
    
    .edz-shop-products--list .edz-shop-card__actions {
        width: 100%;
        margin-top: 12px;
        flex-direction: column;
        gap: 8px;
    }
    
    .edz-shop-products--list .edz-product-card__btn {
        width: 100%;
        justify-content: center;
    }
    
    .edz-shop-products--list .edz-shop-card__remove {
        top: 12px;
        right: 12px;
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}

/* Product Card styles используются из home-new.css - здесь только специфичные для каталога */

/* Filter Toggle Button */
.edz-shop-filter-toggle {
    display: inline-flex;
    padding: 0 18px;
    height: 40px;
    min-width: 40px;
    background: var(--edz-btn-gradient, linear-gradient(90deg, #FD8D27, #2b84d8));
    border: none;
    border-radius: var(--edz-btn-border-radius, 5px);
    color: var(--edz-text, #ffffff);
    font-size: var(--edz-btn-font-size, 1rem);
    font-weight: var(--edz-btn-font-weight, 700);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    background-size: 200% 100%;
}

.edz-shop-filter-toggle:hover {
    background-position: 100% 0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(253, 141, 39, 0.4);
}

.edz-shop-filter-toggle span {
    display: inline;
}

/* На мобилке скрываем текст, только иконка */
@media (max-width: 768px) {
    .edz-shop-filter-toggle {
        padding: 0;
        width: 40px;
        min-width: 40px;
    }
    
    .edz-shop-filter-toggle span {
        display: none;
    }
}

/* Reset Filters Button */
.edz-shop-filter__reset {
    width: 100%;
    margin-top: 24px;
    padding: var(--edz-btn-padding, 12px 18px);
    background: var(--edz-btn-gradient, linear-gradient(90deg, #FD8D27, #2b84d8));
    border: none;
    border-radius: var(--edz-btn-border-radius, 5px);
    color: var(--edz-text, #ffffff);
    font-size: var(--edz-btn-font-size, 1rem);
    font-weight: var(--edz-btn-font-weight, 700);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--edz-btn-gap, 8px);
    transition: background-position .35s ease, transform .2s ease;
    background-size: 200% 100%;
    text-decoration: none;
}

.edz-shop-filter__reset:hover {
    background-position: 100% 0;
    transform: translateY(-2px);
}

/* Pagination styling */
.cartzilla-shop-pagination {
    display: flex;
    justify-content: center !important;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--edz-section-gap, 1rem);
    width: 100%;
}

.cartzilla-shop-pagination .pagination {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.cartzilla-shop-pagination .pagination .page-item {
    list-style: none;
}

.cartzilla-shop-pagination .pagination .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border-radius: var(--edz-btn-border-radius, 5px);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    background-color: var(--edz-surface, #111);
    border: 1px solid var(--edz-border, #2a2a2a);
    color: var(--edz-text, #ffffff);
    transition: all 0.3s ease;
}

.cartzilla-shop-pagination .pagination .page-link:hover,
.cartzilla-shop-pagination .pagination .page-link:focus {
    text-decoration: none;
    outline: none;
    color: var(--edz-accent, #FD8D27);
    border-color: var(--edz-accent, #FD8D27);
    background-color: var(--edz-bg, #0C0C0C);
}

.cartzilla-shop-pagination .pagination .page-item.active .page-link,
.cartzilla-shop-pagination .pagination .page-link.edz-pagination__link.is-active {
    background: var(--edz-accent, #FD8D27);
    border-color: var(--edz-accent, #FD8D27);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(253, 141, 39, 0.35);
}

.cartzilla-shop-pagination .edz-pagination__nav {
    background: var(--edz-btn-gradient, linear-gradient(90deg, #FD8D27, #2b84d8));
    background-size: 200% 100%;
    border: none;
    color: #fff;
    font-weight: var(--edz-btn-font-weight, 700);
    padding: var(--edz-btn-padding, 12px 18px);
    min-width: 130px;
    gap: 8px;
}

.cartzilla-shop-pagination .edz-pagination__nav i {
    font-size: 14px;
    line-height: 1;
}

.cartzilla-shop-pagination .edz-pagination__nav--prev i {
    margin-right: 8px;
}

.cartzilla-shop-pagination .edz-pagination__nav--next i {
    margin-left: 8px;
}

.cartzilla-shop-pagination .edz-pagination__nav:hover {
    background-position: 100% 0;
    transform: translateY(-2px);
    color: #ffffff;
}

.cartzilla-shop-pagination .edz-pagination__link {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.cartzilla-shop-pagination .edz-pagination__status {
    background-color: transparent;
    border: none;
    color: var(--edz-text-muted, #9a9a9a);
    min-width: auto;
    padding: 0;
}

.cartzilla-shop-pagination .pagination .page-item.disabled .page-link,
.cartzilla-shop-pagination .pagination .page-link[aria-disabled="true"] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 576px) {
    .cartzilla-shop-pagination {
        flex-direction: column;
        gap: 16px;
    }

    .cartzilla-shop-pagination .pagination {
        justify-content: center;
    }

    .cartzilla-shop-pagination .edz-pagination__nav {
        width: 100%;
        justify-content: center;
    }
}

/* Overlay for filter (always visible when filter is active) */
.edz-shop-filter-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    transition: opacity 0.3s ease;
}

.edz-shop-filter-overlay.active {
    display: block;
}

/* Guest User Banner on Wishlist Page */
.edz-wishlist-guest-banner {
    position: relative;
    background: linear-gradient(135deg, rgba(253, 141, 39, 0.1) 0%, rgba(253, 141, 39, 0.05) 100%);
    border: 1px solid rgba(253, 141, 39, 0.3);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    animation: slideDown 0.3s ease-out;
    transition: opacity 0.3s ease, max-height 0.3s ease, margin 0.3s ease, padding 0.3s ease;
}

.edz-wishlist-guest-banner.hidden {
    opacity: 0;
    max-height: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.edz-wishlist-guest-banner__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border: none;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    color: var(--edz-text, #ffffff);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.2s ease;
    z-index: 10;
}

.edz-wishlist-guest-banner__close:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: scale(1.1);
}

.edz-wishlist-guest-banner__close i {
    font-size: 12px;
}

.edz-wishlist-guest-banner__content {
    flex: 1;
    min-width: 250px;
    padding-right: 40px;
}

.edz-wishlist-guest-banner__content h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--edz-text, #ffffff);
}

.edz-wishlist-guest-banner__content p {
    margin: 0;
    font-size: 14px;
    color: var(--edz-text-muted, #9a9a9a);
    line-height: 1.5;
}

.edz-wishlist-guest-banner__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.edz-wishlist-guest-banner__login-link {
    display: inline-block;
    padding: 12px 24px;
    color: var(--edz-text, #ffffff);
    text-decoration: underline;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.edz-wishlist-guest-banner__login-link:hover {
    opacity: 0.8;
}

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

@media (max-width: 768px) {
    .edz-wishlist-guest-banner {
        flex-direction: column;
        align-items: flex-start;
        padding-right: 40px;
    }
    
    .edz-wishlist-guest-banner__content {
        padding-right: 0;
    }
    
    .edz-wishlist-guest-banner__actions {
        width: 100%;
        flex-direction: column;
    }
    
    .edz-wishlist-guest-banner__actions a {
        width: 100%;
        text-align: center;
    }
}

