.dcw-wishlist-items,
.dcw-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

@keyframes dcw-spin {
    to { transform: rotate(360deg); }
}

.dcw-products-grid.columns-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.dcw-products-grid.columns-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.dcw-products-grid.columns-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.dcw-products-grid.columns-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.dcw-products-grid.columns-tablet-1 { --dcw-tablet-columns: 1; }
.dcw-products-grid.columns-tablet-2 { --dcw-tablet-columns: 2; }
.dcw-products-grid.columns-tablet-3 { --dcw-tablet-columns: 3; }
.dcw-products-grid.columns-tablet-4 { --dcw-tablet-columns: 4; }
.dcw-products-grid.columns-mobile-1 { --dcw-mobile-columns: 1; }
.dcw-products-grid.columns-mobile-2 { --dcw-mobile-columns: 2; }

.dcw-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 16px;
    border: var(--dcw-card-border-width, 1px) solid var(--dcw-card-border-color, rgba(15, 23, 42, 0.08));
    border-radius: var(--dcw-card-radius, 20px);
    background: var(--dcw-card-bg, #fff);
    color: var(--dcw-card-text, #0f172a);
    box-shadow: var(--dcw-card-shadow, 0 18px 50px rgba(15, 23, 42, 0.1));
}

.dcw-product-card__media { position: relative; margin-bottom: 16px; }
.dcw-product-card__image { display: block; position: relative; overflow: hidden; border-radius: 18px; background: #f8fafc; }
.dcw-product-card__image img { display: block; width: 100%; height: auto; }
.dcw-product-card__image--hover-gallery .dcw-product-card__image-secondary { position: absolute; inset: 0; opacity: 0; transition: opacity 0.28s ease; }
.dcw-product-card:hover .dcw-product-card__image--hover-gallery .dcw-product-card__image-secondary { opacity: 1; }

.dcw-product-card__floating {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dcw-wishlist-toggle,
.dcw-quick-view-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: var(--dcw-wishlist-border-width, 1px) solid var(--dcw-wishlist-border-color, rgba(255,255,255,0.92));
    border-radius: var(--dcw-wishlist-button-radius, 50%);
    background: var(--dcw-wishlist-button-bg, rgba(255, 255, 255, 0.92));
    color: var(--dcw-wishlist-icon-color, #0f172a);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
    cursor: pointer;
}

.dcw-wishlist-toggle .dcw-icon,
.dcw-wishlist-widget__trigger .dcw-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--dcw-wishlist-icon-color, #2f6f3e);
}

.dcw-wishlist-toggle .dcw-icon svg,
.dcw-wishlist-toggle .dcw-icon i,
.dcw-wishlist-widget__trigger .dcw-icon svg,
.dcw-wishlist-widget__trigger .dcw-icon i {
    width: var(--dcw-wishlist-icon-size, 18px);
    height: var(--dcw-wishlist-icon-size, 18px);
    font-size: var(--dcw-wishlist-icon-size, 18px);
}

.dcw-wishlist-toggle.is-active,
.dcw-wishlist-toggle.is-active .dcw-icon {
    color: var(--dcw-wishlist-icon-active-color, #2f6f3e);
}

.dcw-product-card__body { display: flex; flex: 1 1 auto; flex-direction: column; }

.dcw-product-card--actions-hover .dcw-product-card__floating,
.dcw-product-card--actions-hover .dcw-product-card__actions {
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.dcw-product-card--actions-hover:hover .dcw-product-card__floating,
.dcw-product-card--actions-hover:focus-within .dcw-product-card__floating,
.dcw-product-card--actions-hover:hover .dcw-product-card__actions,
.dcw-product-card--actions-hover:focus-within .dcw-product-card__actions {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dcw-product-card--align-center .dcw-product-card__body { align-items: center; text-align: center; }
.dcw-product-card--align-center .dcw-product-card__actions { justify-content: center; }
.dcw-product-card--align-center .dcw-product-card__meta { justify-content: center; }
.dcw-product-card__meta { margin-bottom: 8px; font-size: 12px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--dcw-card-meta, #64748b); }
.dcw-product-card__brand { margin-bottom: 8px; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--dcw-card-meta, #64748b); }
.dcw-product-card__title { margin: 0 0 10px; font-size: 1.05rem; line-height: 1.4; }
.dcw-product-card__title a { color: inherit; text-decoration: none; }
.dcw-product-list-header { margin-bottom: 24px; }
.dcw-product-list-header__title { margin: 0; font-size: clamp(1.6rem, 2vw, 2.2rem); line-height: 1.2; color: #0f172a; }
.dcw-product-card__sale-badge { position: absolute; top: 14px; left: 14px; z-index: 2; }

.dcw-product-card__actions .button.add_to_cart_button,
.dcw-product-card__actions .button.product_type_simple,
.dcw-product-card__actions .button.product_type_variable,
.dcw-product-card__actions .button.product_type_external,
.dcw-product-card__actions .button.product_type_grouped {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dcw-product-card--style1 .dcw-product-card__body { gap: 0; }
.dcw-product-card--style2 { padding: 14px; background: #ffffff; border-radius: calc(var(--dcw-card-radius, 20px) + 8px); }
.dcw-product-card--style2 .dcw-product-card__media { margin-bottom: 0; }
.dcw-product-card--style2 .dcw-product-card__image { border-radius: 18px 18px 0 0; }
.dcw-product-card--style2 .dcw-product-card__body { align-items: center; text-align: center; padding: 18px 18px 4px; border-radius: 0 0 18px 18px; background: #39a935; color: #ffffff; }
.dcw-product-card--style2 .dcw-product-card__meta,
.dcw-product-card--style2 .dcw-product-card__title,
.dcw-product-card--style2 .dcw-product-card__title a,
.dcw-product-card--style2 .dcw-product-card__price,
.dcw-product-card--style2 .dcw-product-card__excerpt { color: #ffffff; }
.dcw-product-card--style2 .dcw-product-card__price del { color: rgba(255,255,255,0.72); }
.dcw-product-card--style2 .dcw-product-card__actions { justify-content: center; }
.dcw-product-card--style2 .dcw-product-card__actions .button { background: #223f9d; color: #ffffff; }
.dcw-product-card--style2 .dcw-product-card__floating { top: 18px; right: 18px; }
.dcw-product-card--style2 .dcw-product-card__sale-badge { top: 12px; left: 12px; transform: rotate(-35deg); transform-origin: left top; border-radius: 4px; }
.dcw-product-card--style3 { gap: 0; padding: 0; overflow: hidden; }
.dcw-product-card--style3 .dcw-product-card__image { border-radius: 0; background: #ffffff; }
.dcw-product-card--style3 .dcw-product-card__body { padding: 16px 4px 0; }
.dcw-product-card--style3 .dcw-product-card__floating { top: 10px; right: 10px; }
.dcw-product-card--style3 .dcw-product-card__actions { justify-content: flex-start; }
.dcw-product-card__rating { margin-bottom: 10px; }
.dcw-product-card__attributes { margin: 0 0 12px; padding: 0; list-style: none; display: grid; gap: 4px; color: var(--dcw-card-meta, #64748b); font-size: 13px; line-height: 1.5; }
.dcw-product-card__excerpt { margin-top: 10px; color: #475569; font-size: 14px; line-height: 1.6; }

.dcw-product-card--style4 {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.dcw-product-card--style4 .dcw-product-card__media {
    margin-bottom: 14px;
    overflow: hidden;
    border-radius: 0;
    background: #ffffff;
}

.dcw-product-card--style4 .dcw-product-card__image {
    border-radius: 0;
    background: #ffffff;
}

.dcw-product-card--style4 .dcw-product-card__image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.dcw-product-card--style4 .dcw-product-card__floating--style4 {
    top: 10px;
    right: 10px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

.dcw-product-card--style4 .dcw-product-card__sale-badge {
    top: 10px;
    left: 10px;
}

.dcw-product-card__hover-actions {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: stretch;
    gap: 0;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.dcw-product-card__hover-actions .added_to_cart,
.dcw-product-card__hover-actions .wc-forward {
    display: none !important;
}

.dcw-product-card--style4:hover .dcw-product-card__hover-actions,
.dcw-product-card--style4:focus-within .dcw-product-card__hover-actions {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dcw-product-card--style4:not(.dcw-product-card--actions-hover) .dcw-product-card__hover-actions {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

.dcw-product-card--style4 .dcw-product-card__hover-actions {
    background: #284e9b;
    flex-wrap: nowrap;
}

.dcw-product-card--style4 .dcw-product-card__hover-actions :is(.button, .dcw-action-button, .dcw-quick-view-trigger--bar) {
    flex: 1 1 50%;
    min-height: 44px;
    width: auto;
    margin: 0;
    border-radius: 0;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
    border: none;
    box-shadow: none;
    display: inline-flex;
}

.dcw-product-card--style4 .dcw-product-card__hover-actions .dcw-icon,
.dcw-product-card--style4 .dcw-product-card__hover-actions .dcw-icon :is(svg, i) {
    width: 14px;
    height: 14px;
    font-size: 14px;
}

.dcw-product-card--style4 .dcw-product-card__hover-actions .dcw-quick-view-trigger--bar {
    height: auto;
    min-width: 0;
    border-radius: 0;
}

.dcw-product-card--style4 .dcw-product-card__hover-actions > * + * {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.dcw-quick-view-trigger--bar {
    background: #284e9b;
    color: #ffffff;
}

.dcw-quick-view-trigger--bar:hover {
    background: #203f7c;
    color: #ffffff;
}

.dcw-product-card--style4 .dcw-product-card__body {
    padding: 0;
    gap: 0;
}

.dcw-product-card--style4 .dcw-product-card__meta {
    margin-bottom: 8px;
}

.dcw-product-card--style4 .dcw-product-card__title {
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
    text-transform: uppercase;
}

.dcw-product-card--style4 .dcw-product-card__price {
    font-size: 15px;
    font-weight: 500;
    color: #6b7280;
}

.dcw-product-slider {
    --dcw-slider-items: 3;
    --dcw-slider-gap: 16px;
    position: relative;
    overflow: hidden;
    padding-inline: var(--dcw-slider-side-space, 54px);
}

.dcw-product-slider__header { margin-bottom: 24px; text-align: center; }
.dcw-product-slider__title { margin: 0; color: #2d3748; font-size: clamp(24px, 3vw, 42px); line-height: 1.15; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }
.dcw-product-slider__viewport { overflow: hidden; width: 100%; }
.dcw-product-slider__track { display: flex; gap: var(--dcw-slider-gap); align-items: stretch; will-change: transform; transition: transform 0.35s ease; }
.dcw-product-slider__slide { display: flex; flex: 0 0 calc((100% - (var(--dcw-slider-gap) * (var(--dcw-slider-items) - 1))) / var(--dcw-slider-items)); min-width: 0; }
.dcw-product-slider__slide .dcw-product-card { width: 100%; height: 100%; min-height: var(--dcw-slider-card-min-height, 360px); }
.dcw-product-slider .dcw-product-card__media { flex: 0 0 auto; overflow: hidden; }
.dcw-product-slider .dcw-product-card__image { display: block; aspect-ratio: var(--dcw-slider-image-ratio, 4 / 3); }
.dcw-product-slider .dcw-product-card__image img { width: 100%; height: 100%; object-fit: cover; }
.dcw-product-slider .dcw-product-card__body { display: flex; flex: 1 1 auto; flex-direction: column; }
.dcw-product-slider .dcw-product-card__title { min-height: 2.8em; }
.dcw-product-slider .dcw-product-card__actions { margin-top: auto; }
.dcw-product-slider .dcw-product-card__sale-badge--strip { top: 0; left: 0; min-width: 96px; justify-content: center; border-radius: 0; background: #ed1c24; color: #ffffff; transform: translate(var(--dcw-sale-ribbon-x, -31px), var(--dcw-sale-ribbon-y, 18px)) rotate(var(--dcw-sale-ribbon-angle, -45deg)); transform-origin: center; font-size: 10px; letter-spacing: 0.14em; }
.dcw-product-slider__arrow { position: absolute; top: 50%; z-index: 4; display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border: 1px solid rgba(15, 23, 42, 0.12); border-radius: 50%; background: #ffffff; color: #0f172a; box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16); cursor: pointer; transform: translateY(-50%); transition: background-color 0.18s ease, color 0.18s ease, opacity 0.18s ease, transform 0.18s ease; }
.dcw-product-slider__arrow:hover { transform: translateY(-50%) scale(1.04); }
.dcw-product-slider__arrow:disabled { opacity: 0.35; cursor: not-allowed; }
.dcw-product-slider__arrow--prev { left: 8px; }
.dcw-product-slider__arrow--next { right: 8px; }
.dcw-product-slider__pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 18px; }
.dcw-product-slider--no-nav .dcw-product-slider__arrow,
.dcw-product-slider--no-nav .dcw-product-slider__pagination { display: none !important; }
.dcw-product-slider--no-nav { padding-inline: 0; }
.dcw-product-slider--arrows-top,
.dcw-product-slider--arrows-bottom { padding-inline: 0; }
.dcw-product-slider--arrows-top { padding-top: 54px; }
.dcw-product-slider--arrows-bottom { padding-bottom: 54px; }
.dcw-product-slider--arrows-top .dcw-product-slider__arrow,
.dcw-product-slider--arrows-bottom .dcw-product-slider__arrow { top: auto; bottom: auto; transform: none; }
.dcw-product-slider--arrows-top .dcw-product-slider__arrow { top: 0; }
.dcw-product-slider--arrows-bottom .dcw-product-slider__arrow { bottom: 0; }
.dcw-product-slider--arrows-top .dcw-product-slider__arrow--prev,
.dcw-product-slider--arrows-bottom .dcw-product-slider__arrow--prev { left: auto; right: 58px; }
.dcw-product-slider--arrows-top .dcw-product-slider__arrow--next,
.dcw-product-slider--arrows-bottom .dcw-product-slider__arrow--next { right: 8px; }
.dcw-product-slider__dot { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 999px; background: #cbd5e1; cursor: pointer; transition: width 0.18s ease, background-color 0.18s ease; }
.dcw-product-slider__dot.is-active { width: 24px; background: #0f172a; }
.dcw-product-slider--style2 .dcw-product-card { border-radius: 0; box-shadow: none; }
.dcw-product-slider--style2 .dcw-product-card__media { margin-bottom: 0; }
.dcw-product-slider--style2 .dcw-product-card__image { border-radius: 0; }
.dcw-product-slider--style2 .dcw-product-card__body { background: #39a935; color: #ffffff; }
.dcw-product-slider__empty { display: flex; justify-content: center; padding: 24px 0; }
.dcw-product-slider__empty .dcw-empty-state { display: grid; gap: 6px; width: min(100%, 520px); padding: 28px 24px; border: 1px dashed rgba(15, 23, 42, 0.18); border-radius: 18px; background: rgba(248, 250, 252, 0.92); color: #475569; text-align: center; box-shadow: none; }
.dcw-product-slider__empty .dcw-empty-state strong { color: #0f172a; font-size: 16px; }
.dcw-product-slider__empty .dcw-empty-state span { font-size: 14px; line-height: 1.5; }

.dcw-filter-toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.dcw-filter-toolbar__group { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.dcw-filter-chip { padding: 10px 16px; border: 1px solid rgba(15, 23, 42, 0.08); border-radius: 999px; background: #fff; color: #0f172a; cursor: pointer; }
.dcw-filter-chip.is-active { background: #3b82f6; color: #fff; }
.dcw-filter-select {
    min-width: 220px;
    min-height: 44px;
    padding: 10px 16px;
    border: 1px solid #dbe5f0;
    border-radius: 999px;
    background: #fff;
    color: #0f172a;
    box-shadow: none;
}
.dcw-shop-layout { display: grid; gap: 32px; }
.dcw-shop-layout.has-sidebar { grid-template-columns: minmax(220px, var(--dcw-shop-sidebar-width, 280px)) minmax(0, 1fr); align-items: start; }
.dcw-shop-sidebar { position: sticky; top: var(--dcw-shop-sticky-top, 24px); display: grid; gap: 22px; }
.dcw-shop-filter-title { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: #0f172a; }
.dcw-shop-filter-block { display: grid; gap: 14px; }
.dcw-shop-filter-block__title { font-size: 18px; color: #0f172a; }
.dcw-shop-filter-block__toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 0; border: 0; background: transparent; text-align: left; cursor: pointer; }
.dcw-shop-filter-block__toggle::after { content: '+'; font-size: 18px; line-height: 1; color: #0f172a; transition: transform 0.18s ease; }
.dcw-shop-filter-block__toggle.is-active::after { content: '-'; }
.dcw-shop-filter-block__content { display: none; }
.dcw-shop-filter-block__content.is-open { display: grid; gap: 14px; }
.dcw-shop-price-slider { margin: 10px 10px 4px; }
.dcw-shop-price-meta { margin-top: 10px; font-size: 14px; color: #475569; }
.dcw-shop-price-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; align-items: center; }
.dcw-shop-price-box { display: flex; align-items: center; width: 100%; min-height: 44px; padding: 8px 12px; border: 1px solid #dbe5f0; border-radius: 12px; background: #f8fafc; transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease; }
.dcw-shop-price-box:focus-within { border-color: #2563eb; box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12); background: #fff; }
.dcw-shop-price-currency { margin-right: 8px; font-weight: 600; color: #0f172a; }
.dcw-shop-price-fields input { width: 100%; min-height: auto; border: 0; border-radius: 0; padding: 0; background: transparent; box-shadow: none; }
.dcw-shop-categories { display: grid; gap: 10px; max-height: 420px; overflow: auto; }
.dcw-shop-check { display: flex; gap: 10px; align-items: center; font-size: 14px; color: #334155; transition: opacity 0.18s ease; }
.dcw-shop-check__label { flex: 1; }
.dcw-shop-check__count { color: #64748b; font-size: 13px; line-height: 1; }
.dcw-shop-check.is-disabled { opacity: 0.45; cursor: not-allowed; }
.dcw-shop-check.is-hidden { display: none; }
.dcw-shop-toggle-terms { margin-top: 10px; border: 0; background: transparent; padding: 0; color: #1d4ed8; font-size: 13px; font-weight: 600; text-decoration: underline; text-underline-offset: 2px; cursor: pointer; }
.dcw-shop-toolbar { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.dcw-shop-toolbar__controls { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.dcw-shop-results-count { color: #64748b; }
.dcw-shop-switcher { display: inline-flex; align-items: center; gap: 8px; }
.dcw-shop-switcher__btn { min-width: 42px; min-height: 42px; border: 1px solid #dbe5f0; border-radius: 999px; background: #fff; color: #334155; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; padding: 0 12px; }
.dcw-shop-switcher__btn.is-active { background: #eff6ff; color: #2563eb; border-color: #2563eb; }
.dcw-shop-switcher__icon { display: inline-flex; align-items: center; justify-content: center; gap: 3px; }
.dcw-shop-switcher__icon-bar { width: 5px; height: 16px; border-radius: 999px; background: currentColor; display: block; }
.dcw-shop-orderby { min-width: 200px; min-height: 42px; border: 1px solid #dbe5f0; border-radius: 999px; padding: 0 16px; background: #fff; }
.dcw-shop-loadmore-wrap { margin-top: 28px; text-align: center; }
.dcw-shop-loadmore { min-width: 180px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; }
.dcw-shop-loadmore__spinner { width: 16px; height: 16px; border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%; opacity: 0; transform: scale(0.8); transition: opacity 0.18s ease, transform 0.18s ease; }
.dcw-shop-loadmore.is-loading .dcw-shop-loadmore__spinner { opacity: 1; transform: scale(1); animation: dcw-spin 0.8s linear infinite; }
.dcw-shop-loadmore .dcw-inline-loading-spinner { display: inline-flex; align-items: center; justify-content: center; }
.dcw-shop-loadmore .dcw-inline-loading-spinner svg { width: 16px; height: 16px; }
.dcw-shop-pagination-wrap { margin-top: 28px; }
.dcw-shop-pagination { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.dcw-shop-pagination__item { min-width: 42px; min-height: 42px; border: 1px solid #dbe5f0; border-radius: 999px; background: #fff; color: #334155; cursor: pointer; }
.dcw-shop-pagination__item.is-active { background: #eff6ff; color: #2563eb; border-color: #2563eb; }
.dcw-shop-results { position: relative; }
.dcw-shop-results-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, 0.86); z-index: 4; }
.dcw-shop-results-overlay__spinner { width: 42px; height: 42px; border: 4px solid #e2e8f0; border-top-color: #1d4ed8; border-radius: 50%; animation: dcw-spin 0.75s linear infinite; }
.dcw-shop-widget.is-loading { transition: opacity 0.18s ease; }
.dcw-shop-results.is-loading .dcw-products-grid { opacity: 0.45; }
.ui-slider { height: 4px; background: #e7ecf4; border: none; border-radius: 999px; position: relative; overflow: visible !important; }
.ui-slider-range { position: absolute !important; top: 0; bottom: 0; display: block !important; background: #1b4066 !important; border-radius: 999px; height: 100%; z-index: 1; }
.ui-slider-handle { width: 18px; height: 18px; display: block !important; position: absolute !important; box-sizing: border-box !important; z-index: 3; background: #fff; border: 2px solid #cad6ea; border-radius: 50%; top: 50%; margin-left: -9px; cursor: pointer; box-shadow: 0 3px 10px rgba(15, 23, 42, 0.14); outline: none; transform: translateY(-50%); transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background-color .2s ease; touch-action: none; }
.ui-slider-handle::before { content: ""; position: absolute; inset: 50% auto auto 50%; width: 6px; height: 6px; margin: -3px 0 0 -3px; border-radius: 50%; background: #1b4066; }
.ui-slider-handle:hover,
.ui-slider-handle:focus { border-color: #2f5bff; box-shadow: 0 0 0 4px rgba(47, 91, 255, 0.14); transform: translateY(-50%) scale(1.05); }
.dcw-wishlist-page__header { margin-bottom: 22px; }
.dcw-shop-layout.filter-pos-right { grid-template-columns: minmax(0, 1fr) minmax(220px, var(--dcw-shop-sidebar-width, 280px)); }
.dcw-shop-layout.filter-pos-right .dcw-shop-sidebar { order: 2; }
.dcw-shop-layout.filter-pos-right .dcw-shop-main { order: 1; }
.dcw-shop-mobilebar { display: none; margin-bottom: 18px; }
.dcw-shop-filter-toggle { display: inline-flex; align-items: center; gap: 10px; border-radius: 999px; }
.dcw-shop-filter-overlay { position: fixed; inset: 0; z-index: 99994; background: rgba(15, 23, 42, 0.4); }
.dcw-shop-sidebar__header { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.dcw-shop-sidebar__footer { display: none; gap: 12px; margin-top: 8px; padding-top: 8px; }
.dcw-shop-apply { width: 100%; max-width: 100%; min-height: 46px; padding: 12px 18px; line-height: 1.2; justify-content: center; align-items: center; font-size: 15px; }
.dcw-shop-filter-close { display: none; width: 38px; height: 38px; border: 0; border-radius: 50%; background: #eef2f7; color: #0f172a; cursor: pointer; }
.dcw-shop-selected { display: flex; flex-wrap: wrap; gap: 10px; }
.dcw-shop-selected--top { margin-bottom: 18px; }
.dcw-shop-selected__chip, .dcw-shop-selected__clear { display: inline-flex; align-items: center; gap: 8px; min-height: 36px; padding: 8px 14px; border: 1px solid #dbe5f0; border-radius: 999px; background: #fff; color: #0f172a; cursor: pointer; }
.dcw-shop-selected__chip span { font-size: 16px; line-height: 1; }
.dcw-shop-selected__clear { background: #eff6ff; color: #2563eb; }
.dcw-shop-sidebar:not(.is-sticky) { position: static; }
.dcw-single-product-gallery,
.dcw-single-product-summary,
.dcw-single-product-tabs,
.dcw-single-related { width: 100%; }
.dcw-single-product-gallery { display: grid; gap: 16px; }
.dcw-single-product-gallery__main { position: relative; border: 1px solid rgba(15, 23, 42, 0.08); border-radius: 24px; overflow: hidden; background: #ffffff; }
.dcw-single-product-gallery__main img { display: block; width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: contain; background: #ffffff; }
.dcw-single-product-gallery__badge { position: absolute; top: 18px; left: 18px; z-index: 2; }
.dcw-single-product-gallery__thumbs { display: grid; grid-template-columns: repeat(auto-fit, minmax(78px, 1fr)); gap: 12px; }
.dcw-single-product-gallery__thumb { padding: 0; border: 1px solid rgba(15, 23, 42, 0.08); border-radius: 18px; background: #ffffff; overflow: hidden; cursor: pointer; transition: border-color 0.18s ease, transform 0.18s ease; }
.dcw-single-product-gallery__thumb.is-active { border-color: #2563eb; transform: translateY(-1px); }
.dcw-single-product-gallery__thumb img { display: block; width: 100%; height: 100%; aspect-ratio: 1 / 1; object-fit: contain; background: #ffffff; }
.dcw-single-product-summary { display: grid; gap: 16px; }
.dcw-single-product-summary__category { color: #64748b; font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; }
.dcw-single-product-summary__title { margin: 0; color: #0f172a; font-size: clamp(28px, 4vw, 42px); line-height: 1.1; }
.dcw-single-product-title { margin: 0; color: #0f172a; font-size: clamp(28px, 4vw, 42px); line-height: 1.1; }
.dcw-single-product-summary__price { color: #0f172a; font-size: clamp(22px, 3vw, 32px); font-weight: 700; }
.dcw-single-product-price-wrap { display: grid; gap: 8px; }
.dcw-single-product-price-display { color: #0f172a; font-size: clamp(22px, 3vw, 32px); font-weight: 700; }
.dcw-single-product-price-stock .stock { margin: 0; color: #2f6f3e; font-weight: 600; }
.dcw-single-product-summary__excerpt { color: #475569; line-height: 1.75; }
.dcw-single-product-summary__stock .stock { margin: 0; color: #2f6f3e; font-weight: 600; }
.dcw-single-product-summary__cart-form form.cart { display: grid; gap: 16px; }
.dcw-single-product-summary__cart-form .dcw-product-add-to-cart-widget,
.dcw-single-product-summary__cart-form .dcw-quick-actions--form,
.dcw-single-product-summary__cart-form .dcw-quick-cart-form { width: 100%; }
.dcw-single-product-summary__cart-form table.variations { margin: 0; }
.dcw-single-product-summary__cart-form table.variations tr { margin-bottom: 14px; }
.dcw-single-product-summary__cart-form .reset_variations { display: inline-flex; margin-top: 8px; font-size: 13px; color: #2563eb; text-decoration: none; }
.dcw-single-product-summary__cart-form .woocommerce-variation-description,
.dcw-single-product-summary__cart-form .woocommerce-variation-price,
.dcw-single-product-summary__cart-form .woocommerce-variation-availability { margin-bottom: 10px; }
.dcw-single-product-summary__cart-form .single_add_to_cart_button { min-height: 48px; }
.dcw-single-product-summary__actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.dcw-single-product-summary__actions .dcw-wishlist-toggle { width: 48px; height: 48px; flex: 0 0 48px; }
.dcw-single-product-summary__meta { display: grid; gap: 10px; padding-top: 10px; border-top: 1px solid rgba(15, 23, 42, 0.08); color: #475569; }
.dcw-single-product-meta-wrap { display: grid; gap: 10px; color: #475569; }
.dcw-single-product-meta-row { display: flex; flex-wrap: wrap; gap: 8px; align-items: baseline; padding: 0 0 10px; border-bottom: 1px solid rgba(15, 23, 42, 0.08); }
.dcw-single-product-meta-row:last-child { padding-bottom: 0; border-bottom: 0; }
.dcw-single-product-meta-row strong { color: #0f172a; }
.dcw-product-add-to-cart-widget { width: 100%; }
.dcw-product-add-to-cart-widget .dcw-quick-actions--form,
.dcw-product-add-to-cart-widget .dcw-quick-cart-form,
.dcw-product-add-to-cart-widget .dcw-quick-cart-form form.cart { width: 100%; }
.dcw-product-add-to-cart-widget .dcw-quick-cart-form .woocommerce-variation-add-to-cart,
.dcw-product-add-to-cart-widget .dcw-quick-cart-form .variations_button { width: 100%; }
.dcw-product-add-to-cart-widget .dcw-quick-cart-form .woocommerce-variation-add-to-cart,
.dcw-product-add-to-cart-widget .dcw-quick-cart-form .variations_button { align-items: stretch; }
.dcw-product-add-to-cart-widget .dcw-quick-cart-form .quantity { min-width: 158px; }
.dcw-product-add-to-cart-widget .dcw-quick-cart-form .single_add_to_cart_button,
.dcw-product-add-to-cart-widget .dcw-quick-cart-form .dcw-buy-now { min-height: 48px; }
.dcw-product-add-to-cart-widget .dcw-quick-cart-form .dcw-buy-now { justify-content: center; }
.dcw-single-product-tabs { display: grid; gap: 18px; }
.dcw-single-product-tabs__nav { display: flex; flex-wrap: wrap; gap: 12px; border-bottom: 1px solid rgba(15, 23, 42, 0.08); }
.dcw-single-product-tabs__trigger { padding: 0 0 14px; border: 0; border-bottom: 2px solid transparent; background: transparent; color: #64748b; font-weight: 600; cursor: pointer; }
.dcw-single-product-tabs__trigger.is-active { color: #0f172a; border-bottom-color: #2563eb; }
.dcw-single-product-tabs__panel { display: none; color: #334155; line-height: 1.8; }
.dcw-single-product-tabs__panel.is-active { display: block; }
.dcw-single-product-tabs__panel iframe,
.dcw-single-product-tabs__panel video,
.dcw-single-product-tabs__panel table { max-width: 100%; }
.dcw-single-related { display: grid; gap: 22px; }
.dcw-single-related__title { margin: 0; color: #0f172a; font-size: clamp(24px, 3vw, 34px); line-height: 1.15; }

@media (max-width: 1024px) {
    .dcw-wishlist-items { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .dcw-products-grid.columns-tablet-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }
    .dcw-products-grid.columns-tablet-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
    .dcw-products-grid.columns-tablet-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
    .dcw-products-grid.columns-tablet-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
	    .dcw-shop-mobilebar { display: block; }
	    .dcw-shop-layout.has-sidebar,
	    .dcw-shop-layout.filter-pos-right { grid-template-columns: 1fr; }
    .dcw-shop-sidebar { position: fixed; top: 0; left: 0; z-index: 99995; width: min(var(--dcw-shop-offcanvas-width, 320px), 88vw); height: 100vh; padding: 24px; background: #fff; box-shadow: 0 24px 60px rgba(15, 23, 42, 0.24); transform: translateX(-100%); transition: transform 0.25s ease; overflow: auto; display: flex; flex-direction: column; gap: 20px; }
    .dcw-shop-layout.filter-pos-right .dcw-shop-sidebar { left: auto; right: 0; transform: translateX(100%); }
    .dcw-shop-sidebar.is-open { transform: translateX(0); }
	    .dcw-shop-filter-close { display: inline-flex; align-items: center; justify-content: center; }
	        .dcw-shop-toolbar__controls { width: 100%; justify-content: space-between; }
	        body.dcw-shop-filters-open { overflow: hidden; }
    .dcw-shop-sidebar__footer { display: grid; position: sticky; bottom: -24px; margin-top: auto; padding: 16px 0 calc(8px + env(safe-area-inset-bottom, 0px)); background: #fff; border-top: 1px solid rgba(15, 23, 42, 0.08); z-index: 4; }
    .dcw-single-product-title { font-size: 30px; }
    .dcw-single-product-summary__title { font-size: 30px; }
    .dcw-single-product-gallery__main { border-radius: 20px; }
    .dcw-single-product-gallery__thumbs { grid-template-columns: repeat(auto-fit, minmax(68px, 1fr)); }
    .dcw-single-product-summary { gap: 14px; }
    .dcw-single-product-summary__cart-form .dcw-quick-cart-form .woocommerce-variation-add-to-cart,
    .dcw-single-product-summary__cart-form .dcw-quick-cart-form .variations_button,
    .dcw-product-add-to-cart-widget .dcw-quick-cart-form .woocommerce-variation-add-to-cart,
    .dcw-product-add-to-cart-widget .dcw-quick-cart-form .variations_button { display: grid; grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
    .dcw-wishlist-items { grid-template-columns: 1fr; }
    .dcw-products-grid.columns-mobile-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }
    .dcw-products-grid.columns-mobile-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
    .dcw-products-grid { gap: 16px; }
    .dcw-product-card--style2 .dcw-product-card__body { padding: 16px 14px 2px; }
    .dcw-product-slider { --dcw-slider-side-space: 42px; }
    .dcw-product-slider__arrow { width: 34px; height: 34px; }
    .dcw-product-slider__arrow--prev { left: 4px; }
    .dcw-product-slider__arrow--next { right: 4px; }
    .dcw-product-slider--arrows-top { padding-top: 44px; }
    .dcw-product-slider--arrows-bottom { padding-bottom: 44px; }
    .dcw-product-slider--arrows-top .dcw-product-slider__arrow--prev,
    .dcw-product-slider--arrows-bottom .dcw-product-slider__arrow--prev { left: auto; right: 46px; }
    .dcw-product-slider--arrows-top .dcw-product-slider__arrow--next,
    .dcw-product-slider--arrows-bottom .dcw-product-slider__arrow--next { right: 4px; }
    .dcw-single-product-meta-row { display: grid; gap: 4px; }
    .dcw-single-product-summary__actions { display: grid; grid-template-columns: 1fr; }
    .dcw-single-product-gallery { gap: 12px; }
    .dcw-single-product-gallery__main { border-radius: 18px; }
    .dcw-single-product-gallery__main img { max-height: min(54vh, 360px); }
    .dcw-single-product-gallery__thumbs { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
    .dcw-single-product-summary { gap: 12px; }
    .dcw-single-product-summary__category { font-size: 12px; letter-spacing: 0.08em; }
    .dcw-single-product-title,
    .dcw-single-product-summary__title { font-size: clamp(24px, 7vw, 32px); }
    .dcw-single-product-price-display,
    .dcw-single-product-summary__price { font-size: clamp(20px, 6vw, 28px); }
    .dcw-single-product-summary__excerpt { line-height: 1.65; }
    .dcw-single-product-summary__cart-form form.cart,
    .dcw-product-add-to-cart-widget .dcw-quick-cart-form form.cart { gap: 12px; }
    .dcw-single-product-summary__cart-form .dcw-quick-cart-form .quantity,
    .dcw-single-product-summary__cart-form .dcw-quick-cart-form .single_add_to_cart_button,
    .dcw-single-product-summary__cart-form .dcw-quick-cart-form .dcw-buy-now,
    .dcw-product-add-to-cart-widget .dcw-quick-cart-form .quantity,
    .dcw-product-add-to-cart-widget .dcw-quick-cart-form .single_add_to_cart_button,
    .dcw-product-add-to-cart-widget .dcw-quick-cart-form .dcw-buy-now { width: 100%; }
    .dcw-single-product-summary__cart-form .dcw-quick-cart-form .quantity,
    .dcw-product-add-to-cart-widget .dcw-quick-cart-form .quantity { min-width: 0; }
    .dcw-single-product-tabs { gap: 14px; }
    .dcw-single-product-tabs__nav { gap: 10px; }
    .dcw-single-product-tabs__trigger { padding-bottom: 10px; font-size: 14px; }
    .dcw-single-product-tabs__panel { line-height: 1.7; }
    .dcw-single-related { gap: 18px; }
    .dcw-product-card__hover-actions .button {
        min-height: 42px;
        padding: 10px 12px;
        font-size: 12px;
    }
}
