* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6, p, strong, span, a, li {
    /*font-family: Nunito Sans !important;*/
}

html {
    scroll-behavior: smooth;
}

.otgs-development-site-front-end {
    display: none;
}

body {
    background-color: white;
}

button {
    cursor: pointer;
    font-size: 16px;
}

.boxed {
    max-width: 80% !important;
    margin: 0 auto !important;
}

.section-scroll {
    scroll-margin-top: 96px; /* Account for sticky header height */
}

@media screen and (max-width: 768px) {
    .boxed {
        max-width: calc(100% - 40px) !important;
    }
}


@media screen and (min-width: 1600px) {
    .boxed {
        max-width: 1600px !important;
    }
}

/* WooCommerce Cart Page Styles */

/* General Styles */
.wp-block-woocommerce-cart {
    font-family: 'Open Sans', sans-serif;
    padding: 40px 20px;
    background-color: #f9f9f9;
}

/* Cart Items Table */
.wc-block-cart-items {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
}

.wc-block-cart-items__header {
    background-color: #ffffff;
}

.wc-block-cart-items__header th {
    padding: 15px;
    text-align: left;
    color: #1F1F1F;
    font-size: 16px;
    font-weight: 700;
    border-bottom: 1px solid #e6e6e6;
}

.wc-block-cart-items__row {
    background-color: #ffffff;
    border-bottom: 1px solid #e6e6e6;
}

.wc-block-cart-items__row td {
    padding: 15px;
    vertical-align: middle;
    color: #525252;
    font-size: 14px;
}

/* Product Image */
.wc-block-cart-item__image img {
    width: 80px;
    height: auto;
    border-radius: 8px;
}

/* Product Details */
.wc-block-cart-item__product {
    font-family: 'Open Sans', sans-serif;
}

.wc-block-components-product-name {
    color: #1F1F1F;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
}

.wc-block-components-product-name:hover {
    color: #4A8F7B;
}

.wc-block-cart-item__prices {
    margin-top: 5px;
}

.wc-block-components-product-price {
    font-weight: 600;
    color: #1F1F1F;
}

.wc-block-components-product-price del {
    color: #525252;
    font-weight: 400;
    margin-right: 5px;
}

.wc-block-components-product-price ins {
    text-decoration: none;
}

/* Quantity Selector */
.wc-block-components-quantity-selector {
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
}

.wc-block-components-quantity-selector__input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    margin: 0 5px;
}

.wc-block-components-quantity-selector__button {
    background-color: #f1f1f1;
    border: none;
    width: 30px;
    height: 40px;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
}

.wc-block-components-quantity-selector__button:hover {
    background-color: #e1e1e1;
}

/* Remove Button */
.wc-block-cart-item__remove-link {
    color: #e60023;
    font-size: 14px;
    text-decoration: none;
    margin-top: 10px;
    display: inline-block;
}

.wc-block-cart-item__remove-link:hover {
    color: #c2001d;
}

/* Cart Totals */
.wc-block-cart__sidebar {
    background-color: #ffffff;
    padding: 20px;
    border: 1px solid #e6e6e6;
    font-family: 'Open Sans', sans-serif;
}

.wc-block-cart__totals-title {
    font-size: 24px;
    color: #1F1F1F;
    font-family: 'Lora', serif;
    margin-bottom: 20px;
}

.wc-block-components-totals-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.wc-block-components-totals-item__label {
    color: #525252;
    font-size: 16px;
}

.wc-block-components-totals-item__value {
    color: #1F1F1F;
    font-size: 16px;
    font-weight: 600;
}

.wc-block-components-totals-footer-item {
    border-top: 1px solid #e6e6e6;
    padding-top: 15px;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
    font-weight: 700;
    font-size: 18px;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    font-weight: 700;
    font-size: 18px;
}

/* Proceed to Checkout Button */
.wc-block-cart__submit-button {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #4A8F7B;
    color: white;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
    border: none;
    cursor: pointer;
}

