/* Catalogue Ad */
.catalogue-ad-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding-block: 1rem;
    gap: 1rem;
}

.catalogue-ad-desc {
    color: var(--white);
}

.catalogue-ad-desc h2 {
    font-size: 2.125rem;
    font-weight: 700;
}

.catalogue-ad-cta {
    text-align: center;
}

.catalogue-ad-cta a {
    background: var(--primario);
    color: var(--white);
    padding: .5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.catalogue-ad-cta a:hover {
    filter: brightness(1.1);
}

@media (max-width: 768px) {
    .catalogue-ad-cta {
        text-align: right;
    }

    .catalogue-ad-desc h2 {
        font-size: 1.25rem;
    }

    .catalogue-ad-desc p {
        display: none;
    }
}

/* Values Carousel */
.catalogue-values-carousel {
    display: flex;
    overflow-x: auto;
    margin-bottom: 2rem;
    width: 100%;
    background-color: #eee;
}

.catalogue-values-carousel::-webkit-scrollbar {
    display: none;
}

.catalogue-values-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    animation: spin 25s infinite linear;
}

.catalogue-values-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 200px;
    gap: .5rem;
    width: 200px;
}

.catalogue-values-item i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    background-color: var(--white);
    color: var(--primario);
    font-size: .925rem;
    border-radius: 50%;
}

.catalogue-values-item p {
    color: var(--dark);
    font-size: .75rem;
    margin: 1rem 0;
    padding: 0;
}

@keyframes spin {
    from {
        translate: 0
    }

    to {
        translate: -100%
    }
}


/* Subcategories Selector */
#subcategories-selector {
    margin-block: 1.5rem;
}

.subcategories-list {
    position: relative;
    overflow-x: auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: start;
    align-items: center;
    gap: .75rem;
}

.subcategories-list::-webkit-scrollbar {
    display: none;
}

.subcategories-item {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.25rem;
    white-space: nowrap;
    color: var(--dark);
    font-size: .875rem;
    text-decoration: none;
    border: 1px solid var(--primario);
    border-radius: 1rem;
    transition: color 0.2s;
}

.subcategories-item:hover {
    color: var(--primario);
}

.subcategories-item.active {
    background: var(--primario);
    color: var(--white);
    font-weight: 600;
}

/* Products Catalogue */
#products-catalogue {
    padding-block: 2rem;
}

/* Sidebar Box and Category Links */
.category-box {
    padding-bottom: 1rem;
    background: var(--white);
    border-radius: 1rem;
}


.category-title {
    color: var(--dark);
    font-size: 1.25rem;
    font-weight: 700;
}


.category-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    color: var(--dark);
    font-size: 0.925rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.category-link:hover {
    background: var(--white);
    color: var(--primario);
}

.category-link.active {
    background: var(--primario);
    color: var(--white);
    font-weight: 600;
}

.category-link.active .filter-count {
    color: rgba(255, 255, 255, 0.8);
}

.category-link .filter-count {
    font-size: 0.75rem;
    color: #9ca3af;
}

.filter-group .filter-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
}


/** PRODUCT CARDS - Catalog Grid **/
/* Product Grid Container */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 2rem 0;
}

/* Product Card */
.product-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--white);
    border: 1px solid var(--light);
    border-radius: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    border-color: var(--light);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

/* Product Badge */
.product-card-tags {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: .25rem;
    padding: .5rem;
    max-width: 250px;
    z-index: 99;
}

.product-card-tags .tag {
    padding: .25rem .5rem;
    color: var(--white);
    font-size: .675rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .925px;
    border: none;
    border-radius: 1rem;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
    pointer-events: auto;
}

@media (max-width: 768px) {
    .product-card-tags .tag {
        font-size: .625rem;
    }
}

/* Product Image */
.product-card-image {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    background: var(--white);
}

.product-card-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

/* Product Content */
.product-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 1.5rem;
}

