.premium-main-wrapper {
    width: 75%;
    margin: 0 auto;
}

.premium-section-container {
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 12px;
    position: relative;
    overflow: hidden;
    background: #dee3f6;
}

.premium-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.premium-section-title {
    font-size: 24px !important;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: -0.5px;
    font-size: 24px;
}


.premium-see-more-link {
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(102, 126, 234, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.premium-see-more-link:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

.premium-products-scroll {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding: 8px 0 16px 0;
    scrollbar-width: thin;
    scrollbar-color: #667eea #e0e7ff;
    /* azul y fondo azul claro */
    -ms-overflow-style: none;
}

.premium-products-scroll::-webkit-scrollbar {
    height: 8px;
    background: #e0e7ff;
    /* fondo azul claro */
}

.premium-products-scroll::-webkit-scrollbar-thumb {
    background: #667eea;
    /* azul */
    border-radius: 8px;
}

.premium-product-card {
    min-width: 200px;
    max-width: 200px;
    background: #ffffff;
    border-radius: 20px;
    padding: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.premium-product-card:hover {
    transform: translateY(-12px);
    border-color: rgba(102, 126, 234, 0.3);
}

.premium-product-image-container {
    position: relative;
    height: 200px;
    margin-bottom: 16px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-product-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-product-card:hover .premium-product-image {
    transform: scale(1.05);
}

.premium-bestseller-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 20px;
}

.premium-product-title {
    font-size: 13px;
    color: #1e293b;
    margin-bottom: 8px;
    height: auto;
    overflow: hidden;
    display: -webkit-box;

    font-weight: 600;
}

.premium-product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    gap: 8px;
}

.premium-stars {
    color: #fbbf24;
    font-size: 14px;
    text-shadow: 0 1px 2px rgba(251, 191, 36, 0.3);
}

.premium-rating-count {
    color: #667eea;
    font-size: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.premium-rating-count:hover {
    color: #4f46e5;
}

.premium-price-section {
    margin-bottom: 16px;
}

.premium-current-price {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-stock-info {
    font-size: 12px;
    color: #059669;
    margin-bottom: 16px;
    font-weight: 600;
    padding: 4px 8px;
    background: rgba(5, 150, 105, 0.1);
    border-radius: 8px;
    display: inline-block;
}

.premium-quantity-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.premium-quantity-label {
    font-size: 13px;
    color: #475569;
    font-weight: 600;
}

.premium-quantity-select {
    padding: 8px 12px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 13px;
    background: #ffffff;
    transition: all 0.2s ease;
    font-weight: 500;
}

.premium-quantity-select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.premium-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.premium-add-cart-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 16px;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.premium-view-details-btn {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    border-radius: 16px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}





@media (max-width: 768px) {
    .premium-main-wrapper {
        width: 95%;
    }

    .premium-product-card {
        min-width: 240px;
        max-width: 240px;
    }

    .premium-product-image-container {
        height: 160px;
    }

    .premium-section-container {
        padding: 24px;
        margin-bottom: 32px;
    }

    .premium-section-title {
        font-size: 24px;
    }
}



/* ------------------------------------------------------------------------
 */
.premium-section-container2 {
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 12px;
    position: relative;
    overflow: hidden;
    background: #ffffff00;
}

.main-showcase-wrapper2 {
    display: flex;
    gap: 20px;
    margin: 0 auto;
    scrollbar-width: thin;
    /* scrollbar-color: #667eea #e0e7ff; */
    /* overflow-x: scroll; */
}

.product-section-container2, .product-section-container3 {
    background-color: #dee3f6;
    border-radius: 8px;
    padding: 20px;
}



.section-header-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.items-display-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.product-item-card {
    position: relative;
    background-color: #ffffff;
    border-radius: 6px;
    padding: 10px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-item-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-image-display {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 8px;
}

.product-category-label {
    display: block;
    font-size: 12px;
    color: #666;
    font-weight: 500;
    margin-top: 5px;
}

.discount-badge-label {
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: #e74c3c;
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 12px;
    white-space: nowrap;
}

.tech-products-grid {
    background-color: #a8d982;
    padding: 15px;
    border-radius: 8px;
}

.tech-products-grid .product-item-card {
    background-color: #ffffffba;
}

.view-more-link {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.view-more-link:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .main-showcase-wrapper {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .product-section-container {
        padding: 15px;
    }

    .section-header-title {
        font-size: 16px;
    }

    .items-display-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-image-display {
        height: 160px;
    }
}

@media (max-width: 480px) {

    .items-display-grid {
        grid-template-columns: 1fr;
    }

    .product-image-display {
        height: 150px;
    }

    .discount-badge-label {
        font-size: 9px;
        padding: 3px 6px;
    }
}


.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff4444;
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
}

.original-price-container {
    margin-bottom: 5px;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 13px;
}

.you-save {
    font-size: 11px;
    color: #ff4444;
    margin-left: 8px;
}

.normal-price-label {
    font-size: 11px;
    color: #666;
    margin-left: 8px;
}










.premium-products-container {
    display: flex
;
    justify-content: center;
    align-items: center;
}
.premium-products-scroll {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 15px;
    padding: 10px 0;
    width: 100%;
    scrollbar-width: none; /* Para Firefox */
    -ms-overflow-style: none; /* Para IE y Edge */
}

.premium-products-scroll::-webkit-scrollbar {
    display: none; /* Para Chrome, Safari y Opera */
}
.scroll-button {
    background: rgb(102 126 234);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    display: flex
;
    align-items: center;
    justify-content: center;
    z-index: 10;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.scroll-button:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.scroll-button.left {
    margin-right: 10px;
}

.scroll-button.right {
    margin-left: 10px;
}

/* Estilos existentes de las cards... */
.premium-product-card {
    flex: 0 0 auto;
    width: 200px; /* Ajusta según necesites */
}

