/**
 * Luna Solai – WooCommerce Final Clean Styles
 * Pixel-perfect for Figma
 */


/********************************************************************
 * PRODUCT MAIN SECTION (Gallery + Summary)
 ********************************************************************/
.ls-product-main {
    padding: 25px 0 60px;
    background: #fff;
}

.ls-product-main-inner {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* GALLERY ROUNDED */
.woocommerce-product-gallery__image img {
    border-radius: 20px !important;
    height: 489px !important;
    object-fit: cover;
    width: 100% !important;
}

/* TITLE */
.product_title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
}

/* PRICE */
.single-product .js-single-price .price {
    font-size: 32px;
    font-weight: 600;
    color: #242B32;
    display: flex;
    align-items: center;
}
.single-product .js-single-price .price del {
    order: 1;
    padding-left: 15px;
    font-size: 16px;
}

/* CART (base margin, layout further below) */
.single-product form.cart {
    margin-top: 12px;
}

/********************************************************************
 * BULLET BENEFITS UNDER TITLE (old class – kept in case it’s used)
 ********************************************************************/
.ls-product-bullets {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px 20px;
}

.ls-product-bullet strong {
    color: #2e7d32;
    font-size: 16px;
    display: block;
    margin-bottom: 3px;
}

/********************************************************************
 * ICON ROW
 ********************************************************************/
.ls-product-icons {
    padding: 29px 0;
    background: #F5FCFF;
}

.ls-product-icons-inner {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    text-align: center;
}

.ls-product-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #67B553;
    margin: 0 auto 10px;
}

.ls-product-icon-item {
    font-size: 14px;
    line-height: 1.4;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 13px;
    flex-direction: column;
}

/********************************************************************
 * REVIEWS BLOCK
 ********************************************************************/
.ls-product-reviews-block {
    padding: 60px 0;
}

.ls-product-rating-summary {
    display: flex;
    gap: 50px;
}

.ls-rating-number {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 6px;
}

.ls-rating-stars {
    margin-bottom: 6px;
}

.ls-rating-breakdown {
    flex: 1;
}

.ls-rating-row {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

.ls-rating-label {
    width: 60px;
    font-size: 14px;
}

.ls-rating-bar {
    height: 8px;
    flex: 1;
    border-radius: 6px;
    background: #e5e5e5;
    overflow: hidden;
    margin: 0 8px;
}

.ls-rating-bar-fill {
    height: 8px;
    background: #3FAE2A;
}

/********************************************************************
 * BENEFITS BLOCK
 ********************************************************************/
.ls-product-benefits {
    padding: 40px 0 15px;
    background: #F5FCFF;
}

.ls-product-benefits-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

/* IMAGE + DECOR */
.ls-product-benefits-image-frame {
    position: relative;
}

.ls-product-benefits-decoration {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid #FFCE5C;
    border-radius: 50%;
    top: 0;
    right: 0;
    display: none;
}

/********************************************************************
 * FAQ GRID
 ********************************************************************/
.ls-product-faq {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

.ls-faq-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
}

.ls-faq-item {
    background: #FAFAFA;
    border-radius: 12px;
    padding: 12px 14px;
    border: 1px solid #EEE;
}

/********************************************************************
 * CERTIFICATES GRID
 ********************************************************************/
.ls-product-certificates {
    padding: 40px 0;
    background: #FAF7F2;
}

.ls-product-cert-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

/********************************************************************
 * RELATED PRODUCTS
 ********************************************************************/
.related.products ul.products {
    display: flex !important;
    flex-wrap: wrap;
    gap: 20px !important;
}

.related.products ul.products li.product {
    width: calc(25% - 20px) !important;
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.06);
}

/********************************************************************
 * NEWSLETTER
 ********************************************************************/
