.elementor-2868 .elementor-element.elementor-element-6eeae476{padding:4vw 0vw 0vw 0vw;}.elementor-2868 .elementor-element.elementor-element-6133514 > .elementor-widget-container{background-color:#FFFFFF;}@media(max-width:767px){.elementor-2868 .elementor-element.elementor-element-6133514 > .elementor-widget-container{margin:96px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-2868 .elementor-element.elementor-element-592edc2 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}}/* Start custom CSS for wc-elements, class: .elementor-element-6133514 *//* --- Estilos para el Fondo del Carrito a Blanco --- */

.woocommerce-cart-form {
    background-color: #ffffff; /* Fondo blanco puro para el carrito */
    border-radius: 15px; /* Mantén las esquinas suaves */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); /* Sombra sutil */
    padding: 30px; /* Mantiene el padding generoso */
    margin-bottom: 30px; /* Espacio debajo del carrito */
    border: 1px solid #f8f8f8; /* Borde muy ligero, casi blanco */
    overflow: hidden;
    font-family: 'hind-regular', sans-serif; /* Asegura la fuente del cuerpo */
    font-size: 15px; /* Mantiene el tamaño de fuente legible */
    color: #333333;
}

/* Puedes revisar y ajustar otros elementos si es necesario, por ejemplo: */
.woocommerce-cart-form table.shop_table thead th {
    background-color: #fcfcfc; /* Un gris muy, muy claro para los encabezados de la tabla, casi blanco */
}/* End custom CSS */
/* Start custom CSS *//* --- Responsive Adjustments for Mobile and Smaller Screens (Focus on Cart Table Cells) --- */

@media (max-width: 767px) {
    /* Base font size for very small mobiles */
    .woocommerce-cart, .woocommerce-checkout {
        font-size: 14px;
    }

    /* Cart Table - Responsive overhaul for mobile */
    .woocommerce-cart-form table.shop_table {
        border: none; /* Remove outer table border for cleaner look */
        width: 100%;
        display: block; /* Make the table a block element */
        overflow-x: hidden; /* Hide horizontal scroll, as content should stack */
        white-space: normal; /* Allow text to wrap within the table and its cells */
    }

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

    .woocommerce-cart-form table.shop_table tbody,
    .woocommerce-cart-form table.shop_table tr,
    .woocommerce-cart-form table.shop_table td {
        display: block; /* Make table body, rows, and cells block elements */
        width: 100%; /* Each takes full width of its container */
        white-space: normal; /* Allow text to wrap within the new block elements */
    }

    .woocommerce-cart-form table.shop_table tbody tr {
        margin-bottom: 15px; /* Space between product items */
        border: 1px solid #eeeeee; /* Light border around each product item */
        border-radius: 8px; /* Rounded corners for each product item box */
        padding: 15px; /* Increased padding for better internal spacing */
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03); /* Subtle shadow for each product item */
        position: relative; /* Needed for positioning the remove button */
    }

    .woocommerce-cart-form table.shop_table tbody td {
        border-bottom: 1px dashed #f5f5f5; /* Subtle dashed line between fields in a product item */
        padding: 8px 0; /* Adjust padding for cells, no horizontal padding here */
        text-align: right; /* Align content to the right by default */
        position: relative; /* Needed for pseudo-element labels */
        font-size: 0.95em; /* Readable font for cell content */
        color: #333333; /* Darker text for content */
    }

    .woocommerce-cart-form table.shop_table tbody td:last-of-type {
        border-bottom: none; /* No border for the last cell in the block (e.g., subtotal) */
        padding-bottom: 0;
    }

    /* Custom labels for each cell using data-title */
    .woocommerce-cart-form table.shop_table tbody td::before {
        content: attr(data-title) ": "; /* Get label from data-title attribute */
        font-weight: 600; /* Bold label */
        color: #555555; /* Muted color for label */
        position: absolute;
        left: 0; /* Align label to the absolute left of the padding area */
        top: 50%; /* Center vertically */
        transform: translateY(-50%); /* Fine-tune vertical alignment */
        width: 45%; /* Adjust width to not overlap with value */
        text-align: left; /* Align label text to the left */
        white-space: nowrap; /* Prevent label from wrapping */
        overflow: hidden;
        text-overflow: ellipsis; /* Add ellipsis if label is too long */
        padding-left: 15px; /* Align with the start of the item's padding */
        box-sizing: border-box; /* Include padding in width calculation */
    }

    /* Specific mobile adjustments for product elements */
    .woocommerce-cart-form .product-thumbnail {
        text-align: center !important; /* Center the image in its row */
        padding: 0 !important; /* Remove padding specific to image cell */
        margin-bottom: 15px; /* More space below the image */
    }
    .woocommerce-cart-form .product-thumbnail img {
        width: 80px; /* Slightly larger image on mobile for clarity */
        height: 80px; /* Maintain aspect ratio */
        border-radius: 8px; /* Consistent rounded corners */
    }

    .woocommerce-cart-form .product-remove {
        position: absolute; /* Position the 'X' button absolutely */
        top: 10px; /* Closer to top-right corner */
        right: 10px;
        font-size: 24px; /* Maintain good size for 'X' */
        padding: 0 !important;
        background-color: transparent; /* Ensure no background behind X */
        border: none; /* Ensure no border for X */
        line-height: 1; /* For perfect vertical centering */
        z-index: 10; /* Ensure it's clickable */
    }

    /* Quantity input on mobile */
    .woocommerce-cart-form .quantity {
        display: flex; /* Use flexbox to align quantity input */
        justify-content: flex-end; /* Align input to the right */
        align-items: center;
        width: auto;
        padding-right: 0;
    }
    .woocommerce-cart-form .quantity .qty {
        width: 60px; /* Consistent width */
        padding: 8px 6px; /* Consistent padding */
        font-size: 0.9em; /* Consistent font */
    }

    /* Update Cart button */
    .woocommerce-cart-form .actions {
        display: flex;
        justify-content: center; /* Center the button */
        padding-top: 15px;
    }
    .woocommerce-cart-form .actions .button {
        float: none; /* Remove float */
        width: 100%; /* Full width */
        max-width: 280px; /* Limit max width for aesthetic */
        padding: 12px 25px; /* Consistent padding */
        font-size: 0.95em !important;
    }

    /* Cart Totals section on mobile */
    .cart-collaterals {
        justify-content: center; /* Center totals block */
    }
    .cart_totals {
        padding: 25px; /* Maintain good padding */
    }
    .cart_totals table {
        font-size: 0.95em;
    }
    .cart_totals table td, .cart_totals table th {
        padding: 10px 0;
    }
}

