/*
 Theme Name:   GeneratePress Child
 Template:     generatepress
 Description:  Child theme para personalizaciones de Popey
 Author:       Agus Rodino
 Author URI:   https://agusrodino.com/
 Theme URI:    https://popeycruceislagorriti.com/
 Version:      1.1.0 (Cleaned)
 Text Domain:  generatepress-child
 License:      GNU General Public License v2 or later
 License URI:  https://www.gnu.org/licenses/gpl-2.0.html
*/

/* =================================================================
   Global & WooCommerce Tweaks
   ================================================================= */
.woocommerce-additional-fields h,
.woocommerce-additional-fields h3 {
	display: none !important;
}

.amount .woocommerce-Price-amount {
	font-size: 2rem !important;
}

/* =================================================================
   Base Variables
   ================================================================= */
:root {
    --popey-font-family: 'Basis', sans-serif;
    --popey-color-primary: #00BEDB;
    --popey-color-secondary: #FFC700;
    --popey-color-text: #212529;
    --popey-color-text-light: #6C757D;
    --popey-color-background: #F8F9FA;
    --popey-color-surface: #FFFFFF;
    --popey-color-border: #DEE2E6;
    --popey-color-success: #198754;
    --popey-color-disabled: #E9ECEF;
    --popey-border-radius: 12px;
    --popey-shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --popey-shadow-md: 0 4px 12px rgba(0,0,0,0.1);
}

/* =================================================================
   Booking Form: Main Container & Layout
   ================================================================= */
.popey-booking-container {
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0 !important;
    margin: 2em auto;
    font-family: var(--popey-font-family);
    color: var(--popey-color-text);
    background-color: #FFF !important;
	border-radius: 5px !important;
}

/* =================================================================
   Booking Form: Calendar
   ================================================================= */
.popey-calendar {
    background: var(--popey-color-surface);
    padding: 25px;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 1rem !important;
	border-bottom: 1px solid #ADB5BD45 !important;
}

.calendar-header h2 {
    margin: 0;
    font-size: 1.4em;
    font-weight: 200 !important;
    color: var(--popey-color-primary);
    text-align: center;
}

.calendar-nav-arrow {
    font-size: 1em;
    font-weight: 300 !important;
    cursor: pointer;
    color: var(--popey-color-primary);
    padding: 8px 12px;
    user-select: none;
    border-radius: 8px;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.calendar-nav-arrow:hover {
    background-color: rgba(0, 82, 255, 0.1);
}
.calendar-nav-arrow.disabled {
    color: var(--popey-color-text-light);
    cursor: not-allowed;
    background-color: transparent;
    opacity: 0.6;
}

/* Days of the Calendar */
.weekdays, .days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}
.weekdays {
    padding-bottom: 1rem !important;
}
.weekdays span {
    font-weight: 600;
    text-align: center;
    font-size: 0.9em;
    color: var(--popey-color-text-light);
}
.days .day {
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--popey-color-background);
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    font-size: 1.1em;
    font-weight: 500;
    border: 2px solid transparent;
}
.days .day:not(.disabled):not(.other-month):hover {
    background: var(--popey-color-secondary);
    color: var(--popey-color-text);
    transform: scale(1.05);
    box-shadow: var(--popey-shadow-sm);
}
.days .day.disabled {
    background: transparent;
    color: var(--popey-color-disabled);
    cursor: not-allowed;
    text-decoration: line-through;
}
.days .day.other-month {
    background: transparent;
    cursor: default;
    visibility: hidden;
}
.days .day.selected {
    background: var(--popey-color-primary);
    color: var(--popey-color-surface);
    font-weight: 700;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 82, 255, 0.4);
}


/* =================================================================
   Booking Form: Timeslots List
   ================================================================= */
.popey-timeslots-wrapper {
    border-radius: 0 !important;
}

