/* =========================================================
   MUNDO TODO TECNOLOGÍA
   CSS DEL CATÁLOGO
========================================================= */


/* =========================================================
   GENERAL
========================================================= */

body {
    background: #f5f7fa;
    font-family: Arial, Helvetica, sans-serif;
    color: #212529;
}

a {
    text-decoration: none;
}


/* =========================================================
   ENCABEZADO
========================================================= */

.catalogo-header {
    background: linear-gradient(
        135deg,
        #27B4F5,
        #087cc1
    );

    color: #ffffff;
    padding: 28px 15px;
    text-align: center;

    box-shadow:
        0 3px 10px rgba(0, 0, 0, .15);
}

.catalogo-title {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
}

.catalogo-subtitle {
    margin: 5px 0 0;
    font-size: 16px;
    opacity: .95;
}

.catalogo-container {
    padding-bottom: 20px;
}


/* =========================================================
   CARRUSEL
========================================================= */

.carousel-container {
    margin-top: 20px;
    border-radius: 15px;
    overflow: hidden;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, .12);

    background: #ffffff;
}

.oferta-image {
    height: 450px;
    width: 100%;

    object-fit: contain;
    object-position: center;

    background: #ffffff;
}

.carousel-caption {
    background: rgba(0, 0, 0, .65);
    border-radius: 10px;
    padding: 15px;
}

.carousel-caption h5 {
    font-size: 24px;
    font-weight: bold;
}


/* =========================================================
   BUSCADOR
========================================================= */

.catalogo-filter-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;

    box-shadow:
        0 3px 15px rgba(0, 0, 0, .08);

    margin-bottom: 30px;
}

.catalogo-filter-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333333;
}

.catalogo-filter-box .form-control,
.catalogo-filter-box .form-select {
    height: 45px;
    border-radius: 8px;
}

.catalogo-filter-box .form-control:focus,
.catalogo-filter-box .form-select:focus {
    border-color: #27B4F5;

    box-shadow:
        0 0 0 .2rem rgba(39, 180, 245, .20);
}

.catalogo-btn-search {
    height: 45px;
    border-radius: 8px;
    font-weight: 600;
}


/* =========================================================
   CONTENEDOR DEL BUSCADOR
========================================================= */

.catalogo-search-container {
    position: relative;
}


/* =========================================================
   RESULTADOS EN TIEMPO REAL
========================================================= */

.catalogo-search-results {
    display: none;

    position: absolute;

    top: 100%;
    left: 12px;
    right: 12px;

    z-index: 99999;

    background: #ffffff;

    border: 1px solid #dee2e6;

    border-radius: 0 0 8px 8px;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, .15);

    max-height: 420px;

    overflow-y: auto;
}


/* =========================================================
   RESULTADO
========================================================= */

.catalogo-search-item {
    padding: 13px 15px;

    background: #ffffff;

    border-bottom:
        1px solid #eeeeee;

    cursor: pointer;

    transition:
        background-color .2s ease;
}

.catalogo-search-item:last-child {
    border-bottom: none;
}

.catalogo-search-item:hover {
    background: #f1f8fc;
}


/* =========================================================
   NOMBRE
========================================================= */

.catalogo-search-name {
    font-size: 15px;
    color: #212529;
    margin-bottom: 6px;
}

.catalogo-search-name i {
    margin-right: 5px;
}


/* =========================================================
   INFORMACIÓN
========================================================= */

.catalogo-search-info {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    font-size: 12px;
    color: #777;
}

.catalogo-search-info span {
    white-space: nowrap;
}

.catalogo-search-info i {
    color: #087cc1;
    margin-right: 3px;
}


/* =========================================================
   CARGANDO
========================================================= */

.catalogo-search-loading {
    padding: 15px;

    text-align: center;

    color: #777;

    font-size: 14px;
}

.catalogo-search-loading i {
    margin-right: 5px;
    color: #087cc1;
}


/* =========================================================
   SIN RESULTADOS
========================================================= */

.catalogo-search-empty {
    padding: 15px;

    color: #777;

    font-size: 14px;

    text-align: center;
}

.catalogo-search-empty i {
    color: #087cc1;
    margin-right: 5px;
}


