.product-card {
    background: #fff;
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-image img {
    max-height: 150px;
    object-fit: contain;
    margin-bottom: 12px;
}

.product-card .product-title {
    color: var(--Greyscale-Grey-800, #555);
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Sora;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    min-height: 50px;
}

.product-card .product-price {
    margin-bottom: 30px;
    max-height: unset;
    display: block;
}

.product-card .product-price span.woocommerce-Price-amount.amount {
    font-size: 24px;
    font-weight: 600;
    line-height: 24px;
}

.product-card form.cart {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}


.product-card .quantity-wrap {
    width: 49%;
    max-height: 60px;
    padding: 13px 0;
    display: flex;
    border-radius: 50px;
    background: var(--Brand-Secondary-Orange-100, #FAF9F7);
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

.product-card .quantity-wrap button.qty-btn {
    line-height: unset;
    padding: 0 13px;
    color: var(--Greyscale-Grey-900, #181A1B);
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Sora;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    height: 34px;
    border: unset;
}

.product-card .quantity-wrap button.qty-btn:focus{
	background: none;
}

.product-card .quantity-wrap input.input-qty {
    max-width: 52px;
    color: var(--Greyscale-Grey-900, #181A1B);
    border: unset;
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Sora;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    height: 34px;
    background: unset;
    padding: unset;
}

.product-card .quantity-wrap button.qty-btn:hover {
    background: #495F48;
}

.product-card .add-to-cart-button svg {
    min-height: 22px;
    min-width: 22px;
}

.woocommerce .product-card form.cart::after,
.woocommerce .product-card form.cart::before {
    display: none;
}

.product-card .add-to-cart-button {
    width: 49%;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    color: var(--Basic-White, #FFF);
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Sora;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 50px;
    color: #181A1B;
    border: 1px solid #D2CFCF;
    background: white;
}

.product-card .add-to-cart-button:hover {
    border: 1px solid var(--Greyscale-Grey-800, #555);
    background: var(--Brand-Primary-Green-300, #495F48);
    color: white;
}

@media(min-width:768px) {
    .swiper-slide.product-card {
        padding: 32px;
    }
}

.swiper-wrapper a.product-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-wrapper .product-image img {
    object-fit: contain;
    align-self: center;
    max-height: unset;
}

.top-buttons,
.also-buttons,
.pair-buttons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-buttons .previous-button-top,
.top-buttons .next-button-top,
.also-buttons .previous-button-also,
.also-buttons .next-button-also,
.pair-buttons .next-button-pair,
.pair-buttons .previous-button-pair {
    width: 61.783px;
    height: 58px;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 100px;
    justify-content: center;
    cursor: pointer;
}

.swiper-pagination-top,
.swiper-pagination-also,
.swiper-pagination-pair {
    position: unset !important;
    padding-top: 32px;
}

.swiper-pagination-top .swiper-pagination-bullet,
.swiper-pagination-also .swiper-pagination-bullet,
.swiper-pagination-pair .swiper-pagination-bullet {
    width: 26px;
    height: 26px;
    background: white;
}

.swiper-pagination-top .swiper-pagination-bullet:not(.swiper-pagination-bullet-active),
.swiper-pagination-also .swiper-pagination-bullet:not(.swiper-pagination-bullet-active),
.swiper-pagination-pair .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.swiper-pagination-top .swiper-pagination-bullet.swiper-pagination-bullet-active,
.swiper-pagination-also .swiper-pagination-bullet.swiper-pagination-bullet-active,
.swiper-pagination-pair .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #BBB37C;
}

body {
  user-select: none;
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* IE10+ */
}