/**
 * inmob-order-page.css
 * Estilos para la página de pedido inmobiliario
 * Tabs por perfil + Slider de banners comerciales + Combos
 */

/* =====================================================
   VARIABLES & RESET
   ===================================================== */
:root {
    --inmob-primary: #0073aa;
    --inmob-primary-dark: #005580;
    --inmob-primary-light: #e8f4fc;
    --inmob-success: #10b981;
    --inmob-success-dark: #059669;
    --inmob-warning: #f59e0b;
    --inmob-danger: #ef4444;
    --inmob-gray-50: #f9fafb;
    --inmob-gray-100: #f3f4f6;
    --inmob-gray-200: #e5e7eb;
    --inmob-gray-400: #9ca3af;
    --inmob-gray-600: #4b5563;
    --inmob-gray-800: #1f2937;
    --inmob-radius: 12px;
    --inmob-radius-sm: 8px;
    --inmob-shadow: 0 4px 20px rgba(0,0,0,0.08);
    --inmob-shadow-hover: 0 8px 32px rgba(0,0,0,0.14);
    --inmob-font: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --inmob-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =====================================================
   BANNER / SLIDER COMERCIAL
   ===================================================== */
.inmob-banner-section {
    margin-bottom: 32px;
    border-radius: var(--inmob-radius);
    overflow: hidden;
    position: relative;
}

.inmob-banner-section h3 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--inmob-gray-400);
    margin: 0 0 12px 0;
    font-weight: 600;
}

.inmob-slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--inmob-radius);
}

.inmob-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.inmob-slide {
    min-width: 100%;
    border-radius: var(--inmob-radius);
    overflow: hidden;
    position: relative;
    height: 220px;
    cursor: pointer;
    flex-shrink: 0;
}

.inmob-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.inmob-slide:hover .inmob-slide-bg {
    transform: scale(1.04);
}

.inmob-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.3) 55%, transparent 100%);
    display: flex;
    align-items: center;
    padding: 36px 48px;
}

.inmob-slide-content {
    color: #fff;
    max-width: 520px;
    animation: slideIn 0.5s ease forwards;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to   { opacity: 1; transform: translateX(0); }
}

.inmob-slide-tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.35);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.inmob-slide-title {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.inmob-slide-subtitle {
    font-size: 15px;
    opacity: 0.88;
    margin: 0 0 18px 0;
    line-height: 1.5;
}

.inmob-slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--inmob-primary);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--inmob-transition);
    text-decoration: none;
}

.inmob-slide-cta:hover {
    background: var(--inmob-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,115,170,0.4);
}

/* Slider: controles */
.inmob-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
    transition: var(--inmob-transition);
    z-index: 10;
    color: var(--inmob-primary);
}

.inmob-slider-nav:hover {
    background: var(--inmob-primary);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.inmob-slider-prev { left: 12px; }
.inmob-slider-next { right: 12px; }

/* Slider: dots */
.inmob-slider-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.inmob-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: var(--inmob-transition);
    padding: 0;
}

.inmob-slider-dot.active {
    width: 24px;
    border-radius: 4px;
    background: #fff;
}

/* Placeholder cuando no hay banners */
.inmob-no-banners {
    background: var(--inmob-gray-100);
    border: 2px dashed var(--inmob-gray-200);
    border-radius: var(--inmob-radius);
    padding: 32px;
    text-align: center;
    color: var(--inmob-gray-400);
    font-size: 14px;
}

.inmob-no-banners a {
    color: var(--inmob-primary);
    text-decoration: none;
    font-weight: 600;
}

/* =====================================================
   COMBOS DESTACADOS (cards horizontales)
   ===================================================== */
.inmob-combos-section {
    margin-bottom: 32px;
}

.inmob-combos-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--inmob-gray-800);
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.inmob-combos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.inmob-combo-card {
    background: #fff;
    border: 2px solid var(--inmob-gray-200);
    border-radius: var(--inmob-radius);
    padding: 0;
    overflow: hidden;
    transition: var(--inmob-transition);
    cursor: pointer;
    position: relative;
}

.inmob-combo-card:hover {
    border-color: var(--inmob-primary);
    box-shadow: var(--inmob-shadow-hover);
    transform: translateY(-3px);
}

