/**
 * WELLCOSTA Instagram for WooCommerce - Frontend Stílusok
 * Készítette: Kostyál Árpád - WELLCOSTA.DEV
 */

/* Main wrapper */
.wcig-instagram-wrapper {
    margin: 40px 0;
    padding: 40px 0;
    border-top: 1px solid #e5e5e5;
}

/* Section title */
.wcig-section-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.wcig-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    border-radius: 3px;
}

/* Product Instagram post */
.wcig-product-instagram-post {
    margin-bottom: 50px;
}

/* Embed container */
.wcig-embed-container {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.wcig-embed-container .instagram-media {
    margin: 0 auto !important;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Profile embed */
.wcig-profile-embed {
    position: relative;
}

.wcig-instagram-profile {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    padding: 30px 20px;
    border-radius: 16px;
    margin-top: 20px;
}

/* Instagram icon decoration */
.wcig-instagram-profile .wcig-section-title::before {
    content: '📸';
    display: block;
    font-size: 40px;
    margin-bottom: 15px;
}

/* Loading state */
.wcig-embed-container blockquote.instagram-media {
    background: #fff;
    border: 0 !important;
    min-width: 326px;
    max-width: 540px;
    width: calc(100% - 2px);
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .wcig-instagram-wrapper {
        border-top-color: #333;
    }
    
    .wcig-section-title {
        color: #f0f0f0;
    }
    
    .wcig-instagram-profile {
        background: linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 100%);
    }
}

/* Responsive */
@media screen and (max-width: 768px) {
    .wcig-instagram-wrapper {
        margin: 30px 0;
        padding: 30px 0;
    }
    
    .wcig-section-title {
        font-size: 20px;
    }
    
    .wcig-embed-container {
        padding: 10px;
    }
    
    .wcig-instagram-profile {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .wcig-instagram-profile .wcig-section-title::before {
        font-size: 32px;
    }
}

@media screen and (max-width: 480px) {
    .wcig-section-title {
        font-size: 18px;
    }
    
    .wcig-embed-container blockquote.instagram-media {
        min-width: 280px;
    }
}

/* Animation for embeds loading */
@keyframes wcig-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.wcig-embed-container blockquote.instagram-media:not([data-instgrm-processed]) {
    animation: wcig-pulse 1.5s ease-in-out infinite;
}