.product-card-category {
    margin-bottom: 0.25rem;
    color: #1f2937;
    font-size: 0.675rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-card-title {
    overflow: hidden;
    flex-grow: 1;
    margin-bottom: 1rem;
    color: var(--dark);
    font-size: 1.25rem;
    font-weight: 600;
}

.product-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.product-card-title a:hover {
    color: var(--primario);
}

/* Stock Badge */
.product-card-stock {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-bottom: 1rem;
    padding: 0.375rem 0.75rem;
    width: fit-content;
    background: #f0fdf4;
    color: #16a34a;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 0.375rem;
}

.product-card-stock-dot {
    width: 6px;
    height: 6px;
    background: #16a34a;
    border-radius: 50%;
}

/* Product Price */
.product-card-pricing {
    margin-bottom: 1rem;
}

.product-card-price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.product-card-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primario);
    line-height: 1;
}

.product-card-price-original {
    font-size: 1rem;
    font-weight: 500;
    color: #9ca3af;
    text-decoration: line-through;
}

.product-card-savings {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.product-card-save-tag {
    display: inline-block;
    padding: 4px 8px;
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
}

/* Product Actions */
.product-card-actions {
    display: grid;
    gap: 0.75rem;
}

.product-card-btn {
    display: inline-block;
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.product-card-btn-primario {
    background: var(--primario);
    color: #fff;
}

.product-card-btn-primario:hover {
    background: var(--secundario);
    color: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 159, 227, 0.3);
}

.product-card-btn-secundario {
    background: #f3f4f6;
    color: #4b5563;
    border: 1px solid #e5e7eb;
}

.product-card-btn-secundario:hover {
    background: #e5e7eb;
    color: #1f2937;
}

/* Responsive Grid */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .product-card-image {
        padding: 1.5rem;
    }

    .product-card-content {
        padding: 1rem;
    }

    .product-card-title {
        font-size: 1rem;
    }

    .product-card-price {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .cta-support-buttons-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .cta-support-buttons-grid a {
        text-align: center;
    }
}

/** Detalle Producto **/
#productDetail {
    padding-block: 2rem;
}

#galleryDetails {
    padding-block: 1rem 2rem;
    background-color: var(--light);
}

#tabbedContent {
    padding-block: 2rem;
}

.product-gallery-container {
    position: sticky;
    top: 90px;
    padding-right: 1.5rem;
    z-index: 0;
}

.product-tags {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: .5rem;
    padding: 1rem;
    max-width: 250px;
    pointer-events: none;
    z-index: 99;
}

.product-tags .tag {
    padding: .5rem 1rem;
    color: var(--white);
    font-size: .725rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 1rem;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
    pointer-events: auto;
}

.tag.oferta {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
}

