/* Featured Section */
.featured-section {
    padding: 6rem 0;
    background: #000;
    color: #fff;
    position: relative;
    overflow: hidden
}

.featured-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: .1;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, .3) 1px, transparent 0);
    background-size: 40px 40px
}

.featured-content {
    position: relative;
    z-index: 2
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center
}

.featured-image {
    position: relative
}

.featured-image-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .5)
}

.featured-image-main img {
    width: 100%;
    height: auto
}

.featured-image-float {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
    animation: float 6s ease-in-out infinite
}

.featured-image-float:nth-child(2) {
    top: -30px;
    right: -30px;
    animation-delay: 1s
}

.featured-image-float:nth-child(3) {
    bottom: -30px;
    left: -30px;
    animation-delay: 2s
}

.featured-info {
    padding: 2rem
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    background: rgba(255, 51, 102, .2);
    border-radius: 9999px;
    color: var(--pm-secondary);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 1.5rem
}

.featured-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem
}

.featured-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 2rem;
    line-height: 1.8
}

.featured-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem
}

.featured-stat {
    text-align: center
}

.featured-stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--pm-secondary);
    margin-bottom: .25rem
}

.featured-stat-label {
    font-size: .875rem;
    color: rgba(255, 255, 255, .6);
    text-transform: uppercase;
    letter-spacing: .05em
}

/* Artists Section */
.artists-section {
    padding: 5rem 0;
    background: #fff
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem
}

.artist-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 24px;
    background: #fff;
    transition: all .25s;
    cursor: pointer
}

.artist-card:hover {
    background: var(--pm-gray-50);
    transform: translateY(-4px)
}

.artist-avatar {
    width: 100px;
    height: 100px;
    border-radius: 9999px;
    background: var(--pm-gradient-primary);
    padding: 3px;
    margin: 0 auto 1rem
}

.artist-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 9999px;
    object-fit: cover;
    border: 3px solid #fff
}

.artist-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: .25rem
}

.artist-role {
    font-size: .875rem;
    color: var(--pm-gray-500)
}

/* Newsletter Section */
.newsletter-section {
    padding: 6rem 0;
    background: var(--pm-gradient-primary);
    position: relative;
    overflow: hidden
}

.newsletter-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none
}

.newsletter-shape {
    position: absolute;
    border-radius: 9999px;
    background: rgba(255, 255, 255, .1)
}

.newsletter-shape:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px
}

.newsletter-shape:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: 10%
}

.newsletter-shape:nth-child(3) {
    width: 150px;
    height: 150px;
    top: 20%;
    right: -50px
}

.newsletter-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto
}

.newsletter-title {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem
}

.newsletter-description {
    color: rgba(255, 255, 255, .9);
    font-size: 1.125rem;
    margin-bottom: 2rem
}

.newsletter-form {
    display: flex;
    gap: .75rem;
    max-width: 500px;
    margin: 0 auto
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, .2);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 9999px;
    color: #fff;
    font-size: 1rem;
    backdrop-filter: blur(10px)
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, .7)
}

.newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, .3);
    border-color: #fff
}

.newsletter-btn {
    padding: 1rem 2rem;
    background: #fff;
    color: var(--pm-secondary);
    font-weight: 700;
    border-radius: 9999px;
    transition: all .25s
}

.newsletter-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2)
}

/* Footer */
.site-footer {
    background: #000;
    color: #fff;
    padding: 4rem 0 2rem
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem
}

.footer-brand {
    max-width: 320px
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.25rem
}

.footer-logo-icon {
    width: 48px;
    height: 48px;
    background: var(--pm-gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem
}

.footer-logo-text {
    font-family: var(--pm-font-display);
    font-size: 1.5rem;
    font-weight: 800
}

.footer-description {
    color: rgba(255, 255, 255, .6);
    font-size: .875rem;
    line-height: 1.8;
    margin-bottom: 1.5rem
}

.footer-social {
    display: flex;
    gap: .75rem
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .1);
    border-radius: 9999px;
    color: #fff;
    transition: all .15s
}

.social-link:hover {
    background: var(--pm-secondary);
    transform: translateY(-3px)
}

.footer-column h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem
}

.footer-links {
    list-style: none
}

.footer-links li {
    margin-bottom: .75rem
}

.footer-links a {
    color: rgba(255, 255, 255, .6);
    font-size: .875rem;
    transition: all .15s
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .1)
}

.footer-copyright {
    color: rgba(255, 255, 255, .5);
    font-size: .875rem
}

.footer-payments {
    display: flex;
    gap: .75rem
}

.payment-icon {
    width: 40px;
    height: 26px;
    background: rgba(255, 255, 255, .1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    color: rgba(255, 255, 255, .7)
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .5;
        transform: scale(1.5)
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-20px)
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all .8s cubic-bezier(.4, 0, .2, 1)
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0)
}

/* Responsive */
@media(max-width:992px) {
    .main-nav {
        display: none
    }

    .mobile-menu-toggle {
        display: flex
    }

    .featured-grid {
        grid-template-columns: 1fr
    }

    .featured-image {
        order: -1
    }

    .hero-arrows {
        display: none
    }
}

@media(max-width:768px) {
    .header-inner {
        height: 64px;
        padding: 0 1rem
    }

    .header-search {
        display: none
    }

    .hero {
        min-height: 90vh
    }

    .hero-buttons {
        flex-direction: column
    }

    .hero-buttons .btn {
        width: 100%
    }

    .categories-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .newsletter-form {
        flex-direction: column
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center
    }

    .footer-logo,
    .footer-social {
        justify-content: center
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center
    }
}

@media(max-width:480px) {
    .container {
        padding: 0 1rem
    }

    .section {
        padding: 3rem 0
    }

    .categories-grid,
    .products-grid {
        grid-template-columns: 1fr
    }

    .artists-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}