.popey-timeslots-header {
    font-family: 'Basis' !important;
    font-size: 1.1rem !important;
    font-weight: 200 !important;
    color: var(--popey-color-text);
    margin-bottom: 20px;
    text-align: center !important;
    text-transform: uppercase !important;
    padding: 15px;
    background: var(--popey-color-surface);
    border-radius: 0 !important;
    border: 1px solid var(--popey-color-border);
    box-shadow: var(--popey-shadow-sm);
	padding-top: 2.5rem !important;
	padding-bottom: 1rem !important;
	border-bottom: 1px solid #ADB5BD45 !important;
}

.popey-timeslots-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Timeslot Card */
.timeslot-container {
    border: none !important;
    border-radius: 0 !important;
    background: var(--popey-color-surface);
    transition: all 0.2s ease-in-out;
    box-shadow: none !important;
    padding: 0px !important;
    border-bottom: 1px solid #ADB5BD45 !important;
}
.timeslot-container:hover:not(.disabled) {
    box-shadow: var(--popey-shadow-md);
    transform: translateY(-2px);
}
.timeslot-container.selected {
    border-color: var(--popey-color-primary);
    box-shadow: 0 0 15px rgba(0, 82, 255, 0.2);
}
.timeslot-container.disabled {
    opacity: 0.6;
    pointer-events: none;
    background-color: var(--popey-color-background);
    transform: none;
}
.timeslot-header {
    padding: 10px 0 !important;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem !important;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase !important;
	text-align: center !important;
}
.timeslot-header::after {
    display: none !important;
}

/* Ticket Selector inside Timeslot Card */
.popey-ticket-selector {
    display: none;
    padding: 0 20px 20px 20px;
    border-top: 1px solid var(--popey-color-border);
    background: var(--popey-color-surface);
    border-bottom-left-radius: var(--popey-border-radius);
    border-bottom-right-radius: var(--popey-border-radius);
}
.popey-capacity-info {
    font-size: 0.9em;
    text-align: center;
    padding: 8px 12px;
    color: var(--popey-color-primary);
    background-color: rgba(0, 82, 255, 0.1);
    border-radius: 8px;
    margin: 15px 0;
}
.timeslot-container.disabled .popey-capacity-info {
    background-color: #F8D7DA;
    color: #721C24;
}
.ticket-type-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--popey-color-background);
}
.ticket-type-row:last-of-type {
    border-bottom: none;
}
.ticket-label {
    font-size: 1em;
    font-weight: 500;
}
.ticket-label small {
    color: var(--popey-color-text-light);
    display: block;
    font-weight: 400;
}
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}
.qty-btn {
    background: var(--popey-color-background);
    border: 1px solid var(--popey-color-border);
    color: var(--popey-color-text);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 1.8em;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.qty-btn:hover {
    background: var(--popey-color-secondary);
    border-color: var(--popey-color-secondary);
}
.qty-input {
    width: 60px;
    text-align: center;
    border: 1px solid var(--popey-color-border);
    border-radius: 8px;
    padding: 10px;
    font-size: 1.1em;
    font-weight: 600;
    color: var(--popey-color-primary);
}
.qty-input::-webkit-outer-spin-button, .qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none; margin: 0;
}
.qty-input[type=number] {
    -moz-appearance: textfield;
}

