/* CSS Variables */
:root {
    --usa-red: #dc2626;
    --usa-blue: #1e40af;
    --usa-white: #ffffff;
    --purple-baddie: #a855f7;
    --pink-baddie: #ff69b4;
    --pink-light: #ffb6d9;
    --pink-dark: #ff1493;
    --dark: #1a0a1f;
    --dark-light: #2d1b3d;
    --text-light: #ffc4e8;
    --gradient-hero: linear-gradient(135deg, #ff69b4 0%, #ff1493 50%, #ff69b4 100%);
    --gradient-card: linear-gradient(135deg, #ff1493 0%, #a855f7 50%, #ff69b4 100%);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--dark);
    color: var(--usa-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.95), rgba(255, 20, 147, 0.95));
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    border-bottom: 3px solid var(--pink-light);
    box-shadow: 0 5px 20px rgba(255, 105, 180, 0.4);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    background: linear-gradient(135deg, var(--pink-light), var(--pink-baddie), var(--pink-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(255, 105, 180, 0.6);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--usa-white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--pink-baddie);
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.8);
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    color: var(--usa-white);
    font-size: 2rem;
    cursor: pointer;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--pink-baddie), var(--pink-dark));
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 20px rgba(255, 105, 180, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.8);
    background: linear-gradient(135deg, var(--pink-dark), var(--pink-baddie));
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 80px;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px);
    pointer-events: none;
}

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

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--usa-white);
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.badge {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid rgba(255,255,255,0.3);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    background: var(--usa-white);
    color: var(--pink-dark);
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(255, 105, 180, 0.3);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,255,255,0.3);
}

.btn-hero-outline {
    background: transparent;
    color: var(--usa-white);
    padding: 1rem 3rem;
    border: 3px solid var(--usa-white);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-hero-outline:hover {
    background: var(--usa-white);
    color: var(--usa-blue);
    transform: translateY(-3px);
}

/* Sections */
section {
    padding: 6rem 0;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--pink-light), var(--pink-baddie), var(--pink-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Products Section */
.products {
    background: var(--dark-light);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--dark);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 105, 180, 0.5);
    border-color: var(--pink-baddie);
}

.product-image {
    position: relative;
    background: var(--gradient-card);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emoji-placeholder {
    font-size: 6rem;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--pink-light);
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 3px 10px rgba(255, 105, 180, 0.5);
}

.product-badge.hot {
    background: linear-gradient(135deg, var(--pink-baddie), var(--pink-dark));
    color: var(--usa-white);
    box-shadow: 0 3px 15px rgba(255, 105, 180, 0.7);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--usa-white);
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--pink-light), var(--pink-baddie));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-add-cart {
    background: linear-gradient(135deg, var(--pink-baddie), var(--pink-dark));
    color: var(--usa-white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 3px 15px rgba(255, 105, 180, 0.4);
}

.btn-add-cart:hover {
    background: linear-gradient(135deg, var(--pink-dark), var(--pink-baddie));
    transform: scale(1.08);
    box-shadow: 0 5px 25px rgba(255, 105, 180, 0.8);
}

/* Custom Orders Section */
.custom-orders {
    background: var(--dark);
}

.custom-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.custom-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.custom-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature h4 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    color: var(--pink-baddie);
}

.feature p {
    color: var(--text-light);
}

.pricing-info {
    background: rgba(255, 105, 180, 0.1);
    border: 2px solid var(--pink-baddie);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
    box-shadow: 0 5px 20px rgba(255, 105, 180, 0.2);
}

.pricing-info h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--pink-baddie);
}

.pricing-info ul {
    list-style: none;
}

.pricing-info li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.pricing-info strong {
    color: var(--usa-white);
}

/* Custom Form */
.custom-form {
    background: var(--dark-light);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid var(--pink-baddie);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.2);
}

.custom-form h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--pink-light), var(--pink-baddie));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--usa-white);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid rgba(255, 105, 180, 0.3);
    border-radius: 10px;
    background: var(--dark);
    color: var(--usa-white);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pink-baddie);
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.5);
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

.btn-submit {
    width: 100%;
    background: var(--gradient-card);
    color: var(--usa-white);
    border: none;
    padding: 1rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
}

.form-note {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Gallery Section */
.gallery {
    background: var(--dark-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.9);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay p {
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    color: var(--pink-light);
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.8);
}

/* About Section */
.about {
    background: var(--dark);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text .lead {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat-num {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--pink-light), var(--pink-baddie));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
    margin-top: 0.5rem;
}

.about-image {
    background: var(--gradient-card);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.about-placeholder {
    color: var(--usa-white);
}

/* Contact Section */
.contact {
    background: var(--dark-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    background: var(--dark);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--pink-baddie);
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 20px rgba(255, 105, 180, 0.2);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 105, 180, 0.5);
}

.contact-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--pink-baddie);
}

.contact-card a {
    color: var(--usa-white);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: var(--pink-baddie);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
    padding: 4rem 0 2rem;
    border-top: 3px solid var(--pink-baddie);
    box-shadow: 0 -5px 20px rgba(255, 105, 180, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-light);
    margin: 1rem 0;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: var(--usa-white);
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--pink-baddie);
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.8);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--pink-light), var(--pink-baddie));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-col a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: all 0.3s;
}

.footer-col a:hover {
    color: var(--pink-light);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 105, 180, 0.3);
    color: var(--text-light);
}

.footer-bottom p {
    margin: 0.5rem 0;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .custom-content,
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-hero,
    .btn-hero-outline {
        width: 100%;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card,
.gallery-item,
.contact-card {
    animation: fadeInUp 0.6s ease-out;
}
