/**
 * EP Profil Shop Banner - Frontend Styles
 */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.ep-profil-shop-banner {
    width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    margin: 4rem 0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: fadeIn 0.8s ease-out forwards;
    background-size: 200% 200%;
    transition: all 0.3s ease-in-out;
}

.ep-profil-shop-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

.shop-banner-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.shop-banner-content {
    width: 100%;
    max-width: 800px;
    text-align: center;
    padding: 2rem 1.5rem;
}

.shop-banner-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.1;
    background: linear-gradient(90deg, #E30613, #ff4747);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 3s ease infinite;
    background-size: 200% auto;
}

.shop-banner-text {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.shop-banner-button {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2.25rem;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(227, 6, 19, 0.3);
}

.shop-banner-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(227, 6, 19, 0.4);
}

.shop-banner-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(227, 6, 19, 0.4);
}

.shop-banner-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #E30613, #ff4747);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.shop-banner-button:hover::before {
    opacity: 1;
}

.shop-banner-button svg {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.shop-banner-button:hover svg {
    transform: translateX(3px);
}

/* Icon container */
.shop-banner-icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.shop-banner-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E30613, #ff4747);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(227, 6, 19, 0.25);
    color: white;
    margin-bottom: 1rem;
}

.shop-banner-svg-icon {
    color: inherit;
}

/* Icon for button */
.shop-banner-button-icon {
    display: inline-block;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.shop-banner-button:hover .shop-banner-button-icon {
    transform: translateX(3px);
}

/* Background overlay for image backgrounds */
.shop-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2));
    z-index: 1;
}

/* Responsive styles */
@media (max-width: 992px) {
    .shop-banner-title {
        font-size: 2.25rem;
    }
    
    .shop-banner-text {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .ep-profil-shop-banner {
        margin: 3rem 0;
    }
    
    .shop-banner-title {
        font-size: 2rem;
    }
    
    .shop-banner-button {
        padding: 0.75rem 1.75rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .ep-profil-shop-banner {
        margin: 2rem 0;
    }
    
    .shop-banner-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .shop-banner-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .shop-banner-button {
        font-size: 0.9375rem;
        padding: 0.625rem 1.5rem;
    }
}