/* Subtotal and Add to Cart Button */
.popey-discount-info {
    font-size: 0.9em;
    text-align: center;
    color: var(--popey-color-text-light);
    padding: 15px 0 5px;
    font-style: italic;
}
.popey-subtotal {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px dashed var(--popey-color-border);
    font-size: 1.3em;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.popey-subtotal-amount {
    color: var(--popey-color-primary);
}
.popey-add-to-cart-btn {
    background: var(--popey-color-success);
    color: var(--popey-color-surface);
    border: none;
    border-radius: 8px;
    padding: 15px;
    width: 100%;
    font-size: 1.2em;
    font-weight: 600;
    margin-top: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
}
.popey-add-to-cart-btn:hover:not(:disabled) {
    background: #157347;
    box-shadow: var(--popey-shadow-md);
    transform: translateY(-2px);
}
.popey-add-to-cart-btn:disabled {
    background: var(--popey-color-disabled);
    color: var(--popey-color-text-light);
    cursor: not-allowed;
}
.popey-loader {
    text-align: center; padding: 40px; font-size: 1.2em; font-weight: 500; color: var(--popey-color-text-light);
}

/* =================================================================
   Seller & Admin Panels
   ================================================================= */
.popey-vendedor-panel-container, .popey-admin-panel-container{max-width:1200px;margin:2em auto; font-family: var(--popey-font-family);}
.popey-panel-title{border-bottom:3px solid var(--popey-color-primary);padding-bottom:10px;color:var(--popey-color-primary);font-size:2em;font-weight:700;}
.popey-panel-tabs{display:flex;flex-wrap:wrap;border-bottom:1px solid var(--popey-color-border);margin-bottom:25px;}
.popey-tab{padding:12px 22px;cursor:pointer;color:var(--popey-color-text-light);font-weight:600;margin-bottom:-1px;border-bottom:3px solid transparent;transition:all 0.2s ease;}
.popey-tab:hover{color:var(--popey-color-primary);}
.popey-tab.active{color:var(--popey-color-primary);border-bottom:3px solid var(--popey-color-primary);}
.popey-tab-content{display:none;}.popey-tab-content.active{display:block;}
.popey-status-badge{padding:6px 12px;border-radius:20px;font-size:.8em;font-weight:700;text-transform:uppercase;letter-spacing:.5px;display:inline-block;line-height:1.2;}
.popey-status-badge.status-pendiente{background-color:rgba(255,199,0,0.2);color:#926F00;}
.popey-status-badge.status-pagado{background-color:rgba(25,135,84,0.2);color:#0F5132;}
.popey-kpi-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:20px;margin-bottom:30px;}
.popey-kpi-card{background:var(--popey-color-surface);border:1px solid var(--popey-color-border);border-left:5px solid var(--popey-color-primary);padding:20px;border-radius:var(--popey-border-radius);box-shadow:var(--popey-shadow-sm);}
.popey-kpi-card h3{margin:0 0 10px;font-size:1.2em;color:var(--popey-color-text-light);}
.popey-kpi-card .amount{font-size:2em;font-weight:bold;color:var(--popey-color-primary);}
.popey-pos-form-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:20px;}
.popey-pos-form-grid label{font-weight:bold;display:block;margin-bottom:5px;}
.popey-pos-form-grid input,.popey-pos-form-grid select{width:100%;padding:10px;border:1px solid var(--popey-color-border);border-radius:8px;}
.popey-pos-form-grid input:focus,.popey-pos-form-grid select:focus{outline:none;border-color:var(--popey-color-primary);box-shadow:0 0 0 3px rgba(0,82,255,0.25);}
.popey-sr-wrap{border:1px solid var(--popey-color-border);border-radius:var(--popey-border-radius);padding:16px;background:var(--popey-color-surface);box-shadow:var(--popey-shadow-sm);}
.popey-sr-filters{display:flex;gap:12px;align-items:center;flex-wrap:wrap;margin-bottom:12px;background:var(--popey-color-background);border:1px solid var(--popey-color-border);border-radius:8px;padding:12px;}
.popey-sr-filters select,.popey-sr-filters button,.popey-sr-filters a.button{padding:8px 12px;border:1px solid var(--popey-color-border);border-radius:8px;font-size:14px;line-height:1.5;text-decoration:none;}
.popey-sr-actions{margin-left:auto;display:flex;gap:8px;}
.popey-sr-table{width:100%;border-collapse:collapse;margin-top:1em}
.popey-sr-table th,.popey-sr-table td{border-bottom:1px solid var(--popey-color-border);padding:12px 10px;text-align:left;}
.popey-sr-table th{background:var(--popey-color-primary);color:var(--popey-color-surface);font-weight:600;}
.popey-sr-table a{color:var(--popey-color-primary);text-decoration:none;font-weight:600;}
.popey-sr-table a:hover{text-decoration:underline;}
.popey-sr-pagination{display:flex;gap:6px;justify-content:flex-end;margin-top:12px;flex-wrap:wrap}
.popey-sr-pagination a,.popey-sr-pagination span{border:1px solid var(--popey-color-border);border-radius:8px;padding:6px 12px;text-decoration:none;color:var(--popey-color-text);}
.popey-sr-pagination .current{background:var(--popey-color-primary);color:var(--popey-color-surface);border-color:var(--popey-color-primary)}
.popey-sr-table .button{font-size:13px;padding:6px 12px;border-radius:8px;}
.popey-sr-filters button[type=submit],.popey-pagar-comision-btn{background-color:var(--popey-color-primary);color:var(--popey-color-surface);border:1px solid var(--popey-color-primary);font-weight:600;transition:background-color .2s ease,border-color .2s ease;}
.popey-sr-filters button[type=submit]:hover,.popey-pagar-comision-btn:hover{background-color:#003db8;border-color:#003db8;color:var(--popey-color-surface);}
.popey-sr-filters a.button{background-color:transparent;color:var(--popey-color-primary);border:1px solid var(--popey-color-primary);font-weight:600;transition:background-color .2s ease,color .2s ease;}
.popey-sr-filters a.button:hover{background-color:var(--popey-color-primary);color:var(--popey-color-surface);}
.popey-pagar-btn{background-color:var(--popey-color-success);color:white;}
.popey-resend-btn{background-color:var(--popey-color-secondary);color:var(--popey-color-text);}

/* =================================================================
   Media Queries (Responsive Adjustments)
   ================================================================= */

/* --- Laptops & Desktops --- */
@media (min-width: 780px) {
    .popey-booking-container {
		width: 1400px !important;
        max-width: 100% !important;
		border-radius: 16px !important;
		box-shadow: 0px 8px 25px -5px rgba(0, 190, 219, 0.4) !important;
		border: 10px solid #D1EEFF !important;
        padding: 2rem !important;
    }
	.popey-calendar .calendar-header h2 {
		font-size: 3rem !important;
		font-weight: 200 !important;
	}
	.popey-timeslots-wrapper {
		padding: 1rem 2rem !important;
		border-left: 1px solid #ADB5BD45 !important;
	}
}

@media (min-width: 820px) {
    .popey-booking-container {
        grid-template-columns: 3fr 3fr !important;
    }
}

/* --- Smaller Laptops --- */
@media (max-width: 1199px) {
    .popey-calendar .calendar-header h2 {
        font-size: 1.4rem !important;
    }
    .popey-calendar .calendar-header .calendar-nav-arrow {
        font-size: 0.8rem !important;
    }
}

/* =================================================================
   ESTILOS RESPONSIVOS AVANZADOS PARA TABLET Y MÓVILES
   ================================================================= */
@media (max-width: 819px) {

    /* --- Contenedor Principal --- */
    /* Añadimos un borde sutil y ajustamos el padding */
    .popey-booking-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 15px !important; /* Un poco menos de padding */
        gap: 25px !important;
        border: 5px solid var(--popey-color-hover) !important; /* Borde sutil con el color de hover */
        box-shadow: none !important;
        border-radius: 10px !important;
    }

    /* --- Calendario --- */
    .popey-calendar {
        padding: 15px !important;
    }
    
    /* 1. TEXTOS MÁS PEQUEÑOS */
    .popey-calendar .calendar-header h2 {
        font-size: 1.6rem !important; /* Reducimos el tamaño del mes */
    }
    .weekdays span {
        font-size: 0.8em !important; /* Reducimos los días de la semana */
    }
    .days .day {
        font-size: 1em !important; /* Reducimos el número del día */
    }
    .popey-timeslots-header {
        font-size: 1rem !important; /* Reducimos el título de horarios */
		line-height: 1.2em !important;
		padding-top: 0 !important;
    }
    .timeslot-header {
        font-size: 0.8rem !important; /* Reducimos el texto de cada partida */
    }
    .ticket-label {
        font-size: 0.9em !important; /* Reducimos el texto de los tickets */
    }

    /* 2. DISEÑO DE CALENDARIO MÁS MODERNO */
    .days {
        gap: 5px !important; /* Hacemos el espacio entre días más pequeño */
    }
    .days .day {
        border-radius: 8px !important; /* Cambiamos de círculo a cuadrado redondeado */
    }

    /* --- Lista de Horarios (Mantenemos mejoras anteriores) --- */
    .popey-timeslots-wrapper {
        padding: 0 !important;
        border-left: none !important;
    }

    .ticket-label {
        text-align: center !important;
    }
}


/* =================================================================
   ESTILOS PERSONALIZADOS PARA LA PÁGINA DE FINALIZAR COMPRA (V2)
   ================================================================= */

/* --- Títulos Principales --- */
.woocommerce-checkout h3 {
    font-size: 1.8em;
    color: #17c3ee !important;
    border-bottom: 2px solid #17c3ee !important;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

/* --- Campos del Formulario --- */
.woocommerce-checkout .form-row .input-text {
    border-radius: 8px !important;
    border: 1px solid #DEE2E6 !important;
    padding: 12px !important;
    transition: all 0.2s ease-in-out;
}
/* === CAMBIO DE COLOR EN EL FOCUS === */
.woocommerce-checkout .form-row .input-text:focus {
    border-color: #17c3ee !important;
    box-shadow: 0 0 0 3px rgba(23, 195, 238, 0.25) !important;
    outline: none;
}

/* --- Resumen del Pedido --- */
#order_review {
    border: 1px solid #DEE2E6 !important;
    border-radius: 12px !important;
    padding: 1.5em;
    background-color: #F8F9FA;
}
.woocommerce-checkout-review-order-table thead th {
    background-color: #17c3ee !important;
    color: #FFFFFF !important;
    padding: 1em;
}
.woocommerce-checkout-review-order-table thead th:first-child {
    border-top-left-radius: 8px;
}
.woocommerce-checkout-review-order-table thead th:last-child {
    border-top-right-radius: 8px;
}
.woocommerce-checkout-review-order-table .order-total {
    font-size: 1.2em;
}
.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
    border-bottom: none;
}