.wc-block-cart__submit-button:hover {
    background-color: #3b715f;
}

/* Sale Badge */
.wc-block-components-product-badge.wc-block-components-sale-badge {
    background-color: #89D5BC;
    color: #1F1F1F;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-top: 5px;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .wc-block-cart-items__header,
    .wc-block-cart-items__row {
        display: block;
    }

    .wc-block-cart-items__row td {
        display: flex;
        flex-direction: column;
    }

    .wc-block-cart-item__image,
    .wc-block-cart-item__product,
    .wc-block-cart-item__total {
        width: 100%;
        margin-bottom: 10px;
    }

    .wc-block-cart__sidebar {
        margin-top: 20px;
    }

    .wc-block-components-totals-item {
        flex-direction: row;
    }
}

.wc-block-cart__submit-button.contained {
    height: 55px;
    width: auto;
    padding: 0 35px;
    background-color: #4A8F7B;
    color: white !important;
    font-family: 'Open Sans', sans-serif !important;
    font-weight: 700;
    font-size: 16px;
    border-radius: 15px;
    border: none;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.12);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-top: 20px;
}

.wc-block-cart__submit-button.contained:hover {
    background-color: #3b715f;
}

/* Quantity Selector Buttons */
.wc-block-components-quantity-selector__button {
    height: 40px;
    width: 40px;
    background-color: #4A8F7B;
    color: white;
    font-family: 'Open Sans', sans-serif !important;
    font-weight: 700;
    border-radius: 10px;
    border: none;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.wc-block-components-quantity-selector__button:hover {
    background-color: #3b715f;
}

/* Remove Item Button */
.wc-block-cart-item__remove-link {
    background-color: #4A8F7B;
    color: white !important;
    font-family: 'Open Sans', sans-serif !important;
    font-weight: 700;
    font-size: 14px;
    border-radius: 10px;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.wc-block-cart-item__remove-link:hover {
    background-color: #3b715f;
}

/* Form Labels */
.wc-block-components-text-input label,
.wc-block-components-address-form label,
.wc-block-components-country-input label,
.wc-block-components-state-input label {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.36; /* 24.51px */
    color: #333333;
    margin-bottom: 5px;
}

/* Form Inputs */
.wc-block-components-text-input input,
.wc-block-components-address-form input,
.wc-block-components-address-form textarea,
.wc-block-components-address-form select,
.wc-block-components-country-input select,
.wc-block-components-state-input select {
    margin-top: 10px;
    padding-left: 20px;
    outline: none;
    height: 60px;
    border-radius: 8px;
    border: 1px solid #4A8F7B;
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.36; /* 24.51px */
    color: #333333;
    box-sizing: border-box;
}

/* Textarea Specific Styles */
.wc-block-components-address-form textarea {
    min-height: 120px;
    padding-top: 15px;
}

/* Select Field Styles */
.wc-block-components-country-input select,
.wc-block-components-state-input select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><path d="M5 7L10 12L15 7H5Z" fill="%234A8F7B"/></svg>');
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 20px;
    padding-right: 40px;
}

/* Hover and Focus Effects */
.wc-block-components-text-input input:hover,
.wc-block-components-text-input input:focus,
.wc-block-components-address-form input:hover,
.wc-block-components-address-form input:focus,
.wc-block-components-address-form textarea:hover,
.wc-block-components-address-form textarea:focus,
.wc-block-components-address-form select:hover,
.wc-block-components-address-form select:focus {
    border-color: #2A8362;
    box-shadow: 0 0 5px rgba(42, 131, 98, 0.2);
}

/* Place Order Button */
.wc-block-components-checkout-place-order-button {
    padding: 16px;
    border-radius: 16px;
    background-color: #4A8F7B;
    color: white;
    height: 60px;
    width: 100%;
    cursor: pointer;
    border: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-top: 20px;
}

/* Hover Effect */
.wc-block-components-checkout-place-order-button:hover {
    background-color: #3b715f;
}

/* Optional Decorative Bottom Div */
.checkout-bottom-div {
    background-color: #D4E2DE;
    height: 240px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

/* WooCommerce Notices */
.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.woocommerce-error {
    background-color: #f2dede;
    color: #a94442;
}

.woocommerce-info {
    background-color: #d9edf7;
    color: #31708f;
}

.woocommerce-message {
    background-color: #dff0d8;
    color: #3c763d;
}

/* Payment Options Title */
#payment-method .wc-block-components-title {
    font-family: 'Lora', serif;
    font-size: 32px;
    font-weight: 600;
    color: #2A8362;
}

/* Payment Method Labels */
.wc-block-components-payment-method-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #333333;
}