/* --- Global Base Styles & Font Correction for reneboiero.com.ar (Legible Sizes & Softer Look) --- */

/* Base font size for all body text within WooCommerce sections */
/* This will affect labels, input text, table content etc. */
.woocommerce-cart,
.woocommerce-checkout {
    font-family: 'hind-regular', sans-serif; /* Confirmed from source */
    font-size: 15px; /* Base font size for readability */
    color: #333333; /* Dark charcoal for main text */
    line-height: 1.6;
    box-sizing: border-box; /* Ensure consistent box model */
}

/* Ensure headings inherit the correct font and size */
.woocommerce-cart h1, .woocommerce-cart h2, .woocommerce-cart h3, .woocommerce-cart h4, .woocommerce-cart h5, .woocommerce-cart h6,
.woocommerce-checkout h1, .woocommerce-checkout h2, .woocommerce-checkout h3, .woocommerce-checkout h4, .woocommerce-checkout h5, .woocommerce-checkout h6 {
    font-family: 'Metropolis-Medium', sans-serif; /* Confirmed from source */
    color: #333333; /* Dark text for headings */
    font-weight: 700; /* Bold headings */
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f5f5f5; /* Very light, almost invisible border */
    text-align: left;
}

/* Specific heading sizes for better hierarchy */
.woocommerce-cart h2, .woocommerce-checkout h2 {
    font-size: 1.8em; /* ~29px */
}
.woocommerce-cart h3, .woocommerce-checkout h3 {
    font-size: 1.4em; /* ~22px */
}

/* Ensure Elementor container doesn't create extra spacing if not intended */
.elementor-container {
    max-width: 1200px; /* Or your site's content width */
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* --- Overall Section Styling (Cart & Checkout Forms) --- */

.woocommerce-cart-form,
.woocommerce-checkout form.checkout,
.woocommerce-checkout .woocommerce-order-review, /* 'Tu pedido' section */
.woocommerce-checkout #payment, /* Payment methods section */
.woocommerce-checkout .woocommerce-additional-fields { /* 'Notas del pedido' section */
    background-color: #ffffff !important; /* Pure white background, important to ensure it's white */
    border-radius: 15px; /* Slightly more rounded for a softer look */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); /* Very subtle shadow */
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #f8f8f8; /* Extremely light border */
    overflow: hidden;
}

