/* ===== Section 1: Hero ===== */
#view-home .hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    background: radial-gradient(ellipse at 50% 75%, rgba(40, 20, 80, 0.7) 0%, transparent 60%),
                linear-gradient(180deg, #0b0e1a 0%, #120a2a 50%, #0b0e1a 100%);
    overflow: hidden;
}

#view-home .hero-banner-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 0;
}

#view-home .hero-content {
    position: absolute;
    text-align: left;
    z-index: 2;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 650px;
}

#view-home .hero-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 8px;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

#view-home .hero-title.animate {
    opacity: 1;
    transform: translateX(0);
}

#view-home .hero-desc {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 2.2;
    max-width: 460px;
    margin: 0;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

#view-home .hero-desc.animate {
    opacity: 1;
    transform: translateX(0);
}

#view-home .hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    gap: 8px;
    z-index: 4;
}

#view-home .hero-dots.active {
    display: flex;
}

/* ===== Section 2: Brand ===== */
#view-home .brand-section {
    position: relative;
    padding: 0;
    background-color: #0d1020;
    overflow: hidden;
}

#view-home .brand-section .section-bg-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 0;
}

#view-home .brand-section .section-inner {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 84vw;
}

#view-home .brand-header {
    margin-bottom: 24px;
    text-align: center;
}

#view-home .brand-logo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 4px;
}

#view-home .brand-logo {
    display: flex;
    align-items: center;
    min-width: 80px;
}

#view-home .brand-logo img {
    max-height: 32px;
    width: auto;
    display: block;
}

#view-home .logo-icon {
    width: 28px;
    height: 28px;
}

#view-home .brand-subtitle {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 28px;
}

#view-home .brand-desc {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 2;
    max-width: 720px;
    margin-bottom: 48px;
    margin-left: auto;
    margin-right: auto;
}

#view-home .brand-title {
    text-align: center;
    font-size: 22.75px;
}

#view-home .brand-content {
    font-size: 50px;
    text-align: left;
    text-indent: 2em;
    max-width: 84vw;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

#view-home .brand-section .title-line {
    margin-left: auto;
    margin-right: auto;
}

#view-home .brand-stats-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: nowrap;
    width: 50vw;
    margin-left: auto;
    margin-right: auto;
}

#view-home .stat-item {
    text-align: left;
    flex: 1;
    min-width: 0;
}

#view-home .stat-value {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    letter-spacing: 1px;
    transition: transform 0.3s ease-out;
    white-space: nowrap;
}

#view-home .stat-value.animating {
    animation: statScaleUp 1.5s ease-out forwards;
}

@keyframes statScaleUp {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scale(1.15);
    }
    60% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1.05);
    }
}

#view-home .stat-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    white-space: nowrap;
}

/* ===== Section 3: Product ===== */
#view-home .product-section {
    position: relative;
    padding: 0;
    background-color: #0a0f1e;
    overflow: hidden;
}

#view-home .product-section .section-bg-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 0;
}

#view-home .product-section .section-inner {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65vw;
}

#view-home .product-section .section-header {
    text-align: left;
}

#view-home .product-carousel-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 16px;
}

#view-home #productList {
    flex: 1;
    min-width: 0;
}

#view-home .product-card {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(74, 143, 231, 0.08) 0%, rgba(74, 143, 231, 0.02) 100%);
    border: none;
    border-radius: 16px;
    padding: 40px 48px;
    overflow: hidden;
    min-height: 320px;
}

#view-home .product-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    border-top: 3px solid rgba(74, 143, 231, 0.6);
    border-right: 3px solid rgba(74, 143, 231, 0.6);
    border-top-right-radius: 16px;
    pointer-events: none;
}

#view-home .product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    border-top: 3px solid rgba(74, 143, 231, 0.6);
    border-left: 3px solid rgba(74, 143, 231, 0.6);
    border-top-left-radius: 16px;
    pointer-events: none;
}

#view-home .product-card-corner-bl {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 80px;
    border-bottom: 3px solid rgba(74, 143, 231, 0.6);
    border-left: 3px solid rgba(74, 143, 231, 0.6);
    border-bottom-left-radius: 16px;
    pointer-events: none;
}

#view-home .product-info {
    flex: 1;
    z-index: 2;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    max-width: 560px;
}

#view-home .product-top {
    flex-shrink: 0;
}

#view-home .product-name {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

#view-home .product-desc {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin-bottom: 0;
}

#view-home .product-bottom {
    margin-top: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
}

#view-home .price-label {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-bottom: 8px;
}

#view-home .product-bottom-row {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-start;
    width: 100%;
}

#view-home .product-bottom-row.product-price-row {
    display: inline-flex;
    width: auto;
}

#view-home .product-bottom-row.product-btn-row {
    display: inline-flex;
    width: auto;
    margin-left: 16px;
}

#view-home .product-bottom-row:last-child {
    margin-top: 0;
}

#view-home .product-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    flex-shrink: 0;
}

#view-home .price-value {
    font-family: 'Impact', sans-serif;
    font-size: 35px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1;
}

