/* Piercing Donut — WooCommerce shop and single product */
.pd-shop-page,
.pd-single-product {
    padding: 24px 0 64px;
    background: linear-gradient(180deg, #fff 0%, #fff9fb 100%);
}

/* Archive hero */
.pd-shop-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
    min-height: 250px;
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: var(--section-radius, 22px);
    background: linear-gradient(120deg, #fff1f6 0%, #f6ebe7 100%);
}
.pd-shop-hero > div:first-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(34px, 5vw, 68px);
}
.pd-shop-hero h1 {
    margin: 8px 0 0;
    font-size: clamp(44px, 5vw, 76px);
    line-height: .94;
}
.pd-shop-hero__visual {
    position: relative;
    overflow: hidden;
}
.pd-shop-hero__visual{background:linear-gradient(135deg,rgba(255,255,255,.18),rgba(255,255,255,.54));}

/* Toolbar */
.pd-shop-toolbar {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 50px;
    margin-bottom: 20px;
}
.pd-shop-toolbar__filter {
    display: none;
}
.pd-shop-toolbar__result {
    color: #80767a;
    font-size: 13px;
}
.pd-shop-toolbar__sort {
    margin-left: auto;
}
.pd-shop-toolbar__sort select {
    min-height: 42px;
    padding: 0 42px 0 18px;
    border: 1px solid #ecdde2;
    border-radius: 999px;
    background-color: #fff;
    color: #2a2426;
    font: inherit;
}

/* Sidebar and grid */
.pd-shop-page > .container,
.pd-single-product > .container {
    width: min(100% - clamp(32px, 5vw, 96px), var(--container-max, 1440px));
}
.pd-shop-layout {
    display: grid;
    grid-template-columns: minmax(230px, 268px) minmax(0, 1fr);
    gap: clamp(24px, 2.6vw, 40px);
    align-items: start;
}
.pd-shop-sidebar {
    position: sticky;
    top: 96px;
    align-self: start;
    padding: 24px;
    border: 1px solid rgba(235, 211, 220, .9);
    border-radius: 26px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 20px 60px rgba(109, 59, 78, .08);
    backdrop-filter: blur(16px);
}
.pd-shop-sidebar__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}
.pd-shop-sidebar__head > div {
    display: grid;
    gap: 4px;
}
.pd-shop-sidebar__eyebrow {
    color: #d9537e;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.pd-shop-sidebar__head strong {
    color: #1d181a;
    font-size: 19px;
    line-height: 1.15;
}
.pd-shop-sidebar__head button {
    display: none;
}
.pd-shop-sidebar__nav {
    display: grid;
    gap: 8px;
}
.pd-shop-sidebar__group {
    display: grid;
    gap: 4px;
}
.pd-shop-sidebar__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 14px;
    color: #282124;
    font-size: 14px;
    font-weight: 650;
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.pd-shop-sidebar__item:hover {
    background: #fff2f6;
    color: #d9537e;
    transform: translateX(2px);
}
.pd-shop-sidebar__item small,
.pd-shop-sidebar__children small {
    color: #a59a9e;
    font-size: 11px;
    font-weight: 600;
}
.pd-shop-sidebar__item.is-active {
    background: linear-gradient(135deg, #fff0f5 0%, #f7e8f0 100%);
    color: #d9537e;
    box-shadow: inset 0 0 0 1px rgba(232, 85, 131, .16);
}
.pd-shop-sidebar__children {
    display: grid;
    gap: 2px;
    margin: 0 0 4px 10px;
    padding: 4px 0 4px 14px;
    border-left: 1px solid #f0dce3;
}
.pd-shop-sidebar__children a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 34px;
    padding: 0 10px;
    border-radius: 10px;
    color: #766c70;
    font-size: 13px;
    transition: background-color .2s ease, color .2s ease;
}
.pd-shop-sidebar__children a:hover,
.pd-shop-sidebar__children a.is-active {
    background: #fff5f8;
    color: #d9537e;
}
.pd-shop-sidebar__sale {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    margin-top: 8px;
    padding: 0 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ff7aa6 0%, #e84f7e 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 750;
    box-shadow: 0 12px 24px rgba(232, 79, 126, .18);
    transition: transform .2s ease, box-shadow .2s ease;
}
.pd-shop-sidebar__sale:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(232, 79, 126, .24);
}
.pd-shop-sidebar__note {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    margin-top: 20px;
    padding: 16px;
    border-radius: 18px;
    background: linear-gradient(145deg, #fff4f7, #fdf0f4);
}
.pd-shop-sidebar__note-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid #f1b7ca;
    border-radius: 50%;
    color: #e85583;
    font-size: 18px;
}
.pd-shop-sidebar__note p {
    margin: 5px 0 0;
    color: #756a6e;
    font-size: 12px;
    line-height: 1.5;
}
.pd-shop-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.pd-shop-products .pd-product-card,
.pd-related-products .pd-product-card {
    min-width: 0;
}
.pd-filter-backdrop {
    display: none;
}