.inmob-combo-card-header {
    height: 100px;
    background: linear-gradient(135deg, var(--inmob-primary) 0%, var(--inmob-primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    position: relative;
    overflow: hidden;
}

.inmob-combo-card-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

.inmob-combo-card-header::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -10px;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}

.inmob-combo-card-header.color-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.inmob-combo-card-header.color-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.inmob-combo-card-header.color-orange {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.inmob-combo-card-body {
    padding: 16px;
}

.inmob-combo-card-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--inmob-gray-800);
    margin: 0 0 6px 0;
}

.inmob-combo-card-desc {
    font-size: 12px;
    color: var(--inmob-gray-600);
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.inmob-combo-card-products {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 12px;
}

.inmob-combo-product-chip {
    font-size: 11px;
    background: var(--inmob-primary-light);
    color: var(--inmob-primary);
    padding: 3px 8px;
    border-radius: 20px;
    font-weight: 600;
}

.inmob-combo-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--inmob-gray-200);
}

.inmob-combo-price {
    font-size: 16px;
    font-weight: 800;
    color: var(--inmob-gray-800);
}

.inmob-combo-commission {
    font-size: 12px;
    color: var(--inmob-success-dark);
    font-weight: 600;
}

.inmob-combo-add-btn {
    background: var(--inmob-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--inmob-transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.inmob-combo-add-btn:hover {
    background: var(--inmob-primary-dark);
    transform: scale(1.05);
}

/* =====================================================
   TABS DE CATEGORÍAS / PERFIL DE CLIENTE
   ===================================================== */
.inmob-catalog-header {
    margin-bottom: 24px;
}

.inmob-catalog-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--inmob-gray-800);
    margin: 0 0 16px 0;
}

.inmob-profile-tabs {
    display: flex;
    gap: 0;
    background: var(--inmob-gray-100);
    border-radius: 12px;
    padding: 5px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.inmob-profile-tabs::-webkit-scrollbar { display: none; }

.inmob-profile-tab {
    flex: 1;
    min-width: 140px;
    padding: 12px 20px;
    background: transparent !important;
    border: none !important;
    border-radius: 9px !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--inmob-gray-600) !important;
    transition: var(--inmob-transition);
    white-space: nowrap;
    position: relative;
}

.inmob-profile-tab:hover {
    color: var(--inmob-primary) !important;
    background: rgba(255,255,255,0.6) !important;
}

.inmob-profile-tab.active {
    background: #fff !important;
    color: var(--inmob-primary) !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1) !important;
}

.inmob-profile-tab .tab-icon {
    font-size: 20px;
    line-height: 1;
}

.inmob-profile-tab .tab-label {
    line-height: 1.2;
}

.inmob-profile-tab .tab-sublabel {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.75;
    display: block;
}

.inmob-profile-tab .tab-count {
    background: var(--inmob-primary-light);
    color: var(--inmob-primary);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 10px;
    margin-left: 4px;
}

.inmob-profile-tab.active .tab-count {
    background: var(--inmob-primary);
    color: #fff;
}

/* =====================================================
   FILTROS DE CATEGORÍAS WC (sub-tabs)
   ===================================================== */
.inmob-category-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
    padding: 16px;
    background: var(--inmob-gray-50);
    border-radius: var(--inmob-radius-sm);
    border: 1px solid var(--inmob-gray-200);
}

.inmob-category-pill {
    padding: 7px 16px;
    background: #fff !important;
    border: 1.5px solid var(--inmob-gray-200) !important;
    border-radius: 20px !important;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: var(--inmob-gray-600) !important;
    transition: var(--inmob-transition);
    white-space: nowrap;
}

.inmob-category-pill:hover {
    border-color: var(--inmob-primary) !important;
    color: var(--inmob-primary) !important;
    background: var(--inmob-primary-light) !important;
}

.inmob-category-pill.active {
    background: var(--inmob-primary) !important;
    border-color: var(--inmob-primary) !important;
    color: #fff !important;
}

/* =====================================================
   BÚSQUEDA DENTRO DEL CATÁLOGO
   ===================================================== */
.inmob-catalog-search {
    position: relative;
    margin-top: 16px;
}

.inmob-catalog-search input {
    width: 100%;
    padding: 12px 20px 12px 44px;
    border: 2px solid var(--inmob-gray-200);
    border-radius: 50px;
    font-size: 14px;
    transition: var(--inmob-transition);
    background: #fff;
    color: var(--inmob-gray-800);
    box-sizing: border-box;
}

.inmob-catalog-search input:focus {
    outline: none;
    border-color: var(--inmob-primary);
    box-shadow: 0 0 0 4px rgba(0,115,170,0.1);
}

