* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #000000 0%, #1a0a1a 30%, #ff1744 100%);
    background-attachment: fixed;
    color: #fff;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,.03) 2px, rgba(0,0,0,.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0,0,0,.03) 2px, rgba(0,0,0,.03) 4px);
    background-size: 100% 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" /></filter><rect width="200" height="200" filter="url(%23noise)" opacity="0.05"/></svg>');
    pointer-events: none;
    z-index: 1;
    opacity: 0.8;
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(255, 23, 68, 0.9) 100%);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #ff1744;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8), 
                0 0 30px rgba(255, 23, 68, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff1744;
    text-shadow: 3px 3px 0px #000,
                 -1px -1px 0px #000,
                 1px -1px 0px #000,
                 -1px 1px 0px #000,
                 0 0 20px rgba(255, 23, 68, 0.8),
                 0 0 40px rgba(255, 23, 68, 0.5);
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes background-fade {
    0%, 100% {
        background: linear-gradient(135deg, #ff5c7c 0%, #ff77a9 50%, #ffd4e5 100%);
    }
    50% {
        background: linear-gradient(135deg, #ffabc3 0%, #ffc4d6 50%, #fff0f5 100%);
    }
}

nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

nav ul li a {
    font-family: 'Space Grotesk', sans-serif;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 8px 16px;
    border: 2px solid transparent;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

nav ul li a:hover {
    border: 2px solid #ff1744;
    background: rgba(255, 23, 68, 0.2);
    box-shadow: 0 0 20px rgba(255, 23, 68, 0.8),
                inset 0 0 20px rgba(255, 23, 68, 0.1);
    color: #ff1744;
    text-shadow: 0 0 10px rgba(255, 23, 68, 0.8);
}

/* Hero Section */
.hero {
    background: radial-gradient(ellipse at top, rgba(255, 23, 68, 0.2) 0%, rgba(0, 0, 0, 0.8) 70%);
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 40px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 23, 68, 0.03) 2px,
            rgba(255, 23, 68, 0.03) 4px
        );
    opacity: 0.5;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 7rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #ff1744;
    text-shadow: 4px 4px 0px #000,
                 -2px -2px 0px #000,
                 2px -2px 0px #000,
                 -2px 2px 0px #000,
                 8px 8px 0px rgba(0, 0, 0, 0.5),
                 0 0 40px rgba(255, 23, 68, 1),
                 0 0 80px rgba(255, 23, 68, 0.8),
                 0 0 120px rgba(255, 23, 68, 0.6);
    line-height: 1;
    filter: contrast(1.1);
}

.tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: #fff;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: 2px 2px 0px #000,
                 0 0 20px rgba(255, 23, 68, 0.8),
                 0 0 40px rgba(255, 23, 68, 0.6);
}

.cta-button {
    font-family: 'Space Grotesk', sans-serif;
    display: inline-block;
    background: #000;
    color: #ff1744;
    padding: 18px 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 900;
    font-size: 1.2rem;
    border: 3px solid #ff1744;
    border-radius: 50px;
    box-shadow: 5px 5px 0px #ff1744,
                0 0 30px rgba(255, 23, 68, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-shadow: 0 0 10px rgba(255, 23, 68, 0.5);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0px #ff1744,
                0 0 40px rgba(255, 23, 68, 0.8);
    background: #ff1744;
    color: #000;
    text-shadow: none;
}

/* About Section */
.about {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(26, 10, 26, 0.95) 50%, rgba(0, 0, 0, 0.9) 100%);
    backdrop-filter: blur(10px);
    padding: 120px 40px;
    border-top: 2px solid #ff1744;
    border-bottom: 2px solid #ff1744;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 23, 68, 0.03) 10px,
            rgba(255, 23, 68, 0.03) 20px
        );
    opacity: 0.5;
    pointer-events: none;
}

.about .container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 40px;
    border: 3px solid #ff1744;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    box-shadow: 8px 8px 0px rgba(255, 23, 68, 0.3),
                0 0 40px rgba(255, 23, 68, 0.4);
}

.about h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: #ff1744;
    text-shadow: 3px 3px 0px #000,
                 -1px -1px 0px #000,
                 1px -1px 0px #000,
                 -1px 1px 0px #000,
                 0 0 30px rgba(255, 23, 68, 0.8);
}