.tag.envio {
    background: linear-gradient(135deg, #11998e, #38ef7d);
}

.tag.cyber {
    background: linear-gradient(135deg, #8e2de2, #4a00e0);
}

.tag.black {
    background: linear-gradient(135deg, #434343, #000000);
}

/* Galería */
.product-main-image {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: #f8f9fa;
    aspect-ratio: 4/3;
    border: none;
    border-radius: 1.5rem;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.product-main-image:hover {
    transform: scale(1.01);
}

.product-main-image img {
    object-fit: cover;
    width: 100%;
    transition: transform 0.3s ease;
}

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
    margin-block: 1rem;
    z-index: 99;
}

.thumbnail-item {
    cursor: pointer;
    border-radius: 0.75rem;
    border: 2px solid transparent;
    background: #f8f9fa;
    padding: 0.25rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.thumbnail-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.thumbnail-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0.5rem;
}

.thumbnail-item.active {
    border-color: var(--primario);
    background: #fff;
    box-shadow: 0 0 0 2px rgba(0, 159, 227, 0.2);
}

/* Caja de Compra */
.product-info-sticky {
    position: sticky;
    top: 90px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
}

.product-info-brand {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .5rem;
}

.product-info-brand-item span,
.product-info-brand-item a {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.product-info-brand-item:first-child span {
    color: #6b7280;
}

.product-info-brand-item:last-child a {
    color: var(--primario);
    font-weight: 600;
    transition: filter 0.1s;
}

.product-info-brand-item:last-child a:hover {
    filter: brightness(0.7);
}

.product-title {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-size: 2rem;
    font-weight: 600 !important;
}

.product-info-rating {
    display: flex;
    align-items: stretch;
    gap: .5rem;
    margin-bottom: 1rem;
}

.product-info-rating-item {
    display: flex;
    align-items: center;
    gap: .125rem;
}

.product-info-rating-item i {
    color: var(--sales);
}

.product-info-rating-item a {
    color: var(--dark);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: underline !important;
}

@media (max-width: 992px) {
    .product-info-brand {
        flex-direction: column;
        align-items: flex-start;
        gap: .5rem;
    }
}

/* Pricing Section */
.product-info-price {
    margin-bottom: 1rem;
}

.save-tag {
    display: inline-block;
    margin-bottom: 8px;
    padding: 4px 8px;
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
}

.price-container {
    margin-bottom: .5rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 2.5rem;
    color: var(--primario);
    font-weight: 700;
}

.product-price-compare {
    color: #9ca3af;
    font-size: 1.25rem;
    font-weight: 500;
    text-decoration: line-through;
}

@media (max-width: 992px) {
    .product-price {
        font-size: 1.5rem;
    }

    .product-price-compare {
        font-size: 1rem;
    }
}

/* Payment Info */
.payment-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.payment-info img {
    width: auto;
    height: 20px;
    opacity: .8;
}

/* Stock Indicator */
.stock-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    width: fit-content;
    background: #f0fdf4;
    color: #16a34a;
    font-size: 0.925rem;
    font-weight: 600;
    border-radius: 8px;
}

.stock-dot {
    width: .5rem;
    height: .5rem;
    background-color: #16a34a;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.4);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(22, 163, 74, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
    }
}

/* Variant Selectors */
.variant-group {
    margin-bottom: 1.5rem;
}

.variant-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 0.75rem;
}

.variant-selector {
    display: flex;
    gap: 10px;
}

.variant-selector input[type="radio"] {
    display: none;
}

.variant-selector .variant-item {
    flex: 1;
    width: 100%;
}

.variant-selector label {
    display: block;
    padding: 0.75rem 0.5rem;
    text-align: center;
    width: 100%;
    background: #fff;
    color: #4b5563;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--light);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.variant-selector input[type="radio"]:checked+label {
    background: linear-gradient(135deg, var(--cuatro) 0%, var(--dark) 100%);
    color: white;
    border-color: var(--cuatro);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* CTAs */
.cta-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cta-buy {
    background: linear-gradient(135deg, var(--primario) 0%, #34b3d3 100%);
    padding: 1.25rem;
    text-align: center;
    width: 100%;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(16, 137, 185, 0.3);
    transition: all 0.3s;
}

.cta-buy:hover {
    background: linear-gradient(180deg, #34d399 0%, var(--greenCTA) 100%);
    box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}

/* Support Buttons */
.cta-support-buttons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.cta-support-buttons-grid a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.75rem;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 10px;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.cta-phone {
    background-color: #f3f4f6;
    color: #4b5563;
    border-color: var(--light);
}

.cta-phone:hover {
    background-color: var(--light);
    color: var(--dark);
    border-color: #d1d5db;
}

.cta-whatsapp {
    background-color: #f0fdf4;
    color: #16a34a;
    border-color: #bbf7d0;
}

.cta-whatsapp:hover {
    background-color: #dcfce7;
    color: #15803d;
    border-color: #86efac;
}

/* Trust */
.trust-grid {
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    margin-top: 2rem;
    background: var(--light);
    border: 1px solid var(--light);
    border-radius: 12px;
}

.trust-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--white);
    cursor: pointer;
}

.trust-cell i {
    color: var(--secundario);
    font-size: 1.5rem;
}

.trust-cell span {
    color: #4b5563;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.2;
}

.trust-cell:hover {
    background-color: var(--light);
}

.trust-cell:nth-child(1) {
    border-right: 1px solid var(--light);
    border-bottom: 1px solid var(--light);
}

.trust-cell:nth-child(2) {
    border-bottom: 1px solid var(--light);
}

.trust-cell:nth-child(3) {
    border-right: 1px solid var(--light);
}

/* General Information Accordion */
/* Custom Bootstrap Accordion Styles */
.geninfo-accordion {
    margin-top: 2rem;
}

.geninfo-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid var(--bs-accordion-border-color);
}

.geninfo-accordion .accordion-item:last-child {
    border-bottom: none;
}

.geninfo-accordion .accordion-button {
    padding: 1.25rem 0;
    color: var(--dark);
    font-weight: 600;
    box-shadow: none;
}

.geninfo-accordion .accordion-button:not(.collapsed) {
    color: var(--primario);
    background-color: transparent;
    box-shadow: none;
}

.geninfo-accordion .accordion-button::after {
    transition: transform 0.3s ease;
    background-size: 1rem;
}

.geninfo-accordion .accordion-body {
    color: #4b5563;
    padding: 0 0 1.5rem 0;
}

/* Resources List */
.resource-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.single-resource {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .5rem;
    padding: 1rem;
    background-color: var(--light);
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    border-radius: .75rem;
}

.single-resource:hover {
    background-color: #f0fdf4;
    border-color: #d1fae5;
    transform: translateX(4px);
}

.resource-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #374151;
    font-weight: 600;
    font-size: 0.875rem;
}