/* --- Cart Table Styling (table.shop_table) --- */
.woocommerce-cart-form table.shop_table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 25px;
    font-size: 0.95em;
}

/* Table Headers (TH) */
.woocommerce-cart-form table.shop_table thead th {
    background-color: #fcfcfc !important; /* Whiter background for headers */
    color: #555555;
    font-weight: 700;
    padding: 15px 12px;
    text-align: left;
    border-bottom: 1px solid #eeeeee; /* Lighter border below headers */
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Table Body Cells (TD) */
.woocommerce-cart-form table.shop_table tbody td {
    padding: 15px 12px;
    border-bottom: 1px solid #f8f8f8; /* Even lighter border for rows */
    vertical-align: middle;
    font-size: 0.95em;
    line-height: 1.4;
}

/* Remove border from the last row for a cleaner finish */
.woocommerce-cart-form table.shop_table tbody tr:last-child td {
    border-bottom: none;
}

/* --- Specific Cell Styling --- */

/* Product Image in Cart */
.woocommerce-cart-form table.shop_table .product-thumbnail img {
    width: 80px;
    height: auto;
    border-radius: 6px;
    border: 1px solid #f0f0f0; /* Very light border */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03); /* More subtle shadow */
    object-fit: cover;
}

/* Product Name Link */
.woocommerce-cart-form table.shop_table .product-name a {
    color: #333333;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1em;
}

.woocommerce-cart-form table.shop_table .product-name a:hover {
    color: #1ABC9C; /* Your site's accent color (teal/green) */
    text-decoration: underline;
}

/* Quantity Input Field */
.woocommerce-cart-form .quantity .qty {
    width: 60px;
    padding: 8px 6px;
    border: 1px solid #e0e0e0; /* Softer border */
    border-radius: 6px;
    text-align: center;
    font-size: 0.95em;
    color: #333333;
    background-color: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    -moz-appearance: textfield;
}

.woocommerce-cart-form .quantity .qty:focus {
    border-color: #1ABC9C; /* Your site's accent color on focus */
    box-shadow: 0 0 0 2px rgba(26, 188, 156, 0.15); /* Softer glow on focus */
    outline: none;
}

/* Remove Item (X) Button */
.woocommerce-cart-form .product-remove .remove {
    font-size: 24px;
    color: #dc3545; /* Standard red */
    text-decoration: none;
    line-height: 1;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.woocommerce-cart-form .product-remove .remove:hover {
    color: #c82333;
    transform: scale(1.1);
}

/* --- Update Cart Button --- */
.woocommerce-cart-form .actions .button {
    background-color: #1ABC9C !important; /* Your site's primary accent color (teal/green) */
    color: #ffffff !important;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    font-size: 0.95em !important;
    letter-spacing: 0.2px;
    display: inline-block;
    text-decoration: none;
    line-height: 1;
    text-align: center;
    box-shadow: 0 3px 8px rgba(26, 188, 156, 0.15); /* Softer shadow */
    float: right;
}

.woocommerce-cart-form .actions .button:hover {
    background-color: #16a085 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 10px rgba(26, 188, 156, 0.25) !important;
}

.woocommerce-cart-form .actions {
    overflow: hidden;
    padding-top: 20px;
}

/* --- Cart Totals & Buttons (Cart Page) --- */

.cart-collaterals {
    margin-top: 30px;
    display: flex; /* Enable flexbox for better alignment on all screens */
    justify-content: flex-end; /* Align to the right by default */
}

.cart_totals {
    width: 100%; /* Take full width of its container */
    max-width: 400px; /* Limit width on larger screens */
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04); /* Even softer shadow */
    background-color: #fdfdfd; /* Almost white background */
    border: 1px solid #f8f8f8; /* Very light border */
}

.cart_totals h2 {
    font-size: 1.4em;
    margin-bottom: 20px;
}

.cart_totals table {
    font-size: 1em;
}

.cart_totals table td,
.cart_totals table th {
    padding: 10px 0;
    border-bottom: 1px dashed #f0f0f0; /* Lighter dashed border */
}

.cart_totals table tr:last-child td,
.cart_totals table tr:last-child th {
    font-size: 1.1em;
}

.cart_totals .order-total .amount {
    font-size: 1.1em;
    color: #1ABC9C; /* Your site's accent color */
    font-weight: 800;
}

/* --- Checkout Form Layout --- */

.woocommerce-checkout form.checkout {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.woocommerce-checkout .col2-set {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 30px;
}

/* Billing and Shipping columns */
.woocommerce-checkout .col-1,
.woocommerce-checkout .col-2 {
    flex: 1;
    min-width: 320px; /* Adjusted min-width for better flow on mid-size screens */
    padding: 0; /* Important: remove padding here if parent already has it to avoid double padding */
    background-color: transparent;
    border: none;
    box-shadow: none;
}

/* --- Input Fields (Modern & Intuitive, Softer) --- */

.woocommerce-checkout .form-row {
    margin-bottom: 20px;
}

.woocommerce-checkout .form-row label {
    margin-bottom: 8px;
    font-size: 0.95em;
    font-family: 'hind-medium', sans-serif; /* Confirmed from source */
}

.woocommerce-checkout .form-row input[type="text"],
.woocommerce-checkout .form-row input[type="email"],
.woocommerce-checkout .form-row input[type="tel"],
.woocommerce-checkout .form-row input[type="password"],
.woocommerce-checkout .form-row input[type="number"],
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0; /* Softer border */
    border-radius: 8px;
    font-size: 1em;
    color: #333333;
    background-color: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    line-height: 1.5;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.03); /* Lighter inner shadow */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: 'hind-regular', sans-serif; /* Confirmed from source */
}