/* Payment Method Description */
.wc-block-components-radio-control-accordion-content {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #525252;
    margin-left: 30px;
}

.wp-block-woocommerce-checkout input[type="text"] {
    margin-top: 10px !important;
    padding-left: 20px !important;
    outline: none !important;
    height: 60px !important;
    border-radius: 8px !important;
    border: 1px solid #4A8F7B !important;
    width: 100% !important;
    font-family: Open Sans !important;
    font-size: 18px !important;
    font-weight: 500;
    line-height: 24.51px;
}

.wc-block-checkout__main {
    padding: 30px;
    box-shadow: 0px 24px 50px 0px rgba(0, 0, 0, 0.05);
    background-color: white;
    border-radius: 30px;
    width: 100%;
    max-width: 70%;
}

.wc-block-checkout {
    padding: 30px;
}

.wc-block-components-text-input input, .wc-block-components-address-form input, .wc-block-components-address-form textarea, .wc-block-components-address-form select, .wc-block-components-country-input select, .wc-block-components-state-input select {
    margin-top: 0px;
}

.wc-block-checkout > * {
    font-family: Open Sans !important;
}

.woocommerce {
    padding: 50px 200px;
}

.woocommerce-checkout > .woocommerce {
    display: flex;
}

.woocommerce-checkout .woocommerce > form {
    display: flex;
}


/* Checkout Page Container */
.checkout-page-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 50px;
    background-color: #f9f9f9;
    font-family: 'Open Sans', sans-serif;
}

@media screen and (min-width: 1400px) {
    .checkout-page-container {
        padding: 100px 200px;
    }
}

/* Checkout Form Container */
.checkout-form-container {
    flex: 1 1 60%;
    max-width: 60%;
    padding: 30px;
    margin-bottom: 30px;
    background-color: #fff;
    box-shadow: 0px 24px 50px rgba(0, 0, 0, 0.05);
    border-radius: 30px;
}

/* Order Summary Container */
.order-summary-container {
    flex: 1 1 35%;
    max-width: 35%;
    padding: 30px;
    margin-bottom: 30px;
    background-color: #fff;
    box-shadow: 0px 24px 50px rgba(0, 0, 0, 0.05);
    border-radius: 30px;
}

/* On Mobile, Stack the Containers */
@media screen and (max-width: 1024px) {
    .checkout-page-container {
        flex-direction: column;
        padding: 60px 20px;
    }

    .checkout-form-container,
    .order-summary-container {
        max-width: 100%;
        margin-bottom: 30px;
    }
}

/* Further Mobile Adjustments */
@media screen and (max-width: 768px) {
    .checkout-page-container {
        padding: 40px 10px;
    }

    .woocommerce h3 {
        font-size: 24px;
        line-height: 32px;
    }

    .woocommerce-checkout input.input-text,
    .woocommerce-checkout textarea,
    .woocommerce-checkout select {
        height: 50px;
        font-size: 16px;
    }

    .woocommerce-checkout textarea {
        min-height: 100px;
    }

    .woocommerce-checkout button[type="submit"] {
        height: 50px;
        font-size: 16px;
    }

    .woocommerce-table th, .woocommerce-table td {
        font-size: 14px !important;
    }
}

