/* ===========================================
   WANIFELT English Product Page Styles
   영문 Product 페이지 전용 스타일
   =========================================== */

/* Page Hero - Background Image Only */
.page-hero {
    background-image: url('../nonwoven_background_111.jpg');
}

/* Usage Section - English Layout */
/* Card bottom aligns with image grid bottom */
.usage-layout {
    align-items: end;
}

.usage-left {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.usage-splash-image {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.usage-info-card {
    padding: 40px 35px;
}

.usage-info-card h3 {
    font-size: 34px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.usage-label {
    min-width: 100px;
}

.usage-info-list .usage-desc {
    font-size: 15px;
    line-height: 1.6;
}

.usage-info-item {
    margin-bottom: 6px;
}

.usage-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Features Numbered Grid */
.features-grid-numbered {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-numbered-card {
    text-align: center;
    padding: 20px 15px;
}

.feature-number {
    display: block;
    font-size: 64px;
    font-weight: 700;
    color: #7ECEF4;
    line-height: 1;
    margin-bottom: 30px;
    padding-bottom: 12px;
    position: relative;
}

.feature-number::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 50px;
    height: 5px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.feature-numbered-card .card-sub-title {
    color: var(--primary) !important;
    line-height: 1.5;
    margin-bottom: 20px;
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    width: 130px;
    height: 130px;
    object-fit: contain;
}

.feature-numbered-card p {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.7;
}

.footer {
    margin-top: 100px;
}

/* ========================================
   Responsive - Product Page English
   ======================================== */
@media (max-width: 1024px) {
    /* Override grid to flex for order property to work */
    .usage-layout {
        display: flex;
        flex-direction: column;
        gap: 60px;
    }

    .usage-left {
        order: 2;
    }

    .usage-right {
        order: 1;
    }

    .usage-info-card {
        padding: 35px 30px;
    }

    .usage-info-card h3 {
        font-size: 32px;
    }

    .product-specs {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid-numbered {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .usage-layout {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .usage-left {
        order: 2;
    }

    .usage-right {
        order: 1;
    }

    .usage-label {
        min-width: auto;
    }

    .usage-info-card {
        padding: 30px 25px;
    }

    .usage-info-card h3 {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .usage-info-list .usage-desc {
        font-size: 14px;
    }

    .usage-splash-image {
        display: none;
    }

    .product-hero h2 {
        font-size: 28px;
    }

    .features-grid-numbered {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-numbered-card {
        padding: 30px 20px;
    }

    .feature-numbered-card p {
        font-size: 16px;
    }

    .feature-number {
        font-size: 36px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .usage-info-card {
        padding: 25px 20px;
    }

    .usage-info-card h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .product-hero {
        padding: 40px 15px;
    }

    .product-hero h2 {
        font-size: 22px;
    }

    .feature-icon img {
        width: 100px;
        height: 100px;
    }

    .feature-numbered-card p {
        font-size: 14px;
    }

    .feature-number {
        font-size: 32px;
    }
}