.ls-product-newsletter {
    background-image: url('../images/newsletter-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
}

.ls-product-newsletter-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.ls-newsletter-form input {
    height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid #ddd;
}

.ls-newsletter-form button {
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 16px;
}

/********************************************************************
 * RESPONSIVE
 ********************************************************************/
@media (max-width: 991px) {
    .ls-product-main-inner,
    .ls-product-rating-summary,
    .ls-product-benefits-inner,
    .ls-product-newsletter-inner {
        grid-template-columns: 1fr;
    }

    .ls-product-icons-inner {
        grid-template-columns: repeat(3,1fr);
    }

    .ls-faq-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .ls-product-cert-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 640px) {
    .ls-product-icons-inner {
        grid-template-columns: repeat(2,1fr);
    }

    .ls-faq-grid,
    .ls-product-cert-grid {
        grid-template-columns: 1fr;
    }

    .related.products ul.products li.product {
        width: 100% !important;
    }
}

/********************************************************************
 * TOP RATING ROW ABOVE TITLE
 ********************************************************************/
.ls-top-rating-row {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #777;
    margin-bottom: 8px;
}

.ls-top-rating-row .star-rating {
    margin: 0;
    font-size: 14px; /* smaller stars */
}

.ls-top-rating-row .ls-rating-value {
    font-weight: 600;
    color: #333;
}

.ls-top-rating-row .ls-rating-count {
    color: #777;
}

.ls-stars {
    line-height: 1;
}

/********************************************************************
 * BULLETS GRID UNDER TITLE
 ********************************************************************/
.ls-bullets-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 13px;
    font-size: 15px;
    border-top: 2px solid #D3E7F0;
    padding-top: 25px;
    border-bottom: 2px solid #D3E7F0;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.ls-bullet-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    line-height: 1.5;
}

.ls-bullet-item strong {
    display: inline;
    font-weight: 700;
    margin-right: 4px;
}

/* green circular check icon */
.ls-check {
    display: inline-block;
    margin-top: 4px;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #57C249;
    position: relative;
}

.ls-check::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 5px;
    width: 4px;
    height: 8px;
    border: 2px solid #ffffff;
    border-top: 0;
    border-left: 0;
    transform: rotate(45deg);
}

/********************************************************************
 * CART ROW STYLING (qty + variation + add to cart)
 ********************************************************************/
.ls-product-summary form.cart {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 18px;
    margin-top: 18px;
    position: absolute;
    bottom: 68px;
    right: 0;   
    margin-top: 0;    
}
.ls-product-summary ul li {
    list-style: disc;
    margin-bottom: 10px;
}
.ls-product-summary ul li:last-child {
    margin-bottom: 0;
}
.ls-product-summary ul {
    padding-left: 15px;
    margin-bottom: 25px;
}
/* variation dropdown */
.ls-product-summary table.variations {
    border: 0;
    margin: 0;
}
.ls-product-summary table.variations tr,
.ls-product-summary table.variations td {
    display: block;
    padding: 0;
}

/* quantity box */
.ls-product-summary .quantity input {
    height: 63px;
    border-radius: 5px;
    padding: 10px 15px;
    width: 155px;
    height: 63px;
    background: #E1F6E3;
    border: 0;
    outline: none;
}

/* primary add to cart button */
.ls-product-summary .single_add_to_cart_button {
    background: #3FAE2A !important;
    padding: 12px 32px !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    font-weight: 600;
}

/* “Mergi la cos” outline button */
.ls-top-buttons {
    margin-top: 25px;
}
.ls-btn-outline {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid #3FAE2A;
    border-radius: 10px;
    font-weight: 600;
    color: #3FAE2A;
    transition: all 0.3s ease;
}
.ls-btn-outline:hover {
    background: #3FAE2A;
    color: #fff;
}


.woo-single-product .certi-grid-section {
    background: transparent;
}

.related.products > h2 {
    display: none;
}

.content-area.woo-single-product > .container {
    max-width: 100%;
    padding: 0;
}
.ls-product-icon-item > p {
    margin-bottom: 0;
}
.product-card-actions {
    margin-top: 20px;
}

.ls-product-benefits-text {
    max-width: 600px;
}
.ls-product-benefits-text p {
    margin-bottom: 30px;
}
.ls-product-benefits-text p:last-child {
    margin-bottom: 0;
}

.ls-content-text {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    margin-top: 80px;
}
.ls-text p {
    padding-right: 50px;
}
.ls-text > h3 {
    font-size: 24px;
    font-weight: 600;
}



/* === REVIEWS LAYOUT (2 columns like Figma) === */

.ls-product-reviews-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 3rem;
    align-items: flex-start;
}

/* right column – review cards */
.ls-product-reviews-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 45px;
}

.ls-review-item {
    background: transparent;
    margin-bottom: 25px;
}

.ls-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.ls-review-content {
    font-size: 16px;
    color: #444;
    line-height: 150%;
    max-width: 540px;
}

