/* ============================================
   SHOPIFY SECTION STYLES - WEBCAREX
   ============================================ */

.shopify-section {
    padding: 4rem 0;
    background: var(--bg-section);
    position: relative;
    overflow: hidden;
}

.shopify-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--gradient-x-1-start) 20%,
        var(--gradient-x-1-mid) 50%,
        var(--gradient-x-2-start) 80%,
        transparent
    );
    opacity: 0.5;
}

.shopify-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--gradient-x-2-start) 20%,
        var(--gradient-x-2-mid) 50%,
        var(--gradient-x-1-start) 80%,
        transparent
    );
    opacity: 0.5;
}

.shopify-wrapper {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.shopify-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    background: var(--bg-darker);
    padding: 3rem 4rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.shopify-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(123, 44, 191, 0.05) 0%,
        rgba(0, 212, 255, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.shopify-content:hover {
    transform: translateY(-5px);
    border-color: rgba(123, 44, 191, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(123, 44, 191, 0.2) inset,
        0 0 40px rgba(123, 44, 191, 0.1);
}

.shopify-content:hover::before {
    opacity: 1;
}

.shopify-logo {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.shopify-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: all 0.5s ease;
}

.shopify-content:hover .shopify-logo {
    background: #ffffff;
    border-color: rgba(123, 44, 191, 0.3);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(123, 44, 191, 0.3);
}

.shopify-content:hover .shopify-logo img {
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(123, 44, 191, 0.5));
}

.shopify-text {
    flex: 1;
    position: relative;
    z-index: 1;
}

.shopify-text p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 0;
    text-align: left;
}

.shopify-text strong {
    color: var(--text-white);
    font-weight: 600;
    position: relative;
}

.shopify-text strong::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--gradient-x-1-start),
        var(--gradient-x-2-start)
    );
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.shopify-text strong:hover::after {
    opacity: 0.6;
}

/* Background decorative elements */
.shopify-section {
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(123, 44, 191, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    .shopify-section {
        padding: 3rem 0;
    }
    
    .shopify-content {
        padding: 2.5rem 3rem;
        gap: 2.5rem;
    }
    
    .shopify-logo {
        width: 100px;
        height: 100px;
        padding: 1.25rem;
    }
    
    .shopify-text p {
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 768px) {
    .shopify-section {
        padding: 2.5rem 0;
    }
    
    .shopify-content {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
        text-align: center;
    }
    
    .shopify-logo {
        width: 90px;
        height: 90px;
        padding: 1rem;
    }
    
    .shopify-text {
        text-align: center;
    }
    
    .shopify-text p {
        font-size: 1rem;
        line-height: 1.7;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .shopify-content {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .shopify-logo {
        width: 80px;
        height: 80px;
        padding: 0.875rem;
    }
    
    .shopify-text p {
        font-size: 0.95rem;
    }
}