.inmob-catalog-search .search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    pointer-events: none;
    opacity: 0.5;
}

.inmob-product-count {
    font-size: 13px;
    color: var(--inmob-gray-400);
    margin-top: 10px;
    text-align: right;
}

/* =====================================================
   GRID DE PRODUCTOS (mejorado)
   ===================================================== */
.inmob-products-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 18px;
    margin: 16px 0;
}

.inmob-product-card-v2 {
    background: #fff;
    border: 1.5px solid var(--inmob-gray-200);
    border-radius: var(--inmob-radius);
    overflow: hidden;
    transition: var(--inmob-transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.inmob-product-card-v2:hover {
    border-color: var(--inmob-primary);
    box-shadow: var(--inmob-shadow-hover);
    transform: translateY(-4px);
}

.inmob-product-card-v2.has-qty {
    border-color: var(--inmob-primary);
    box-shadow: 0 0 0 3px rgba(0,115,170,0.15);
}

/* Badge de comisión */
.inmob-product-card-v2 .inmob-commission-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    z-index: 5;
    box-shadow: 0 3px 10px rgba(16,185,129,0.4);
    text-align: center;
}

/* Stock badge */
.inmob-stock-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    z-index: 5;
}

.inmob-stock-badge.low-stock {
    background: rgba(245, 158, 11, 0.85);
}

.inmob-product-card-v2 .card-image {
    height: 160px;
    overflow: hidden;
    background: var(--inmob-gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
}

.inmob-product-card-v2 .card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    padding: 8px;
}

.inmob-product-card-v2:hover .card-image img {
    transform: scale(1.06);
}

.inmob-product-card-v2 .card-body {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.inmob-product-card-v2 .card-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--inmob-gray-800);
    margin: 0 0 12px 0;
    line-height: 1.4;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.inmob-product-card-v2 .card-prices {
    background: var(--inmob-gray-50);
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 14px;
}

.inmob-product-card-v2 .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    margin-bottom: 4px;
    color: var(--inmob-gray-600);
}

.inmob-product-card-v2 .price-row:last-child {
    margin-bottom: 0;
    color: var(--inmob-success-dark);
    font-weight: 700;
}

.inmob-product-card-v2 .price-row strong {
    color: var(--inmob-gray-800);
}

.inmob-product-card-v2 .price-row:last-child strong {
    color: var(--inmob-success-dark);
    font-size: 15px;
}

/* Controles de cantidad v2 */
.inmob-qty-controls-v2 {
    display: flex;
    align-items: center;
    background: var(--inmob-gray-100);
    border-radius: 10px;
    overflow: hidden;
    margin-top: auto;
}

.inmob-qty-controls-v2 .qty-btn {
    width: 40px;
    height: 40px;
    background: transparent !important;
    border: none !important;
    font-size: 20px;
    font-weight: 700;
    color: var(--inmob-primary) !important;
    cursor: pointer;
    transition: var(--inmob-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.inmob-qty-controls-v2 .qty-btn:hover {
    background: var(--inmob-primary) !important;
    color: #fff !important;
}

.inmob-qty-controls-v2 .qty-input {
    flex: 1;
    text-align: center;
    border: none !important;
    background: transparent;
    font-size: 16px;
    font-weight: 700;
    color: var(--inmob-gray-800);
    width: 100%;
    padding: 0;
}

.inmob-qty-controls-v2 .qty-input:focus {
    outline: none;
}

/* Estado activo (cuando qty > 0) */
.inmob-product-card-v2.has-qty .inmob-qty-controls-v2 {
    background: var(--inmob-primary-light);
}

.inmob-product-card-v2.has-qty .inmob-qty-controls-v2 .qty-btn {
    color: var(--inmob-primary) !important;
}

/* =====================================================
   ESTADO VACÍO DEL TAB
   ===================================================== */
.inmob-tab-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--inmob-gray-400);
}

.inmob-tab-empty-icon { font-size: 56px; margin-bottom: 16px; opacity: 0.5; }
.inmob-tab-empty h4 { font-size: 18px; color: var(--inmob-gray-600); margin-bottom: 8px; }
.inmob-tab-empty p { font-size: 14px; }

/* =====================================================
   ADMIN: GESTIÓN DE BANNERS & COMBOS
   ===================================================== */
.inmob-admin-section {
    background: #fff;
    border: 1px solid var(--inmob-gray-200);
    border-radius: var(--inmob-radius);
    padding: 28px;
    margin-bottom: 28px;
}

