* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: black;
    color: white;
    font-family: "Segoe UI", Arial, sans-serif;
    height: 100vh;
    overflow: hidden;
}

#loader {
    position: fixed;
    inset: 0;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    transition: opacity 0.8s ease;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #2a2a2a;
    border-top: 6px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

#app {
    height: 100vh;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transition: opacity 1s ease;
}

    #app.show {
        opacity: 1;
    }

.navbar {
    height: 70px;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #1f1f1f;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-logo {
    height: 55px;
    width: auto;
    cursor: pointer;
    transition: opacity .2s ease;
}

    .nav-logo:hover {
        opacity: .75;
    }

    .nav-links li a {
        text-decoration: none;
        color: white;
        cursor: pointer;
        display: inline-block;
        position: relative;
    }

        .nav-links li a span {
            display: inline-block;
            transition: transform 0.3s ease, text-shadow 0.3s ease;
        }

        .nav-links li a:hover span {
            transform: translateY(-6px); 
            text-shadow: 0 2px 8px rgba(255, 255, 255, 0.4); 
        }

.content {
    flex: 1;
    overflow-y: auto;
    padding: 120px 60px;
}

.hero {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto 220px;
}

.hero-logo {
    width: 180px;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    opacity: 0.75;
}

.section {
    max-width: 900px;
    margin: 0 auto 160px;
}

    .section h2 {
        font-size: 2.2rem;
        margin-bottom: 16px;
    }

    .section p {
        font-size: 1.1rem;
        opacity: 0.7;
        line-height: 1.6;
    }

.eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.about h1 {
    font-size: 3.2rem;
    max-width: 900px;
    margin-bottom: 24px;
}

.about p {
    font-size: 1.15rem;
    max-width: 700px;
    opacity: 0.75;
    line-height: 1.7;
}

.about-card {
    display: flex;
    justify-content: center;
    padding: 80px 20px;
}

.about-container {
    max-width: 1100px;
    width: 100%;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 50px;
    display: flex;
    gap: 50px;
    backdrop-filter: blur(10px);
}

.about-left {
    flex: 1;
}

    .about-left p {
        font-size: 15px;
        line-height: 1.7;
        opacity: .85;
        max-width: 480px;
    }

.about-left {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 40px;
    border-radius: 14px;
    max-width: 520px;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: #d9d9d9;
    margin-top: 10px;
}

    .about-text strong {
        color: white;
    }

.eyebrow {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
}

.feature-section {
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    margin-top: 16px;
    margin-bottom: 8px;
    border-bottom: 1px solid #444;
    padding-bottom: 2px;
}

.feature-pill {
    display: inline-block;
    background: #1c1c1c;
    color: #fff;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 12px;
    margin: 4px 4px 0 0;
    opacity: 0.85;
    transition: all 0.2s ease;
}

    .feature-pill:hover {
        background: #fff;
        color: #000;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255,255,255,0.2);
    }

