/* ===== BLE TAGS PAGE STYLES ===== */
.bletags-container {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

.bletags-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ===== HERO SECTION ===== */
.bletags-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    margin-bottom: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.bletags-hero__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.bletags-hero__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bletags-hero__subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.bletags-hero__stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.bletags-hero__stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bletags-hero__stat-number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.bletags-hero__stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* ===== NAVIGATION TABS ===== */
.bletags-nav {
    background: white;
    border-radius: 16px;
    padding: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.bletags-nav__list {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.bletags-nav__item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bletags-nav__item:hover {
    background: #e2e8f0;
    color: #475569;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.bletags-nav__item.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
}

/* ===== PRODUCT CARDS ===== */
.bletags-grid {
    display: grid;
    gap: 2rem;
}

.bletag-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.bletag-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #cbd5e1;
}

.bletag-card__header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.bletag-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bletag-card__badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(102, 126, 234, 0.3);
}

.bletag-card__subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.bletag-card__description {
    font-size: 0.875rem;
    color: #9ca3af;
}

.bletag-card__content {
    padding: 2rem;
}

.bletag-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1.5rem;
}

.bletag-product {
    background: #f8fafc;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.bletag-product:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(102, 126, 234, 0.2);
}

.bletag-product__image {
    aspect-ratio: 1;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.bletag-product__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.bletag-product:hover .bletag-product__image img {
    transform: scale(1.05);
}

.bletag-product__info {
    padding: 1rem;
    text-align: center;
    background: white;
}

.bletag-product__name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    transition: color 0.3s ease;
}

.bletag-product:hover .bletag-product__name {
    color: #667eea;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .bletags-hero__title {
        font-size: 2.5rem;
    }
    
    .bletags-hero__stats {
        gap: 1rem;
    }
    
    .bletag-products {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .bletags-container {
        padding: 1rem 0;
    }
    
    .bletags-hero {
        padding: 3rem 0;
        margin-bottom: 2rem;
        border-radius: 16px;
    }
    
    .bletags-hero__title {
        font-size: 2rem;
    }
    
    .bletags-hero__subtitle {
        font-size: 1.125rem;
    }
    
    .bletags-hero__stats {
        flex-direction: column;
        align-items: center;
    }
    
    .bletags-nav__list {
        flex-direction: column;
    }
    
    .bletag-card__header,
    .bletag-card__content {
        padding: 1.5rem;
    }
    
    .bletag-products {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
}

@media (max-width: 480px) {
    .bletags-hero__title {
        font-size: 1.75rem;
    }
    
    .bletag-card__title {
        font-size: 1.25rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .bletag-products {
        grid-template-columns: repeat(2, 1fr);
    }
}