.ls-reviews-more {
    margin-top: 10px;
    text-align: center;
}


.ls-reviews-more .btn-secondary {
    display: inline-block;
    border: 3px solid var(--color-primary);
    border-radius: 10px;
    padding: 15px 28px;
    min-width: 304px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ls-reviews-more .btn-secondary:hover {
    background:var(--color-primary);
    color: #fff;
    border-color: transparent;
}




/* Reviews Section */
.ls-figma-reviews {
    padding: 70px 0;
    background: #FBFBFB;
}


/* Left column number */
.ls-average-number {
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
}

.ls-rating-count {
    margin-top: 8px;
    color: #666;
}

/* Bars */
.ls-rating-bars .ls-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.ls-rating-bars .label {
    width: 60px;
    font-size: 16px;
    font-weight: 700;
}

.ls-rating-bars .bar {
    flex: 1;
    height: 17px;
    background: #E1F6E3;
    border-radius: 30px;
    overflow: hidden;
}
.ls-rating-bars .fill {
    height: 17px;
    background: #20A42D;
    border-radius: 30px;
}

/* CTA Button */
.ls-reviews-cta {
    align-self: flex-end;
}

.ls-reviews-cta .ls-btn-outline {
    display: inline-block;
    padding: 12px 32px;
    border: 2px solid #3FAE2A;
    border-radius: 12px;
    color: #3FAE2A;
    font-weight: 600;
}

.ls-reviews-cta .ls-btn-outline:hover {
    background: #3FAE2A;
    color: #fff;
}

/* Highlight Card */
.ls-highlight-review {
    background: #FAF4EE;
    padding: 32px 29px;
    border-radius: 10px;
    width: 55%;
    flex: 0 0 55%;
    display: flex;
    justify-content: space-between;
    position: relative;
}



.ls-stars-large .ls-star-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    margin-right: -7px;
}


.ls-reviews-top {
    width: 45%;
    flex: 0 0 45%;
    padding-right: 156px;
}
.ls-reviews-score {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}

.ls-reviews-score .ls-rating-count {
    margin-top: 0;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    padding-left: 7px;
}

.ls-rating-bars .ls-bar-row .value {
    font-size: 16px;
    font-weight: 700;
}

.ls-img {
    flex:0 0 209px;
    width: 209px;
    height: 209px;
    position: relative;
}

.lss-review > h4 {
    font-size: 16px;
    font-weight: 600;
}
.lss-review .ls-stars {
    margin-bottom: 13px;
}
.lss-review > p {
    font-style: italic;
    max-width: 295px;
}
.ls-ig-icons {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: -20px;
    background: #FFFFFF;
    padding: 9px 16px;
    border-radius: 30px;
    display: flex;
    gap:10px;
    min-width: 90px;
}

.ls-highlight-review:before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 50px;
    height: 50px;
    background: url(../images/vector.png);
    background-repeat: no-repeat;
}
.lss-review {
    padding-top: 20px;
}

.ls-review-stars .ls-star-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    margin-right: -7px;
}
.ls-review-meta {
    display: flex;
    align-items: center;
    gap: 16px; /* space between stars and date */
    margin: 8px 0 12px;
}

.ls-review-author {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 3px;
}
.ls-review-date {
    color: #000000;
    font-size: 14px;
    font-weight: 400;
    margin-top: -6px;
}




.ls-product-summary .ls-stars.ls-stars-header {
    display: flex;
    width: 115px;
    position: relative;
    top: -2px;
}
.ls-product-summary .ls-top-rating-row .ls-rating-count,
.ls-product-summary .ls-top-rating-row .ls-rating-value {
    margin-top: 0;
    color: #000;
    font-size: 16px;
    font-weight: 600;
}



.ls-product-summary .product_title {
    font-size: 32px;
    font-weight: 600;
    line-height: 130%;
    color: #242B32;
}
.ls-product-summary .variations label {
    display: none;
}
.ls-product-summary table.variations select {
    background: #E1F6E3;
    border-radius: 5px;
    padding: 10px;
    height: 63px;
    font-size: 24px;
    color: #2E1702;
    font-weight: 600;
    border: 0;
    min-width: 155px;
        -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322aa44' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E);
    background-repeat: no-repeat;
    background-size: 22px;
    background-position: right 10px center;
}
.quantity button {
    color: #20A42D;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 34px;
    border: 3px solid #20A42D;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0;
}
button.qty-btn.qty-minus:before {
    content: "−";
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    color: #0e7a2a;
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    transform: translateY(-1px);
}
button.qty-btn.qty-plus:before {
    content: "+";
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    color: #0e7a2a;
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    transform: translateY(-1px);
}
.quantity {
    position: relative;
}
button.qty-btn.qty-minus {
    left: 10px;
}
button.qty-btn.qty-plus {
    right: 10px;
}
.ls-bullet-item p {
    margin-bottom: 0;
}