#view-home .price-unit {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    margin-left: 4px;
}

#view-home .product-btn {
    padding: 6px 12px;
    background: transparent;
    color: #4a8fe7;
    border: 1px solid rgba(74, 143, 231, 0.4);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    width: auto;
}

#view-home .product-btn:hover {
    background: rgba(74, 143, 231, 0.1);
    border-color: rgba(74, 143, 231, 0.6);
}

#view-home .product-image-box {
    position: relative;
    flex: 0 0 auto;
    width: 480px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 24px;
}

#view-home .product-film-effect {
    position: absolute;
    top: -10px;
    right: 20px;
    width: 120px;
    height: 80px;
    background: linear-gradient(135deg, rgba(100, 180, 255, 0.4) 0%, rgba(100, 180, 255, 0.1) 100%);
    border: 1px solid rgba(100, 180, 255, 0.3);
    border-radius: 8px;
    transform: rotate(-15deg);
    pointer-events: none;
    z-index: 3;
}

#view-home .product-img {
    width: 100%;
    height: auto;
    max-height: 260px;
    display: block;
    object-fit: contain;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

#view-home .product-img.show {
    opacity: 1;
    transform: translateX(0);
}

#view-home .nav-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    margin-bottom: 20px;
    background: transparent;
    border: none;
}

#view-home .nav-prev::after {
    content: '';
    display: block;
    width: 48px;
    height: 48px;
    background: url('../images/mzjj-v2-arrow-left.svg') center/contain no-repeat;
    transition: all 0.3s;
}

#view-home .nav-next::after {
    content: '';
    display: block;
    width: 48px;
    height: 48px;
    background: url('../images/mzjj-v2-arrow-right.svg') center/contain no-repeat;
    transition: all 0.3s;
}

#view-home .nav-arrow:hover::after {
    transform: scale(1.1);
}

/* ===== Section 4: Warranty ===== */
#view-home .warranty-section {
    position: relative;
    padding: 0;
    background-color: #0c1128;
    overflow: hidden;
}

#view-home .warranty-section .section-bg-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 0;
}

#view-home .warranty-section .section-inner {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65vw;
}

#view-home .warranty-section .section-header {
    text-align: left;
}

#view-home .warranty-card {
    position: relative;
    background: linear-gradient(135deg, rgba(74, 143, 231, 0.06) 0%, rgba(74, 143, 231, 0.015) 100%);
    border: 1px solid rgba(74, 143, 231, 0.12);
    border-radius: 16px;
    padding: 48px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
}

#view-home .warranty-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

#view-home .warranty-shield {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#view-home .warranty-hint {
    font-size: 11px;
    color: #ffffff;
    line-height: 1.8;
    margin: 0;
    flex: 1;
    white-space: nowrap;
    text-align: center;
}

#view-home .warranty-form {
    display: flex;
    gap: 0;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

#view-home .warranty-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-right: none;
    border-radius: 6px 0 0 6px;
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    font-size: 11px;
    outline: none;
    transition: border-color 0.3s;
}

#view-home .warranty-input:focus {
    border-color: rgba(74, 143, 231, 0.5);
}

#view-home .warranty-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

#view-home .warranty-btn {
    padding: 12px 20px;
    background: #ffffff;
    color: #0a0f1e;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 0 6px 6px 0;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-shrink: 0;
}

#view-home .warranty-btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

#view-home .warranty-result {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    display: none;
    align-items: flex-start;
    gap: 16px;
}

#view-home .warranty-result.show {
    display: flex;
}

#view-home .warranty-result-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
}

#view-home .warranty-result-content {
    flex: 1;
}

#view-home .warranty-result-title {
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

#view-home .warranty-result-detail {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}

#view-home .warranty-result-detail span {
    display: block;
}

#view-home .warranty-result-detail .label {
    color: rgba(255, 255, 255, 0.35);
}

#view-home .warranty-result-detail .value {
    color: rgba(255, 255, 255, 0.7);
}

/* ===== Section 5: News ===== */
#view-home .news-section {
    position: relative;
    padding: 0;
    background-color: #0a0f1e;
    overflow: hidden;
}

#view-home .news-section .section-bg-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 0;
}

#view-home .news-section .section-inner {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65vw;
}

#view-home .news-section .section-header {
    text-align: center;
}

#view-home .news-section .title-line {
    margin-left: auto;
    margin-right: auto;
}

#view-home .news-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

#view-home .news-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    cursor: pointer;
}

#view-home .news-image {
    width: 80%;
    border-radius: 8px;
    overflow: hidden;
}

#view-home .news-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

#view-home .news-content {
    width: 80%;
    display: flex;
    flex-direction: column;
}

#view-home .news-text {
    flex: 1;
}

#view-home .news-category,
#view-home .news-desc {
    display: none;
}

#view-home .news-title {
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-align: left;
    word-wrap: break-word;
    word-break: break-all;
    line-height: 1.5;
    min-height: 42px;
}

