@font-face {
    font-family: 'stabilGrotesk';
    src: url('/wp-content/fonts/stabilGrotesk.woff2') format('woff2'),
         url('/wp-content/fonts/stabilGrotesk.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
.container-custom {
    background-color: #ffffff;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.inner-container {
    display: flex;
    flex-direction: row;
    width: 100%;
}
.left-section-custom {
    display: flex;
    flex-direction: column;
    width: 55%;
    align-items: center;
    padding-right: 0px;
}
.right-section-custom {
    display: flex;
    flex-direction: column;
    width: 45%;
    padding-left: 0px;
}
.feeds-plants-container {
    display: flex;
    align-items: center;
    gap: 5px;
}
.feeds-plants-text {
    font-size: 20px;
    color: #00953B;
    font-weight: bold;
    font-family: 'stabilGrotesk', sans-serif;
}
.gallons-text {
    font-size: 20px;
    color: #000000;
    font-family: 'stabilGrotesk', sans-serif;
}
.quantity-container {
    display: flex;
    align-items: center;
    gap: 5px;
}
.price-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the content */
    gap: 5px;
    width: 100%; /* Ensure it takes the full width of the column */
}
.qty-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2.5px;
    font-size: 12px !important; /* Ensure font size is overridden */
    cursor: pointer;
    background-color: #00953B;
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    width: 24px; /* Adjusted size */
    height: 24px; /* Adjusted size */
}
.cosmetic-quantity {
    font-size: 14px; /* Set text outside buttons to 14px */
    color: #000000; /* Keep quantity total black */
    font-family: 'stabilGrotesk', sans-serif;
}
.discounted-total {
    font-size: 14px;
    font-weight: bold;
    color: #FFFFFF; /* Ensure add to cart text matches */
    font-family: 'stabilGrotesk', sans-serif;
}
.retail-price {
    font-size: 12px;
    color: red;
    font-family: 'stabilGrotesk', sans-serif;
    text-decoration: line-through;
    text-align: center; /* Ensure it is centered */
}
.elementskit-btn {
    display: inline-block;
    justify-content: center;
    align-items: center;
    background-color: #00953B;
    color: #FFFFFF !important;
    padding: 15px 0px;
    border-radius: 25px; /* Rounded corners */
    text-align: center;
    font-size: 14px;
    text-decoration: none;
    font-family: 'stabilGrotesk', sans-serif;
    width: 100%; /* Ensure the button width is 100% */
}
.button-container {
    margin-top: 10px; /* Ensure there is a gap between price container and button */
}
.elementskit-btn:hover {
    background-color: #007A2E;
}
.additional-products-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}
.additional-products-container input[type="checkbox"] {
    appearance: none;
    width: 1rem;
    height: 1rem;
    border: 1px solid grey;
    border-radius: 50%;
    cursor: pointer;
    vertical-align: text-bottom;
}
.additional-products-container input[type="checkbox"]:checked {
    background-color: #00953B;
    border-color: #00953B;
}
.additional-product {
    margin-right: 10px;
}
.additional-products-container label {
    font-size: 14px;
    color: #000000;
    font-family: 'stabilGrotesk', sans-serif;
}
.additional-products-container label span {
    margin-left: 8px;
}
.additional-product-price {
    font-size: 14px;
    color: red;
    font-family: 'stabilGrotesk', sans-serif;
    text-decoration: line-through;
}