/* --- Sección de Pago --- */
#payment {
    background-color: #e8f9fd !important; /* Un tono muy claro de tu color corporativo */
    border-radius: 12px !important;
    padding: 1.5em;
}
#payment .wc_payment_methods {
    border: none !important;
    padding: 0 !important;
}
#payment .wc_payment_method {
    background-color: #FFFFFF !important;
    padding: 1em;
    border-radius: 8px;
    margin-bottom: 10px !important;
    border: 1px solid #DEE2E6;
    transition: border-color 0.2s ease;
}
#payment .wc_payment_method > label {
    font-size: 1.1em;
    font-weight: 600;
}
#payment .wc_payment_method:has(input:checked) {
    border-color: #17c3ee !important;
}
#payment .payment_box {
    background-color: transparent !important;
    padding: 1em 0 0 0 !important;
    margin: 1em 0 0 0 !important;
    border-top: 1px dashed #DEE2E6;
}

/* === OCULTAR EL TRIÁNGULO DEL MÉTODO DE PAGO === */
#payment .payment_box::before {
    display: none !important;
}

/* --- Botón Final de Realizar Pedido --- */
#place_order {
    background-color: #17c3ee !important;
    color: #FFFFFF !important;
    width: 100%;
    padding: 15px !important;
    font-size: 1.2em !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    transition: background-color 0.2s ease !important;
}
#place_order:hover {
    background-color: #13a2c9 !important; /* Un tono más oscuro para el hover */
}