/* Placeholder text color */
.woocommerce-checkout .form-row input::placeholder,
.woocommerce-checkout .form-row textarea::placeholder {
    color: #aaaaaa; /* Lighter placeholder */
    opacity: 1;
}

/* Hover and Focus effects for inputs */
.woocommerce-checkout .form-row input:hover,
.woocommerce-checkout .form-row select:hover,
.woocommerce-checkout .form-row textarea:hover {
    border-color: #d0d0d0; /* Slightly darker border on hover, still soft */
}

.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus {
    border-color: #1ABC9C; /* Your site's accent color */
    box-shadow: 0 0 0 3px rgba(26, 188, 156, 0.15); /* Softer glow */
    outline: none;
    background-color: #fcfdff; /* Very slight light tint on focus */
}

/* Custom arrow for select dropdowns */
.woocommerce-checkout .form-row select {
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23999999%22%20d%3D%22M287%2069.9a14.6%2014.6%200%200%200-20.7%200L146.2%20190.4%2026%2069.9A14.6%2014.6%200%200%200%205.3%2090.7l128.4%20120.5a14.6%2014.6%200%200%200%2020.7%200L287%2090.7A14.6%2014.6%200%200%200%20287%2069.9z%22%2F%3E%3C%2Fsvg%3E'); /* Lighter arrow color */
    background-position: right 15px center;
    background-size: 14px;
    padding-right: 40px;
}

.woocommerce-checkout .form-row textarea {
    min-height: 120px;
    resize: vertical;
}

/* Shipping to different address checkbox */
.woocommerce-checkout #ship-to-different-address label {
    font-size: 0.95em;
    font-family: 'hind-medium', sans-serif; /* Confirmed from source */
}

.woocommerce-checkout #ship-to-different-address input[type="checkbox"] {
    border: 1px solid #d0d0d0; /* Softer border for checkbox */
}

/* Order Review Table ('Tu pedido') */
.woocommerce-checkout .woocommerce-checkout-review-order-table {
    font-size: 0.95em;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table th,
.woocommerce-checkout .woocommerce-checkout-review-order-table td {
    padding: 12px;
    border-bottom: 1px dashed #f5f5f5; /* Even lighter dashed border */
}

/* Payment Methods Section */
#payment {
    padding: 20px;
    margin-top: 25px;
}

#payment ul.wc_payment_methods li {
    font-size: 0.95em;
}

#payment div.payment_box {
    background-color: #fbfbfb; /* Almost pure white */
    border: 1px solid #f0f0f0; /* Very light border */
    padding: 15px;
    font-size: 0.9em;
}

/* Specific styles for credit card inputs (OpenPay) */
.openpay-holder-name input,
.openpay-card-number input,
.openpay-card-expiry input,
.openpay-card-cvc input,
.openpay-select {
    padding: 12px 15px !important;
    border: 1px solid #e0e0e0 !important; /* Softer border */
    border-radius: 8px !important;
    font-size: 1em !important;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.03) !important;
}