/* =========================================================
   ERROR
========================================================= */

.catalogo-search-error {
    padding: 15px;

    color: #dc3545;

    font-size: 14px;

    text-align: center;
}


/* =========================================================
   SCROLL BUSCADOR
========================================================= */

.catalogo-search-results::-webkit-scrollbar {
    width: 7px;
}

.catalogo-search-results::-webkit-scrollbar-thumb {
    background: #27B4F5;
    border-radius: 10px;
}

.catalogo-search-results::-webkit-scrollbar-track {
    background: #f5f5f5;
}


/* =========================================================
   PRODUCTOS
========================================================= */

.product-card {
    border: none;

    border-radius: 15px;

    overflow: hidden;

    background: #ffffff;

    box-shadow:
        0 4px 15px rgba(0, 0, 0, .08);

    transition:
        transform .3s ease,
        box-shadow .3s ease;

    height: 100%;
}

.product-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .16);
}


/* =========================================================
   CONTENEDOR DE IMAGEN
========================================================= */

.product-image-container {
    position: relative;

    height: 260px;

    overflow: hidden;

    background: #ffffff;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* =========================================================
   IMAGEN PRODUCTO
========================================================= */

.product-image {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;

    padding: 10px;

    transition:
        transform .4s ease;
}

.product-image-container:hover .product-image {
    transform: scale(1.08);
}


/* =========================================================
   OVERLAY
========================================================= */

.image-overlay {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background:
        rgba(0, 0, 0, .45);

    display: flex;

    justify-content: center;
    align-items: center;

    opacity: 0;

    transition:
        opacity .3s ease;

    pointer-events: none;
}

.product-image-container:hover .image-overlay {
    opacity: 1;
}


/* =========================================================
   BOTÓN DETALLES
========================================================= */

.btn-details {
    background: #27B4F5;

    color: #ffffff;

    border: none;

    padding: 12px 22px;

    border-radius: 30px;

    font-weight: bold;

    box-shadow:
        0 4px 12px rgba(0, 0, 0, .20);

    transition:
        background .2s ease,
        transform .2s ease;
}

.btn-details:hover {
    background: #087cc1;
    color: #ffffff;
    transform: scale(1.05);
}


/* =========================================================
   INFORMACIÓN DEL PRODUCTO
========================================================= */

.product-body {
    padding: 18px;
}

.product-name {
    font-size: 18px;

    font-weight: 700;

    min-height: 45px;

    margin-bottom: 10px;
}

.product-price {
    font-size: 22px;

    font-weight: bold;

    color: #087cc1;

    margin-bottom: 10px;
}

.product-code {
    font-size: 13px;
    color: #777777;
}

.stock-badge {
    font-size: 13px;

    padding: 7px 12px;

    border-radius: 20px;
}


/* =========================================================
   MODAL
========================================================= */

.modal-content {
    border: none;

    border-radius: 15px;

    overflow: hidden;
}

.catalogo-modal-header {
    background:
        linear-gradient(
            135deg,
            #27B4F5,
            #087cc1
        );

    color: #ffffff;

    border: none;
}

.modal-product-image {
    width: 100%;

    height: 500px;

    object-fit: contain;
    object-position: center;

    background: #ffffff;

    border-radius: 10px;

    padding: 15px;

    cursor: zoom-in;

    transition:
        transform .3s ease;
}

.modal-product-image:hover {
    transform: scale(1.02);
}

.modal-image-container {
    background: #ffffff;

    border-radius: 12px;

    display: flex;

    justify-content: center;

    align-items: center;

    min-height: 500px;
}


/* =========================================================
   DETALLES
========================================================= */

.detail-label {
    font-weight: bold;
    color: #555555;
}

.detail-value {
    color: #222222;
}

.modal-price {
    font-size: 28px;

    color: #087cc1;

    font-weight: bold;
}

.description-box {
    background: #f8f9fa;

    padding: 15px;

    border-radius: 10px;

    line-height: 1.6;

    min-height: 100px;
}


/* =========================================================
   MODAL IMAGEN GRANDE
========================================================= */

.modal-image-fullscreen {
    background: rgba(0, 0, 0, .95);

    border-radius: 0;
}

.modal-image-fullscreen .modal-header {
    background:
        linear-gradient(
            135deg,
            #27B4F5,
            #087cc1
        );

    border: none;
}

.modal-image-fullscreen .modal-body {
    display: flex;

    justify-content: center;
    align-items: center;

    padding: 20px;

    overflow: hidden;
}

.imagen-fullscreen {
    max-width: 95vw;

    max-height: 85vh;

    width: auto;
    height: auto;

    object-fit: contain;

    cursor: zoom-out;
}


/* =========================================================
   SIN PRODUCTOS
========================================================= */

.catalogo-empty {
    text-align: center;
    padding: 60px 20px;
}


/* =========================================================
   FOOTER
========================================================= */

.catalogo-footer {
    background: #212529;

    color: #ffffff;

    text-align: center;

    padding: 30px 15px;

    margin-top: 30px;
}

.catalogo-footer h5 {
    margin-bottom: 8px;
}

.catalogo-footer small {
    color: #adb5bd;
}


/* =========================================================
   PÁGINA DETALLE DEL ARTÍCULO
========================================================= */

.articulo-container {
    padding-top: 40px;
    padding-bottom: 60px;
}

.articulo-card {
    background: #ffffff;

    border-radius: 20px;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.08);

    overflow: hidden;
}