/* --- Diseño Responsivo para Móviles --- */
@media (max-width: 768px) {
    .woocommerce-checkout .col2-set .col-1,
    .woocommerce-checkout .col2-set .col-2 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}
body.woocommerce-checkout {
    font-family: 'Basis' !important;
}
/* =================================================================
   ESTILOS PERSONALIZADOS PARA LA PÁGINA DE PEDIDO RECIBIDO
   ================================================================= */

/* --- Aplicar Fuente 'Basis' a toda la página --- */
body.woocommerce-order-received {
    font-family: 'Basis', sans-serif !important;
}

/* --- Mensaje de Éxito "Gracias. Tu pedido ha sido recibido." --- */
.woocommerce-order-received .woocommerce-notice--success {
    background-color: var(--popey-color-hover) !important;
    color: var(--popey-color-primary) !important;
    border-top-color: var(--popey-color-primary) !important;
    border-radius: var(--popey-border-radius) !important;
    font-size: 1.1em;
    padding: 1.5em 2em !important;
}

/* --- Resumen del Pedido (Número, Fecha, Total, etc.) --- */
.woocommerce-order-overview {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0 !important;
    border: none !important;
    margin-bottom: 2em !important;
}

.woocommerce-order-overview li {
    flex: 1 1 220px; /* Permite que los elementos se ajusten en pantallas pequeñas */
    background-color: var(--popey-color-surface);
    border: 1px solid var(--popey-color-border) !important;
    border-left: 5px solid var(--popey-color-primary) !important;
    padding: 1.2em !important;
    border-radius: 8px !important;
    margin: 0 !important;
}