@media (max-width: 992px) {
    .resource-list {
        grid-template-columns: 1fr;
    }
}

/* Sections Navigation */
#product-sections-nav-mobile {
    overflow: auto;
}

#product-sections-nav,
#product-sections-nav-mobile {
    position: sticky;
    top: 65px;
    margin-block: .5rem;
    background-color: var(--white);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: top 0.3s;
}

#product-sections-nav .nav-link {
    margin: 0 1rem;
    padding: 1rem 0;
    color: #6b7280;
    font-weight: 600;
    border-radius: 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

#product-sections-nav .nav-link:hover {
    color: var(--primario);
}

#product-sections-nav .nav-link.active {
    background-color: transparent;
    color: var(--primario);
    border-bottom-color: var(--primario);
}

#product-sections-nav-mobile .nav-link {
    color: #6b7280;
    font-weight: 600;
    padding: 1rem;
    white-space: nowrap;
}

#product-sections-nav-mobile .nav-link.active {
    background-color: var(--light);
    color: var(--primario);
}


/* Scrollable Product Sections */
.product-section {
    padding-block: 3rem;
    color: var(--dark);
    border-bottom: 1px solid var(--light);
    scroll-margin-top: 10rem;
}

.product-section-title {
    position: relative;
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    color: var(--dark);
    font-size: 1.5rem;
    font-weight: 700;
}

.product-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: var(--primario);
    border-radius: 2px;
}

#como-usar,
#tips {
    padding: 2rem;
    background: linear-gradient(to right, rgba(0, 159, 227), rgb(2, 127, 180));
    color: var(--white);
    border-radius: 1rem;
}

#como-usar .product-section-title,
#tips .product-section-title {
    color: var(--white);
}

#como-usar .product-section-title::after,
#tips .product-section-title::after {
    background-color: var(--white);
}

/* Reviews */
.reviews-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

.reviews-average {
    text-align: center;
    padding: 1rem;
    border-right: 1px solid var(--light);
}

.reviews-average h3 {
    font-size: 3rem;
    font-weight: 600;
}

.reviews-stars {
    color: var(--sales);
    font-size: 1.25rem;
}

.reviews-bars {}

.reviews-actions {
    text-align: center;
}

.reviews-actions button {
    display: inline-block;
    text-align: center;
    padding: 0.75rem 1rem;
    background: var(--primario);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.reviews-actions button:hover {
    background: var(--secundario);
    color: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 159, 227, 0.3);
}

@media (max-width: 992px) {
    .reviews-summary {
        grid-template-columns: 1fr;
    }
}

/* Review Modal Styles */
.review-modal-content {
    padding: 1rem;
    border: none;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.review-modal-content .modal-header {
    position: relative;
    border: none;
    margin-bottom: 1rem;
}

.modal-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 1.5rem;
}

.review-modal-section {
    margin-bottom: 2rem;
}

.review-modal-section:last-child {
    margin-bottom: 0;
    text-align: center;
}

.review-modal-section .form-label {
    display: block;
    margin-bottom: .25rem;
    color: var(--primario);
    font-size: 1rem;
    font-weight: 600;
}

.star-rating {
    position: relative;
    text-align: center;
    margin-bottom: 3rem;
}

.star-rating .form-label {
    display: block;
    margin-bottom: 0;
    color: var(--primario);
    font-size: 1.25rem;
    font-weight: 500;
}

.star-rating-wrapper {
    display: inline-flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    gap: .25rem;
}

.star-rating-wrapper input {
    display: none;
}

.star-rating-wrapper label {
    color: #a3a5a9;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.3;
    transition: .2s;
}

