/* --- Planilla Template Specifics --- */
.app-shell.planilla {
    background: #f8fafc;
}

.app-shell.planilla .app-header {
    background: var(--app-primary);
    color: white;
}

.app-shell.planilla .app-product-card {
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.app-shell.planilla .img-container {
    height: 140px;
    background-size: cover;
    background-position: center;
}

.app-shell.planilla .app-product-overlay {
    position: static;
    padding: 15px;
    background: white;
    opacity: 1;
    transform: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.app-shell.planilla .prod-info h4 {
    color: #1e293b;
    font-size: 1.1rem;
    margin: 0;
}

.app-shell.planilla .prod-desc-short {
    color: #64748b;
    font-size: 0.85rem;
    margin: 5px 0;
}

.app-shell.planilla .price {
    color: var(--app-primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.app-shell.planilla .app-buy-btn {
    width: 100%;
    margin-top: 10px;
}

.app-shell.planilla.theme-dark {
    background: #0f172a;
}

.app-shell.planilla.theme-dark .app-product-card {
    background: #1e293b;
    border-color: #334155;
}

.app-shell.planilla.theme-dark .app-product-overlay {
    background: #1e293b;
}

.app-shell.planilla.theme-dark .prod-info h4 {
    color: #f1f5f9;
}

.app-shell.planilla.theme-dark .prod-desc-short {
    color: #94a3b8;
}