.elementor-53 .elementor-element.elementor-element-6de2ff7c{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}:root{--page-title-display:none;}/* Start custom CSS *//* --- DISEÑO BLANCO PROFESIONAL --- */
.grid-productos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
    padding: 20px;
    background: #ffffff;
}

.producto-card {
    background: #ffffff;
    border: 1px solid #e2e8f0; /* Borde definido */
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.producto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-color: #667eea;
}

.producto-link-wrapper {
    text-decoration: none !important;
    color: inherit;
}

.producto-imagen {
    height: 250px;
    background: #f8fafc;
    padding: 10px;
}

.producto-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.producto-info { padding: 15px; text-align: center; }

.producto-titulo {
    font-size: 15px;
    color: #2d3748;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
}

/* CAJA DE VARIANTES GRIS */
.variantes-container {
    background: #f1f5f9;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #e2e8f0;
}

.v-label {
    display: block;
    font-size: 10px;
    color: #718096;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.chips-talla { display: flex; gap: 4px; justify-content: center; margin-bottom: 8px; }
.t-chip { background: #667eea; color: white; padding: 2px 6px; border-radius: 4px; font-size: 10px; font-weight: bold; }

.circulos-color { display: flex; gap: 5px; justify-content: center; }
.c-circulo { width: 16px; height: 16px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.1); }

.producto-precio { font-size: 20px; color: #667eea; font-weight: 800; }

/* BOTONES */
.producto-acciones {
    padding: 0 15px 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.btn-detalles, .btn-comprar {
    padding: 10px 5px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

.btn-detalles { background: #edf2f7; color: #4a5568; }
.btn-comprar { background: #667eea; color: white; }

/* Móvil */
@media (max-width: 600px) {
    .grid-productos { grid-template-columns: 1fr 1fr; gap: 10px; }
    .producto-imagen { height: 160px; }
}/* End custom CSS */