/* Focus style for OpenPay inputs */
.openpay-holder-name input:focus,
.openpay-card-number input:focus,
.openpay-card-expiry input:focus,
.openpay-card-cvc input:focus,
.openpay-select:focus {
    border-color: #1ABC9C !important;
    box-shadow: 0 0 0 3px rgba(26, 188, 156, 0.15) !important;
    background-color: #fcfdff !important;
}

.payment_box.payment_method_openpay_cards {
    background-color: #fdfdfd !important; /* Whiter payment box background */
    border-color: #f5f5f5 !important; /* Lighter border for payment box */
}

/* Security message and policy text adjustments */
.woocommerce-privacy-policy-text p {
    font-size: 0.9em;
    color: #666666;
    line-height: 1.5;
}

/* Place Order Button */
.woocommerce-checkout #place_order {
    background-color: #28a745 !important; /* Confident green */
    color: #ffffff !important;
    padding: 15px 30px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 1.1em !important;
    max-width: 350px;
    margin: 30px auto 0 auto;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.2); /* Softer shadow */
    font-family: 'Metropolis-Medium', sans-serif !important; /* Confirmed from source */
    letter-spacing: 0.5px;
}

.woocommerce-checkout #place_order:hover {
    background-color: #218838 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 5px 12px rgba(40, 167, 69, 0.3);
}

/* --- Messages (e.g., "returning customer?", error messages) --- */
.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
    background-color: #fbfbfb; /* Whiter background for messages */
    border-left: 5px solid #1ABC9C; /* Accent color bar */
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    color: #333333;
    font-size: 0.95em;
    line-height: 1.5;
    font-family: 'hind-regular', sans-serif;
    border-color: #f0f0f0; /* Add a light border to the message boxes */
}

.woocommerce-error {
    background-color: #fffafa; /* Very light red background for errors */
    border-left-color: #dc3545; /* Red for errors */
    color: #dc3545;
}

/* --- Responsive Adjustments for Mobile and Smaller Screens --- */

/* General adjustments for screens up to 991px (tablets and smaller) */
@media (max-width: 991px) {
    /* Main sections: adjust padding for smaller screens */
    .woocommerce-cart-form,
    .woocommerce-checkout form.checkout,
    .woocommerce-checkout .woocommerce-order-review,
    .woocommerce-checkout #payment,
    .woocommerce-checkout .woocommerce-additional-fields {
        padding: 20px; /* Reduced padding */
        margin-bottom: 25px; /* Slightly less space between sections */
        border-radius: 12px; /* Maintain good rounding */
    }

    /* Checkout columns (Billing and Shipping details) */
    .woocommerce-checkout form.checkout,
    .woocommerce-checkout .col2-set {
        flex-direction: column; /* Stack columns vertically */
        gap: 25px; /* Space between stacked columns */
    }

    .woocommerce-checkout .col-1,
    .woocommerce-checkout .col-2 {
        min-width: unset; /* Remove minimum width constraint */
        width: 100%; /* Make them take full width */
        /* Re-apply box styling as they now act as main content blocks */
        background-color: #ffffff;
        border: 1px solid #f8f8f8;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        padding: 25px; /* Add internal padding */
    }

    /* Adjust heading sizes for smaller screens */
    .woocommerce-cart h2, .woocommerce-checkout h2 {
        font-size: 1.6em;
        margin-bottom: 15px;
    }
    .woocommerce-cart h3, .woocommerce-checkout h3 {
        font-size: 1.3em;
        margin-bottom: 15px;
    }
}

