.elementor-209 .elementor-element.elementor-element-294ff5a{--display:flex;}:root{--page-title-display:none;}@media(max-width:767px){.elementor-209 .elementor-element.elementor-element-108a1f4{z-index:2;}.elementor-209 .elementor-element.elementor-element-b42e361{margin:-80px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;z-index:1;}}/* Start custom CSS for shortcode, class: .elementor-element-108a1f4 *//* -----------------------------------------------------------
   ARTHEMIS STUDIO | CART FLUID DESIGN SYSTEM v2.0
   ----------------------------------------------------------- */

:root {
    --mo-bg: #F8F9FB;
    --mo-card-bg: #FFFFFF;
    --mo-accent: #F7941D; /* Naranja Master */
    --mo-accent-2: #E31E24; /* Rojo Outlet */
    --mo-text: #1A1A1A;
    --mo-radius: 20px;
    --shadow-soft: 0 10px 40px rgba(0,0,0,0.04);
    --shadow-hover: 0 20px 50px rgba(0,0,0,0.08);
}

/* 1. LAYOUT MAESTRO (Escritorio) */
@media (min-width: 992px) {
    .woocommerce-cart .woocommerce {
        display: grid;
        grid-template-columns: 1.8fr 1fr; /* Izquierda más ancha */
        gap: 40px;
        align-items: start;
    }
    
    /* Columna Izquierda (Productos) */
    .woocommerce-cart-form {
        background: transparent;
    }

    /* Columna Derecha (Totales Sticky) */
    .cart-collaterals {
        position: sticky;
        top: 100px; /* Debajo del header */
        z-index: 10;
    }
}

/* 2. DISEÑO DE LA "TABLA" (Transformada en Lista Fluida) */
.shop_table {
    border: none !important;
    border-collapse: separate !important;
    border-spacing: 0 20px !important; /* Espacio entre items */
    width: 100%;
    background: transparent !important;
}

.shop_table thead { display: none; } /* Ocultar cabeceras feas */

.shop_table tr.cart_item {
    background: var(--mo-card-bg);
    box-shadow: var(--shadow-soft);
    border-radius: var(--mo-radius);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex; /* Flexbox para fluidez */
    align-items: center;
    padding: 20px;
    position: relative;
    margin-bottom: 20px;
}

.shop_table tr.cart_item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Celdas individuales */
.shop_table td {
    border: none !important;
    padding: 0 15px !important;
    background: transparent !important;
}

/* Imagen del Producto */
.shop_table .product-thumbnail { width: 100px; flex-shrink: 0; }
.shop_table .product-thumbnail img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 12px;
}

/* Nombre del Producto */
.shop_table .product-name {
    flex-grow: 1;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
}
.shop_table .product-name a { text-decoration: none; color: var(--mo-text); }
.shop_table .product-name .amount { display: block; font-size: 0.9rem; color: #888; margin-top: 5px; font-weight: 400; }

/* Input Cantidad (Pill Design) */
.shop_table .product-quantity .quantity {
    border: 1px solid #eee;
    border-radius: 50px;
    padding: 5px;
    background: #f9f9f9;
}
.shop_table .product-quantity input.qty {
    background: transparent;
    border: none;
    font-weight: 700;
}

/* Botón Eliminar (Trash Icon) */
.shop_table .product-remove {
    position: absolute;
    top: 15px; right: 15px;
}
.shop_table .product-remove a {
    color: #ccc !important;
    font-size: 1.1rem;
    background: transparent;
    transition: 0.3s;
}
.shop_table .product-remove a:hover { color: var(--mo-accent-2) !important; transform: scale(1.1); }

/* Ocultar precios redundantes en desktop */
.shop_table .product-price, .shop_table .product-subtotal { display: none; }

/* 3. MÓDULO UPSELL (Estantería Rápida) */
.mo-upsell-shelf {
    margin-top: 40px;
    padding: 25px;
    background: white; /* Degradado sutil */
    border-radius: var(--mo-radius);
    border: 1px solid #f0f0f0;
}

.mo-upsell-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--mo-text);
}

.mo-upsell-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
}

.mo-upsell-card {
    border: 1px solid #f5f5f5;
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    transition: 0.3s;
}
.mo-upsell-card:hover { border-color: var(--mo-accent); }

.mo-upsell-img img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.mo-upsell-info h4 {
    font-size: 0.8rem;
    margin: 5px 0;
    height: 35px; /* Altura fija para alineación */
    overflow: hidden;
}