/* =========================================================
   GALERÍA
========================================================= */

.articulo-gallery {
    padding: 25px;
}

.articulo-main-image-container {
    width: 100%;

    height: 500px;

    background: #f8f9fa;

    border-radius: 15px;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    border: 1px solid #e9ecef;

    cursor: zoom-in;
}

.articulo-main-image {
    width: 100%;
    height: 100%;

    object-fit: contain;

    transition:
        transform 0.3s ease;
}

.articulo-main-image:hover {
    transform: scale(1.03);
}


/* =========================================================
   MINIATURAS
========================================================= */

.articulo-thumbnails {
    display: flex;

    gap: 10px;

    flex-wrap: wrap;

    margin-top: 15px;
}

.articulo-thumbnail {
    width: 85px;
    height: 85px;

    border-radius: 10px;

    overflow: hidden;

    border: 2px solid #dee2e6;

    background: #ffffff;

    padding: 3px;

    cursor: pointer;

    transition:
        all 0.2s ease;
}

.articulo-thumbnail:hover {
    border-color: #0d6efd;

    transform:
        translateY(-2px);
}

.articulo-thumbnail.active {
    border-color: #0d6efd;

    box-shadow:
        0 0 0 2px rgba(13, 110, 253, 0.15);
}

.articulo-thumbnail img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 7px;
}


/* =========================================================
   INFORMACIÓN ARTÍCULO
========================================================= */

.articulo-info {
    padding: 35px 35px 35px 10px;
}

.articulo-title {
    font-size: 2rem;

    font-weight: 700;

    margin-bottom: 15px;
}

.articulo-code {
    color: #6c757d;

    font-size: 0.95rem;

    margin-bottom: 20px;
}

.articulo-price {
    font-size: 2rem;

    font-weight: 700;

    color: #0d6efd;

    margin-bottom: 20px;
}

.articulo-stock {
    margin-bottom: 25px;
}

.articulo-section-title {
    font-weight: 700;

    margin-bottom: 12px;
}

.articulo-description {
    background: #f8f9fa;

    border-radius: 12px;

    padding: 18px;

    line-height: 1.7;

    color: #495057;
}

.articulo-data {
    margin-top: 25px;
}

.articulo-data-row {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding: 10px 0;

    border-bottom:
        1px solid #eeeeee;
}

.articulo-data-label {
    font-weight: 600;
    color: #495057;
}

.articulo-data-value {
    color: #212529;

    text-align: right;
}


/* =========================================================
   CONTADOR DE IMÁGENES
========================================================= */

.articulo-image-count {
    margin-top: 10px;

    color: #6c757d;

    font-size: 0.9rem;
}


/* =========================================================
   MODAL IMAGEN GRANDE
========================================================= */

.imagen-grande-container {
    background: #000;

    min-height: 80vh;

    display: flex;

    align-items: center;
    justify-content: center;
}

