body {
    background-color: white;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

.logo-container {
    padding: 2rem 1rem;
    background-color: white;
    transition: padding 0.3s ease;
    border-bottom: none;
    display: block;
    width: 100%;
    position: relative;
    z-index: 1001;
}

.logo {
    max-height: 120px;
    width: auto;
    height: auto;
    max-width: 100%;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
    background-color: transparent;
    padding: 10px;
    border-radius: 8px;
}

/* Navigation Styles */
.main-nav {
    background-color: transparent;
    padding: 0.8rem 0;
    border-bottom: none;
    position: relative;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.nav-menu li {
    padding: 0;
    margin: 0;
}

.nav-menu a {
    color: black;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.nav-menu a:hover {
    color: #333;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #333;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
    padding: 15px;
    z-index: 1002;
    background-color: transparent;
    border: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mobile-menu-toggle span {
    display: block;
    width: 32px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active {
    background-color: transparent;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}

.hero-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 200px);
    overflow: hidden;
    background-color: white;
    margin-top: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

/* Mission Section - Patreon Style */
.mission-section {
    background-color: #fafafa;
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.mission-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.mission-title {
    font-size: 3.5rem;
    color: #000;
    margin-bottom: 4rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-align: center;
}

.mission-text {
    font-size: 1.5rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-align: left;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.mission-text:last-child {
    margin-bottom: 0;
    text-align: center;
    font-style: italic;
    font-size: 1.4rem;
    color: #666;
    margin-top: 3rem;
}

.mission-text strong {
    font-weight: 600;
    color: #000;
}

.mission-text em {
    font-style: italic;
    font-weight: 400;
}

/* Header Container */
.header-container {
    position: relative;
    width: 100%;
    background-color: white;
    box-shadow: none;
}

/* Section Styles - Patreon Style */
.section-title {
    text-align: center;
    color: #000;
    font-size: 3rem;
    margin-bottom: 4rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.about-section .section-title {
    color: #000;
}

.section-title::after {
    display: none;
}

.about-section .section-title::after {
    display: none;
}

/* Shop Section */
.shop-section {
    background-color: white;
    padding: 80px 0;
    position: relative;
    z-index: 1;
    display: none;
}

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

.product-card {
    background-color: white;
    border-radius: 15px;
    padding: 2rem 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.product-image {
    margin-bottom: 1.5rem;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

.product-info h3 {
    color: #333;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 200;
}

.product-description {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.product-features li {
    color: #333;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.product-features li::before {
    content: '•';
    color: #333;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 1rem;
}

.add-to-cart-btn {
    background-color: #333;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.add-to-cart-btn:hover {
    background-color: #555;
    transform: translateY(-2px);
}

/* Collections Section */
.collections-section {
    background-color: white;
    padding: 80px 0;
    position: relative;
    z-index: 1;
    display: none;
}

.collections-content {
    max-width: 1200px;
    margin: 0 auto;
}

.collections-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.collections-tagline {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.3px;
}

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

.collection-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.collection-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #333 0%, #000 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.collection-icon i {
    font-size: 1.5rem;
    color: white;
}

.collection-card h4 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.collection-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.collection-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.collection-features li {
    color: #333;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-weight: 300;
    font-size: 0.95rem;
}

.collection-features li::before {
    content: '•';
    color: #333;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    font-weight: bold;
}

/* About Section - Patreon Style */
.about-section {
    background-color: white;
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-text {
    text-align: left;
}

.about-intro {
    font-size: 1.5rem;
    line-height: 1.7;
    color: #333 !important;
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.about-intro:last-child {
    margin-bottom: 0;
}

/* Contact Section - Patreon Style */
.contact-section {
    background-color: #fafafa;
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.contact-option {
    padding: 2rem;
    background-color: white;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-option h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-text {
    color: #333;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.ai-assistant-btn, .support-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background-color: #333;
    border: 1px solid #333;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 1rem;
    cursor: pointer;
    border: none;
}

.ai-assistant-btn:hover, .support-link:hover {
    background-color: #444;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.ai-assistant-btn i, .support-link i {
    font-size: 1.5rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #444;
    transform: translateY(-3px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    fill: white;
}

/* Footer */
.footer {
    background-color: white;
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.copyright {
    color: #333;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Enable smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .logo-container {
        padding: 1rem;
    }
    
    .logo {
        max-height: 90px;
        width: auto;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-menu a {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }

    .hero-container {
        margin-top: 0;
        height: calc(100vh - 150px);
    }

    .mission-section {
        padding: 60px 0;
    }

    .mission-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .mission-text {
        font-size: 1.1rem;
    }

    .mission-text:last-child {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .collections-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-options {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .logo-container {
        padding: 1rem 0.5rem;
        margin-bottom: 60px;
    }
    
    .logo {
        max-height: 70px !important;
        width: auto;
    }

    .main-nav {
        padding: 0;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 90px;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.95);
    }

    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: transparent;
        border: none;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 150px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.98);
        padding: 2rem 1rem;
        gap: 1.5rem;
        justify-content: flex-start;
        align-items: center;
        z-index: 1001;
    }

    .nav-menu.active {
        display: flex;
        animation: fadeIn 0.3s ease-out;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
        letter-spacing: 2px;
        font-weight: 200;
        color: white;
        background-color: transparent;
        border-radius: 8px;
        margin: 0.5rem 0;
    }

    .nav-menu a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: scale(1.05);
        transition: all 0.3s ease;
        color: white;
    }

    .hero-container {
        margin-top: 0;
        height: calc(100vh - 120px);
    }

    .mission-section {
        padding: 50px 0;
    }

    .mission-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .mission-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .mission-text:last-child {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .about-intro {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .mission-section {
        padding: 80px 0;
    }

    .mission-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
        letter-spacing: -0.3px;
    }

    .mission-text {
        font-size: 1.2rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .mission-text:last-child {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .about-intro {
        font-size: 1.2rem;
        padding: 0 1rem;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ensure proper display on very small screens */
@media (max-width: 320px) {
    .logo {
        max-height: 60px !important;
        width: auto;
    }
    
    .hero-container {
        height: calc(100vh - 140px);
    }

    .nav-menu a {
        font-size: 1rem;
    }
}

/* Handle landscape orientation on mobile */
@media (max-height: 480px) and (orientation: landscape) {
    .logo {
        max-height: 50px !important;
        width: auto;
    }
    
    .hero-container {
        height: calc(100vh - 120px);
    }
}

/* Coming Soon Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 3rem;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.5s ease-out;
    text-align: center;
}

.modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.modal-logo {
    max-height: 120px;
    width: auto;
}

.modal-btn {
    background-color: #333;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.modal-btn:hover {
    background-color: #555;
    transform: translateY(-2px);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile Modal Styles */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .modal-header {
        padding: 1.5rem;
    }
    
    .modal-logo {
        max-height: 60px;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-title {
        font-size: 2rem;
    }
    
    .modal-subtitle {
        font-size: 1rem;
    }
    
    .modal-message {
        font-size: 0.95rem;
    }
}