.about-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feature-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 18px 20px;
    transition: .25s ease;
}

    .feature-box:hover {
        background: rgba(255,255,255,0.06);
        transform: translateY(-3px);
    }

    .feature-box h3 {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .feature-box p {
        font-size: 13px;
        opacity: .7;
    }

.section.product {
    max-width: 1200px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.product-card {
    border: 1px solid #1f1f1f;
    padding: 24px;
    background: transparent;
    border-radius: 20px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

    .product-card img {
        width: 100%;
        height: 220px;
        object-fit: contain; 
        margin-bottom: 20px;
        background: transparent; 
        display: block;
    }

    .product-card h3 {
        font-size: 1.2rem;
        font-weight: 500;
        opacity: 0.85;
    }

    .product-card:hover {
        border-color: #ffffff33;
        transform: translateY(-4px);
    }

    .product-card:hover {
        border-color: #ffffff33;
        transform: translateY(-4px);
    }

.stock-status {
    font-size: 0.7rem;
    margin-top: 0px;
    opacity: 0.75;
    font-weight: 500;
}

    .stock-status.in-stock {
        color: #4CAF50; 
    }

    .stock-status.out-of-stock {
        color: #F44336; 
    }

    .stock-status.slotted-stock {
        color: #D3D3D3;
    }

    .stock-status.updating {
        color: #FFA500;
    }

.product-card.out-of-stock {
    opacity: 0.55;
    filter: grayscale(40%);
    pointer-events: none; 
}

    .product-card.out-of-stock:hover {
        transform: none;
        box-shadow: none;
    }

.price {
    margin-top: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.product-card.out-of-stock .price {
    opacity: 0.7;
}

.ViewProduct-btn {
    display: block;
    width: 100%;
    margin-top: 16px;
    padding: 14px 0;
    border-radius: 999px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    color: white;
    border: 1px solid #1f1f1f;
    transition: background-color 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ViewProduct-btn:hover {
    background-color: #ffffff08;
    border-color: #ffffff55;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.1);
}

.product-card.out-of-stock .ViewProduct-btn {
    opacity: 0.5;
    pointer-events: none;
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

    .modal.active {
        opacity: 1;
        pointer-events: auto;
    }

.modal-content {
    background: #0f0f0f;
    border: 1px solid #1f1f1f;
    border-radius: 24px;
    width: 700px;
    max-width: 90%;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    position: relative;
}

#modal-description {
    font-size: 13px;
    line-height: 1.7;
    opacity: .85;
}

.modal-left {
    flex: 1;
}

.modal-logo {
    width: 120px;
    margin-bottom: 20px;
}

.modal-left h2 {
    margin-bottom: 12px;
}

.modal-left p {
    opacity: 0.75;
    line-height: 1.6;
}

.modal-right {
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.modal-price {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.modal-purchase-btn {
    width: 100%;
    padding: 14px;
    border-radius: 999px;
    border: 1px solid #1f1f1f;
    background: transparent;
    color: white;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.3s ease;
}

    .modal-purchase-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(255,255,255,0.1);
    }

.modal-close {
    position: absolute;
    top: 5px;
    right: 14px;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.6;
}

    .modal-close:hover {
        opacity: 1;
    }

.modal-pricing {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.25s ease;
    cursor: pointer;
}

    .price-row:hover {
        background: rgba(255,255,255,0.06);
        border-color: rgba(255,255,255,0.15);
        transform: translateY(-2px);
    }

.tier {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    opacity: 0.75;
    text-transform: uppercase;
}

.amount {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.product-cta {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.btn-primary {
    padding: 14px 36px;
    border-radius: 999px; 
    border: 1px solid #1f1f1f;
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: border-color 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

    .btn-primary:hover {
        border-color: #ffffff55;
        background-color: #ffffff08;
        transform: translateY(-2px);
    }

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.review {
    border-left: 2px solid #1f1f1f;
    padding-left: 24px;
}

    .review p {
        font-size: 1.05rem;
        opacity: 0.75;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .review span {
        font-size: 0.85rem;
        opacity: 0.5;
    }

.footer {
    position: fixed;
    bottom: 0; 
    left: 0;
    width: 100%; 
    height: 60px;
    border-top: 1px solid #1f1f1f;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.85rem;
    opacity: 0.6;
    background: rgba(0,0,0,0.85); 
    z-index: 100; 
}

.content {
    flex: 1;
    overflow-y: auto;
    padding: 120px 60px 100px 60px; 
}

#bg-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background: linear-gradient(to bottom, #000000, #0a0a0a);
    opacity: 0; 
    transition: opacity 1s ease-in-out; 
}

    #bg-effect.show {
        opacity: 1; 
    }

.contact-modal {
    width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 45px 40px;
}

.contact-header {
    margin-bottom: 28px;
}

    .contact-header h2 {
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 6px;
    }

    .contact-header p {
        font-size: 13px;
        opacity: .65;
    }

.contact-options {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid #1f1f1f;
    text-decoration: none;
    color: white;
    transition: all .25s ease;
}

    .contact-option img {
        width: 28px;
        height: 28px;
    }

    .contact-option span {
        font-size: 14px;
        font-weight: 500;
    }

    .contact-option:hover {
        background: #ffffff08;
        border-color: #ffffff33;
        transform: translateY(-2px);
    }