.imagen-grande {
    max-width: 95%;
    max-height: 80vh;

    object-fit: contain;
}


/* =========================================================
   NAVBAR DEL CATÁLOGO
========================================================= */

.catalogo-navbar {
    background: #111827;

    color: #fff;

    width: 100%;

    position: relative;

    z-index: 1000;

    box-shadow:
        0 3px 15px rgba(0, 0, 0, .15);
}

.catalogo-navbar-content {
    min-height: 65px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


/* =========================================================
   LOGO
========================================================= */

.catalogo-brand {
    display: flex;

    align-items: center;

    gap: 10px;

    text-decoration: none;

    color: #fff;

    transition:
        .2s ease;
}

.catalogo-brand:hover {
    color: #fff;

    transform:
        translateY(-1px);
}

.catalogo-logo {
    width: 38px;
    height: 38px;

    border-radius: 9px;

    overflow: hidden;

    background: #ffffff;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.catalogo-logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    padding: 3px;

    background: #ffffff;
}

.catalogo-brand-text {
    display: flex;

    flex-direction: column;

    line-height: 1.1;
}

.catalogo-brand-name {
    font-size: 1.05rem;

    font-weight: 700;

    letter-spacing: -.3px;
}

.catalogo-brand-text small {
    margin-top: 3px;

    color: #9ca3af;

    font-size: .68rem;

    font-weight: 500;
}


/* =========================================================
   ACCIONES NAVBAR
========================================================= */

.catalogo-navbar-actions {
    display: flex;

    align-items: center;

    gap: 12px;
}

.catalogo-store-status {
    font-size: .78rem;

    color: #d1d5db;

    display: flex;

    align-items: center;

    gap: 7px;
}

.catalogo-status-dot {
    width: 8px;
    height: 8px;

    background: #22c55e;

    border-radius: 50%;

    display: inline-block;

    box-shadow:
        0 0 0 4px rgba(34, 197, 94, .12);
}


/* =========================================================
   BOTÓN MENÚ
========================================================= */

.catalogo-menu-button {
    border:
        1px solid rgba(255, 255, 255, .2);

    background:
        rgba(255, 255, 255, .08);

    color: #fff;

    border-radius: 9px;

    padding: 8px 13px;

    font-size: .86rem;

    font-weight: 600;

    transition:
        all .2s ease;
}

.catalogo-menu-button:hover {
    background:
        rgba(255, 255, 255, .15);

    border-color:
        rgba(255, 255, 255, .35);
}

.catalogo-menu-button i {
    margin-right: 5px;
}


/* =========================================================
   MENÚ DE CATEGORÍAS
========================================================= */

.catalogo-menu-categorias {
    background: #fff;

    padding: 28px 0;

    border-bottom:
        1px solid #e5e7eb;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .08);
}


/* =========================================================
   ENCABEZADO CATEGORÍAS
========================================================= */

.catalogo-menu-header {
    margin-bottom: 20px;
}

.catalogo-menu-subtitle {
    display: block;

    color: #6b7280;

    font-size: .7rem;

    font-weight: 700;

    letter-spacing: 1.2px;

    margin-bottom: 5px;
}

.catalogo-menu-title {
    margin: 0;

    color: #111827;

    font-size: 1.15rem;

    font-weight: 700;
}

.catalogo-menu-title i {
    color: #0d6efd;

    margin-right: 8px;
}


/* =========================================================
   LISTA CATEGORÍAS
========================================================= */

.catalogo-categorias-list {
    display: flex;

    flex-wrap: wrap;

    gap: 9px;
}

.catalogo-categoria-btn {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 9px 14px;

    border:
        1px solid #e5e7eb;

    border-radius: 10px;

    background: #fff;

    color: #374151;

    text-decoration: none;

    font-size: .86rem;

    font-weight: 600;

    transition:
        all .2s ease;
}

.catalogo-categoria-btn:hover {
    color: #0d6efd;

    border-color: #b6d4fe;

    background: #f8fbff;

    transform:
        translateY(-1px);
}

.catalogo-categoria-btn.active {
    background: #0d6efd;

    border-color: #0d6efd;

    color: #fff;

    box-shadow:
        0 4px 12px rgba(13, 110, 253, .2);
}

.catalogo-categoria-icon {
    font-size: .78rem;
}


/* =========================================================
   SEPARADOR
========================================================= */

.catalogo-menu-divider {
    height: 1px;

    background: #e5e7eb;

    margin: 24px 0;
}


/* =========================================================
   BUSCADOR DEL MENÚ
========================================================= */

.catalogo-menu-search {
    display: flex;

    gap: 10px;

    max-width: 850px;
}

.catalogo-search-input {
    flex: 1;

    min-width: 0;

    height: 45px;

    display: flex;

    align-items: center;

    background: #f9fafb;

    border:
        1px solid #e5e7eb;

    border-radius: 10px;

    padding: 0 14px;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.catalogo-search-input:focus-within {
    border-color: #86b7fe;

    box-shadow:
        0 0 0 3px rgba(13, 110, 253, .08);

    background: #fff;
}

.catalogo-search-input i {
    color: #6b7280;

    margin-right: 10px;
}

.catalogo-search-input input {
    width: 100%;

    border: 0;

    outline: none;

    background: transparent;

    color: #111827;

    font-size: .9rem;
}

.catalogo-search-input input::placeholder {
    color: #9ca3af;
}

.catalogo-search-button {
    height: 45px;

    border: 0;

    border-radius: 10px;

    background: #0d6efd;

    color: #fff;

    padding: 0 20px;

    font-weight: 600;

    transition:
        .2s ease;
}

.catalogo-search-button:hover {
    background: #0b5ed7;

    transform:
        translateY(-1px);
}

.catalogo-search-button i {
    margin-right: 6px;
}


/* =========================================================
   REDES SOCIALES Y WHATSAPP
========================================================= */

.catalogo-redes-section {
    margin-top: 40px;

    padding: 45px 0;

    background: #f8fafc;

    border-top:
        1px solid #e5e7eb;

    border-bottom:
        1px solid #e5e7eb;
}

.catalogo-redes-content {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;
}


/* =========================================================
   TEXTO REDES
========================================================= */

.catalogo-redes-text {
    max-width: 400px;
}

.catalogo-redes-subtitle {
    display: inline-block;

    margin-bottom: 7px;

    color: #087cc1;

    font-size: .7rem;

    font-weight: 800;

    letter-spacing: 1.2px;
}

.catalogo-redes-text h2 {
    margin: 0 0 8px;

    color: #111827;

    font-size: 1.65rem;

    font-weight: 800;
}

.catalogo-redes-text p {
    margin: 0;

    color: #6b7280;

    font-size: .9rem;

    line-height: 1.55;
}


/* =========================================================
   BOTONES REDES
========================================================= */

.catalogo-redes-buttons {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;

    width: 100%;

    max-width: 680px;
}

.catalogo-red-social {
    min-height: 68px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 11px 12px;

    background: #fff;

    border:
        1px solid #e5e7eb;

    border-radius: 12px;

    text-decoration: none;

    color: #111827;

    box-shadow:
        0 3px 12px rgba(0, 0, 0, .04);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.catalogo-red-social:hover {
    color: #111827;

    transform:
        translateY(-2px);

    box-shadow:
        0 7px 18px rgba(0, 0, 0, .08);
}


/* =========================================================
   ICONOS REDES
========================================================= */

.catalogo-red-social-icon {
    width: 40px;
    height: 40px;

    min-width: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    font-size: 1.2rem;
}

.catalogo-red-social.whatsapp
.catalogo-red-social-icon {
    background: #dcfce7;
    color: #16a34a;
}

.catalogo-red-social.instagram
.catalogo-red-social-icon {
    background: #f3e8ff;
    color: #9333ea;
}

.catalogo-red-social.facebook
.catalogo-red-social-icon {
    background: #dbeafe;
    color: #2563eb;
}


/* =========================================================
   INFORMACIÓN REDES
========================================================= */

.catalogo-red-social-info {
    min-width: 0;

    display: flex;

    flex-direction: column;

    gap: 2px;
}

.catalogo-red-social-info strong {
    font-size: .85rem;

    font-weight: 700;
}

.catalogo-red-social-info small {
    color: #6b7280;

    font-size: .68rem;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}


/* =========================================================
   FLECHA
========================================================= */

.catalogo-red-social-arrow {
    margin-left: auto;

    color: #9ca3af;

    font-size: .7rem;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .catalogo-redes-content {
        flex-direction: column;

        align-items: stretch;

        gap: 25px;
    }

    .catalogo-redes-text {
        max-width: 100%;

        text-align: center;
    }

    .catalogo-redes-buttons {
        max-width: 100%;
    }

}


/* =========================================================
   TABLET / MÓVIL
========================================================= */

@media (max-width: 768px) {

    .catalogo-title {
        font-size: 25px;
    }

    .catalogo-subtitle {
        font-size: 14px;
    }

    .oferta-image {
        height: 280px;
    }

    .product-image-container {
        height: 230px;
    }

    .modal-image-container {
        min-height: 300px;
    }

    .modal-product-image {
        height: 300px;
    }

    .catalogo-products-heading h3 {
        font-size: 20px;
    }

    .catalogo-search-results {
        left: 12px;
        right: 12px;
    }

    .catalogo-search-info {
        display: block;
    }

    .catalogo-search-info span {
        display: block;

        margin-bottom: 4px;
    }

}


/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 767px) {

    .catalogo-navbar-content {
        min-height: 58px;
    }

    .catalogo-logo {
        width: 34px;
        height: 34px;

        border-radius: 8px;
    }

    .catalogo-logo img {
        padding: 2px;
    }

    .catalogo-brand {
        gap: 8px;
    }

    .catalogo-brand-name {
        font-size: .95rem;
    }

    .catalogo-brand-text small {
        font-size: .62rem;
    }

    .catalogo-store-status {
        display: none;
    }

    .catalogo-navbar-actions {
        gap: 8px;
    }

    .catalogo-menu-button {
        padding: 7px 10px;

        border-radius: 8px;
    }

    .catalogo-menu-button span {
        font-size: .78rem;
    }

    .catalogo-menu-categorias {
        padding: 22px 0;
    }

    .catalogo-categorias-list {
        gap: 7px;
    }

    .catalogo-categoria-btn {
        padding: 8px 11px;

        font-size: .8rem;
    }

    .catalogo-menu-search {
        flex-direction: column;

        max-width: 100%;
    }

    .catalogo-search-button {
        width: 100%;
    }

    .catalogo-redes-section {
        margin-top: 30px;

        padding: 35px 0;
    }

    .catalogo-redes-text h2 {
        font-size: 1.4rem;
    }

    .catalogo-redes-text p {
        font-size: .86rem;
    }

    .catalogo-redes-buttons {
        grid-template-columns: 1fr;
    }

    .catalogo-red-social {
        min-height: 64px;
    }

    .catalogo-red-social-icon {
        width: 38px;
        height: 38px;

        min-width: 38px;
    }

}


/* =========================================================
   MÓVIL PEQUEÑO
========================================================= */

@media (max-width: 576px) {

    .catalogo-filter-box {
        padding: 15px;
    }

    .product-image-container {
        height: 250px;
    }

    .product-name {
        min-height: auto;
    }

    .modal-product-image {
        height: 260px;
    }

    .modal-image-container {
        min-height: 260px;
    }

    .articulo-container {
        padding-top: 20px;
    }

    .articulo-gallery {
        padding: 15px;
    }

    .articulo-main-image-container {
        height: 300px;
    }

    .articulo-title {
        font-size: 1.5rem;
    }

    .articulo-price {
        font-size: 1.6rem;
    }

    .articulo-thumbnail {
        width: 70px;
        height: 70px;
    }

    .articulo-info {
        padding:
            10px 25px 30px 25px;
    }

}


/* =========================================================
   CORRECCIÓN ICONOS REDES
========================================================= */

.catalogo-red-social.whatsapp
.catalogo-red-social-icon {
    background: #dcfce7;
    color: #16a34a;
}

.catalogo-red-social.instagram
.catalogo-red-social-icon {
    background: #f3e8ff;
    color: #9333ea;
}

.catalogo-red-social.facebook
.catalogo-red-social-icon {
    background: #dbeafe;
    color: #2563eb;
}