/* Estilos Globales y Header */
body {
    font-family: sans-serif;
    margin: 0;
    background-color: #f8f8f8;
}

/* --- BANNER DE ENVÍO GRATIS --- */
.free-shipping-banner {
    background: linear-gradient(135deg, #65c378 0%, #55b268 100%);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 0.95em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
    z-index: 101;
}

.free-shipping-banner strong {
    font-size: 1.1em;
    text-decoration: underline;
}

/* --- CABECERA CON IMAGEN DE LOGO (FINAL) --- */
.main-header {
    background-color: #e55a6d; /* Rojo principal */
    text-align: center; /* Centra el contenido */
    padding: 20px 0;
    margin-bottom: 40px;
    position: relative; /* Para posicionar el carrito */
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo {
    /* **ESTOS SON LOS ESTILOS CLAVE PARA DELIMITAR EL LOGO** */
    background-color: white; /* Fondo blanco para el perímetro */
    padding: 10px 15px; /* Espacio blanco alrededor del logo */
    border-radius: 5px; /* Bordes ligeramente redondeados */
    
    /* Centrado y Tamaño */
    max-width: 300px; /* Limita el ancho del logo */
    height: auto;
    display: block; 
    margin: 0 auto; /* Centra la imagen */
}

.cart-icon {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1.3em;
    color: #e55a6d;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cart-icon:hover {
    background-color: #f5f5f5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transform: translateY(-50%) scale(1.05);
}

.cart-icon.active {
    background-color: #e55a6d;
    color: white;
}

.cart-count {
    background-color: #ff4757;
    color: white;
    border-radius: 50%;
    padding: 2px 8px;
    font-size: 0.75em;
    margin-left: 5px;
}

.back-link {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    padding: 10px 18px;
    border-radius: 20px;
    text-decoration: none;
    color: #e55a6d;
    font-weight: bold;
    transition: all 0.3s;
}

.back-link:hover {
    background-color: #f5f5f5;
    transform: translateY(-50%) scale(1.05);
}
/* ------------------------------------------------ */

/* --- MENÚ DE CATEGORÍAS --- */
.category-menu {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-bottom: 3px solid #e55a6d;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.menu-item {
    padding: 12px 25px;
    text-decoration: none;
    color: #555;
    font-weight: 600;
    font-size: 1.05em;
    border-radius: 25px;
    transition: all 0.3s;
    background-color: white;
    border: 2px solid transparent;
}

.menu-item:hover {
    background-color: #fce4e8;
    color: #e55a6d;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(229, 90, 109, 0.2);
}

.menu-item.active {
    background: linear-gradient(135deg, #e55a6d 0%, #d94458 100%);
    color: white;
    border-color: #e55a6d;
    box-shadow: 0 4px 12px rgba(229, 90, 109, 0.3);
}
/* ------------------------------------------------ */

.product-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.product-page-container h2 {
    color: #e55a6d;
    font-size: 1.8em;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

/* --- EFECTO NIEVE (Snowfall) --- */
#snow-container {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Permite hacer clic a través de la nieve */
    z-index: 999; 
    overflow: hidden;
}

.snowflake {
    position: absolute;
    width: 5px; 
    height: 5px;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
}

@keyframes fall {
    to {
        transform: translateY(100vh); 
    }
}
/* ----------------------------- */

/* --- INDEX.HTML (Catálogo/Grid) --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 25px; 
    margin-top: 40px;
}

.catalog-card {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.catalog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.catalog-card img {
    width: 100%; 
    max-height: 200px; 
    object-fit: contain; 
    margin-bottom: 15px;
    border-radius: 4px;
}

.catalog-card h3 {
    font-size: 1.3em;
    color: #333;
    margin: 10px 0;
}

.catalog-card .price {
    font-size: 1.1em;
    font-weight: bold;
    color: #e55a6d; 
    margin-bottom: 20px;
}

.view-details-btn {
    display: block;
    background-color: #65c378; 
    color: white;
    padding: 10px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.2s;
}

.view-details-btn:hover {
    background-color: #55b268;
}

/* Paginación */
.pagination-controls {
    text-align: center;
    margin: 40px 0;
}

.pagination-controls a {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
}

.pagination-controls .active {
    background-color: #e55a6d;
    color: white;
    border-color: #e55a6d;
}

.pagination-controls .disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* --- PRODUCT.HTML (Página de Producto) --- */
.product-details-wrapper {
    display: flex;
    gap: 50px;
    background: white;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    align-items: flex-start;
}

.product-media {
    flex: 0 0 auto;
    min-width: 600px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.image-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0; /* Evita que se comprima */
}

.main-image {
    width: 500px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.7;
    border: 3px solid transparent;
    border-radius: 8px;
    transition: all 0.3s;
    flex-shrink: 0;
}

.thumbnail.active, .thumbnail:hover {
    opacity: 1;
    border-color: #e55a6d;
    transform: scale(1.05);
}

.product-info {
    flex: 1;
    min-width: 0; /* Permite que el contenido se ajuste */
}

.product-title {
    color: #333;
    font-size: 2em;
    margin-top: 0;
}

.product-price {
    color: #e55a6d;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
}

.selector-group {
    margin-bottom: 20px;
}

.selector-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    max-width: 200px;
}

.size-guide-link a {
    color: #e55a6d;
    text-decoration: none;
    font-size: 0.9em;
}

.quantity-input {
    display: flex;
    align-items: center;
}

.quantity-btn {
    background: #eee;
    border: 1px solid #ccc;
    padding: 5px 12px;
    cursor: pointer;
    font-size: 1.2em;
}

#quantity {
    width: 40px;
    text-align: center;
    border: 1px solid #ccc;
    height: 30px;
    box-sizing: border-box;
}

.add-to-cart-btn {
    background-color: #65c378; 
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    transition: background-color 0.2s;
}

.add-to-cart-btn:hover {
    background-color: #55b268;
}

/* Popup Toast (Añadir al Carrito) */
.cart-toast-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #333;
    color: white;
    padding: 15px 25px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.5s, transform 0.5s;
    transform: translateX(0);
}

