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

html, body {
    font-family: "Segoe UI", Arial, sans-serif;
    scroll-behavior: smooth;
    background: #050505;
    color: #ffffff;
    overflow-x: hidden;
}

body {
    color: #ffffff !important;
}

a {
    text-decoration: none;
    color: #ffffff;
}

#page-bg {
    position: fixed;
    inset: 0;
    background: #050505;
    z-index: -2;
    transition: background-color 0.8s ease;
}

.main-wrapper {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 42px;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0,0,0,0.50), rgba(0,0,0,0));
    transition: all 0.4s ease;
}
.nav-user {
    color: #f5f5f7;
    font-weight: 600;
    margin: 0 10px;
    white-space: nowrap;
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.main-nav,
.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

    .main-nav a,
    .nav-actions a {
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1.4px;
        opacity: 0.95;
        color: #ffffff;
        text-shadow: 0 2px 10px rgba(0,0,0,0.35);
    }

.section-full {
    min-height: 100vh;
    width: 100%;
    position: relative;
    color: #ffffff;
}

.hero-intro {
    background: linear-gradient(rgba(0,0,0,0.28), rgba(0,0,0,0.40)), url('/Content/images/gozone-main-hero.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    padding: 0 7%;
    color: #ffffff;
}

.hero-content {
    max-width: 760px;
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.eyebrow {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
    opacity: 0.9;
    color: rgba(255,255,255,0.88);
}

.hero-content h1,
.story-content h2,
.signature-inner h2 {
    font-size: clamp(42px, 7vw, 90px);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -1.5px;
    color: #ffffff;
    text-shadow: 0 4px 24px rgba(0,0,0,0.32);
}

.hero-text {
    margin-top: 28px;
    max-width: 620px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 3px 18px rgba(0,0,0,0.30);
}

.hero-actions {
    margin-top: 36px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 28px;
    border-radius: 999px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    transition: all 0.35s ease;
}

.btn-light {
    background: rgba(255,255,255,0.95);
    color: #111111;
}

    .btn-light:hover {
        transform: translateY(-2px);
    }

.btn-outline {
    border: 1px solid rgba(255,255,255,0.78);
    color: #ffffff;
    background: rgba(255,255,255,0.06);
}

    .btn-outline:hover {
        background: rgba(255,255,255,0.12);
    }

.product-story {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 0 7%;
    color: #ffffff;
}

.story-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.38), rgba(0,0,0,0.16));
    z-index: 0;
}

.story-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding-top: 80px;
    color: #ffffff;
}

    .story-content h3 {
        margin-top: 20px;
        font-size: 24px;
        font-weight: 400;
        color: rgba(255,255,255,0.92);
        text-shadow: 0 3px 18px rgba(0,0,0,0.28);
    }

    .story-content p {
        margin-top: 24px;
        font-size: 18px;
        line-height: 1.8;
        max-width: 560px;
        color: rgba(255,255,255,0.94);
        text-shadow: 0 3px 18px rgba(0,0,0,0.30);
    }

.story-link {
    display: inline-block;
    margin-top: 30px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 1px solid rgba(255,255,255,0.85);
    padding-bottom: 6px;
    color: #ffffff;
}

.signature-strip {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 7%;
    color: #ffffff;
}

.signature-inner {
    max-width: 980px;
    text-align: center;
    color: #ffffff;
}

    .signature-inner p:last-child {
        margin-top: 22px;
        font-size: 18px;
        line-height: 1.8;
        color: rgba(255,255,255,0.92);
    }