/* --- Caja de Instrucciones Personalizadas --- */
.popey-cod-instructions {
    background: var(--popey-color-hover) !important;
    border: 1px solid var(--popey-color-primary) !important;
    border-radius: var(--popey-border-radius) !important;
    padding: 1.5em !important;
}
.popey-cod-instructions h2 {
    color: var(--popey-color-primary) !important;
    margin-top: 0 !important;
    border: none !important; /* Anula otros estilos de h2 */
}

/* --- Títulos de Sección ("Detalles del pedido", "Dirección de facturación") --- */
.woocommerce-order h2 {
    font-size: 1.8em;
    color: var(--popey-color-primary) !important;
    border-bottom: 2px solid var(--popey-color-primary) !important;
    padding-bottom: 10px;
    margin-top: 2em;
    margin-bottom: 1.5em;
}

/* --- Tabla de Detalles del Pedido --- */
.woocommerce-order .shop_table {
    border-radius: var(--popey-border-radius) !important;
    border: 1px solid var(--popey-color-border) !important;
    padding: 1.5em;
    background-color: var(--popey-color-background);
}
.woocommerce-order .shop_table thead th {
    background-color: var(--popey-color-primary) !important;
    color: var(--popey-color-surface) !important;
}
.woocommerce-order .shop_table thead th:first-child {
    border-top-left-radius: 8px;
}
.woocommerce-order .shop_table thead th:last-child {
    border-top-right-radius: 8px;
}
.woocommerce-order .shop_table tfoot th,
.woocommerce-order .shop_table tfoot td {
    border-top: 1px solid var(--popey-color-border) !important;
}

/* --- Detalles del Cliente --- */
.woocommerce-customer-details address {
    border-left: 5px solid var(--popey-color-primary) !important;
    background-color: var(--popey-color-background) !important;
    padding: 1.5em !important;
    border-radius: 8px !important;
    border-right: 1px solid var(--popey-color-border) !important;
    border-top: 1px solid var(--popey-color-border) !important;
    border-bottom: 1px solid var(--popey-color-border) !important;
}
.woocommerce-customer-details{
	display: none !important;
}

/* Ocultar texto duplicado en la página de "Pedido Recibido" */
body.woocommerce-order-received .woocommerce-order > p {
    display: none;
}

/* Volver a mostrar las instrucciones personalizadas que SÍ queremos */
body.woocommerce-order-received .woocommerce-order .popey-cod-instructions + p {
    display: block; /* Esto es un seguro, puede no ser necesario */
}

/* Ocultar el párrafo específico que sigue a nuestras instrucciones */
.popey-cod-instructions + p, 
.popey-discount-info {
    display: none !important;
}
.woocommerce-checkout .col-1{
	width: 100% !important;
}