.single_variation_wrap .price {
    display: none;
}
.variations .reset_variations {
    display: none;  
}
.ls-product-summary {
    position: relative;
    width: 60%;
}
.ls-product-gallery {
    width: 40%;
}


/* Hide WooCommerce single-product gallery thumbnails */
.woocommerce-product-gallery .flex-control-nav.flex-control-thumbs {
    display: none;
}

/* Optional: make sure main image uses full width of gallery area */
.woocommerce-product-gallery__wrapper {
    margin: 0;
}


/* --- Single product gallery dots --- */
.woocommerce-product-gallery {
    position: relative;
}

.woocommerce-product-gallery .flex-control-nav {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
    z-index: 3;
    width: 100%;
    text-align: center;
    justify-content: center;
    background: rgba(37, 65, 39, 0.6);
    backdrop-filter: blur(4.5px);
    border-radius: 0px 0px 8px 8px;
    height: 66px;
    align-items: center;
}

.woocommerce-product-gallery .flex-control-nav li a {
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #fff;
    border:1px solid transparent;
    text-indent: -9999px; /* hide “1 2 3” text */
    cursor: pointer;
}

.woocommerce-product-gallery .flex-control-nav li a.flex-active {
    background: #1ca21f; /* green like theme – change if needed */
    border-color: #fff;
}

/* --- Prev / Next arrows --- */
.woocommerce-product-gallery .flex-direction-nav a {
    position: absolute;
    bottom: 26px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    text-indent: -9999px; /* hide original text */
    z-index: 3;
}

.woocommerce-product-gallery .flex-direction-nav .flex-prev {
    left: 130px;
}

.woocommerce-product-gallery .flex-direction-nav .flex-next {
    right: 130px;
}

.woocommerce-product-gallery .flex-direction-nav .flex-prev::before,
.woocommerce-product-gallery .flex-direction-nav .flex-next::before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(135deg);
    text-indent: 0;
}

/* turn arrow the other way for next */
.woocommerce-product-gallery .flex-direction-nav .flex-next::before {
    transform: rotate(-45deg);
}


.woocommerce-product-gallery__trigger {
    display: none;
}
.ls-top-buttons .ls-btn-primary {
    border-radius: 10px;
    height: 58px;
    font-size: 16px;
    font-weight: 600;
}
.ls-top-buttons > a, .ls-top-buttons > button {
    width: 50%;
    text-align: center;
    height: 58px;
    line-height: 58px;
    padding-top: 0;
    padding-bottom: 0;
}


@media (max-width: 1200px) {
    .woocommerce-product-gallery .flex-direction-nav .flex-prev {left: 30px !important;}
    .woocommerce-product-gallery .flex-direction-nav .flex-next {right: 30px !important;}
    .ls-reviews-top {padding-right: 50px;}
}

@media (max-width:992px) {
    .ls-product-main-inner {flex-wrap: wrap;}
    .ls-product-gallery {width: 100%;}
    .ls-product-summary {width: 100%;}
    .ls-reviews-top, .ls-highlight-review {width:100%;flex: 0 0 100%;}
    .ls-highlight-review {margin-top: 40px;}
}


@media (max-width: 768px) {
    .ls-highlight-review:before {left: 0;}
    .ls-product-reviews-list {grid-template-columns:unset;}
    .ls-content-text {grid-template-columns: unset;margin-top: 40px;}
    .ls-highlight-review {flex-wrap: wrap;}
    .lss-review > p {max-width: 100%;}
    .ls-img {margin-bottom: -20px;}
}

@media (max-width: 576px) {
    .ls-product-summary form.cart {position: static;}
    .ls-top-buttons {flex-wrap: wrap;}
    .ls-top-buttons .ls-btn-primary {width: 100%;}
    .ls-top-buttons > a, .ls-top-buttons > button {width: 100%;}
    .ls-text p {padding-right: 0;}
}