.about p {
    font-size: 1.3rem;
    line-height: 1.9;
    color: #fff;
    margin-bottom: 1.8rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 400;
}

/* Shop Section */
.shop {
    background: radial-gradient(ellipse at bottom, rgba(255, 23, 68, 0.15) 0%, rgba(0, 0, 0, 0.95) 70%);
    backdrop-filter: blur(10px);
    padding: 120px 40px;
    min-height: 100vh;
    position: relative;
}

.shop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 4px,
            rgba(255, 23, 68, 0.02) 4px,
            rgba(255, 23, 68, 0.02) 8px
        );
    opacity: 0.6;
    pointer-events: none;
}

.shop .container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 40px;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 23, 68, 0.3);
}

.shop h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 4rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: #ff1744;
    text-shadow: 3px 3px 0px #000,
                 -1px -1px 0px #000,
                 1px -1px 0px #000,
                 -1px 1px 0px #000,
                 0 0 30px rgba(255, 23, 68, 0.8);
}

/* Shopify Buy Button Overrides */
#collection-component-1768413478619 {
    margin: 0 auto;
}

.shopify-buy__product {
    background: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(15px) !important;
    border: 2px solid #ff1744 !important;
    border-radius: 20px !important;
    box-shadow: 6px 6px 0px rgba(255, 23, 68, 0.3),
                0 0 30px rgba(255, 23, 68, 0.2) !important;
    transition: all 0.3s ease !important;
}

.shopify-buy__product:hover {
    transform: translate(2px, 2px) !important;
    box-shadow: 4px 4px 0px rgba(255, 23, 68, 0.5),
                0 0 40px rgba(255, 23, 68, 0.5) !important;
    border-color: #ff1744 !important;
}

.shopify-buy__product-img-wrapper {
    border-bottom: 2px solid #ff1744 !important;
    border-radius: 20px 20px 0 0 !important;
    overflow: hidden !important;
}

.shopify-buy__product__title,
.shopify-buy__product__title * {
    color: #ff1744 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    text-shadow: 2px 2px 0px #000,
                 0 0 10px rgba(255, 23, 68, 0.5) !important;
}

h1.shopify-buy__product__title,
.shopify-buy-frame .shopify-buy__product__title {
    color: #ff1744 !important;
}

.shopify-buy__product__price {
    color: #ff1744 !important;
    font-weight: 900 !important;
    text-shadow: 2px 2px 0px #000,
                 0 0 15px rgba(255, 23, 68, 0.8) !important;
    font-size: 1.3rem !important;
}

.shopify-buy__btn {
    background: #000 !important;
    color: #ff1744 !important;
    border: 2px solid #ff1744 !important;
    border-radius: 25px !important;
    font-weight: 900 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    box-shadow: 4px 4px 0px #ff1744,
                0 0 20px rgba(255, 23, 68, 0.3) !important;
    transition: all 0.3s ease !important;
}

.shopify-buy__btn:hover {
    transform: translate(2px, 2px) !important;
    box-shadow: 2px 2px 0px #ff1744,
                0 0 30px rgba(255, 23, 68, 0.6) !important;
    background: #ff1744 !important;
    color: #000 !important;
}

/* Footer */
footer {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(26, 10, 26, 0.98) 100%);
    backdrop-filter: blur(10px);
    color: #fff;
    text-align: center;
    padding: 3rem 0;
    border-top: 2px solid #ff1744;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.8),
                0 0 20px rgba(255, 23, 68, 0.2);
}

footer p {
    letter-spacing: 2px;
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
}

footer .credit {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.8rem;
}

footer a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 2px 8px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    display: inline-block;
}