/* Section Headings */
.woocommerce h3 {
    font-family: 'Lora', serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.28; /* 40.96px */
    text-align: left;
    color: #2A8362;
    margin-bottom: 20px;
}

/* Form Labels */
.woocommerce-checkout label {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.36; /* 24.51px */
    color: #333333;
    margin-bottom: 5px;
}

/* Form Fields */
.woocommerce-checkout .form-row {
    margin: 15px 0;
}

/* Form Inputs */
.woocommerce-checkout input.input-text,
.woocommerce-checkout textarea,
.woocommerce-checkout select {
    margin-top: 10px;
    padding-left: 20px;
    outline: none;
    height: 60px;
    border-radius: 8px;
    border: 1px solid #4A8F7B;
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.36; /* 24.51px */
    color: #333333;
}

/* Style for textarea */
.woocommerce-checkout textarea {
    min-height: 120px;
    padding-top: 15px;
}

/* Styling for select elements specifically */
.woocommerce-checkout select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><path d="M5 7L10 12L15 7H5Z" fill="%234A8F7B"/></svg>');
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 20px;
    padding-right: 40px;
}

/* Hover and focus effects */
.woocommerce-checkout input.input-text:hover,
.woocommerce-checkout input.input-text:focus,
.woocommerce-checkout textarea:hover,
.woocommerce-checkout textarea:focus,
.woocommerce-checkout select:hover,
.woocommerce-checkout select:focus {
    border-color: #2A8362;
    box-shadow: 0 0 5px rgba(42, 131, 98, 0.2);
}

/* Submit Button */
.woocommerce-checkout button[type="submit"] {
    padding: 16px;
    border-radius: 16px;
    background-color: #4A8F7B;
    color: white;
    height: 60px;
    width: 100%;
    cursor: pointer;
    border: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-top: 20px;
}

/* Hover Effect */
.woocommerce-checkout button[type="submit"]:hover {
    background-color: #3b715f;
}

/* Order Review Table */
.woocommerce-checkout-review-order-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    padding: 15px;
    text-align: left;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
}

.woocommerce-checkout-review-order-table th {
    background-color: #f9f9f9;
    color: #2A8362;
    font-weight: 600;
}

.woocommerce-checkout-review-order-table tfoot th,
.woocommerce-checkout-review-order-table tfoot td {
    font-weight: 700;
}

.woocommerce-checkout-review-order-table .product-name {
    width: 60%;
}

.woocommerce-checkout-review-order-table .product-total {
    text-align: right;
}

/* Payment Methods */
.woocommerce-checkout-payment {
    margin-top: 30px;
}

.woocommerce-checkout-payment .wc_payment_methods li {
    margin-bottom: 20px;
}

.woocommerce-checkout-payment .wc_payment_methods label {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #333333;
}

.woocommerce-checkout-payment .payment_box {
    margin-left: 30px;
    font-size: 16px;
    color: #525252;
}

/* Style Radio Buttons */
.woocommerce-checkout .input-radio {
    margin-right: 10px;
}

.woocommerce-checkout .wc_payment_methods label {
    display: flex;
    align-items: center;
}

/* Terms and Conditions */
.woocommerce-terms-and-conditions-wrapper {
    margin-top: 20px;
    font-size: 16px;
    color: #525252;
    font-family: 'Open Sans', sans-serif;
}

/* WooCommerce Notices */
.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.woocommerce-error {
    background-color: #f2dede;
    color: #a94442;
}

.woocommerce-info {
    background-color: #d9edf7;
    color: #31708f;
}

.woocommerce-message {
    background-color: #dff0d8;
    color: #3c763d;
}

.woocommerce-checkout .woocommerce > form {
    justify-content: space-between;
}

.woocommerce-checkout .woocommerce .col2-set {
    width: 50%;
}

.wc_payment_methods {
    list-style-type: none;
}

.form-review-order-wrapper {
    width: 40%;
}

