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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: #fff;
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    padding: 20px 0;
}

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

.logo h1 {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.5px;
    line-height: 1.1;
    color: #000;
    cursor: pointer;
}

/* Desktop Navigation */
.nav-desktop {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #000;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
    position: relative;
    cursor: pointer;
}

.nav-link:hover {
    opacity: 0.6;
}

.nav-link.active {
    text-decoration: underline;
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    background: none;
    border: 2px solid #000;
    width: 50px;
    height: 50px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.menu-icon {
    display: block;
    width: 24px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.menu-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: #000;
    position: absolute;
    transition: all 0.3s ease;
}

.menu-icon span:first-child {
    top: 0;
}

.menu-icon span:last-child {
    bottom: 0;
}

.menu-toggle.active .menu-icon span:first-child {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.menu-toggle.active .menu-icon span:last-child {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Mobile Navigation */
.nav-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-mobile.active {
    display: flex;
    opacity: 1;
}

.mobile-nav-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding-top: 100px;
}

.mobile-nav-link {
    text-decoration: none;
    color: #000;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 2px;
    transition: opacity 0.3s ease;
    position: relative;
    cursor: pointer;
}

.mobile-nav-link:hover {
    opacity: 0.6;
}

/* Page Sections */
.page-section {
    display: none;
    min-height: 100vh;
}

.page-section.active {
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    margin-top: 80px;
    overflow: hidden;
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slider Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.slider-btn.prev {
    left: 30px;
}

.slider-btn.next {
    right: 30px;
}

/* Content Pages */
.content-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 40px 60px;
}

.page-title {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 60px;
    text-align: center;
}

/* Shop Page */
.shop-categories {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.shop-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid #e0e0e0;
    text-decoration: none;
    color: #000;
    transition: opacity 0.3s ease;
}

.shop-category:hover {
    opacity: 0.6;
}

.shop-category h3 {
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 2px;
}

.shop-category .arrow {
    font-size: 36px;
    font-weight: 300;
}

/* Coming Soon */
.coming-soon {
    font-size: 32px;
    font-weight: 300;
    text-align: center;
    color: #666;
    margin-top: 100px;
}

/* About Page */
.about-content {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
}

.about-content p {
    margin-bottom: 30px;
}

/* Contact Page */
.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-intro {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.contact-email {
    font-size: 16px;
    margin-bottom: 50px;
    color: #333;
}

.contact-email a {
    color: #000;
    text-decoration: underline;
}

.contact-email a:hover {
    opacity: 0.6;
}

/* Contact Form */
.contact-form {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group.half {
    flex: 1;
    margin-bottom: 0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
    font-family: inherit;
    background: transparent;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: #000;
}

.form-group label {
    position: absolute;
    left: 0;
    top: 15px;
    color: #999;
    font-size: 16px;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -20px;
    font-size: 12px;
    color: #666;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    margin-top: 20px;
}

.submit-btn:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero {
        margin-top: 70px;
    }
    
    .slider-btn {
        width: 50px;
        height: 50px;
    }
    
    .slider-btn.prev {
        left: 15px;
    }
    
    .slider-btn.next {
        right: 15px;
    }
    
    .slider-btn svg {
        width: 24px;
        height: 24px;
    }
    
    .mobile-nav-link {
        font-size: 28px;
    }
    
    .content-page {
        padding: 100px 20px 40px;
    }
    
    .page-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .shop-category h3 {
        font-size: 24px;
    }
    
    .shop-category .arrow {
        font-size: 24px;
    }
    
    .coming-soon {
        font-size: 24px;
        margin-top: 60px;
    }
    
    .about-content {
        font-size: 16px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .mobile-nav-link {
        font-size: 24px;
        gap: 25px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .shop-category h3 {
        font-size: 20px;
    }
}
