/* ============================================
   Neowork Studios - Shop Page Styles
   Page-specific styles for shop/index.html
   ============================================ */

/* ============================================
   Shop Hero
   ============================================ */
.shop-hero {
    position: relative;
    padding: 14rem 0 4rem;
    margin-top: -10rem;
    background: var(--gradient-hero);
    overflow: hidden;
}

.shop-hero .hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.shop-hero .hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.shop-hero .hero-gradient-orb:nth-child(1) {
    width: 500px;
    height: 500px;
    background: var(--primary-500);
    top: -200px;
    right: -100px;
}

.shop-hero .hero-gradient-orb:nth-child(2) {
    width: 350px;
    height: 350px;
    background: var(--primary-300);
    bottom: -100px;
    left: -100px;
}

.shop-hero .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.shop-hero-content {
    position: relative;
    z-index: 10;
    max-width: 720px;
}

.shop-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.shop-hero-badge i {
    color: var(--accent-400);
}

.shop-hero-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.shop-hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

/* ============================================
   Shop Embed
   ============================================ */
.shop-section {
    min-height: 600px;
}

#myShop {
    min-height: 500px;
}

/* Hide Spreadshop promo footer ("Open Your Free Spreadshop Now") */
#myShop .sprd-footer__promotion,
#myShop [class*="promotion"],
#myShop a[href*="spreadshop"][class*="footer"],
#myShop .sprd-footer__promo {
    display: none !important;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
    .shop-hero {
        padding: 10rem 0 3rem;
    }
}