/* Single product */
.pd-product-breadcrumbs {
    margin: 0 0 18px;
    color: #8c8386;
    font-size: 12px;
}
.pd-product-breadcrumbs .woocommerce-breadcrumb {
    margin: 0;
}
.pd-product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
    gap: clamp(34px, 5vw, 64px);
    align-items: start;
}
.pd-product-gallery-wrap {
    min-width: 0;
}
.pd-product-gallery-wrap .woocommerce-product-gallery {
    position: relative;
    width: 100%;
    float: none;
}
.pd-product-gallery-wrap .woocommerce-product-gallery__wrapper {
    overflow: hidden;
    border-radius: 26px;
    background: linear-gradient(145deg, #fff9fb, #f8edf2);
}
.pd-product-gallery-wrap .woocommerce-product-gallery__image img {
    width: 100%;
    aspect-ratio: 1 / 1.03;
    object-fit: cover;
}
.pd-product-gallery-wrap .woocommerce-product-gallery__trigger {
    position: absolute;
    z-index: 5;
    top: 16px;
    right: 16px;
    display: block;
    width: 46px;
    height: 46px;
    overflow: hidden;
    border: 1px solid rgba(227,111,151,.24);
    border-radius: 50%;
    background-color: rgba(255,255,255,.92);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23171417' stroke-width='1.8' stroke-linecap='round'%3E%3Ccircle cx='10.5' cy='10.5' r='6.5'/%3E%3Cpath d='m15.5 15.5 5 5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 23px 23px;
    color: transparent;
    text-indent: -9999px;
    box-shadow: 0 10px 28px rgba(72,40,51,.1);
    backdrop-filter: blur(10px);
}
.pd-product-gallery-wrap .woocommerce-product-gallery__trigger::before,
.pd-product-gallery-wrap .woocommerce-product-gallery__trigger::after { content: none; display: none; }
.pd-product-buybox {
    position: sticky;
    top: 108px;
    padding: 8px 0;
}
.pd-product-buybox__category a {
    color: #e85583;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.pd-product-buybox h1 {
    margin: 13px 0 10px;
    font-size: clamp(40px, 4vw, 66px);
    line-height: .96;
}
.pd-product-buybox__price {
    margin: 14px 0;
    color: #171417;
    font-size: 28px;
    font-weight: 750;
}
.pd-product-buybox__intro {
    max-width: 620px;
    color: #665d60;
    font-size: 15px;
    line-height: 1.65;
}
.pd-product-buybox__cart {
    margin: 25px 0 22px;
}
.pd-product-buybox form.cart {
    display: flex;
    align-items: stretch;
    gap: 12px;
}
.pd-product-buybox .quantity {
    display: grid;
    grid-template-columns: 42px 48px 42px;
    min-height: 54px;
    overflow: hidden;
    border: 1px solid #eadde1;
    border-radius: 999px;
    background: #fff;
}
.pd-product-buybox .quantity .pd-qty-button {
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #171417;
    font-size: 20px;
    cursor: pointer;
}
.pd-product-buybox .quantity .pd-qty-button:hover {
    background: #fff1f6;
    color: #d9537e;
}
.pd-product-buybox .quantity input.qty {
    width: 48px;
    min-width: 0;
    min-height: 52px;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: center;
    appearance: textfield;
}
.pd-product-buybox .quantity input.qty::-webkit-inner-spin-button,
.pd-product-buybox .quantity input.qty::-webkit-outer-spin-button {
    margin: 0;
    appearance: none;
}
.woocommerce .pd-product-buybox .single_add_to_cart_button.button {
    flex: 1;
    min-height: 54px;
    padding: 0 28px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff77a3, #e94e7d);
    color: #fff;
    box-shadow: 0 12px 28px rgba(233,78,125,.22);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: transform .2s ease, box-shadow .2s ease;
}
.woocommerce .pd-product-buybox .single_add_to_cart_button.button:hover {
    background: linear-gradient(135deg, #f96d9a, #df4575);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(233,78,125,.3);
}
.pd-product-trust {
    display: grid;
    margin: 22px 0;
    border-top: 1px solid #eee1e5;
}
.pd-product-trust > div {
    display: grid;
    grid-template-columns: 38px 1fr;
    column-gap: 10px;
    padding: 14px 0;
    border-bottom: 1px solid #eee1e5;
}
.pd-product-trust span {
    grid-row: 1 / 3;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff0f5;
    color: #e85583;
}

.pd-product-trust span svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.pd-product-trust strong {
    font-size: 14px;
}
.pd-product-trust small {
    color: #807679;
}
.pd-product-accordions details {
    border-bottom: 1px solid #eadde1;
}
.pd-product-accordions summary {
    display: flex;
    justify-content: space-between;
    padding: 17px 0;
    font-weight: 650;
    cursor: pointer;
}
.pd-product-accordions details[open] summary span {
    transform: rotate(45deg);
}
.pd-product-accordions details > div {
    padding: 0 0 20px;
    color: #675f61;
    line-height: 1.65;
}
.pd-product-accordions table {
    width: 100%;
}
.pd-product-story {
    margin: 58px 0;
    padding: clamp(38px, 5vw, 64px);
    border-radius: 26px;
    background: linear-gradient(120deg, #fff0f5, #f2e6df);
}
.pd-product-story h2 {
    max-width: 850px;
    margin: 0 0 16px;
    font-size: clamp(38px, 5vw, 72px);
    line-height: .98;
}
.pd-product-story p {
    max-width: 700px;
    margin: 0;
    color: #655d60;
    font-size: 17px;
    line-height: 1.65;
}
.pd-related-products {
    margin-top: 54px;
}
.pd-related-products__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.pd-section-heading h2 {
    margin: 0 0 24px;
    font-size: clamp(34px, 4vw, 58px);
}


.pd-related-products {
    margin-top: 54px;
    padding-inline: clamp(0px, 1vw, 12px);
}
.pd-related-products__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.pd-section-heading {
    padding-inline: clamp(0px, 1vw, 12px);
}

@media (max-width: 1199px) {
    .pd-shop-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .pd-product-layout {
        gap: 32px;
    }
}

@media (max-width: 991px) {
    .pd-shop-hero {
        grid-template-columns: 1fr;
        min-height: 230px;
    }
    .pd-shop-hero__visual {
        display: none;
    }
    .pd-shop-layout {
        grid-template-columns: 1fr;
    }
    .pd-shop-toolbar__filter {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        min-height: 42px;
        padding: 0 18px;
        border: 1px solid #eadde1;
        border-radius: 999px;
        background: #fff;
        color: #171416;
        -webkit-text-fill-color: #171416;
        -webkit-appearance: none;
        appearance: none;
    }
    .pd-shop-sidebar {
        position: fixed;
        z-index: 1002;
        top: 0;
        left: 0;
        width: min(90vw, 380px);
        height: 100dvh;
        overflow: auto;
        padding: 24px 20px;
        border: 0;
        border-radius: 0 24px 24px 0;
        transform: translateX(-102%);
        transition: transform .28s ease;
    }
    .pd-shop-sidebar__head button {
        display: grid;
        place-items: center;
        width: 40px;
        height: 40px;
        border: 1px solid #efdde3;
        border-radius: 50%;
        background: #fff;
        color: #292124;
        font-size: 26px;
        line-height: 1;
    }
    .pd-filter-backdrop {
        position: fixed;
        z-index: 1001;
        inset: 0;
        display: block;
        background: rgba(22,16,18,.38);
        opacity: 0;
        pointer-events: none;
        transition: opacity .25s ease;
    }
    .pd-filters-open .pd-shop-sidebar {
        transform: none;
    }
    .pd-filters-open .pd-filter-backdrop {
        opacity: 1;
        pointer-events: auto;
    }
    .pd-product-layout {
        grid-template-columns: 1fr;
    }
    .pd-product-buybox {
        position: static;
    }
    .pd-related-products__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .pd-shop-page,
    .pd-single-product {
        padding-top: 14px;
    }
    .pd-shop-hero {
        margin-bottom: 16px;
        border-radius: 18px;
    }
    .pd-shop-hero > div:first-child {
        padding: 30px 22px;
    }
    .pd-shop-hero h1 {
        font-size: 40px;
    }
    .pd-shop-toolbar {
        display: grid;
        grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
        gap: 10px;
        margin-bottom: 18px;
    }
    .pd-shop-toolbar__filter,
    .pd-shop-toolbar__sort {
        width: 100%;
        min-width: 0;
        margin: 0;
    }
    .pd-shop-toolbar__filter {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        min-height: 46px;
        padding: 0 14px;
        border: 1px solid #eddbe2;
        border-radius: 999px;
        background: #fff;
        color: #171417;
        font-size: 14px;
        font-weight: 700;
        line-height: 1;
    }
    .pd-shop-toolbar__filter span {
        font-size: 0;
    }
    .pd-shop-toolbar__filter span::before {
        content: "";
        display: block;
        width: 18px;
        height: 18px;
        background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23171417' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M4 7h16M7 12h10M10 17h4'/%3E%3C/svg%3E");
    }
    .pd-shop-toolbar__sort form,
    .pd-shop-toolbar__sort .woocommerce-ordering {
        width: 100%;
        margin: 0;
    }
    .pd-shop-toolbar__sort select {
        width: 100%;
        min-height: 46px;
        margin: 0;
        padding: 0 42px 0 16px;
        border: 1px solid #eddbe2;
        border-radius: 999px;
        background-color: #fff;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23171417' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m7 10 5 5 5-5'/%3E%3C/svg%3E");
        background-position: right 15px center;
        background-repeat: no-repeat;
        background-size: 16px;
        color: #171417;
        font-size: 14px;
        font-weight: 650;
        line-height: 1;
        appearance: none;
        -webkit-appearance: none;
    }
    .pd-shop-toolbar__filter {
        grid-column: 1;
        grid-row: 1;
    }
    .pd-shop-toolbar__sort {
        grid-column: 2;
        grid-row: 1;
    }
    .pd-shop-toolbar__result {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        margin: 0;
        color: #81767a;
        font-size: 12px;
        line-height: 1.4;
    }
    .pd-shop-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .pd-product-layout {
        gap: 22px;
    }
    .pd-product-gallery-wrap .woocommerce-product-gallery__wrapper {
        border-radius: 18px;
    }
    .pd-product-gallery-wrap .woocommerce-product-gallery__trigger {
        top: 10px;
        right: 10px;
        width: 42px;
        height: 42px;
    }
    .pd-product-buybox h1 {
        font-size: 40px;
    }
    .pd-product-buybox form.cart {
        display: grid;
        grid-template-columns: 132px minmax(0, 1fr);
    }
    .pd-product-story {
        margin: 40px 0;
        padding: 34px 22px;
    }
    .pd-related-products__grid {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }
    .pd-related-products__grid .pd-product-card {
        flex: 0 0 82%;
        scroll-snap-align: start;
    }
}

@media (max-width: 479px) {
    .pd-shop-grid {
        grid-template-columns: 1fr;
    }
    .pd-product-buybox form.cart {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        width: 100%;
    }
    .pd-product-buybox__cart,
    .pd-product-buybox form.cart,
    .woocommerce .pd-product-buybox .single_add_to_cart_button.button {
        width: 100%;
    }
    .woocommerce .pd-product-buybox .single_add_to_cart_button.button {
        display: inline-flex;
        min-height: 56px;
        align-items: center;
        justify-content: center;
        visibility: visible;
        opacity: 1;
    }
    .pd-product-buybox .quantity {
        width: 100%;
        grid-template-columns: 1fr 54px 1fr;
    }
    .pd-product-buybox .quantity input.qty {
        width: 54px;
    }
    .pd-related-products__grid .pd-product-card {
        flex-basis: 88%;
    }
}

/* Product gallery thumbnails and interaction */
.pd-product-gallery-wrap .flex-control-thumbs,
.pd-product-gallery-wrap .flex-control-thumbs li {
    list-style: none;
}

.pd-product-gallery-wrap .flex-control-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
    gap: 10px;
    margin: 14px 0 0;
    padding: 0;
}

.pd-product-gallery-wrap .flex-control-thumbs li {
    position: relative;
    width: auto;
    float: none;
    min-width: 0;
    margin: 0;
    padding: 0;
}

.pd-product-gallery-wrap .flex-control-thumbs li::marker {
    content: "";
}

.pd-product-gallery-wrap .flex-control-thumbs img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin: 0;
    border: 1px solid #f0dfe4;
    border-radius: 14px;
    background: #fff8fa;
    opacity: .72;
    transition: border-color .2s ease, box-shadow .2s ease, opacity .2s ease, transform .2s ease;
}

.pd-product-gallery-wrap .flex-control-thumbs img:hover,
.pd-product-gallery-wrap .flex-control-thumbs img:focus-visible {
    border-color: #ee8eae;
    opacity: 1;
    transform: translateY(-2px);
}

.pd-product-gallery-wrap .flex-control-thumbs img.flex-active {
    border-color: #ee5d8f;
    box-shadow: 0 0 0 3px rgba(238, 93, 143, .12);
    opacity: 1;
}

.pd-product-gallery-wrap .woocommerce-product-gallery__trigger {
    display: grid;
    place-items: center;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.pd-product-gallery-wrap .woocommerce-product-gallery__trigger:hover,
.pd-product-gallery-wrap .woocommerce-product-gallery__trigger:focus-visible {
    background-color: #fff;
    box-shadow: 0 14px 34px rgba(72, 40, 51, .16);
    transform: scale(1.05);
}

/* WooCommerce PhotoSwipe lightbox */
.pswp__bg {
    background: rgba(23, 20, 23, .94);
}

.pswp__top-bar,
.pswp__caption {
    background: transparent;
}

.pswp__button {
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .96);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}

.pswp__button--close {
    top: 18px;
    right: 18px;
}

.pswp__button--arrow--left,
.pswp__button--arrow--right {
    width: 52px;
    height: 52px;
    margin-top: -26px;
}

/* Shop pagination */
.pd-shop-products .woocommerce-pagination {
    display: flex;
    justify-content: center;
    margin: 42px 0 0;
}

.pd-shop-products .woocommerce-pagination ul.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 7px;
    border: 1px solid #f2dce4;
    border-radius: 999px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 12px 32px rgba(89, 50, 64, .07);
    list-style: none;
}