.footer {
    padding: 28px 42px;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: rgba(0,0,0,0.45);
    color: #ffffff;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-brand {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}

.footer-copy {
    opacity: 0.82;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

    .reveal-up.active {
        opacity: 1;
        transform: translateY(0);
    }

@media (max-width: 992px) {
    .main-nav {
        display: none;
    }

    .hero-content h1,
    .story-content h2,
    .signature-inner h2 {
        font-size: 52px;
    }

    .story-content h3 {
        font-size: 20px;
    }

    .hero-text,
    .story-content p,
    .signature-inner p:last-child {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .site-header {
        padding: 18px 20px;
    }

    .brand {
        font-size: 28px;
    }

    .nav-actions {
        gap: 14px;
    }

        .nav-actions a {
            font-size: 12px;
        }

    .hero-intro,
    .product-story,
    .signature-strip {
        padding: 0 20px;
    }

    .hero-content h1,
    .story-content h2,
    .signature-inner h2 {
        font-size: 38px;
    }
}
.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 140px 7% 60px;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
}

.small-hero h1 {
    font-size: clamp(34px, 5vw, 68px);
    line-height: 1.12;
    color: #ffffff;
}

.page-hero-content p {
    margin-top: 18px;
    font-size: 18px;
    color: rgba(255,255,255,0.88);
    max-width: 700px;
}

.product-section {
    padding: 30px 7% 80px;
}

.section-heading {
    margin-bottom: 26px;
}

    .section-heading h2 {
        font-size: 34px;
        color: #ffffff;
    }

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.product-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 26px;
    overflow: hidden;
    transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
    backdrop-filter: blur(8px);
}

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 24px 50px rgba(0,0,0,0.22);
        border-color: rgba(255,255,255,0.16);
    }

.product-card-link {
    display: block;
}