.wc_payment_method {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.payment_box {
    display: block;
    margin-left: 24px !important;
}

.payment_box p {
    font-size: 14px;
    font-family: Open Sans !important;
}

.woocommerce-privacy-policy-text {
    font-size: 12px;
}

.woocommerce-error {
    font-family: Open Sans !important;
    list-style-type: none;
}

/* WooCommerce Order Confirmation Page */
.woocommerce-order {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px;
    font-family: 'Open Sans', sans-serif;
}

/* Success Notice */
.woocommerce-notice--success {
    background-color: #dff0d8;
    color: #3c763d;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 18px;
}

/* Order Overview List */
.woocommerce-order-overview {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.woocommerce-order-overview li {
    margin-bottom: 10px;
    font-size: 18px;
    color: #333333;
}

.woocommerce-order-overview li strong {
    font-weight: 600;
    color: #2A8362;
}

/* Paragraphs */
.woocommerce-order p {
    font-size: 18px;
    color: #333333;
    margin-bottom: 20px;
}

/* Section Headings */
.woocommerce-order h2 {
    font-family: 'Lora', serif;
    font-size: 32px;
    font-weight: 600;
    color: #2A8362;
    margin-bottom: 20px;
}

/* Order Details Table */
.woocommerce-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.woocommerce-table th, .woocommerce-table td {
    padding: 15px;
    text-align: left;
    font-size: 18px;
    border-bottom: 1px solid #e6e6e6;
}

.woocommerce-table th {
    background-color: #f9f9f9;
    color: #2A8362;
    font-weight: 600;
}

.woocommerce-table tfoot th, .woocommerce-table tfoot td {
    font-weight: 700;
}

.woocommerce-table .product-name {
    width: 60%;
}

.woocommerce-table .product-total {
    text-align: right;
}

/* Links */
.woocommerce-order a {
    color: #4A8F7B;
    text-decoration: none;
}

.woocommerce-order a:hover {
    text-decoration: underline;
}

/* Customer Details */
.woocommerce-customer-details {
    margin-top: 40px;
}

.woocommerce-customer-details h2 {
    font-family: 'Lora', serif;
    font-size: 32px;
    font-weight: 600;
    color: #2A8362;
    margin-bottom: 20px;
}

.woocommerce-customer-details address {
    font-style: normal;
    line-height: 1.6;
    font-size: 18px;
    color: #333333;
}

.woocommerce-customer-details address p {
    margin: 10px 0;
    font-size: 18px;
    color: #333333;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .woocommerce-order {
        padding: 40px 10px;
    }

    .woocommerce-order h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .woocommerce-notice--success {
        font-size: 16px;
    }

    .woocommerce-order-overview li {
        font-size: 16px;
    }

    .woocommerce-order p {
        font-size: 16px;
    }

    .woocommerce-table th, .woocommerce-table td {
        padding: 10px;
        font-size: 16px;
    }

    .woocommerce-customer-details h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .woocommerce-customer-details address {
        font-size: 16px;
    }

    .woocommerce-customer-details address p {
        font-size: 16px;
    }
}

.woocommerce-order {
    box-shadow: 0px 12px 24px 0px #00000014;
    border-radius: 30px;
}

.woocommerce-notice--success {
    font-family: Lora !important;
    background-color: transparent;
    padding: 0;
    color: #2A8362 !important;
    margin-bottom: 30px;
}

.woocommerce-thankyou-order-received {
    font-size: 32px !important;
    font-weight: 600 !important;
}

.woocommerce-message {
    background-color: white;
    border: 1px solid #3c763d;
    color: black;
    font-family: Open Sans;
}

.woocomerce-message a {
    color: black !important;
    font-family: Open Sans;
}


@media screen and (min-width: 1300px) and (max-width: 1600px) {
    .boxed {
        max-width: 100% !important;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1300px) {
    .boxed {
        max-width: 100% !important;
    }
}

@media screen and (max-width: 1024px) {
    .boxed {
        max-width: 100% !important;
    }


    .page-template-multistep .main {
        padding-top: 60px !important;
    }

    .main {
        position: relative;
        padding-top: 96px;
    }

    .woocommerce {
        padding: 40px;
    }

    .woocommerce form.checkout {
        display: block;
    }

    #customer_details {
        width: 100%;
    }

    .form-review-order-wrapper {
        width: 100%;
    }

    .woocommerce-checkout-payment .wc_payment_methods label {
        font-size: 14px;
    }
}

@media screen and (max-width: 460px) {
    .wc_payment_method img {
        max-width: 100px;
    }

    .woocommerce-thankyou-order-details li {
        font-size: 13px;
    }

    .woocommerce-order {
        padding: 20px;
    }

    .woocommerce-table--order-details td, .woocommerce-table--order-details th {
        font-size: 13px;
    }

    .woocommerce-customer-details address, .woocommerce-customer-details address p {
        font-size: 13px;
    }

    .woocommerce {
        padding: 20px;
    }

    .woocommerce-checkout label {
        font-size: 16px;
    }

    .woocommerce-thankyou-order-received {
        font-size: 24px !important;
    }

    .woocommerce form .woocommerce-billing-fields h3 {
        font-size: 24px;
    }

    .woocommerce form .woocommerce-additional-fields h3 {
        font-size: 24px;
    }

    .woocommerce form .form-review-order-wrapper h3 {
        font-size: 24px;
    }
}

.wpcf7-response-output {
    font-family: "Open Sans" !important;
    color: #F4B015;
    font-size: 12px;
}

.screen-reader-response {
    display: none;
}

.wpcf7-not-valid-tip {
    font-family: "Open Sans" !important;
    color: #F4B015;
    font-size: 12px;
}

.wc-backward {
    height: 55px;
    width: 248px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-color: #4A8F7B;
    color: white;
    font-family: Open Sans !important;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.12);
}


