/*
Theme Name: OceanWP Child
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme example child theme.
Author: Nick
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */



/* Lisa teema CSS-i (Kohanda > Lisastiilid) */
.wc-review-translation-note {
    display: inline-block;
    font-size: 12px;
    opacity: 0.8;
}

body #wfacp-e-form a.showlogin { color: black !important; text-decoration: underline !important;  }
body #wfacp-e-form a.showlogin:hover { color: black !important; text-decoration: none !important;  }


.fs-free-shipping-notice-and-button-wrapper { display: none !important; }



.custom-qty-options {
    display: flex;
    gap: 12px;
    margin-bottom: 1em;
    flex-wrap: wrap;

}
.custom-qty-option {
    position: relative;
    border: 2px solid #ccc;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
    background: #fff;
    text-align: center;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.custom-qty-option.selected {
    border-color: #006f43;
    background: rgba(0,111,67,0.1);
}
.custom-qty-option .original-price {
    text-decoration: line-through;
    font-size: 0.85em;
    color: #999;
}
.custom-qty-option .discounted-price {
    font-size: 1.1em;
    color: #000;
    font-weight: bold;
}
.discount-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #006f43;
    color: white;
    font-size: 0.7em;
    font-weight: normal;
    padding: 4px 8px;
    border-radius: 16px;
}
.wdr-discount-table-customize { display: none; }

@media only screen and (max-width: 768px) {
    .custom-qty-option { padding: 12px 10px; min-width: 100px;}
    .custom-qty-option .discounted-price {  font-size: 0.9em; }
    body.single-product .quantity { margin-bottom: 10px }
    body.single-product.woocommerce div.product div.summary { margin-bottom: 0px }
    body.single-product.woocommerce div.product .woocommerce-tabs { padding-top: 10px }
}