/* Specific adjustments for screens up to 767px (typical mobile phones) */
@media (max-width: 767px) {
    /* Further reduce base font size for very small mobiles */
    .woocommerce-cart, .woocommerce-checkout {
        font-size: 14px;
    }

    /* Smaller headings for very small screens */
    .woocommerce-cart h2, .woocommerce-checkout h2 {
        font-size: 1.4em;
    }
    .woocommerce-cart h3, .woocommerce-checkout h3 {
        font-size: 1.1em;
    }

    /* Cart Table - Responsive overhaul for mobile */
    .woocommerce-cart-form table.shop_table {
        border: none; /* Remove outer table border for cleaner look */
        width: 100%;
        display: block; /* Make the table a block element */
        overflow-x: auto; /* Enable horizontal scroll as a fallback */
        white-space: nowrap; /* Prevent wrapping if overflow */
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    }

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

    .woocommerce-cart-form table.shop_table tbody,
    .woocommerce-cart-form table.shop_table tr,
    .woocommerce-cart-form table.shop_table td {
        display: block; /* Make table body, rows, and cells block elements */
        width: 100%; /* Each takes full width of its container */
        white-space: normal; /* Allow text to wrap within the new block elements */
    }

    .woocommerce-cart-form table.shop_table tbody tr {
        margin-bottom: 15px; /* Space between product items */
        border: 1px solid #eeeeee; /* Light border around each product item */
        border-radius: 8px; /* Rounded corners for each product item box */
        padding: 10px; /* Internal padding for each product item */
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03); /* Subtle shadow for each product item */
    }

    .woocommerce-cart-form table.shop_table tbody td {
        border-bottom: none; /* Remove internal cell borders */
        padding: 8px 10px; /* Adjust padding for cells */
        text-align: right; /* Align content to the right by default */
        position: relative; /* Needed for pseudo-element labels */
        font-size: 0.9em; /* Smaller font for cell content */
    }

    /* Add custom labels for each cell using data-title */
    .woocommerce-cart-form table.shop_table tbody td::before {
        content: attr(data-title) ": "; /* Get label from data-title attribute */
        font-weight: 600; /* Bold label */
        color: #555555;
        position: absolute;
        left: 10px; /* Position label to the left */
        width: calc(50% - 20px); /* Adjust width to not overlap with value */
        text-align: left; /* Align label text to the left */
        white-space: nowrap; /* Prevent label from wrapping */
        overflow: hidden;
        text-overflow: ellipsis; /* Add ellipsis if label is too long */
    }

    /* Specific mobile adjustments for product elements */
    .woocommerce-cart-form table.shop_table .product-thumbnail {
        text-align: center !important; /* Center the image in its row */
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-bottom: 10px; /* Space below the image */
    }
    .woocommerce-cart-form table.shop_table .product-thumbnail img {
        width: 60px; /* Smaller image on mobile */
        height: 60px; /* Maintain aspect ratio */
        border-radius: 6px;
    }

    .woocommerce-cart-form .product-remove {
        position: absolute; /* Position the 'X' button absolutely */
        top: 5px; /* Closer to top-right corner */
        right: 5px;
        font-size: 20px; /* Smaller 'X' */
        padding: 0 !important;
    }

    /* Quantity input on mobile */
    .woocommerce-cart-form .quantity {
        display: flex; /* Use flexbox to center quantity input */
        justify-content: flex-end; /* Align to the right, consistent with other values */
        align-items: center;
        width: auto; /* Allow content to dictate width */
    }
    .woocommerce-cart-form .quantity .qty {
        width: 50px; /* Smaller width */
        padding: 6px 4px; /* Reduced padding */
        font-size: 0.85em; /* Smaller font */
    }

    /* Update Cart button */
    .woocommerce-cart-form .actions {
        display: flex;
        justify-content: center; /* Center the button */
        padding-top: 15px;
    }
    .woocommerce-cart-form .actions .button {
        float: none; /* Remove float */
        width: 100%; /* Full width */
        max-width: 250px; /* Limit max width for aesthetic */
        padding: 10px 20px; /* Smaller padding */
        font-size: 0.9em !important;
    }

    /* Cart Totals section on mobile */
    .cart-collaterals {
        justify-content: center; /* Center totals block */
    }
    .cart_totals {
        padding: 20px; /* Reduced padding */
    }
    .cart_totals table {
        font-size: 0.9em;
    }
    .cart_totals table td, .cart_totals table th {
        padding: 8px 0;
    }

    /* Checkout form fields on mobile */
    .woocommerce-checkout .form-row input[type="text"],
    .woocommerce-checkout .form-row input[type="email"],
    .woocommerce-checkout .form-row input[type="tel"],
    .woocommerce-checkout .form-row input[type="password"],
    .woocommerce-checkout .form-row input[type="number"],
    .woocommerce-checkout .form-row select,
    .woocommerce-checkout .form-row textarea {
        padding: 10px 12px;
        font-size: 0.95em;
    }

    .woocommerce-checkout .form-row label {
        font-size: 0.9em;
    }

    /* OpenPay fields on mobile */
    .openpay-holder-name input,
    .openpay-card-number input,
    .openpay-card-expiry input,
    .openpay-card-cvc input,
    .openpay-select {
        padding: 10px 12px !important;
        font-size: 0.95em !important;
    }

    /* Place Order button on mobile */
    #place_order {
        padding: 14px 25px !important;
        font-size: 1em !important;
        max-width: 90%; /* Adjust max width for mobile */
    }
}/* End custom CSS */