#view-home .news-btn {
    padding: 6px 20px;
    background: transparent;
    color: #4a8fe7;
    border: 1px solid rgba(74, 143, 231, 0.3);
    border-radius: 20px;
    font-size: 10px;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
    margin-top: auto;
    margin-bottom: 8px;
}

#view-home .news-btn:hover {
    background: rgba(74, 143, 231, 0.1);
}

#view-home .more-btn-box {
    text-align: center;
}

#view-home .more-btn {
    padding: 12px 36px;
    background: linear-gradient(135deg, #4a8fe7 0%, #3a70c0 100%);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: 2px;
    transition: opacity 0.3s;
}

#view-home .more-btn:hover {
    opacity: 0.85;
}

#view-home .more-arrow {
    margin-left: 6px;
}

/* ===== Section 6: Footer ===== */
#view-home .page-footer {
    position: relative;
    padding: 0;
    background-color: #0a0f1e;
    overflow: hidden;
}

#view-home .page-footer .footer-bg-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 0;
}

#view-home .page-footer .footer-content {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#view-contact .page-footer,
#view-news .page-footer,
#view-news-detail .page-footer,
#view-warranty .page-footer {
    position: relative;
    padding: 0;
    background-color: #0a0f1e;
    overflow: hidden;
}

#view-contact .page-footer .footer-bg-image,
#view-news .page-footer .footer-bg-image,
#view-news-detail .page-footer .footer-bg-image,
#view-warranty .page-footer .footer-bg-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 0;
}

#view-contact .page-footer .footer-content,
#view-news .page-footer .footer-content,
#view-news-detail .page-footer .footer-content,
#view-warranty .page-footer .footer-content {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#view-home .footer-curve,
#view-contact .footer-curve,
#view-news .footer-curve,
#view-news-detail .footer-curve,
#view-warranty .footer-curve {
    display: none !important;
}

#view-home .footer-content,
#view-contact .footer-content,
#view-news .footer-content,
#view-news-detail .footer-content,
#view-warranty .footer-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 70vw;
}

#view-home .footer-row,
#view-contact .footer-row,
#view-news .footer-row,
#view-news-detail .footer-row,
#view-warranty .footer-row {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

#view-home .footer-row:first-child,
#view-contact .footer-row:first-child,
#view-news .footer-row:first-child,
#view-news-detail .footer-row:first-child,
#view-warranty .footer-row:first-child {
    justify-content: center !important;
}

#view-home .footer-title,
#view-contact .footer-title,
#view-news .footer-title,
#view-news-detail .footer-title,
#view-warranty .footer-title {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1px;
    width: 100px;
    flex-shrink: 0;
}

#view-home .footer-list,
#view-contact .footer-list,
#view-news .footer-list,
#view-news-detail .footer-list,
#view-warranty .footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#view-home .footer-list-horizontal,
#view-contact .footer-list-horizontal,
#view-news .footer-list-horizontal,
#view-news-detail .footer-list-horizontal,
#view-warranty .footer-list-horizontal {
    display: flex;
    gap: 36px;
}

#view-home .footer-list li,
#view-contact .footer-list li,
#view-news .footer-list li,
#view-news-detail .footer-list li,
#view-warranty .footer-list li {
    font-size: 13px;
    color: #ffffff;
}

#view-home .footer-contact p,
#view-contact .footer-contact p,
#view-news .footer-contact p,
#view-news-detail .footer-contact p,
#view-warranty .footer-contact p {
    font-size: 13px;
    color: #ffffff;
    margin: 0;
}

#view-home .footer-contact-horizontal,
#view-contact .footer-contact-horizontal,
#view-news .footer-contact-horizontal,
#view-news-detail .footer-contact-horizontal,
#view-warranty .footer-contact-horizontal {
    display: flex;
    gap: 48px;
}

#view-home .contact-label,
#view-contact .contact-label,
#view-news .contact-label,
#view-news-detail .contact-label,
#view-warranty .contact-label {
    color: #ffffff;
}

#view-home .contact-value,
#view-contact .contact-value,
#view-news .contact-value,
#view-news-detail .contact-value,
#view-warranty .contact-value {
    color: #ffffff;
}

#view-home .footer-qr-list,
#view-contact .footer-qr-list,
#view-news .footer-qr-list,
#view-news-detail .footer-qr-list,
#view-warranty .footer-qr-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

#view-home .footer-qr-horizontal,
#view-contact .footer-qr-horizontal,
#view-news .footer-qr-horizontal,
#view-news-detail .footer-qr-horizontal,
#view-warranty .footer-qr-horizontal {
    flex-direction: row;
    gap: 24px;
}

#view-home .qr-item,
#view-contact .qr-item,
#view-news .qr-item,
#view-news-detail .qr-item,
#view-warranty .qr-item {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#view-home .qr-code,
#view-contact .qr-code,
#view-news .qr-code,
#view-news-detail .qr-code,
#view-warranty .qr-code {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}

#view-home .footer-copy,
#view-contact .footer-copy,
#view-news .footer-copy,
#view-news-detail .footer-copy,
#view-warranty .footer-copy {
    text-align: center;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.15);
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}
