/* Holmo style module: 04-catalog.css */
        /* ----------------------------------
           SELECTOR DE CATEGORÍAS PRINCIPALES
           ---------------------------------- */
        .category-tabs-wrapper {
            background: #ffffff;
            padding: 12px 14px;
            border-bottom: 1px solid var(--border-light);
            position: sticky;
            top: 51px;
            z-index: 35;
        }
        .category-tabs-scroll {
            display: flex;
            gap: 8px;
            overflow-x: auto;
            scrollbar-width: none;
            -webkit-overflow-scrolling: touch;
        }
        .category-tabs-scroll::-webkit-scrollbar {
            display: none;
        }
        .cat-tab-btn {
            border: 1px solid var(--border-light);
            background: var(--bg-color);
            padding: 8px 14px;
            border-radius: 999px;
            font-size: 10.5px;
            font-weight: 700;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            white-space: nowrap;
            cursor: pointer;
            transition: all 0.2s ease;
            color: var(--text-muted);
        }
        .cat-tab-btn.active {
            background: #12110f;
            color: #ffffff;
            border-color: #12110f;
        }

        /* Botón buscar activo: mantiene fondo claro y enciende únicamente el borde negro */
        #tabSearchBtn.search-active {
            background: var(--bg-color);
            color: var(--text-main);
            border: 1.5px solid #12110f;
        }

        /* Barra de búsqueda desplegable hacia abajo desde las pestañas */
        .category-search-bar {
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transition: max-height 0.28s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease, margin-top 0.25s ease;
            margin-top: 0;
            width: 100%;
        }
        .category-search-bar.open {
            max-height: 290px;
            opacity: 1;
            margin-top: 10px;
        }
        .category-search-inner {
            display: flex;
            align-items: center;
            background: #f4efe9;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            padding: 0 10px;
            height: 38px;
            gap: 8px;
        }
        .cat-search-icon {
            width: 14px;
            height: 14px;
            stroke: var(--text-muted);
            flex-shrink: 0;
        }
        .category-search-inner input {
            flex: 1;
            background: transparent;
            border: none;
            outline: none;
            font-family: var(--font-body);
            font-size: 11.5px;
            color: var(--text-main);
        }
        .category-search-inner input::placeholder {
            color: #8c8880;
        }
        .cat-search-clear {
            background: none;
            border: none;
            font-size: 13px;
            color: var(--text-muted);
            cursor: pointer;
            padding: 2px 4px;
        }
        .cat-search-tray {
            margin-top: 6px;
            max-height: 210px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        /* ----------------------------------
           CATÁLOGO TOP 8: CUADRÍCULA VERTICAL (2 COLUMNAS SIN DESLIZAR)
           ---------------------------------- */
        .perfume-grid-container {
            flex: 1;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            padding: 16px 14px;
            background: #ffffff;
        }
        .perfume-grid-container.is-loading {
            grid-template-columns: repeat(2, 1fr);
        }
        .catalog-card-skeleton {
            min-height: 236px;
            border: 1px solid var(--border-light);
            border-radius: 4px;
            background: linear-gradient(105deg, #fff 20%, #f5f1eb 38%, #fff 56%);
            background-size: 220% 100%;
            animation: catalog-loading 1.15s ease-in-out infinite;
        }
        @keyframes catalog-loading {
            0% { background-position: 100% 0; }
            100% { background-position: -100% 0; }
        }

        .perfume-card {
            border: 1px solid var(--border-light);
            background: #ffffff;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            padding: 6px 8px;
            cursor: pointer;
            transition: all 0.22s ease;
            position: relative;
            border-radius: 4px;
            min-height: 220px;
        }
        .perfume-card:active {
            transform: scale(0.97);
        }
        .perfume-card.selected {
            background: #000000;
            color: #ffffff;
            border-color: #000000;
            box-shadow: 0 8px 18px rgba(0,0,0,0.18);
        }
        .perfume-card.selected svg path,
        .perfume-card.selected svg rect,
        .perfume-card.selected svg line {
            stroke: #ffffff !important;
        }
        .perfume-card.selected .card-notes,
        .perfume-card.selected .card-rating,
        .perfume-card.selected .card-rating .rating-count {
            color: #c4bfb6;
        }
        .perfume-card.selected .card-vibe-tag {
            background: #ffffff;
            color: #000000;
        }

        .card-vibe-tag {
            font-size: 7.5px;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            background: #f4efe9;
            color: #44403c;
            padding: 3px 6px;
            border-radius: 2px;
            width: 100%;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            transition: all 0.2s ease;
        }

        .card-preview {
            width: 68px;
            height: 94px;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @media (prefers-reduced-motion: reduce) {
            .catalog-card-skeleton { animation: none; }
        }

        .card-info {
            text-align: center;
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .card-inspiration {
            font-size: 7.5px;
            color: inherit;
            font-weight: 600;
            letter-spacing: .35px;
            text-transform: uppercase;
            margin-bottom: 2px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .card-title-row {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 4px;
            min-width: 0;
        }
        .card-title {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.3px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            line-height: 1.2;
        }
        .card-size {
            flex: 0 0 auto;
            font-size: 7.5px;
            font-weight: 700;
            letter-spacing: .4px;
            color: inherit;
            white-space: nowrap;
        }

        /* Calificación Elegante & Micro-Reseñas */
        .card-rating {
            font-size: 9px;
            font-weight: 600;
            color: #44403c;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 3px;
            margin-top: 3px;
        }
        .card-rating .star {
            color: #b89758;
            font-size: 10px;
        }
        .card-rating .rating-count {
            font-weight: 400;
            font-size: 8px;
            color: var(--text-muted);
        }

        .card-notes {
            font-size: 7.5px;
            color: var(--text-muted);
            margin-top: 4px;
            border-top: 1px dashed var(--border-light);
            padding-top: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .perfume-card.selected .card-notes {
            border-top-color: #333333;
        }

        .check-badge {
            position: absolute;
            top: 5px;
            right: 5px;
            width: 15px;
            height: 15px;
            background: #ffffff;
            color: #000000;
            border-radius: 50%;
            font-size: 8.5px;
            display: none;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            box-shadow: 0 2px 6px rgba(0,0,0,0.25);
        }
        .perfume-card.selected .check-badge {
            display: flex;
        }

        /* ----------------------------------
           PERFUMES DEL ANUNCIO: UNA SOLA FILA
           ---------------------------------- */
        .url-featured-section {
            padding: 14px 14px 16px;
            background: #faf7f2;
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
        }
        .url-featured-heading {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 10px;
        }
        .url-featured-eyebrow {
            display: block;
            color: #987650;
            font-size: 8px;
            font-weight: 800;
            letter-spacing: 1.1px;
            text-transform: uppercase;
        }
        .url-featured-heading h2 {
            margin: 3px 0 0;
            color: var(--text-main);
            font-family: var(--font-title);
            font-size: 18px;
            font-weight: 500;
            letter-spacing: .8px;
            text-transform: uppercase;
        }
        .url-featured-count {
            flex: 0 0 auto;
            color: var(--text-muted);
            font-size: 8px;
            font-weight: 700;
            letter-spacing: .5px;
            text-transform: uppercase;
        }
        .url-featured-description {
            margin: 4px 0 10px;
            color: var(--text-muted);
            font-size: 9.5px;
        }
        .url-featured-row {
            display: flex;
            width: 100%;
            gap: 8px;
            overflow: hidden;
        }
        .featured-perfume-card {
            position: relative;
            display: flex;
            flex: 1 1 0;
            align-items: center;
            min-width: 0;
            min-height: 94px;
            gap: 7px;
            padding: 7px 8px;
            overflow: hidden;
            border: 1px solid var(--border-light);
            border-radius: 4px;
            background: #ffffff;
            color: var(--text-main);
            text-align: left;
            cursor: pointer;
            transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
        }
        .featured-perfume-card:active {
            transform: scale(.98);
        }
        .featured-perfume-card.selected {
            background: #000000;
            border-color: #000000;
            color: #ffffff;
        }
        .featured-card-preview {
            display: flex;
            flex: 0 0 36px;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 66px;
        }
        .featured-card-preview img,
        .featured-card-preview svg {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: contain;
            pointer-events: none;
        }
        .featured-card-info {
            display: flex;
            min-width: 0;
            flex: 1 1 auto;
            flex-direction: column;
            gap: 2px;
        }
        .featured-card-brand,
        .featured-card-name,
        .featured-card-notes {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .featured-card-brand {
            color: #987650;
            font-size: 7px;
            font-weight: 800;
            letter-spacing: .5px;
            text-transform: uppercase;
        }
        .featured-perfume-card.selected .featured-card-brand {
            color: #d8b27f;
        }
        .featured-card-name {
            font-size: 10px;
            font-weight: 800;
            line-height: 1.15;
        }
        .featured-card-meta {
            color: var(--text-muted);
            font-size: 7.5px;
            white-space: nowrap;
        }
        .featured-perfume-card.selected .featured-card-meta,
        .featured-perfume-card.selected .featured-card-notes {
            color: #c4bfb6;
        }
        .featured-card-meta .star {
            color: #b89758;
        }
        .featured-card-notes {
            color: var(--text-muted);
            font-size: 7.5px;
        }
        .featured-card-action {
            position: absolute;
            right: 7px;
            bottom: 6px;
            max-width: 48%;
            overflow: hidden;
            color: #987650;
            font-size: 7px;
            font-weight: 800;
            letter-spacing: .2px;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .featured-perfume-card.selected .featured-card-action {
            color: #ffffff;
        }

        /* ----------------------------------
           SECCIONES DE VALOR & CONVERSIÓN
           ---------------------------------- */
