/* Main Content */
.main {
    padding: 60px 40px;
    margin-top: 50px;
    margin-bottom: 150px;
}

.container {
    max-width: 1650px;
    margin: 0 auto;
}

.page-title {
    display: flex;
    justify-content: center;
    padding: 10px;
    margin-bottom: 60px;
}

.page-title h2 {
    font-size: 34px;
    font-weight: 700;
    color: #202020;
    letter-spacing: -0.85px;
}

/* Product List */
.product-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

/* Product Card */
.product-card {
    background: white;
    border: 2px solid #007433;
    border-radius: 20px;
    padding: 40px;
    width: 900px;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 10px;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.15);
}

.product-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Label Group */
.label-group {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 40px;
}

.app-icon {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.store-badge {
    background: white;
    border: 1px solid #007433;
    border-radius: 47px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #007433;
    letter-spacing: -0.35px;
    white-space: nowrap;
}

.datetime-badge {
    background: rgba(0, 116, 51, 0.08);
    border-radius: 47px;
    padding: 10px 20px;
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #007433;
    letter-spacing: -0.4px;
}

/* Product Details */
.product-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
    cursor:pointer;
}

.product-title-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-title {
    font-size: 24px;
    font-weight: 700;
    color: #010101;
    letter-spacing: -0.6px;
    line-height: 1.3;
}

.product-price {
    font-size: 36px;
    font-weight: 700;
    color: #007433;
    letter-spacing: -0.9px;
}

.product-ref {
    font-size: 18px;
    font-weight: 500;
    color: #767676;
    letter-spacing: -0.45px;
}

/* Product Stats */
.product-stats {
    display: flex;
    gap: 6px;
    align-items: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.stat-count {
    font-size: 16px;
    font-weight: 400;
    color: #767676;
    letter-spacing: -0.4px;
}

/* Product Image */
.product-image {
    width: 220px;
    height: 220px;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

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

/* More Section */
.more-section {
    margin-top: 80px;
    position: relative;
}

.divider {
    border: none;
    height: 1px;
    background-color: #ccc;
    margin: 0;
}

.more-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
}

.more-text {
    font-size: 16px;
    font-weight: 400;
    color: #777;
    letter-spacing: -0.4px;
}

.more-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.more-button:hover .more-icon {
    transform: translateY(2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        padding: 16px 24px;
    }

    .nav {
        gap: 24px;
    }

    .nav-link {
        font-size: 14px;
    }

    .container {
        padding: 0 24px;
    }

    .product-card {
        width: 100%;
        max-width: 800px;
    }

    .product-content {
        gap: 24px;
    }

    .product-image {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }

    .nav {
        order: 3;
        width: 100%;
        margin-top: 16px;
        gap: 16px;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .page-title h2 {
        font-size: 28px;
    }

    .product-card {
        padding: 24px;
    }

    .product-content {
        flex-direction: column;
        gap: 24px;
    }

    .product-image {
        width: 100%;
        max-width: 300px;
        height: auto;
        aspect-ratio: 1;
        cursor:pointer;
    }

    .label-group {
        flex-wrap: wrap;
        height: auto;
    }

    .product-title {
        font-size: 20px;
    }

    .product-price {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .main {
        padding: 40px 16px;
    }

    .page-title h2 {
        font-size: 24px;
    }

    .product-card {
        padding: 20px;
    }

    .product-title {
        font-size: 18px;
    }

    .product-price {
        font-size: 24px;
    }

    .product-ref {
        font-size: 14px;
    }

    .store-badge {
        font-size: 12px;
        padding: 8px 12px;
    }

    .datetime-badge {
        font-size: 14px;
        padding: 8px 16px;
    }
}
.blur{
    filter: blur(6px);
    user-select:none;
}