.star-rating-wrapper label:hover,
.star-rating-wrapper label:hover~label {
    opacity: 1;
    color: var(--sales);
}

.star-rating-wrapper input:checked~label {
    opacity: 1;
    color: var(--sales);
}

.star-rating-wrapper:hover input:checked~label {
    opacity: 0.3;
}

.star-rating-wrapper label:hover,
.star-rating-wrapper label:hover~label {
    opacity: 1 !important;
}

.rating-text {
    position: absolute;
    bottom: -65%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 1rem;
    color: var(--primario);
    font-size: .925rem;
    font-weight: 600;
}

.review-modal-helptext {
    color: #6c757d;
    font-size: .875rem;
}

.review-modal-button {
    display: inline-block;
    text-align: center;
    padding: 0.75rem 1rem;
    background: var(--primario);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.review-modal-button:hover {
    background: var(--secundario);
    color: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 159, 227, 0.3);
}

@media (max-width: 992px) {
    .modal-title {
        position: relative;
        align-items: center;
        font-size: 1.5rem;
    }

    .star-rating .form-label {
        font-size: 1.25rem;
    }
}

/* Product FAQs */
#product-faqs .accordion-item {
    border: none;
    border-bottom: 1px solid var(--light);
}

#product-faqs .accordion-item:last-child {
    border-bottom: none;
}

#product-faqs .accordion-button {
    color: var(--dark);
    font-size: 1rem;
    font-weight: 600;
}

#product-faqs .accordion-button:hover {
    color: var(--primario);
}

#product-faqs .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--primario);
    box-shadow: none;
}

#product-faqs .accordion-body {
    color: #4b5563;
    padding: 0 0 1.5rem 0;
    font-size: 1rem;
}

/* Mobile adjustments */
@media (max-width: 991.98px) {
    .sticky-top-nav {
        top: 60px;
        /* Smaller header on mobile usually */
    }

    .product-section {
        scroll-margin-top: 200px;
        /* Increased offset to account for main header + nav bar */
        padding-block: 2rem !important;
    }

    .product-section-title {
        font-size: 1.25rem;
    }

    /* Hide scrollbar for clean horizontal scroll */
    #product-sections-nav-mobile {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    #product-sections-nav-mobile::-webkit-scrollbar {
        display: none;
    }

    #como-usar {
        padding: 1rem;
    }
}

/* =========================================
   Catalogue Sidebar & Filters
   ========================================= */

.catalogue-sidebar {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #eee;
}

.sidebar-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
}

.filter-group {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 1.5rem;
}

.filter-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.filter-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.filter-options .form-check {
    margin-bottom: 0.5rem;
}

.filter-options .form-check-label {
    font-size: 0.9rem;
    color: #555;
    cursor: pointer;
    transition: color 0.2s;
}

.filter-options .form-check-input:checked+.form-check-label {
    color: var(--primario);
    font-weight: 600;
}

.filter-count {
    font-size: 0.8rem;
    color: #999;
    margin-left: 4px;
}

/* Price Range Slider */
.price-range-inputs input {
    max-width: 100px;
    font-size: 0.85rem;
}

#priceRange {
    width: 100%;
}

/* =========================================
   Catalogue Context Bar
   ========================================= */

.catalogue-context-bar {
    border-bottom: 1px solid #eee;
}

.results-count {
    font-size: 0.95rem;
    color: #666;
}

.sorting-options select {
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.25rem 2rem 0.25rem 0.75rem;
}

/* =========================================
   Pagination
   ========================================= */

.catalogue-pagination .page-link {
    color: var(--dark);
    border: none;
    margin: 0 4px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.2s;
}

.catalogue-pagination .page-link:hover {
    background-color: #f0f0f0;
    color: var(--primario);
}

.catalogue-pagination .page-item.active .page-link {
    background-color: var(--primario);
    color: #fff;
}

.catalogue-pagination .page-item.disabled .page-link {
    opacity: 0.5;
    background-color: transparent;
}


/* =========================================
   Mobile Sidebar Toggle
   ========================================= */
@media (max-width: 991.98px) {
    .catalogue-sidebar {
        border: none;
        padding: 0;
    }

    #sidebarContent {
        background: #fff;
        padding: 1.5rem;
        border: 1px solid #eee;
        border-radius: 8px;
        margin-top: 1rem;
    }
}