.cart-toast-popup.hidden {
    opacity: 0;
    transform: translateX(120%);
}

.toast-actions {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.toast-actions button, .toast-actions .primary-action {
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
}

#closeToast {
    background: #666;
    color: white;
}

.primary-action {
    background: #e55a6d;
    color: white;
}

/* --- CARRITO.HTML (Carrito de Compras) --- */
.cart-layout {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.cart-items-list {
    flex: 2; 
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.item-thumbnail {
    width: 100px;
    height: 100px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    padding: 5px;
    background: white;
}

.item-details {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.item-name {
    font-weight: bold;
    margin: 0;
    font-size: 1.05em;
    color: #333;
}

.item-variant {
    font-size: 0.9em;
    color: #666;
    margin: 0;
}

.item-price {
    font-weight: bold;
    color: #e55a6d;
    font-size: 1.2em;
    flex-shrink: 0;
    margin-left: 10px;
}

.item-quantity-control input {
    width: 40px;
    text-align: center;
}

.remove-item {
    background: none;
    border: none;
    color: #999;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9em;
    margin-top: 5px;
}

/* Resumen del Carrito - Mejorado */
.cart-summary {
    flex: 0 0 380px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #e55a6d;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 24px rgba(229, 90, 109, 0.15);
    position: sticky;
    top: 20px;
    height: fit-content;
    max-width: 100%;
}

.cart-summary h3 {
    color: #e55a6d;
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
    border-bottom: 3px solid #e55a6d;
    padding-bottom: 15px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 1em;
    color: #555;
}

.summary-line span:first-child {
    font-weight: 500;
}

.summary-value {
    font-weight: 600;
    color: #333;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    margin-top: 15px;
    border-top: 3px solid #e55a6d;
    font-size: 1.3em;
    font-weight: 700;
    color: #e55a6d;
}

.summary-total .summary-value {
    color: #e55a6d;
    font-size: 1.2em;
}

.continue-shopping-btn {
    display: block;
    width: 100%;
    padding: 12px 10px;
    margin-top: 20px;
    background-color: white;
    border: 2px solid #e55a6d;
    color: #e55a6d;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95em;
    transition: all 0.3s;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.continue-shopping-btn:hover {
    background-color: #fce4e8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 90, 109, 0.2);
}

.checkout-btn {
    display: block;
    width: 100%;
    padding: 14px 10px;
    margin-top: 12px;
    background: linear-gradient(135deg, #e55a6d 0%, #d94458 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(229, 90, 109, 0.3);
    box-sizing: border-box;
    line-height: 1.3;
}

.checkout-btn:hover {
    background: linear-gradient(135deg, #d94458 0%, #c73a4d 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 90, 109, 0.4);
}

.cart-summary .note {
    text-align: center;
    font-size: 0.85em;
    color: #888;
    margin-top: 15px;
    font-style: italic;
    line-height: 1.4;
}

/* --- LOADER (Pantalla de Carga) --- */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e55a6d 0%, #f8a5b0 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
    animation: pulse 1.5s ease-in-out infinite;
    background-color: white;
    padding: 15px;
    border-radius: 10px;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

.loader-content p {
    color: white;
    font-size: 1.2em;
    font-weight: 600;
    margin: 0;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
/* ------------------------------------------------ */

/* ===========================================
   � CARRITO FLOTANTE VISIBLE
   =========================================== */

.floating-cart-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 320px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #e55a6d;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(229, 90, 109, 0.3);
    z-index: 900;
    transition: all 0.3s ease;
    overflow: hidden;
}

.floating-cart-widget.minimized {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.floating-cart-header {
    background: linear-gradient(135deg, #e55a6d 0%, #d94458 100%);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.floating-cart-widget.minimized .floating-cart-header {
    padding: 23px;
    justify-content: center;
    border-radius: 50%;
}

.floating-cart-title {
    font-weight: 700;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.floating-cart-widget.minimized .floating-cart-title span {
    display: none;
}

.floating-cart-widget.minimized .floating-cart-title {
    font-size: 1.5em;
}

.toggle-icon {
    font-size: 1.2em;
    transition: transform 0.3s;
}

.floating-cart-widget.minimized .toggle-icon {
    display: none;
}

.floating-cart-body {
    padding: 15px;
    max-height: 300px;
    overflow-y: auto;
}

.floating-cart-widget.minimized .floating-cart-body {
    display: none;
}

.floating-cart-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: white;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.floating-cart-item-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
}

.floating-cart-item-info {
    flex: 1;
    min-width: 0;
}

.floating-cart-item-name {
    font-weight: 600;
    font-size: 0.9em;
    color: #333;
    margin: 0 0 3px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.floating-cart-item-details {
    font-size: 0.8em;
    color: #666;
    margin: 0;
}

.floating-cart-item-price {
    font-weight: 700;
    color: #e55a6d;
    font-size: 0.9em;
}

.floating-cart-empty {
    text-align: center;
    padding: 30px 20px;
    color: #999;
}

.floating-cart-empty-icon {
    font-size: 3em;
    margin-bottom: 10px;
}

.floating-cart-empty-text {
    font-size: 0.95em;
}

.floating-cart-footer {
    padding: 15px;
    border-top: 2px solid #f0f0f0;
    background: white;
}

.floating-cart-widget.minimized .floating-cart-footer {
    display: none;
}

.floating-cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 1.1em;
}

.floating-cart-total-label {
    color: #333;
}

.floating-cart-total-value {
    color: #e55a6d;
    font-size: 1.15em;
}

.floating-cart-checkout-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #e55a6d 0%, #d94458 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(229, 90, 109, 0.3);
    text-decoration: none;
    display: block;
    text-align: center;
}

.floating-cart-checkout-btn:hover {
    background: linear-gradient(135deg, #d94458 0%, #c73a4d 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 90, 109, 0.4);
}

.floating-cart-body::-webkit-scrollbar {
    width: 6px;
}

.floating-cart-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.floating-cart-body::-webkit-scrollbar-thumb {
    background: #e55a6d;
    border-radius: 10px;
}

.floating-cart-body::-webkit-scrollbar-thumb:hover {
    background: #d94458;
}

/* Ocultar carrito flotante en la página del carrito */
body.cart-page .floating-cart-widget {
    display: none;
}

/* ===========================================
   �📱 RESPONSIVE DESIGN - MOBILE FIRST
   =========================================== */

/* Tablets y pantallas medianas (768px y menos) */
@media screen and (max-width: 768px) {
    /* Banner responsive */
    .free-shipping-banner {
        font-size: 0.85em;
        padding: 10px 15px;
    }

    /* Header responsive */
    .main-header {
        padding: 15px 10px;
        flex-direction: column;
        gap: 15px;
    }

    .header-logo {
        max-width: 200px;
    }

    .cart-icon, .back-link {
        position: static;
        transform: none;
        margin: 0 auto;
    }

    /* Menú de categorías responsive */
    .category-menu {
        flex-wrap: wrap;
        padding: 10px;
        gap: 8px;
    }

    .menu-item {
        padding: 10px 15px;
        font-size: 0.9em;
        flex: 1 1 45%;
        text-align: center;
    }

    /* Grid de productos responsive */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 20px;
    }

    .catalog-card {
        padding: 15px;
    }

    .catalog-card h3 {
        font-size: 0.95em;
    }

    .catalog-card .price {
        font-size: 1em;
    }

    /* Página de producto responsive */
    .product-details-wrapper {
        flex-direction: column;
        gap: 30px;
        padding: 20px;
    }

    .product-media {
        min-width: 100%;
        flex-direction: column;
    }

    .image-thumbnails {
        flex-direction: row;
        order: 2;
        justify-content: center;
        margin-top: 15px;
    }

    .main-image {
        width: 100%;
        max-width: 100%;
        order: 1;
    }

    .thumbnail {
        width: 60px;
        height: 60px;
    }

    .product-info h1 {
        font-size: 1.5em;
    }

    .product-price {
        font-size: 1.5em;
    }

    /* Carrito responsive */
    .cart-layout {
        flex-direction: column;
        gap: 20px;
    }

    .cart-items-list {
        flex: 1;
    }

    .cart-summary {
        flex: 1;
        position: static;
        margin-top: 0;
        max-width: 100%;
    }

    .cart-item {
        flex-wrap: wrap;
        gap: 12px;
    }

    .item-thumbnail {
        width: 100px;
        height: 100px;
    }

    .item-details {
        flex: 1;
        min-width: 200px;
    }

    .item-price {
        width: 100%;
        text-align: right;
        font-size: 1.3em;
        margin-left: 0;
    }

    /* Ajustes de texto */
    .product-page-container h2 {
        font-size: 1.4em;
    }

    /* Paginación */
    .pagination-controls {
        flex-wrap: wrap;
        gap: 5px;
    }

    .pagination-controls a {
        padding: 8px 12px;
        font-size: 0.9em;
    }

    /* Carrito flotante en tablets */
    .floating-cart-widget {
        width: 280px;
        bottom: 15px;
        right: 15px;
    }

    .floating-cart-body {
        max-height: 250px;
    }
}

/* Móviles pequeños (480px y menos) */
@media screen and (max-width: 480px) {
    /* Banner compacto */
    .free-shipping-banner {
        font-size: 0.8em;
        padding: 8px 10px;
    }

    .free-shipping-banner strong {
        font-size: 1em;
    }

    /* Grid de productos a una columna */
    .product-grid {
        grid-template-columns: 1fr;
    }

    /* Menú a columna completa */
    .menu-item {
        flex: 1 1 100%;
    }

    /* Header más compacto */
    .header-logo {
        max-width: 150px;
    }

    /* Botones más grandes para touch */
    .add-to-cart-btn,
    .checkout-btn {
        padding: 18px;
        font-size: 1.1em;
    }

    .quantity-btn {
        padding: 12px 18px;
        font-size: 1.1em;
    }

    /* Thumbnails más pequeños */
    .thumbnail {
        width: 50px;
        height: 50px;
    }

    /* Resumen del carrito */
    .cart-summary {
        padding: 20px 15px;
    }

    .cart-summary h3 {
        font-size: 1.3em;
    }

    /* Items del carrito en móvil */
    .cart-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 10px;
    }

    .item-thumbnail {
        width: 120px;
        height: 120px;
    }

    .item-details {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .item-price {
        text-align: center;
        margin-top: 10px;
    }

    .item-quantity-control {
        justify-content: center;
        width: 100%;
    }

    /* Loader responsive */
    .loader-logo {
        width: 150px;
    }

    .loader-content p {
        font-size: 1em;
    }

    /* Carrito flotante en móviles */
    .floating-cart-widget {
        width: calc(100% - 30px);
        max-width: 320px;
        bottom: 10px;
        right: 15px;
        left: 15px;
        margin: 0 auto;
    }

    .floating-cart-widget.minimized {
        width: 60px;
        height: 60px;
        right: 15px;
        left: auto;
    }

    .floating-cart-body {
        max-height: 200px;
    }
}

/* Landscape móviles */
@media screen and (max-width: 900px) and (orientation: landscape) {
    .product-details-wrapper {
        flex-direction: row;
    }

    .product-media {
        flex: 0 0 50%;
    }

    .product-info {
        flex: 0 0 50%;
    }
}