* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --pure-black: #000000;
    --card-bg: #111111;
    --primary-orange: #FF5A00;
    --hover-orange: #E84E00;
    --pure-white: #FFFFFF;
    --gray-text: #B8B8B8;
    --divider: #1A1A1A;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--pure-black);
    color: var(--pure-white);
    overflow-x: hidden;
}

/* Content Layer */
.content {
    position: relative;
    z-index: 10;
}

/* Navbar */
.navbar {
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    background: var(--pure-black);
    border-bottom: 1px solid var(--divider);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.logo-orange {
    color: var(--primary-orange);
}

.logo-white {
    color: var(--pure-white);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--pure-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-orange);
}

.etsy-btn {
    background: var(--primary-orange);
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    color: var(--pure-white);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.etsy-btn:hover {
    background: var(--hover-orange);
    transform: scale(1.05);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section - Two Column */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    width: 100%;
    align-items: center;
}

/* LEFT HERO */
.hero-left {
    text-align: left;
}

.hero-heading {
    font-family: 'Anton', sans-serif;
    font-size: 100px;
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 28px;
    color: var(--gray-text);
    margin-bottom: 2rem;
}

.shop-now-btn {
    background: var(--primary-orange);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 700;
    color: var(--pure-white);
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.shop-now-btn:hover {
    background: var(--hover-orange);
    transform: scale(1.05);
}

/* RIGHT HERO - Product Showcase */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-platform {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.orange-smoke {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 90, 0, 0.45) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.podium {
    position: relative;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 30px rgba(255, 90, 0, 0.3);
    border: 2px solid var(--primary-orange);
}

.floating-products {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-tshirt {
    position: absolute;
    width: 180px;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
}

.floating-cap {
    position: absolute;
    width: 120px;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    animation: float 3s ease-in-out infinite reverse;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-20px); }
}

/* Benefits Section */
.benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 5rem 5%;
    background: var(--pure-black);
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 18px;
    transition: all 0.3s;
    flex: 1;
    max-width: 300px;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(255, 90, 0, 0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    border: 2px solid var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-orange);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--pure-white);
}

.benefit-card p {
    color: var(--gray-text);
    font-size: 0.9rem;
}

/* Featured Collection */
.collection {
    padding: 5rem 5%;
}

.collection-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.collection-header h2 {
    font-family: 'Anton', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 2px;
    color: var(--pure-white);
}

.view-all {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.view-all:hover {
    color: var(--hover-orange);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.product-card {
    background: var(--card-bg);
    border-radius: 18px;
    padding: 20px;
    transition: all 0.3s;
    position: relative;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(255, 90, 0, 0.15);
}

.product-image {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--pure-white);
    margin-bottom: 0.5rem;
    text-align: center;
}

.add-to-cart {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.add-to-cart:hover {
    background: var(--hover-orange);
    transform: scale(1.1);
}

.add-to-cart i {
    color: var(--pure-white);
    font-size: 18px;
}

/* Footer */
.footer {
    background: var(--pure-black);
    padding: 4rem 5% 2rem;
    border-top: 1px solid var(--divider);
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--gray-text);
    line-height: 1.6;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section a {
    display: block;
    color: var(--gray-text);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-orange);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 90, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-orange);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--divider);
    color: var(--gray-text);
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-heading {
        font-size: 70px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: var(--pure-black);
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        border-bottom: 1px solid var(--divider);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-left {
        text-align: center;
    }
    
    .hero-heading {
        font-size: 50px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .shop-now-btn {
        padding: 14px 30px;
        font-size: 18px;
    }
    
    .benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .benefit-card {
        max-width: 100%;
        width: 100%;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-platform {
        max-width: 350px;
        height: 350px;
    }
    
    .floating-tshirt {
        width: 140px;
    }
    
    .floating-cap {
        width: 90px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-heading {
        font-size: 40px;
    }
}
/* Category Sections */
.category-section {
    padding: 4rem 5% 0;
}

.about-section {
    padding: 5rem 5%;
    background: var(--card-bg);
    text-align: center;
}

.about-container h2 {
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-orange);
}

.about-container p {
    color: var(--gray-text);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.about-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.about-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.about-item i {
    font-size: 2rem;
    color: var(--primary-orange);
}

.about-item span {
    color: var(--pure-white);
}

.contact-section {
    padding: 5rem 5%;
    background: var(--pure-black);
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-container h2 {
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-orange);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-text);
}

.contact-item i {
    color: var(--primary-orange);
    font-size: 1.2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    background: var(--card-bg);
    border: 1px solid var(--divider);
    border-radius: 10px;
    color: var(--pure-white);
    font-family: 'Inter', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.contact-form button {
    background: var(--primary-orange);
    border: none;
    padding: 1rem;
    border-radius: 50px;
    color: var(--pure-white);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-form button:hover {
    background: var(--hover-orange);
    transform: scale(1.02);
}

/* Active nav link */
.nav-link.active {
    color: var(--primary-orange);
}

/* Scroll padding for fixed header */
html {
    scroll-padding-top: 100px;
    scroll-behavior: smooth;
}