/* Social Media Icon Styles */
.social-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    margin: 0 5px;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.social-icon.youtube {
    background: linear-gradient(45deg, #FF0000, #FF3333);
}

.social-icon.tiktok {
    background: linear-gradient(45deg, #000000, #333333);
}

.social-icon.facebook {
    background: linear-gradient(45deg, #1877F2, #3B5998);
}

.social-icon.twitter {
    background: linear-gradient(45deg, #1DA1F2, #0084B4);
}

.social-icon.instagram {
    background: linear-gradient(45deg, #E4405F, #405DE6);
}

.social-icon.linkedin {
    background: linear-gradient(45deg, #0077B5, #00A0DC);
}

.social-icon.whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
}

/* Social media page banners */
.social-platform-banner {
    padding: 4rem 0;
    text-align: center;
    color: white;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.social-platform-banner.youtube-banner {
    background: linear-gradient(135deg, #FF0000, #CC0000);
}

.social-platform-banner.tiktok-banner {
    background: linear-gradient(135deg, #000000, #333333);
}

.social-platform-banner.facebook-banner {
    background: linear-gradient(135deg, #1877F2, #0D5BB5);
}

.social-platform-banner.instagram-banner {
    background: linear-gradient(135deg, #E4405F, #833AB4);
}

.platform-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.platform-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.platform-stats span {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

/* Membership tier colors */
.tier-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.tier-badge.bronze {
    background-color: var(--bronze);
    color: white;
}

.tier-badge.silver {
    background-color: var(--silver);
    color: #333;
}

.tier-badge.gold {
    background-color: var(--gold);
    color: #333;
}

/* Tier headers */
.tier-header {
    padding: 3rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.tier-header.bronze-header {
    background: linear-gradient(135deg, #CD7F32, #B76E2A);
    color: white;
}

.tier-header.silver-header {
    background: linear-gradient(135deg, #C0C0C0, #A0A0A0);
    color: #333;
}

.tier-header.gold-header {
    background: linear-gradient(135deg, #FFD700, #FFC800);
    color: #333;
}

.tier-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    background: rgba(255,255,255,0.2);
}

/* Product cards */
.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: bold;
}

.product-info {
    padding: 1.5rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

.current-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
}

/* Live class items */
.live-class-item {
    display: flex;
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.live-class-time {
    text-align: center;
    padding-right: 1.5rem;
    border-right: 2px solid #eee;
    min-width: 120px;
}

.live-date {
    font-size: 0.9rem;
    color: #666;
}

.live-hour {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.live-class-info {
    flex: 1;
    padding-left: 1.5rem;
}

.live-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

/* Class cards */
.class-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s;
}

.class-card:hover {
    transform: translateY(-5px);
}

.class-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.class-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.class-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.class-card:hover .class-overlay {
    opacity: 1;
}

.play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s;
}

.play-btn:hover {
    transform: scale(1.1);
    color: white;
}

.class-info {
    padding: 1.5rem;
}

.class-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.difficulty {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.difficulty.beginner {
    background: #e8f5e9;
    color: #2e7d32;
}

.difficulty.intermediate {
    background: #fff3e0;
    color: #ef6c00;
}

.difficulty.advanced {
    background: #ffebee;
    color: #c62828;
}

.instructor {
    color: #666;
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.class-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.premium-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255,255,255,0.9);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1;
}

/* Blog styles */
.blog-article {
    line-height: 1.8;
}

.article-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.meta-info {
    display: flex;
    flex-direction: column;
}

.author {
    font-weight: bold;
}

.date, .read-time {
    opacity: 0.8;
    font-size: 0.9rem;
}

.featured-image {
    margin: 2rem 0;
}

.featured-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.pose-section {
    margin: 3rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.pose-image {
    width: 100%;
    border-radius: 10px;
    margin: 1rem 0;
}

.youtube-embed {
    margin: 3rem 0;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.tag {
    background: #e9ecef;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.social-share {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.3s;
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn.facebook {
    background: #1877F2;
}

.share-btn.twitter {
    background: #1DA1F2;
}

.share-btn.pinterest {
    background: #E60023;
}

.share-btn.linkedin {
    background: #0077B5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .live-class-item {
        flex-direction: column;
        text-align: center;
    }
    
    .live-class-time {
        border-right: none;
        border-bottom: 2px solid #eee;
        padding-right: 0;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
        min-width: auto;
    }
    
    .live-class-info {
        padding-left: 0;
    }
    
    .tier-badge-large {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .platform-stats {
        flex-direction: column;
        gap: 1rem;
    }
}