.inmob-admin-section h3 {
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--inmob-gray-800);
    padding-bottom: 14px;
    border-bottom: 2px solid var(--inmob-gray-100);
    display: flex;
    align-items: center;
    gap: 10px;
}

.inmob-banner-admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.inmob-banner-admin-card {
    border: 1.5px solid var(--inmob-gray-200);
    border-radius: var(--inmob-radius-sm);
    overflow: hidden;
    transition: var(--inmob-transition);
}

.inmob-banner-admin-card:hover {
    border-color: var(--inmob-primary);
    box-shadow: var(--inmob-shadow);
}

.inmob-banner-admin-preview {
    height: 100px;
    background-size: cover;
    background-position: center;
    background-color: var(--inmob-gray-200);
    position: relative;
    display: flex;
    align-items: flex-end;
}

.inmob-banner-admin-info {
    padding: 14px;
}

.inmob-banner-admin-info strong {
    display: block;
    font-size: 14px;
    color: var(--inmob-gray-800);
    margin-bottom: 4px;
}

.inmob-banner-admin-info span {
    font-size: 12px;
    color: var(--inmob-gray-400);
}

.inmob-banner-admin-actions {
    display: flex;
    gap: 8px;
    padding: 10px 14px;
    border-top: 1px solid var(--inmob-gray-100);
}

/* Toggle activo/inactivo */
.inmob-toggle {
    position: relative;
    width: 44px;
    height: 24px;
    display: inline-block;
}

.inmob-toggle input { display: none; }

.inmob-toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--inmob-gray-200);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--inmob-transition);
}

.inmob-toggle-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: var(--inmob-transition);
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.inmob-toggle input:checked + .inmob-toggle-slider {
    background: var(--inmob-success);
}

.inmob-toggle input:checked + .inmob-toggle-slider::before {
    transform: translateX(20px);
}

/* Form de nuevo banner / combo */
.inmob-form-card {
    background: var(--inmob-gray-50);
    border: 1.5px dashed var(--inmob-gray-200);
    border-radius: var(--inmob-radius-sm);
    padding: 20px;
    transition: var(--inmob-transition);
}

.inmob-form-card:focus-within {
    border-color: var(--inmob-primary);
    background: var(--inmob-primary-light);
}

/* =====================================================
   MODAL DE CONFIRMACIÓN DE COMBO
   ===================================================== */
.inmob-combo-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.inmob-combo-modal {
    background: #fff;
    border-radius: var(--inmob-radius);
    padding: 32px;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 24px 64px rgba(0,0,0,0.2);
    animation: scaleIn 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes scaleIn {
    from { transform: scale(0.92); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.inmob-combo-modal h4 {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 800;
    color: var(--inmob-gray-800);
}

.inmob-combo-modal p {
    margin: 0 0 20px 0;
    color: var(--inmob-gray-600);
    font-size: 14px;
}

.inmob-combo-modal-products {
    background: var(--inmob-gray-50);
    border-radius: var(--inmob-radius-sm);
    padding: 16px;
    margin-bottom: 20px;
}

.inmob-combo-modal-products li {
    font-size: 14px;
    padding: 6px 0;
    border-bottom: 1px solid var(--inmob-gray-200);
    color: var(--inmob-gray-800);
    display: flex;
    justify-content: space-between;
}

.inmob-combo-modal-products li:last-child { border-bottom: none; }

.inmob-combo-modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.inmob-combo-modal-actions .inmob-btn {
    flex: 1;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 768px) {
    .inmob-slide { height: 160px; }
    .inmob-slide-overlay { padding: 20px 24px; }
    .inmob-slide-title { font-size: 18px; }
    .inmob-slide-subtitle { font-size: 13px; margin-bottom: 12px; }
    .inmob-slide-cta { font-size: 13px; padding: 8px 16px; }

    .inmob-profile-tabs { padding: 4px; }
    .inmob-profile-tab { min-width: 120px; padding: 10px 14px; font-size: 13px; }

    .inmob-combos-grid { grid-template-columns: 1fr 1fr; }
    .inmob-products-grid-v2 { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }

    .inmob-slider-nav { width: 32px; height: 32px; font-size: 14px; }
}

@media (max-width: 480px) {
    .inmob-combos-grid { grid-template-columns: 1fr; }
    .inmob-products-grid-v2 { grid-template-columns: 1fr 1fr; }
    .inmob-profile-tab .tab-sublabel { display: none; }
}
