.product-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    padding-top:0;
}

.product-main-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    position: relative;
}

.product-gallery {
    position: relative;
    margin-top:2rem;
}

.product-summary {
    padding: 1rem;
}

.product-title {
    font-size: 32px;
    margin-bottom: 1rem;
    font-weight:700;
    text-transform: uppercase;
}

.product-sku {
    color: #666;
    margin-bottom: 1rem;
}

.product-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.product-description {
    margin: 2rem 0;
}

.features-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.features-icons img {
    height: 57px;
    width: auto;
}

.material-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.material-icon img {
    width: 60px;
    height: auto;
}

.material-desc {
    display: flex;
    flex-direction: column;
}

.contact-button {
    background-color: #ff6b00;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
}

@media (max-width: 768px) {
    .product-main-info {
        grid-template-columns: 1fr;
    }
}


.woocommerce-product-gallery {
    position: relative;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);

}

.woocommerce-product-gallery__wrapper {
    margin: 0;
    padding: 0;
}

.woocommerce-product-gallery__image {
    border-radius: 8px;
    overflow: hidden;
}

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

.woocommerce-product-gallery__trigger {
    position: absolute;
    top: 32px;
    right: 39px;
    z-index: 99;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
}

.woocommerce-product-gallery__trigger::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-radius: 100%;
    position: absolute;
    top: 8px;
    left: 8px;
}

.woocommerce-product-gallery__trigger::after {
    content: "";
    display: block;
    width: 2px;
    height: 8px;
    background: currentColor;
    position: absolute;
    bottom: 8px;
    right: 10px;
    transform: rotate(45deg);
}

/* 确保图片容器有合适的尺寸 */
.woocommerce-product-gallery__image {
    width: 100%;
    max-width: 100%;
}

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

.woocommerce-breadcrumb {
    margin-bottom: 2rem !important;
    font-size: 0.9em;
    color: #666;
}

.woocommerce-breadcrumb a {
    color: #333;
    text-decoration: none;
}

.woocommerce-breadcrumb a:hover {
    color: #ff6b00;
}

.product-summary .elementor-widget-container {
    padding: 20px 20px 4px 0px;
    border-style: solid;
    border-width: 0px 0px 2px 0px;
    border-color: #F39221;
    margin-bottom:20px;
}

.product-gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    overflow-x: auto;
    padding: 5px;
}

.gallery-thumb {
    flex: 0 0 80px;
    cursor: pointer;
}

.gallery-thumb img {
    width: 100%;
    height: auto;
    border: 2px solid transparent;
    border-radius: 4px;
}

.gallery-thumb:hover img {
    border-color: #3483fa;
}

.gallery-thumb.active img {
    border-color: #3483fa;
}

.product-short-description {
    margin: 15px 0;
    line-height: 1.6;
}

.product-short-description {
    margin: 15px 0 15px 10px;
    line-height: 1.6;
    max-height: 500px;
    overflow-y: auto;
}


.product-main-info figure {
    width: 100% !important;
    max-width: 100% !important;
}

.product-main-info figure img {
    max-width: 100%;
    height: auto;
}