/* ===== Home 页面特定样式 ===== */

/* 产品包装展示区 */
.packaging-section {
    padding: 0 0 80px;
    background-color: #fff;
    margin-top: 20px;
}

.packaging-section .container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.packaging-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.package-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.package-image {
    width: 100%;
    margin-bottom: 25px;
}

.package-image .image-placeholder {
    width: 100%;
    height: 320px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.package-white {
    background: linear-gradient(135deg, #f5f3f0 0%, #e8e6df 100%);
}

.package-light {
    background: linear-gradient(135deg, #ebe9e0 0%, #d9d7ce 100%);
}

.package-dark {
    background: linear-gradient(135deg, #4a4a4a 0%, #2d2d2d 100%);
}

.package-image .image-placeholder span {
    color: #999;
    font-size: 14px;
}

.package-dark span {
    color: #ccc;
}

.package-info {
    width: 100%;
}

.package-logo {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.package-brand {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    color: #333;
}

.package-details {
    font-size: 11px;
    color: #666;
    line-height: 1.6;
}

.package-details p {
    margin: 5px 0;
}

/* 产品特写展示区 */
.product-showcase {
    padding: 80px 0;
    background-color: #fff;
}

.showcase-layout {
    display: flex;
    gap: 80px;
    align-items: center;
}

.showcase-text {
    flex: 0 0 280px;
}

.showcase-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

.showcase-images {
    flex: 1;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.showcase-item {
    position: relative;
}

.showcase-item .image-placeholder {
    width: 100%;
    background-color: #e8e6df;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.showcase-item .image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.lash-img-1,
.lash-img-2,
.lash-img-3,
.lash-img-4 {
    background: linear-gradient(135deg, #f0eee5 0%, #e0ddd0 100%);
}

.showcase-item .image-placeholder span {
    color: #999;
    font-size: 14px;
}

/* 公司介绍区域 */
.company-story {
    padding: 60px 0;
    background-color: #fff;
}

.story-block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
}

.story-block:last-child {
    margin-bottom: 0;
}

.story-block.reverse {
    flex-direction: row-reverse;
}

.story-image {
    flex: 0 0 55%;
}

.story-image .image-placeholder {
    width: 100%;
    background-color: #d4d0c8;
    border-radius: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.office-img-1,
.office-img-2 {
    background: linear-gradient(135deg, #c8c4b8 0%, #d8d4c8 100%);
}

.story-image .image-placeholder span {
    color: #666;
    font-size: 14px;
}

.story-text {
    flex: 1;
}

.story-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

/* 新品展示区 */
.new-products {
    padding: 80px 0 100px;
    background-color: #fff;
}

.section-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 60px;
    color: #1a1a1a;
    letter-spacing: 1.5px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.new-product-card {
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: block;
}

.new-product-card * {
    text-decoration: none;
}

.new-product-image {
    margin-bottom: 25px;
}

.new-product-image .image-placeholder {
    width: 100%;
    background-color: #e8e6df;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.new-lash-1,
.new-lash-2,
.new-lash-3 {
    background: linear-gradient(135deg, #f0eee5 0%, #e0ddd0 100%);
}

.new-product-image .image-placeholder span {
    color: #999;
    font-size: 14px;
}

.new-product-info {
    text-align: center;
}

.product-code {
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 12px;
    color: #bca875;
    letter-spacing: 1px;
}

.product-name {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 8px;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

.product-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* ===== 响应式设计 ===== */
@media (max-width: 1024px) {
    .packaging-grid {
        gap: 40px;
    }

    .showcase-layout {
        gap: 40px;
    }

    .showcase-text {
        flex: 0 0 280px;
    }

    .story-block {
        gap: 40px;
    }

    .products-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .packaging-section {
        padding: 60px 0;
    }

    .packaging-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .package-image .image-placeholder {
        height: 280px;
    }

    .product-showcase {
        padding: 60px 0;
    }

    .showcase-layout {
        flex-direction: column;
        gap: 50px;
    }

    .showcase-text {
        flex: 1;
        text-align: left;
        padding: 0 10px;
    }

    .showcase-text p {
        font-size: 15px;
        line-height: 2;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .showcase-item .image-placeholder {
        aspect-ratio: 4/3;
        height: auto;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .company-story {
        padding: 40px 0;
    }

    .story-block,
    .story-block.reverse {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 50px;
    }

    .story-image {
        flex: 1;
        width: 100%;
    }

    .story-image .image-placeholder {
        height: 280px;
    }

    .story-text {
        text-align: center;
    }

    .story-text p {
        font-size: 14px;
    }

    .new-products {
        padding: 60px 0 80px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }


}

@media (max-width: 480px) {
    .packaging-section {
        padding: 40px 0;
    }

    .packaging-grid {
        gap: 40px;
    }

    .package-image .image-placeholder {
        height: 240px;
    }

    .package-logo {
        font-size: 28px;
        letter-spacing: 4px;
    }

    .package-brand {
        font-size: 12px;
    }

    .package-details {
        font-size: 10px;
    }

    .product-showcase {
        padding: 50px 0;
    }

    .showcase-layout {
        gap: 40px;
    }

    .showcase-text {
        padding: 0 5px;
    }

    .showcase-text p {
        font-size: 14px;
        line-height: 1.9;
    }

    .showcase-grid {
        gap: 20px;
    }

    .showcase-item .image-placeholder {
        border-radius: 12px;
    }

    .company-story {
        padding: 30px 0;
    }

    .story-block {
        margin-bottom: 40px;
    }

    .story-image .image-placeholder {
        height: 220px;
    }

    .story-text p {
        font-size: 13px;
    }

    .new-products {
        padding: 40px 0 60px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .products-grid {
        gap: 35px;
    }

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

    .product-desc {
        font-size: 12px;
    }
}