.mo-upsell-price {
    font-weight: 700;
    color: var(--mo-accent);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.mo-upsell-btn {
    width: 100%;
    padding: 8px !important;
    font-size: 0.75rem !important;
    background: var(--mo-text) !important;
    color: white !important;
    border-radius: 6px !important;
    display: flex !important;
    justify-content: center;
    gap: 5px;
}
.mo-upsell-btn:hover { background: var(--mo-accent) !important; }

/* 4. TOTALES & CHECKOUT (Premium Card) */
.cart_totals {
    background: var(--mo-card-bg);
    padding: 30px;
    border-radius: var(--mo-radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.03);
}

.cart_totals h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 25px;
    border-bottom: 2px solid #f5f5f5;
    padding-bottom: 15px;
}

.cart_totals table {
    width: 100%;
    border-collapse: collapse;
}

.cart_totals th, .cart_totals td {
    padding: 15px 0;
    border-bottom: 1px dashed #eee;
    font-size: 0.95rem;
}

.cart_totals tr.order-total th, .cart_totals tr.order-total td {
    border-bottom: none;
    padding-top: 25px;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--mo-text);
}

.wc-proceed-to-checkout { margin-top: 25px; }

.checkout-button {
    width: 100%;
    padding: 18px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--mo-accent) 0%, var(--mo-accent-2) 100%) !important;
    color: white !important;
    border-radius: 50px !important;
    box-shadow: 0 10px 25px rgba(247, 148, 29, 0.3) !important;
    transition: all 0.3s ease !important;
}

.checkout-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(247, 148, 29, 0.5) !important;
}

/* 5. RESPONSIVE MÓVIL (Ajustes finales) */
@media (max-width: 768px) {
    .shop_table tr.cart_item {
        flex-wrap: wrap; /* Permitir que los elementos bajen */
    }
    
    .shop_table .product-thumbnail { width: 80px; }
    .shop_table .product-name { width: calc(100% - 100px); padding-left: 15px; }
    
    .shop_table .product-quantity {
        width: 100%;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px dashed #eee;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    /* Etiqueta "Cantidad:" para móvil */
    .shop_table .product-quantity:before {
        content: 'Cantidad:';
        font-size: 0.85rem;
        color: #888;
    }

    .mo-upsell-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columnas en móvil */
    }
}
/* ARTHEMIS STUDIO | CART REPAIR KIT v3.0 */

:root {
    --mo-orange: #F7941D;
    --mo-red: #E31E24;
    --mo-dark: #111;
    --mo-radius: 12px;
}

/* --- 1. BARRA DE ENVÍO (ADDONS) --- */
.mo-cart-dashboard {
    margin-bottom: 30px;
}

.mo-shipping-bar {
    background: #fff;
    padding: 20px;
    border-radius: var(--mo-radius);
    border: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.mo-sb-text {
    text-align: center;
    margin-bottom: 10px;
    font-family: sans-serif;
    color: #333;
    font-size: 0.95rem;
}

.mo-sb-rail {
    height: 8px;
    background: #f1f5f9;
    border-radius: 10px;
    overflow: hidden;
}

.mo-sb-fill {
    height: 100%;
    transition: width 0.5s ease;
}

.mo-loading { background: linear-gradient(90deg, var(--mo-orange), var(--mo-red)); }
.mo-success { background: #10B981; }

/* --- 2. UPSELL GRID (SOLUCIÓN A IMÁGENES DEFORMADAS) --- */
.mo-upsell-container {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px dashed #eee;
}

.mo-upsell-head {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--mo-dark);
}

/* Grid Responsivo Inteligente */
.mo-upsell-grid {
    display: grid;
    /* Esto crea columnas automáticas: mínimo 140px, máximo lo que quepa */
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
}

/* Tarjeta de Producto */
.mo-upsell-card {
    background: #fff;
    border-radius: var(--mo-radius);
    border: 1px solid #f0f0f0;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mo-upsell-card:hover {
    border-color: var(--mo-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* CORRECCIÓN DE IMAGEN (Aspect Ratio Lock) */
.mo-uc-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; /* Fuerza un cuadrado perfecto */
    overflow: hidden;
    background: #f9f9f9;
}

.mo-uc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Recorta la imagen sin deformarla */
    object-position: center;
    transition: transform 0.5s ease;
}

.mo-upsell-card:hover .mo-uc-image img {
    transform: scale(1.1); /* Zoom sutil al pasar el mouse */
}

/* Badge de Oferta */
.mo-uc-badge {
    position: absolute;
    top: 8px; left: 8px;
    background: var(--mo-red);
    color: white;
    font-size: 0.65rem;
    padding: 3px 6px;
    border-radius: 4px;
    font-weight: 700;
}

/* Detalles */
.mo-uc-details {
    padding: 12px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.mo-uc-details h4 {
    font-size: 0.85rem;
    margin: 0 0 5px 0;
    line-height: 1.3;
    font-weight: 600;
    color: #333;
    /* Limitar a 2 líneas de texto */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mo-uc-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--mo-orange);
    margin-bottom: 10px;
    margin-top: auto; /* Empuja el precio hacia abajo */
}

/* Botón Agregar */
.mo-uc-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--mo-dark);
    color: white !important;
    text-decoration: none;
    padding: 8px 0;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: 0.2s;
}

