/* Home (page-home-new.php) extra sections */

/* 1) Marquee */
.edz-marquee {
    background: linear-gradient(90deg, var(--edz-accent, #FD8D27), var(--edz-accent-2, #2b84d8));
    color: var(--edz-text-light, #ffffff);
    overflow: hidden;
    position: relative;
}

.edz-marquee .container {
    overflow: hidden;
}

.edz-marquee-swiper {
    width: 100%;
    overflow: visible;
    padding: 14px 0;
}

.edz-marquee-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
    display: flex;
    align-items: center;
}

.edz-marquee-swiper .swiper-slide {
    width: auto;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.edz-marquee__item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    flex-shrink: 0;
    white-space: nowrap;
}

.edz-marquee__bullet {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--edz-text-light, #ffffff);
    opacity: .65;
    flex-shrink: 0;
}

/* 2) Product slider */
.edz-products {
    padding: 40px 0;
    overflow: hidden;
    /* prevent vertical hover overflow into other sections */
}

.edz-products__title {
    color: var(--edz-text, #fff);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

/* Products wrapper */
.home-products-wrapper {
    position: relative;
}

.home-products-slider {
    margin: 0 -10px;
    position: relative;
}

/* Equal heights across slides */
.home-products-slider .slick-track {
    display: flex;
    height: 300px;
    align-items: stretch;
}

.home-products-slider .slick-slide {
    height: auto;
}

.home-products-slider .slick-slide>div {
    height: 100%;
}

.home-products-slider .slick-slide {
    padding: 0 10px;
}

/* Hide default Slick arrows */
.home-products-slider .slick-arrow {
    display: none !important;
}

/* Navigation container */
.home-products-nav {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 16px;

}

/* Navigation buttons */
.home-products-prev,
.home-products-next {
    background-color: var(--edz-slider-arrow-bg, rgba(26, 26, 26, 0.9));
    border: 1px solid var(--edz-slider-arrow-border, #2a2a2a);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--edz-slider-arrow-color, #ffffff);
    transition: all 0.3s ease;
    padding: 0;
}

.home-products-prev:hover,
.home-products-next:hover {
    background-color: var(--edz-slider-arrow-hover-bg, #FD8D27);
    border-color: var(--edz-slider-arrow-hover-border, #FD8D27);
    color: var(--edz-slider-arrow-color, #ffffff);
}

.home-products-prev i,
.home-products-next i {
    font-size: 14px;
    color: var(--edz-slider-arrow-color, #ffffff);
}

.home-products-prev.slick-disabled,
.home-products-next.slick-disabled {
    background-color: var(--edz-slider-arrow-disabled-bg, rgba(26, 26, 26, 0.4));
    color: var(--edz-slider-arrow-disabled-color, rgba(255, 255, 255, 0.35));
    cursor: default;
}

.home-products-prev.slick-disabled i,
.home-products-next.slick-disabled i {
    color: var(--edz-slider-arrow-disabled-color, rgba(255, 255, 255, 0.35));
}

/* Product card - для главной страницы (слайдер) */
.edz-product-card {
    background-color: var(--edz-surface, #1a1a1a);
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    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;
}

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

.edz-product-card__link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #ffffff;
    height: 100%;
}

.edz-product-card__thumb {
    position: relative;
    width: 100%;
    height: 140px;
    background-color: #1a1a1a;
    border-radius: 4px;
    margin-bottom: 12px;
    overflow: hidden;
}

.edz-product-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.edz-product-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0;
}

.edz-product-card__title {
    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;
}

.edz-product-card__price {
    font-size: 16px;
    font-weight: 700;
    color: #FD8D27;
    margin-top: auto;
}

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

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

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

/* Unified gradient buttons with variables */
.edz-btn,
.edz-product-card__btn,
.edz-promo__btn,
.edz-cats__more,
.edz-faq__more,
.ps-mega-menu__view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--edz-btn-gap, 8px);
    padding: var(--edz-btn-padding, 12px 18px);
    border-radius: var(--edz-btn-border-radius, 5px);
    background: var(--edz-btn-gradient, linear-gradient(90deg, var(--edz-accent, #FD8D27), var(--edz-accent-2, #2b84d8)));
    background-size: 200% 100%;
    color: #fff;
    text-decoration: none;
    font-size: var(--edz-btn-font-size, 1rem);
    font-weight: var(--edz-btn-font-weight, 700);
    transition: background-position .35s ease, transform .2s ease;
}


.edz-product-card__btn {
    padding: 12px 0 !important;
}

.edz-cats__more,
.edz-faq__more {
    min-width: 200px;
    width: auto;
}

.edz-btn:hover,
.edz-product-card__btn:hover,
.edz-promo__btn:hover,
.edz-cats__more:hover,
.edz-faq__more:hover,
.ps-mega-menu__view:hover {
    background-position: 100% 0;
}

/* Full width only for card buttons */
.edz-product-card__btn {
    flex: 1;
    width: 100%;
}

.edz-wish {
    width: 42px;
    height: 48px;
    min-height: 48px;
    border-radius: 8px;
    background: var(--edz-wish-bg, rgba(255, 255, 255, 0.08));
    color: var(--edz-wish-color, #ffffff);
    border: 1px solid var(--edz-wish-border, var(--edz-border, #2a2a2a));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.edz-wish:hover,
.edz-wish:focus {
    border-color: var(--edz-wish-active-border, var(--edz-accent, #FD8D27));
    color: var(--edz-wish-active-bg, var(--edz-accent, #FD8D27));
}

.edz-wish.is-active {
    background: var(--edz-wish-active-bg, var(--edz-accent, #FD8D27));
    border-color: var(--edz-wish-active-border, var(--edz-accent, #FD8D27));
    color: var(--edz-wish-color, #ffffff);
}

.edz-wishlist {
    display: inline-flex;
    align-items: center;
    gap: 0;
    margin: 0;
}

.edz-wishlist .yith-wcwl-add-button,
.edz-wishlist .yith-wcwl-wishlistaddedbrowse,
.edz-wishlist .yith-wcwl-wishlistexistsbrowse {
    margin: 0;
    display: inline-flex;
    align-items: center;
}

.edz-wishlist .feedback,
.edz-wishlist .ajax-loading,
.edz-wishlist .clear {
    display: none !important;
}

.edz-wishlist .add_to_wishlist,
.edz-wishlist .view-wishlist,
.edz-wishlist .yith-wcwl-add-button > a,
.edz-wishlist .yith-wcwl-wishlistaddedbrowse > a,
.edz-wishlist .yith-wcwl-wishlistexistsbrowse > a {
    margin: 0 !important;
}

.yith-wcwl-add-button > a i,
.wishlist_table .add_to_cart.button i,
.wishlist_table .ask-an-estimate-button i,
.wishlist-title a.show-title-form i,
.hidden-title-form button i,
.yith-wcwl-wishlist-new button i,
.wishlist_manage_table tfoot button.submit-wishlist-changes i,
.wishlist_manage_table tfoot a.create-new-wishlist i,
.yith-wcwl-wishlist-search-form button.wishlist-search-button i {
    margin-right: 0 !important;
}

.edz-wishlist .add_to_wishlist:hover,
.edz-wishlist .add_to_wishlist:focus {
    border-color: var(--edz-wish-active-border, var(--edz-accent, #FD8D27));
    color: var(--edz-wish-active-bg, var(--edz-accent, #FD8D27));
}

.edz-wishlist .yith-wcwl-wishlistaddedbrowse a,
.edz-wishlist .yith-wcwl-wishlistexistsbrowse a {
    background: var(--edz-wish-active-bg, var(--edz-accent, #FD8D27));
    border-color: var(--edz-wish-active-border, var(--edz-accent, #FD8D27));
    color: var(--edz-wish-color, #ffffff);
}

.edz-wishlist .yith-wcwl-wishlistaddedbrowse a i,
.edz-wishlist .yith-wcwl-wishlistexistsbrowse a i {
    font-weight: 900;
}

.edz-wishlist--button {
    display: inline-flex;
}

.edz-wishlist--button .yith-wcwl-add-button,
.edz-wishlist--button .yith-wcwl-wishlistaddedbrowse,
.edz-wishlist--button .yith-wcwl-wishlistexistsbrowse {
    display: inline-flex;
    align-items: stretch;
}

.edz-wishlist--button .add_to_wishlist,
.edz-wishlist--button .yith-wcwl-wishlistaddedbrowse a,
.edz-wishlist--button .yith-wcwl-wishlistexistsbrowse a {
    width: auto;
    min-height: 56px;
    height: auto;
    padding: var(--edz-btn-padding, 12px 18px);
    border-radius: var(--edz-btn-border-radius, 5px);
    background: var(--edz-btn-gradient, linear-gradient(90deg, var(--edz-accent, #FD8D27), var(--edz-accent-2, #2b84d8)));
    background-size: 200% 100%;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: var(--edz-btn-gap, 8px);
    font-size: var(--edz-btn-font-size, 1rem);
    font-weight: var(--edz-btn-font-weight, 700);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #ffffff;
    transition: background-position 0.35s ease, transform 0.2s ease;
}

.edz-wishlist--button .add_to_wishlist:hover,
.edz-wishlist--button .add_to_wishlist:focus,
.edz-wishlist--button .yith-wcwl-wishlistaddedbrowse a:hover,
.edz-wishlist--button .yith-wcwl-wishlistaddedbrowse a:focus,
.edz-wishlist--button .yith-wcwl-wishlistexistsbrowse a:hover,
.edz-wishlist--button .yith-wcwl-wishlistexistsbrowse a:focus {
    background-position: 100% 0;
    transform: translateY(-2px);
}

.edz-wishlist--button .add_to_wishlist i,
.edz-wishlist--button .yith-wcwl-wishlistaddedbrowse a i,
.edz-wishlist--button .yith-wcwl-wishlistexistsbrowse a i {
    font-size: 18px;
}

.edz-product-card:hover {
    transform: translateY(-5px);
    /* match mega-menu */
    box-shadow: 0 5px 20px rgba(253, 141, 39, 0.30);
    border-color: var(--edz-accent, #FD8D27);
}

/* Allow slides to bleed horizontally for nice shadow, but not vertically */
.home-products-slider .slick-list {
    overflow: visible!important;
}

/* "See all" last slide */
.edz-more-card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 300px;
    background: linear-gradient(90deg, var(--edz-accent, #FD8D27), var(--edz-accent-2, #2b84d8));
    background-size: 200% 100%;
    transition: background-position .35s ease, transform .2s ease;
    border: 1px solid var(--edz-border, #2a2a2a);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    padding: 20px;
    position: relative;
}

.edz-more-card:hover {
    background-position: 100% 0;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(253, 141, 39, .30);
    border-color: var(--edz-accent, #FD8D27);
}

.edz-more-card__inner {
    text-align: center;
}

.edz-more-card .edz-products__title,
.edz-more-card .edz-cats__title {
    color: var(--edz-text-light, #ffffff);
}

/* 3) Promo banner */
.edz-promo {
    background: var(--edz-surface, #1a1a1a);
    border: 1px solid var(--edz-border, #2a2a2a);
    border-radius: 10px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.edz-promo__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    align-items: center;
}

.edz-promo__visual
 {
    position: relative;
    display: flex;
    height: 100%;
    justify-content: center;
}

.edz-promo__content {
    order: -1;
    padding: 3rem;
    display: flex;
    gap: var(--edz-section-gap, 1rem);
    flex-direction: column;
    align-items: flex-start;
}

.edz-promo__laptop {
    position: absolute;
    left: 10%;
    bottom: 0;
    width: 60%;
    z-index: 1;
}

.edz-promo__soldier {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

.edz-promo__title {
    color: var(--edz-text, #fff);
    font-size: 36px;
    line-height: 1.2;
    font-weight: 800;
}

.edz-promo__text {
    color: var(--edz-text-soft, #bdbdbd);
    width: 60ch;

}

/* .edz-promo__btn styles are now in unified buttons section above */

/* 4) Categories slider */
.edz-cats {
    padding: 20px 0 10px;
}

.home-categories-wrapper {
    position: relative;
}

.home-categories-slider {
    margin: 0 -10px;
    position: relative;
}

/* Equal heights across slides */
.home-categories-slider .slick-track {
    display: flex;
    align-items: stretch;
}

.home-categories-slider .slick-slide {
    height: auto;
}

.home-categories-slider .slick-slide>div {
    height: 100%;
}

.home-categories-slider .slick-slide {
    padding: 0 10px;
}

/* Hide default Slick arrows */
.home-categories-slider .slick-arrow {
    display: none !important;
}

/* Navigation container */
.home-categories-nav {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 16px;
}

/* Navigation buttons */
.home-categories-prev,
.home-categories-next {
    background-color: var(--edz-slider-arrow-bg, rgba(26, 26, 26, 0.9));
    border: 1px solid var(--edz-slider-arrow-border, #2a2a2a);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--edz-slider-arrow-color, #ffffff);
    transition: all 0.3s ease;
    padding: 0;
}

.home-categories-prev:hover,
.home-categories-next:hover {
    background-color: var(--edz-slider-arrow-hover-bg, #FD8D27);
    border-color: var(--edz-slider-arrow-hover-border, #FD8D27);
    color: var(--edz-slider-arrow-color, #ffffff);
}

.home-categories-prev i,
.home-categories-next i {
    font-size: 14px;
    color: var(--edz-slider-arrow-color, #ffffff);
}

.home-categories-prev.slick-disabled,
.home-categories-next.slick-disabled {
    background-color: var(--edz-slider-arrow-disabled-bg, rgba(26, 26, 26, 0.4));
    color: var(--edz-slider-arrow-disabled-color, rgba(255, 255, 255, 0.35));
    cursor: default;
}

.home-categories-prev.slick-disabled i,
.home-categories-next.slick-disabled i {
    color: var(--edz-slider-arrow-disabled-color, rgba(255, 255, 255, 0.35));
}

.edz-cat {
    text-decoration: none;
    display: block;
    height: 100%;
    width: 100%;
}

.edz-cat__image {
    position: relative;
    width: 100%;
    height: 385px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.edz-cat__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.edz-cat__image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    pointer-events: none;
    transition: background 0.3s ease;
}

.edz-cat:hover .edz-cat__image::before {
    background: rgba(0, 0, 0, 0.3);
}

.edz-cat__image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 3;
    pointer-events: none;
}

.edz-cat__name {
    position: absolute;
    bottom: 4rem;
    left: 2rem;
    font-weight: 700;
    color: var(--edz-text-light, #ffffff);
    font-size: 2rem;
    z-index: 3;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}
.edz-cat__count {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    font-weight: 700;
    color: var(--edz-text-light, #ffffff);
    font-size: 1.5rem;
    z-index: 3;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.edz-cats .container {
    display: flex;
    flex-direction: column;
    gap: var(--edz-section-gap, 1rem);
}

.edz-cats__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--edz-text, #fff);
    text-align: center;
    margin: 0 0 20px 0;
}

@media (max-width: 1400px) {
    .home-categories-prev {
        left: -30px;
    }
    .home-categories-next {
        right: -30px;
    }
}

@media (max-width: 1100px) {
    .home-categories-prev {
        left: -20px;
    }
    .home-categories-next {
        right: -20px;
    }
}

@media (max-width: 768px) {
    .home-categories-prev {
        left: -10px;
    }
    .home-categories-next {
        right: -10px;
    }
    
    .home-categories-slider .slick-arrow {
        width: 30px;
        height: 30px;
    }
    
    .home-categories-prev i,
    .home-categories-next i {
        font-size: 16px;
    }
}

/* 4.5) Reviews slider */
.edz-reviews {
    padding: 40px 0;
    overflow: hidden;
}

.edz-reviews .container {
    display: flex;
    flex-direction: column;
    gap: var(--edz-section-gap, 1rem);
}

.edz-reviews__title {
    color: var(--edz-text, #fff);
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin: 0;
}

/* Reviews wrapper */
.home-reviews-wrapper {
    position: relative;
    display: flex;
    gap: var(--edz-section-gap, 1rem);
    flex-direction: column;
}

.home-reviews-slider {
    margin: 0 -10px;
    position: relative;
}

/* Equal heights across slides */
.home-reviews-slider .slick-track {
    display: flex;
    align-items: stretch;
}

.home-reviews-slider .slick-slide {
    height: auto;
}

.home-reviews-slider .slick-slide > div {
    height: 100%;
}

.home-reviews-slider .slick-slide {
    padding: 0 10px;
}

/* Allow slides to bleed horizontally for nice shadow, but not vertically */
.home-reviews-slider .slick-list {
    overflow: visible !important;
}

/* Hide default Slick arrows */
.home-reviews-slider .slick-arrow {
    display: none !important;
}

/* Navigation container */
.home-reviews-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 0;
}

/* Navigation buttons */
.home-reviews-prev,
.home-reviews-next {
    background-color: rgba(26, 26, 26, 0.9);
    border: 1px solid #2a2a2a;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    transition: all 0.3s ease;
    padding: 0;
}

.home-reviews-prev:hover,
.home-reviews-next:hover {
    background-color: #FD8D27;
    border-color: #FD8D27;
    color: #ffffff;
}

.home-reviews-prev i,
.home-reviews-next i {
    font-size: 14px;
    color: #ffffff;
}

/* Review card */
.edz-review-card {
    background-color: var(--edz-surface, #1a1a1a);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

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

.edz-review-card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: #FFD700;
    font-size: 16px;
}

.edz-review-card__title {
    color: var(--edz-text, #fff);
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.edz-review-card__text {
    color: var(--edz-text-soft, #bdbdbd);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex: 1;
}

.edz-review-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.edz-review-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--edz-accent, #FD8D27), var(--edz-accent-2, #2b84d8));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.edz-review-card__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.edz-review-card__name {
    color: var(--edz-text, #fff);
    font-size: 14px;
    font-weight: 600;
}

.edz-review-card__date {
    color: var(--edz-text-soft, #bdbdbd);
    font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .edz-reviews {
        padding: 30px 0;
    }

    .edz-review-card {
        padding: 20px;
    }
}

/* 5) FAQ */
.edz-faq {
    padding: 30px 0 40px;
}

.edz-faq .container {
    display: flex;
    flex-direction: column;
    gap: var(--edz-section-gap, 1rem);
}

.edz-faq__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--edz-text, #fff);
    text-align: center;
    margin: 0;
}

.edz-faq__list {
    display: grid;
    gap: 12px;
}

.edz-faq details {
    background: var(--edz-surface, #1a1a1a);
    border: 1px solid var(--edz-border, #2a2a2a);
    border-radius: 8px;
    padding: 0;
    color: var(--edz-text, #fff);
    overflow: hidden;
    transition: all 0.3s ease;
}

.edz-faq summary {
    cursor: pointer;
    font-weight: 700;
    outline: none;
    padding: 16px 48px 16px 20px;
    position: relative;
    list-style: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.edz-faq summary::-webkit-details-marker {
    display: none;
}

.edz-faq summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    color: var(--edz-accent, #FD8D27);
    transition: transform 0.3s ease, color 0.3s ease;
    line-height: 1;
}

.edz-faq details[open] summary::after {
    content: '−';
    transform: translateY(-50%) rotate(0deg);
}

.edz-faq details > div {
    padding: 0 20px 20px 20px;
    color: var(--edz-text-soft, #bdbdbd);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.edz-faq details[open] > div {
    max-height: 500px;
    opacity: 1;
    padding-top: 8px;
}

.edz-faq__more {
    margin: 0;
    align-self: center;
}

@media (max-width: 520px) {
    .edz-faq__more {
        width: 100%;
    }
}

/* Планшеты и iPad: 2 колонки по ровну (включая iPad Pro) */
@media (max-width: 1200px) {
    .home-products-slider .slick-track {
        height: 100%;
    }

    .edz-promo__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .edz-promo__visual {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .edz-promo__text {
        width: 100%;
    }
}

/* 768px и ниже: 1 колонка */
@media (max-width: 880px) {
    .edz-promo__grid {
        grid-template-columns: 1fr;
    }
}



/* 767px и ниже: дополнительные стили */
@media (max-width: 767px) {
    .edz-promo__content {
        padding: 2rem 1rem;
    }
}

.edz-wishlist .yith-wcwl-add-button > a,
.edz-wishlist .yith-wcwl-wishlistaddedbrowse > a,
.edz-wishlist .yith-wcwl-wishlistexistsbrowse > a,
.edz-wishlist .add_to_wishlist,
.edz-wishlist .view-wishlist,
.edz-wish.is-active {
    text-decoration: none !important;
}

.edz-wishlist,
.yith-wcwl-add-to-wishlist {
    margin: 0 !important;
}