@media (max-width: 480px) {
    .ls-bullets-grid {grid-template-columns:unset;}
    .woocommerce-product-gallery__image img {height: 250px;}
    .ls-reviews-top, .ls-highlight-review {padding-right: 0;}
    .ls-reviews-score {flex-direction: column;}
    .ls-product-summary table.variations {width: 100%;}
    .single_variation_wrap {width: 100%;}
    .ls-product-summary .quantity input {width: 100%;}
    .product-variants.mb-0 {margin-bottom: 15px;}
    .ls-product-summary form.cart {flex-wrap: unset;}
    .ls-product-summary table.variations select {min-width: 140px;}
    .ls-product-summary .ls-top-rating-row {display: none;}
    .ls-product-main-inner {gap: 20px 50px;}
}

.ls-product-summary table.variations select {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;

  /* keep your existing bg color */
    background-color: #dff1e2 !important;

  /* add custom arrow */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230e7a2a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-size: 26px 26px !important;

  /* move arrow left/right here */
    background-position: right 10px center !important;

  /* give space for arrow */
}

.product_meta {
    display: none;
}


.woocommerce .price del { color: var(--color-text-muted); font-weight: var(--font-weight-normal); font-size: var(--font-size-sm); }
.woocommerce .price ins { text-decoration: none; }


.onsale {
    display: none;
}

.products.columns-4 .product-card {
    width: 100%;
    margin: 0;
}
.products.columns-4 .product-card-price {
    padding-left: 0;
    width: 100%;
    justify-content: center;
    margin-bottom: 20px;
}
.products.columns-4 .product-variants {
    margin-bottom: 0;
    width: 70%;
}
.product-card-wide .d-flex .product-variants {
    margin-bottom: 10px;
}

.wc-block-components-product-name {
    font-size: 20px;
    font-weight: 600;
}

del.wc-block-components-product-price__regular {
    padding-left: 0;
}
.luna-cart .wc-block-grid.wp-block-product-new.wp-block-woocommerce-product-new.wc-block-product-new {
    display: none;
}

.luna-cart hr + .wp-block-heading.has-text-align-center {
    display: none;
}


.price.js-single-price .amount {
    color: #242B32;
    font-size: 32px;
    font-weight: 600;
}



/* ================================
   Pagination Styling
================================ */

.woocommerce nav.woocommerce-pagination,
nav.woocommerce-pagination {
  text-align: center;
  margin: 60px 0 60px;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.page-numbers li {
  list-style: none;
}

.page-numbers a,
.page-numbers span {
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #1E7F3A;
  background: #ffffff;
  color: #1E7F3A;
  transition: all 0.25s ease;
}

.page-numbers a:hover {
  background: #1E7F3A;
  border-color: #1E7F3A;
  color: #ffffff;
}

.page-numbers .current {
  background: #1E7F3A;
  border-color: #1E7F3A;
  color: #ffffff;
  cursor: default;
}

.page-numbers .next,
.page-numbers .prev {
  font-size: 18px;
  padding: 0 18px;
}

.page-numbers .disabled {
  opacity: 0.5;
  pointer-events: none;
}


/* Hide WooCommerce add-to-cart success message */
.woocommerce-message {
  display: none !important;
}

/* OPTIONAL: still allow notices on cart & checkout */
.woocommerce-cart .woocommerce-message,
.woocommerce-checkout .woocommerce-message {
  display: block !important;
}



.products.columns-4 .product-variants + .product-card-price {
    width: auto;
    margin: 0;
}



.ls-product-summary form.cart .luna-giftbox-builder select {
    width: 100%;
    height: 40px;
    border: 1px solid #ddd;
    padding: 0 10px;
    max-width: 100% !important;
}

.ls-product-summary form.cart:not(.variations_form) {
    position: static;
    display: block;
}

.ls-product-summary form.cart .luna-giftbox-builder + .quantity {width: fit-content;margin-top: 20px;}


.luna-giftbox-total > div:first-child > span:first-child {
    display: none;
}

.luna-giftbox-total > div:nth-child(2) {
    display: none;
}

.luna-giftbox-total {
    border: 0 !important;
    background: unset !important;
    padding: 0 !important;
    margin-top: 20px !important;
}

.luna-giftbox-total-amount {
    font-size: 24px !important;
    font-weight: 600 !important;
}