.mo-uc-btn:hover {
    background: var(--mo-orange);
}

/* AJUSTES MÓVILES */
@media (max-width: 600px) {
    .mo-upsell-grid {
        grid-template-columns: repeat(2, 1fr); /* Siempre 2 columnas en celular */
        gap: 10px;
    }
    .mo-uc-details { padding: 10px; }
    .mo-uc-btn { font-size: 0.75rem; padding: 6px 0; }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-b42e361 *//* ARTHEMIS STUDIO | CART REPAIR KIT v3.0 */

:root {
    --mo-orange: #F7941D;
    --mo-red: #E31E24;
    --mo-dark: #111;
    --mo-radius: 12px;
}

/* --- 1. BARRA DE ENVÍO (ADDONS) --- */
.mo-cart-dashboard {
    margin-bottom: 30px;
}

.mo-shipping-bar {
    background: #fff;
    padding: 20px;
    border-radius: var(--mo-radius);
    border: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.mo-sb-text {
    text-align: center;
    margin-bottom: 10px;
    font-family: sans-serif;
    color: #333;
    font-size: 0.95rem;
}

.mo-sb-rail {
    height: 8px;
    background: #f1f5f9;
    border-radius: 10px;
    overflow: hidden;
}

.mo-sb-fill {
    height: 100%;
    transition: width 0.5s ease;
}

.mo-loading { background: linear-gradient(90deg, var(--mo-orange), var(--mo-red)); }
.mo-success { background: #10B981; }

/* --- 2. UPSELL GRID (SOLUCIÓN A IMÁGENES DEFORMADAS) --- */
.mo-upsell-container {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px dashed #eee;
}

.mo-upsell-head {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--mo-dark);
}

/* Grid Responsivo Inteligente */
.mo-upsell-grid {
    display: grid;
    /* Esto crea columnas automáticas: mínimo 140px, máximo lo que quepa */
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
}

/* Tarjeta de Producto */
.mo-upsell-card {
    background: #fff;
    border-radius: var(--mo-radius);
    border: 1px solid #f0f0f0;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mo-upsell-card:hover {
    border-color: var(--mo-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* CORRECCIÓN DE IMAGEN (Aspect Ratio Lock) */
.mo-uc-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; /* Fuerza un cuadrado perfecto */
    overflow: hidden;
    background: #f9f9f9;
}

.mo-uc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Recorta la imagen sin deformarla */
    object-position: center;
    transition: transform 0.5s ease;
}

.mo-upsell-card:hover .mo-uc-image img {
    transform: scale(1.1); /* Zoom sutil al pasar el mouse */
}

/* Badge de Oferta */
.mo-uc-badge {
    position: absolute;
    top: 8px; left: 8px;
    background: var(--mo-red);
    color: white;
    font-size: 0.65rem;
    padding: 3px 6px;
    border-radius: 4px;
    font-weight: 700;
}

/* Detalles */
.mo-uc-details {
    padding: 12px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.mo-uc-details h4 {
    font-size: 0.85rem;
    margin: 0 0 5px 0;
    line-height: 1.3;
    font-weight: 600;
    color: #333;
    /* Limitar a 2 líneas de texto */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mo-uc-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--mo-orange);
    margin-bottom: 10px;
    margin-top: auto; /* Empuja el precio hacia abajo */
}

/* Botón Agregar */
.mo-uc-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--mo-dark);
    color: white !important;
    text-decoration: none;
    padding: 8px 0;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: 0.2s;
}

.mo-uc-btn:hover {
    background: var(--mo-orange);
}

/* AJUSTES MÓVILES */
@media (max-width: 600px) {
    .mo-upsell-grid {
        grid-template-columns: repeat(2, 1fr); /* Siempre 2 columnas en celular */
        gap: 10px;
    }
    .mo-uc-details { padding: 10px; }
    .mo-uc-btn { font-size: 0.75rem; padding: 6px 0; }
}/* End custom CSS */