footer a:hover {
    color: #ff1744;
    border-bottom: 2px solid #ff1744;
    text-shadow: 0 0 15px rgba(255, 23, 68, 0.8);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
        letter-spacing: 3px;
    }
    
    .tagline {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    
    nav {
        padding: 0 20px;
    }
    
    .logo {
        font-size: 1.8rem;
    }
    
    nav ul {
        gap: 1.5rem;
    }
    
    nav ul li a {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .about h2,
    .shop h2 {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .about,
    .shop {
        padding: 80px 20px;
    }
    
    .cta-button {
        padding: 15px 35px;
        font-size: 1rem;
    }
}
/* Y2K Maximalist Decoration Layers */
.hero::before,
.about::before,
.shop::before {
    background-image: 
        url('../Assets/Gothic-rose.png'),
        url('../Assets/Pink-Glitter-Star.png'),
        url('../Assets/Y2K-butterfly.png'),
        url('../Assets/Heart-with-wings.png'),
        url('../Assets/Crown.png'),
        url('../Assets/Broken-heart-graphic.png'),
        url('../Assets/Glittery-heart.png'),
        url('../Assets/Small-butterfly-cluster.png'),
        url('../Assets/Stylized-rose.png'),
        url('../Assets/Cluster-of-small-stars.png');
    background-size: 
        220px 220px,
        180px 180px,
        200px 200px,
        190px 190px,
        170px 170px,
        210px 210px,
        185px 185px,
        175px 175px,
        195px 195px,
        160px 160px;
    background-position:
        0 0,
        30px 40px,
        60px 20px,
        90px 70px,
        15px 55px,
        45px 85px,
        75px 15px,
        105px 50px,
        20px 80px,
        50px 10px;
    background-repeat: repeat;
    opacity: 0.7;
}

.hero {
    background-image:
        url('../Assets/Chain-link-border.png'),
        url('../Assets/Starburst-explosion.png'),
        url('../Assets/Large-shooting-star.png'),
        url('../Assets/Glitter-Swirl.png'),
        url('../Assets/Rose-with-sparkles.png'),
        url('../Assets/Lightningbolt-with-sparkles.png'),
        url('../Assets/Checkerd-corner.png'),
        url('../Assets/Cross-safty-pins.png'),
        url('../Assets/Outlined-heart.png'),
        url('../Assets/Outlined-star-burst .png');
    background-size:
        210px 210px,
        230px 230px,
        200px 200px,
        180px 180px,
        195px 195px,
        205px 205px,
        190px 190px,
        170px 170px,
        185px 185px,
        215px 215px;
    background-position:
        25px 35px,
        80px 10px,
        10px 65px,
        55px 45px,
        95px 80px,
        40px 20px,
        70px 60px,
        5px 90px,
        85px 25px,
        35px 75px;
    background-repeat: repeat;
}

.about {
    background-image:
        url('../Assets/Gothic-mozei-butterfly.png'),
        url('../Assets/Leopard-print-circle.png'),
        url('../Assets/Y2K-style-rose.png'),
        url('../Assets/Ribbon-Bow.png'),
        url('../Assets/Small-decorative-rose.png'),
        url('../Assets/Pink-Glitter-Star.png'),
        url('../Assets/Y2K-butterfly.png'),
        url('../Assets/Gothic-rose.png'),
        url('../Assets/Heart-with-wings.png'),
        url('../Assets/Crown.png');
    background-size:
        205px 205px,
        225px 225px,
        190px 190px,
        175px 175px,
        165px 165px,
        195px 195px,
        210px 210px,
        200px 200px,
        185px 185px,
        180px 180px;
    background-position:
        15px 25px,
        60px 70px,
        90px 15px,
        30px 85px,
        75px 40px,
        45px 55px,
        5px 80px,
        100px 30px,
        50px 5px,
        85px 60px;
    background-repeat: repeat;
}

.shop {
    background-image:
        url('../Assets/Glittery-heart.png'),
        url('../Assets/Starburst-explosion.png'),
        url('../Assets/Cluster-of-small-stars.png'),
        url('../Assets/Broken-heart-graphic.png'),
        url('../Assets/Outlined-star-burst .png'),
        url('../Assets/Rose-with-sparkles.png'),
        url('../Assets/Small-butterfly-cluster.png'),
        url('../Assets/Lightningbolt-with-sparkles.png'),
        url('../Assets/Checkerd-corner.png'),
        url('../Assets/Chain-link-border.png');
    background-size:
        215px 215px,
        200px 200px,
        170px 170px,
        220px 220px,
        195px 195px,
        185px 185px,
        175px 175px,
        210px 210px,
        190px 190px,
        205px 205px;
    background-position:
        20px 50px,
        65px 20px,
        95px 75px,
        35px 10px,
        80px 55px,
        10px 85px,
        50px 30px,
        75px 5px,
        40px 65px,
        5px 40px;
    background-repeat: repeat;
}

/* Keep content above decorations */
.hero-content,
.about .container,
.shop .container {
    position: relative;
    z-index: 100;
}