.pd-shop-products .woocommerce-pagination ul.page-numbers::before,
.pd-shop-products .woocommerce-pagination ul.page-numbers::after {
    content: none;
}

.pd-shop-products .woocommerce-pagination .page-numbers li {
    margin: 0;
    border: 0;
    list-style: none;
}

.pd-shop-products .woocommerce-pagination .page-numbers a,
.pd-shop-products .woocommerce-pagination .page-numbers span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #171417;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.pd-shop-products .woocommerce-pagination .page-numbers a:hover,
.pd-shop-products .woocommerce-pagination .page-numbers a:focus-visible {
    background: #fff1f5;
    color: #e84f82;
    transform: translateY(-1px);
}

.pd-shop-products .woocommerce-pagination .page-numbers .current {
    background: linear-gradient(135deg, #f4719d, #ed3f78);
    color: #fff;
    box-shadow: 0 8px 20px rgba(237, 63, 120, .22);
}

.pd-shop-products .woocommerce-pagination .page-numbers .prev,
.pd-shop-products .woocommerce-pagination .page-numbers .next {
    font-size: 0;
}

.pd-shop-products .woocommerce-pagination .page-numbers .prev::before,
.pd-shop-products .woocommerce-pagination .page-numbers .next::before {
    font-size: 18px;
    font-weight: 500;
}

.pd-shop-products .woocommerce-pagination .page-numbers .prev::before {
    content: "←";
}

.pd-shop-products .woocommerce-pagination .page-numbers .next::before {
    content: "→";
}

@media (max-width: 767px) {
    .pd-product-gallery-wrap .flex-control-thumbs {
        grid-template-columns: repeat(4, minmax(64px, 84px));
        gap: 9px;
        overflow-x: auto;
        padding: 2px 2px 8px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .pd-product-gallery-wrap .flex-control-thumbs::-webkit-scrollbar {
        display: none;
    }

    .pd-product-gallery-wrap .flex-control-thumbs li {
        scroll-snap-align: start;
    }

    .pd-product-gallery-wrap .woocommerce-product-gallery__trigger {
        width: 44px;
        height: 44px;
        background-size: 21px 21px;
    }

    .pd-shop-products .woocommerce-pagination {
        justify-content: center;
        margin: 30px 0 4px;
        overflow: visible;
    }

    .pd-shop-products .woocommerce-pagination ul.page-numbers {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        width: auto;
        max-width: 100%;
        margin: 0;
        padding: 0;
        overflow: visible;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .pd-shop-products .woocommerce-pagination .page-numbers li {
        flex: 0 0 auto;
    }

    .pd-shop-products .woocommerce-pagination .page-numbers a,
    .pd-shop-products .woocommerce-pagination .page-numbers span {
        width: 44px;
        height: 44px;
        border: 1px solid #eddbe2;
        border-radius: 50%;
        background: #fff;
        font-size: 14px;
    }

    .pd-shop-products .woocommerce-pagination .page-numbers .current {
        border-color: transparent;
        background: linear-gradient(135deg, #f4719d, #ed3f78);
        color: #fff;
        box-shadow: 0 8px 20px rgba(237, 63, 120, .2);
    }
}

.pd-shop-toolbar__filter svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
}
.pd-shop-sidebar__note-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}
