.lp-container {
    max-width: 100%;
    margin: 0 auto;
}

.lp-top-image {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #000;
    max-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-top-image img {
    width: 100%;
    height: auto;
    max-height: 40vh;
    object-fit: cover;
    object-position: center;
    display: block;
}

.lp-header {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #000;
    max-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-header img,
.lp-header video,
.lp-header iframe {
    width: 100%;
    height: auto;
    max-height: 40vh;
    object-fit: cover;
    object-position: center;
    display: block;
}

.lp-header iframe {
    aspect-ratio: 16/9;
    min-height: 40vh;
}

.lp-section {
    padding: 40px 20px;
}

.lp-products-section {
    background: #fff;
}

.lp-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.lp-product {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.lp-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.lp-product a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.lp-product img {
    width: 100%;
    height: auto;
    display: block;
}

.lp-product h3 {
    padding: 15px;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    min-height: 60px;
}

.lp-product-price {
    padding: 0 15px 15px;
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.lp-product-price .woocommerce-Price-amount {
    color: #e74c3c;
}

.lp-banner {
    padding: 0;
    max-height: 40vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.lp-banner img {
    width: 100%;
    height: auto;
    max-height: 40vh;
    object-fit: cover;
    object-position: center;
    display: block;
}

.lp-banner a {
    display: block;
    max-height: 40vh;
}

@media (max-width: 1024px) {
    .lp-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .lp-header {
        max-height: 40vh;
    }
    
    .lp-header iframe {
        min-height: 40vh;
    }
    
    .lp-section {
        padding: 30px 15px;
    }
    
    .lp-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        display: flex;
        padding-bottom: 10px;
    }
    
    .lp-product {
        flex: 0 0 calc(50% - 10px);
        scroll-snap-align: start;
    }
    
    .lp-product h3 {
        font-size: 14px;
        padding: 10px;
        min-height: 50px;
    }
    
    .lp-product-price {
        padding: 0 10px 10px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .lp-header {
        max-height: 40vh;
    }
    
    .lp-header iframe {
        min-height: 40vh;
    }
    
    .lp-product h3 {
        font-size: 13px;
    }
    
    .lp-product-price {
        font-size: 15px;
    }
}