.product-image-wrap {
    position: relative;
    height: 360px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-badge-group {
    position: absolute;
    top: 18px;
    left: 18px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product-badge {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.92);
    color: #111111;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .product-badge.dark {
        background: rgba(17,17,17,0.88);
        color: #ffffff;
        border: 1px solid rgba(255,255,255,0.12);
    }

.product-info {
    padding: 22px;
}

.product-category {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.72;
    margin-bottom: 10px;
}

.product-info h3 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.product-variant,
.product-price {
    color: rgba(255,255,255,0.84);
    font-size: 15px;
    margin-top: 6px;
}

.store-filter {
    padding: 0 7% 24px;
}

.store-filter-wrap {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.store-chip {
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.04);
    transition: all 0.35s ease;
}

    .store-chip:hover {
        background: rgba(255,255,255,0.10);
        transform: translateY(-2px);
    }

    .store-chip.active {
        background: rgba(255,255,255,0.92);
        color: #111111;
        border-color: rgba(255,255,255,0.92);
    }

.store-sub-filter {
    padding-top: 0;
    margin-top: -8px;
}

    .store-sub-filter .store-chip {
        background: rgba(255,255,255,0.025);
        border-color: rgba(255,255,255,0.10);
    }

        .store-sub-filter .store-chip.active {
            background: rgba(255,255,255,0.92);
            color: #111111;
            border-color: rgba(255,255,255,0.92);
        }

.product-detail-page {
    padding: 140px 7% 80px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: start;
}

.detail-gallery,
.detail-info {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.detail-gallery {
    padding: 20px;
}

.detail-main-image {
    width: 100%;
    height: 720px;
    object-fit: cover;
    border-radius: 20px;
}

.detail-info {
    padding: 34px;
}

    .detail-info h1 {
        font-size: clamp(36px, 4vw, 58px);
        line-height: 1.1;
        margin-bottom: 20px;
    }

.detail-description {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.88);
}

.detail-price {
    margin-top: 28px;
    font-size: 32px;
    font-weight: 700;
}

.variant-block {
    margin-top: 34px;
}

    .variant-block h3 {
        margin-bottom: 16px;
        font-size: 22px;
    }

.variant-list {
    display: grid;
    gap: 14px;
}

.variant-card {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.detail-actions {
    margin-top: 32px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.gallery-strip {
    padding: 0 7% 90px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.gallery-thumb img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 20px;
}

.page-transition-item {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeSlideUp 0.8s ease forwards;
}

    .page-transition-item:nth-child(2) {
        animation-delay: 0.08s;
    }

    .page-transition-item:nth-child(3) {
        animation-delay: 0.16s;
    }

    .page-transition-item:nth-child(4) {
        animation-delay: 0.24s;
    }

    .page-transition-item:nth-child(5) {
        animation-delay: 0.32s;
    }

    .page-transition-item:nth-child(6) {
        animation-delay: 0.40s;
    }

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
body {
    opacity: 1;
    transition: opacity 0.35s ease;
}

@media (max-width: 1100px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-detail-page {
        grid-template-columns: 1fr;
    }

    .gallery-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .detail-main-image {
        height: 520px;
    }
}

@media (max-width: 640px) {
    .product-grid,
    .gallery-strip {
        grid-template-columns: 1fr;
    }

    .product-image-wrap {
        height: 280px;
    }

    .detail-main-image {
        height: 380px;
    }

    .detail-actions {
        flex-direction: column;
    }
}

.auth-page,
.contact-page {
    min-height: 100vh;
    padding: 140px 7% 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card {
    width: 100%;
    max-width: 620px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.22);
}

    .auth-card h1,
    .contact-info h1 {
        font-size: clamp(34px, 4vw, 56px);
        line-height: 1.12;
        margin-bottom: 12px;
        color: #ffffff;
    }

.auth-subtitle,
.contact-text {
    color: rgba(255,255,255,0.84);
    line-height: 1.8;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 10px;
        font-size: 14px;
        color: rgba(255,255,255,0.90);
    }

.form-control {
    width: 100%;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    color: #ffffff;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}

    .form-control:focus {
        border-color: rgba(255,255,255,0.35);
        background: rgba(255,255,255,0.06);
    }

    .form-control::placeholder {
        color: rgba(255,255,255,0.45);
    }

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

.auth-submit {
    width: 100%;
    margin-top: 8px;
    justify-content: center;
}

.form-alert {
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 20px;
    font-size: 14px;
}

    .form-alert.success {
        background: rgba(80, 180, 120, 0.18);
        border: 1px solid rgba(80, 180, 120, 0.35);
        color: #d8ffe6;
    }

    .form-alert.error {
        background: rgba(210, 80, 80, 0.16);
        border: 1px solid rgba(210, 80, 80, 0.30);
        color: #ffd9d9;
    }

.field-validation {
    display: block;
    margin-top: 8px;
    color: #ffb3b3;
    font-size: 13px;
}

.auth-links {
    margin-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

    .auth-links a {
        color: rgba(255,255,255,0.88);
        border-bottom: 1px solid rgba(255,255,255,0.35);
        padding-bottom: 4px;
        font-size: 14px;
    }

.contact-wrap {
    width: 100%;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 34px;
    align-items: start;
}

.contact-info,
.contact-form-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    padding: 38px;
    backdrop-filter: blur(10px);
}

.contact-meta {
    margin-top: 26px;
    display: grid;
    gap: 18px;
}

.contact-meta-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.contact-meta-item p {
    color: rgba(255,255,255,0.82);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .contact-wrap {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .auth-page,
    .contact-page {
        padding: 120px 20px 60px;
    }

    .auth-card,
    .contact-info,
    .contact-form-card {
        padding: 24px;
        border-radius: 22px;
    }

    .auth-links {
        flex-direction: column;
    }
}


.selectable-variant-list {
    display: grid;
    gap: 14px;
}

.selectable-variant {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.08);
}

.selectable-variant:hover {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.06);
}

.selectable-variant.active {
    border-color: rgba(255,255,255,0.95);
    background: rgba(255,255,255,0.10);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.16) inset;
}

.variant-card-top,
.variant-card-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.variant-card-bottom {
    margin-top: 10px;
    align-items: center;
}

.variant-price {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.variant-stock {
    font-size: 14px;
    color: rgba(255,255,255,0.78);
}