/* Responsive Styles for WooCommerce Cart Table */
@media screen and (max-width: 768px) {
    /* Make table elements block for mobile */
    .woocommerce-cart-form table.shop_table,
    .woocommerce-cart-form table.shop_table thead,
    .woocommerce-cart-form table.shop_table tbody,
    .woocommerce-cart-form table.shop_table th,
    .woocommerce-cart-form table.shop_table td,
    .woocommerce-cart-form table.shop_table tr {
        display: block;
        width: 100%;
    }

    /* Hide table headers for mobile */
    .woocommerce-cart-form table.shop_table thead {
        display: none;
    }

    /* Style table rows */
    .woocommerce-cart-form table.shop_table tr {
        margin-bottom: 15px;
        border-bottom: 1px solid #e6e6e6;
        padding-bottom: 15px;
    }

    /* Add labels for data on mobile */
    .woocommerce-cart-form table.shop_table td {
        text-align: right;
        position: relative;
        padding: 10px;
    }

    .woocommerce-cart-form table.shop_table td::before {
        content: attr(data-title);
        position: absolute;
        left: 10px;
        top: 10px;
        font-weight: bold;
        color: #525252;
        text-transform: uppercase;
    }

    /* Adjust thumbnail sizes */
    .woocommerce-cart-form .product-thumbnail img {
        width: 60px;
        height: auto;
        margin-right: 10px;
    }

    /* Full-width buttons */
    .woocommerce-cart-form .actions .coupon,
    .woocommerce-cart-form .actions button.button {
        width: 100%;
        margin-bottom: 10px;
    }

    /* Cart Totals adjustments */
    .cart-collaterals .cart_totals {
        padding: 15px;
        margin-top: 20px;
        font-size: 14px;
    }

    .cart-collaterals .cart_totals h2 {
        font-size: 18px;
    }

    .cart-collaterals .cart_totals table th,
    .cart-collaterals .cart_totals table td {
        font-size: 14px;
        padding: 8px 0;
    }

    /* Checkout button adjustments */
    .cart-collaterals .wc-proceed-to-checkout a.checkout-button {
        padding: 12px;
        font-size: 16px;
        border-radius: 3px;
    }
}






