* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #0a0a0a;
    color: white;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 2px solid #ff006e;
    box-shadow: 0 4px 30px rgba(255, 0, 110, 0.3);
}

.logo {
    font-size: 36px;
    font-weight: bold;
    background: linear-gradient(45deg, #ff006e, #ffbe0b, #fb5607);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    padding: 8px 0;
    transition: all 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(45deg, #ff006e, #ffbe0b);
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 5px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Page Container */
.page {
    display: none;
    min-height: 100vh;
    padding-top: 100px;
}

.page.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Home Page */
.home-hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: linear-gradient(45deg, #ff006e, #fb5607);
    border-radius: 50%;
    opacity: 0.1;
    animation: float-random 20s infinite;
}

.shape:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.shape:nth-child(3) {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 50%;
    animation-delay: 6s;
}

@keyframes float-random {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(50px, -50px) rotate(120deg); }
    66% { transform: translate(-30px, 30px) rotate(240deg); }
}

.hero-content {
    text-align: center;
    z-index: 1;
    position: relative;
}

.hero-content h1 {
    font-size: 90px;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff006e, #ffbe0b, #fb5607, #8338ec);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-content p {
    font-size: 28px;
    margin-bottom: 40px;
    color: #ccc;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(45deg, #ff006e, #fb5607);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(255, 0, 110, 0.4);
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 0, 110, 0.6);
}

/* Products Page */
.products-container {
    padding: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.page-title {
    font-size: 60px;
    text-align: center;
    margin-bottom: 70px;
    background: linear-gradient(45deg, #ff006e, #ffbe0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.product-item {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 30px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    border: 2px solid transparent;
}

.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 110, 0.2), transparent);
    transition: left 0.5s;
}

.product-item:hover::before {
    left: 100%;
}

.product-item:hover {
    transform: translateY(-15px);
    border-color: #ff006e;
    box-shadow: 0 20px 60px rgba(255, 0, 110, 0.4);
}

.product-image {
    width: 200px;
    height: 250px;
    object-fit: contain;
    margin: 0 auto 25px;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(255, 0, 110, 0.6));
    transition: transform 0.3s;
}

.product-item:hover .product-image {
    transform: scale(1.1) rotate(5deg);
}

.product-header {
    position: relative;
    margin-bottom: 25px;
}

.product-icon-badge {
    position: absolute;
    top: 10px;
    right: 30px;
    font-size: 55px;
    background: linear-gradient(135deg, #ff006e, #fb5607);
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 0, 110, 0.7);
    z-index: 10;
    animation: bounce 2s ease-in-out infinite;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-12px) scale(1.05); }
}

.product-item h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #ffbe0b;
}

.product-item p {
    font-size: 18px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 25px;
}

.product-price {
    font-size: 36px;
    font-weight: bold;
    color: #ff006e;
    text-align: center;
}

.order-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #ff006e, #fb5607);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s;
}

.order-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.5);
}

/* About Page */
.about-container {
    padding: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-hero {
    text-align: center;
    margin-bottom: 80px;
}

.about-hero h1 {
    font-size: 70px;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #8338ec, #3a86ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero p {
    font-size: 24px;
    color: #ccc;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: linear-gradient(135deg, #2d1b69 0%, #6b2d5c 100%);
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.feature-card:hover {
    border-color: #8338ec;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(131, 56, 236, 0.4);
}

.feature-icon {
    font-size: 70px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #ffbe0b;
}

.feature-card p {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
}

/* Contact Page */
.contact-container {
    padding: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-form {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 60px;
    border-radius: 30px;
    margin-top: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    color: #ffbe0b;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: white;
    font-size: 16px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff006e;
    background: rgba(255, 255, 255, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(45deg, #ff006e, #fb5607);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 110, 0.5);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.info-box {
    background: linear-gradient(135deg, #2d1b69 0%, #6b2d5c 100%);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.info-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffbe0b;
}

.info-box p {
    color: #ccc;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        max-width: 300px;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 30px;
        border-left: 2px solid #ff006e;
        box-shadow: -5px 0 30px rgba(255, 0, 110, 0.3);
        transition: right 0.3s ease;
        height: calc(100vh - 70px);
        gap: 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 15px 0;
    }

    .nav-links a {
        font-size: 20px;
        display: block;
    }

    .hero-content h1 {
        font-size: 50px;
    }

    .hero-content p {
        font-size: 20px;
    }

    .products-container,
    .about-container,
    .contact-container {
        padding: 30px 20px;
    }

    .page-title {
        font-size: 40px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 20px;
    }
}