.woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image {
    /* display: block !important; */
    /* margin-bottom: 18px; */
}

/* Make images responsive and cursor hint for zoom */
.woocommerce-product-gallery__image img.wp-post-image {
    width: 100%;
    height: auto;
    display: block;
    cursor: zoom-in;
}

/* Optional small visual tweak for anchor */
.woocommerce-product-gallery__image a {
    display: block;
}
.product_detail_wrap {
    max-width: 37em;
}
.full-description p {
    margin-bottom: 0
}
.product_title {
    letter-spacing: 2px;
}
.price {
    font-family: var(--heading-font);
    font-size: 2em;
    margin-bottom: 0.7em;
}
span.attr-label {
    font-weight: 600;
}
form.cart {
    display: flex;
    gap: 5px;
}
.woocommerce .quantity .qty {
    height: 100%;
    border-color: var(--primary);
    border-width: 1px;
    width: 3.231em;
    border-radius: 0;
}
.woocommerce .cart button.single_add_to_cart_button {
    background: var(--primary) !important;
    font-weight: 400;
    text-transform: uppercase;
    font-family: var(--heading-font);
    letter-spacing: 1px;
    padding: 1em 3em;
    border-radius: 0;
    border: 1px solid var(--primary);
    transition: all 0.4s
}
.woocommerce .cart button.single_add_to_cart_button:hover {
    background: transparent !important;
    color: var(--primary)
}
section.related.products {
    margin-top: 3em;
}
section.related.products > h2 {
    text-align: center;
    margin-bottom: 1.5em;
}
.slick-arrow {
    position: absolute;
    border: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    background: #fff;
    transition: all 0.3s;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    top: 30%;
    z-index: 9;
}
.slick-arrow:hover {
    background: var(--primary);
    color: #fff;
}
.slick-arrow.slick-disabled {
    display: none !important;
}
.slick-arrow.slick-prev{
    left: -0.6em;
}
.slick-arrow.slick-next{
    right: -0.6em;
}
.slick-dots {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 5px;
    padding: 0;
}
.slick-dots li button {
    font-size: 0;
    border: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d9d9d9;
    transition: all 0.5s;
}
.slick-dots li.slick-active button {
    background: var(--primary);
}