/* Product Detail Page Styles */
@media (max-width: 768px) {
    html, body {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }
}

/* Page Header */
.page-header {
    width: 100%;
    overflow: hidden;
    padding-top: 70px;;
}
.header-banner {
    width: 100%;
    height: 300px;
    display: block;
    object-fit: cover;
}

@media (max-width: 768px) {
    .header-banner {
        height: 150px;
        object-fit: cover;
    }
}

/* Product Detail Container */
.product-detail-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 2rem;
}

@media (max-width: 768px) {
    .product-detail-container {
        max-width: 100%;
        padding: 0.5rem;
        margin: 0;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .product-top-section {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .image-gallery {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .product-info {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .gallery-main img,
    .gallery-main video {
        max-width: 100%;
        height: auto;
    }
    
    .specs-tabs {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
    }
    
    .tab-btn {
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    .product-price .price-value {
        font-size: 1.5rem;
    }
    
    .product-price .price-label {
        font-size: 0.85rem;
    }
}

/* Top Section */
.product-top-section {
    display: grid;
    grid-template-columns: 53% 44%;
    gap: 3%;
    margin-bottom: 3rem;
}

@media (max-width: 992px) {
    .product-top-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Image Gallery */
.image-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.gallery-main {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.main-image-container {
    position: relative;
    aspect-ratio: 4/3;
}

.gallery-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.gallery-video {
    width: 100%;
    height: 100%;
    display: none;
}

.gallery-video.active {
    display: block;
}

.video-toggle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.video-toggle:hover {
    background: var(--primary-color);
    color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.gallery-thumbs-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.gallery-thumbs-scroll {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 0.25rem 35px;
    box-sizing: border-box;
}

.gallery-thumbs-scroll::-webkit-scrollbar {
    display: none;
}

.gallery-thumbs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: nowrap;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: white;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.scroll-btn.left {
    left: 2px;
}

.scroll-btn.right {
    right: 2px;
}

.thumb-item {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-item.active {
    border-color: var(--primary-color);
}

.scroll-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: white;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.scroll-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}
.video-thumb {
    position: relative;
}

.video-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 168, 107, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    z-index: 10;
}

.video-badge i {
    margin-left: 2px;
}

.thumb-item:hover {
    border-color: rgba(0, 168, 107, 0.5);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .gallery-thumbs {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }
    
    .video-toggle {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

/* Product Info */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.short_desc ul li,.short_desc ol li {
  list-style: none;
  display: flex;
  align-items: flex-start; /* 顶部对齐，长文本不挤压 */
  gap: 10px; /* 圆点和文字固定间距 */
  margin: 16px 0;
  line-height: 1.6;
}
.short_desc p,.short_desc li{font-size:1rem;}
.short_desc p{margin-bottom:1rem;}
.short_desc li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #333;
  border-radius: 50%;
  margin-top: 10px; /* 垂直居中微调 */
  flex-shrink: 0; /* 防止圆点被文字压缩 */
}
.product-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

@media (max-width: 768px) {
    .product-title {
        font-size: 1.2rem;
    }
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    color: #FFD700;
}

.rating-count {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.price-value {
    font-size: 2rem;
    font-weight: 400;
    color: var(--primary-color);
}

.price-unit {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.product-moq {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.moq-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.moq-value {
    font-weight: 600;
    color: var(--text-primary);
}

.product-availability {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.availability-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.availability-badge.in-stock {
    background: rgba(0, 168, 107, 0.1);
    color: var(--primary-color);
}

.availability-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    padding: 0.5rem 1rem;
    background: rgba(0, 168, 107, 0.1);
    color: var(--primary-color);
    border-radius: 6px;
    font-size: 0.875rem;
}

.contact-supplier {
    display: flex;
    gap: 1rem;
}

.inquiry-btn,
.contact-btn {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.inquiry-btn {
    background: rgba(0, 168, 107, 0.1);
    color: var(--primary-color);
}

.inquiry-btn:hover {
    background: rgba(0, 168, 107, 0.2);
    transform: translateY(-2px);
}

.contact-btn {
    background: var(--primary-color);
    color: white;
}

.contact-btn:hover {
    background: #008a59;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact-supplier {
        flex-direction: column;
    }
    
    .inquiry-btn,
    .contact-btn {
        width: 100%;
    }
}

.product-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.share-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 168, 107, 0.1);
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.section-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Specs Section */
.product-specs-section {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
}

.specs-tabs {
    display: flex;
    gap: 0.5rem;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: rgba(0, 168, 107, 0.1);
    color: var(--primary-color);
}

.specs-content {
    margin-top: 1.5rem;
}

.specs-table.hidden {
    display: none;
}

.specs-table table {
    width: 100%;
    border-collapse: collapse;
}
.specs-table tr th:first-child,
.specs-table tr td:first-child {
    width: 30%;
}
.specs-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.spec-label {
    width: 40%;
    font-weight: 600;
    color: var(--text-secondary);
    background: #f8fafc;
}

.spec-value {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .spec-label {
        width: 45%;
        font-size: 0.875rem;
    }
    
    .spec-value {
        font-size: 0.875rem;
    }
}

.dimensions-container {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.dimensions-container img {
    width: 100%;
    height: auto;
}

.certifications-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
}

.cert-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.cert-item span {
    font-weight: 600;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .certifications-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .cert-item {
        padding: 1rem;
    }
    
    .cert-item img {
        width: 45px;
        height: 45px;
    }
}

/* Description Section */
.product-description-section {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
}

.description-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.description-image {
    border-radius: 8px;
    overflow: hidden;
}

.description-image img {
    width: 100%;
    height: auto;
}

/* Related Products Section */
.related-products-section {
    margin-bottom: 3rem;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.related-product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.related-product-image {
    aspect-ratio: 4/4;
}

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

.related-product-info {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.related-product-info h4 {
    font-weight: 600;
    color: var(--text-primary);
    min-height: 3rem;
}

.related-product-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.related-price {
    color: var(--primary-color);
    margin-top: 0.25rem;
}
.related-price span{
    color: var(--text-secondary);
    font-size: 0.875rem;
}
.related-product-info .inquiry-btn{
    margin-top: 0.4rem;
}
@media (max-width: 992px) {
    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .related-products-grid {
        grid-template-columns: 1fr;
    }
    
    .related-product-card {
        padding: 0 1rem;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
    }
    
    .related-product-image {
        border-radius: 8px;
        overflow: hidden;
    }
    
    .related-product-info {
        padding: 0.75rem 0;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    z-index: 10;
}

.lightbox-content img {
    height: 80vh;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
    .lightbox-prev {
        left: -10px;
    }
    
    .lightbox-next {
        right: -10px;
    }
    
    .lightbox-close {
        top: -35px;
        width: 32px;
        height: 32px;
    }
    
    .lightbox-content img {
        width: 90vw;
        height: auto;
    }
}

.floating-sidebar {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 9999;
  /* 默认隐藏 */
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

/* 滚动后添加的类：显示 */
.floating-sidebar.show {
  opacity: 1;
  visibility: visible;
}

.sns-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sns-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 168, 107, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.sns-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 168, 107, 0.4);
}

.sns-link:nth-child(1):hover {
    background: #000000;
}

.sns-link:nth-child(2):hover {
    background: #1877F2;
}

.sns-link:nth-child(3):hover {
    background: #FF0000;
}

.sns-link:nth-child(4):hover {
    background: #0A66C2;
}

.sns-link:nth-child(5):hover {
    background: linear-gradient(135deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.divider {
    width: 24px;
    height: 1px;
    background: var(--border-color);
}

.floating-inquiry-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.floating-inquiry-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 168, 107, 0.4);
}

.floating-inquiry-btn i {
    font-size: 1.25rem;
}

/* 移动端适配：右侧距离缩小，避免贴边 */
@media (max-width: 768px) {
  .floating-sidebar {
    right: 15px;
  }
  .sns-link {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
    .floating-sidebar {
        right: 10px;
        bottom: 60px;
        padding: 0.75rem;
    }
    
    .sns-link {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }
    
    .floating-inquiry-btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .floating-inquiry-btn i {
        font-size: 1rem;
    }
}
.inquiry-modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 10000;
            backdrop-filter: blur(4px);
        }
        
        .inquiry-modal-overlay.active {
            display: block;
        }
        
        .inquiry-modal {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            max-width: 500px;
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            z-index: 10001;
            overflow: hidden;
            animation: modalFadeIn 0.3s ease;
        }
        
        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: translate(-50%, -45%);
            }
            to {
                opacity: 1;
                transform: translate(-50%, -50%);
            }
        }
        
        .inquiry-modal.active {
            display: block;
        }
        
        .inquiry-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem 1.5rem;
            background: linear-gradient(135deg, #00A86B 0%, #008055 100%);
            color: #ffffff;
        }
        
        .inquiry-modal-header h3 {
            margin: 0;
            font-size: 1.25rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .inquiry-modal-close {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: #ffffff;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s ease;
        }
        
        .inquiry-modal-close:hover {
            background: rgba(255, 255, 255, 0.3);
        }
        
        .inquiry-modal-body {
            padding: 1.5rem;
        }
        
        .inquiry-form-group {
            margin-bottom: 1rem;
        }
        
        .inquiry-form-group p {
            margin: 0;
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .inquiry-form-group p label {
            flex-shrink: 0;
            width: 100px;
            font-size: 0.875rem;
            font-weight: 600;
            color: #333333;
            text-align: right;
        }
        
        .inquiry-form-group p label::after {
            content: '';
        }
        
        .inquiry-form-group p label:has(+ span input[required])::after,
        .inquiry-form-group p label:has(+ span textarea[required])::after {
            content: ' *';
            color: #E74C3C;
        }
        
        .inquiry-form-group p span {
            flex: 1;
        }
        
        .inquiry-form-group p span input,
        .inquiry-form-group p span textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 0.9rem;
            color: #333333;
            background: #fafafa;
            transition: all 0.2s ease;
            box-sizing: border-box;
        }
        
        .inquiry-form-group p span input:focus,
        .inquiry-form-group p span textarea:focus {
            outline: none;
            border-color: #00A86B;
            background: #ffffff;
            box-shadow: 0 0 0 3px rgba(0, 168, 107, 0.1);
        }
        
        .inquiry-form-group p span input::placeholder,
        .inquiry-form-group p span textarea::placeholder {
            color: #999999;
        }
        
        .inquiry-form-group p span textarea {
            resize: vertical;
            min-height: 100px;
        }
        
        .inquiry-modal-submit {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, #00A86B 0%, #008055 100%);
            color: #ffffff;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            margin-top: 0.5rem;
        }
        
        .inquiry-modal-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 168, 107, 0.3);
        }
        
        .inquiry-modal-submit:active {
            transform: translateY(0);
        }
        
        @media (max-width: 768px) {
            .inquiry-modal {
                width: 95%;
                max-width: 95%;
                margin: 1rem;
                transform: translate(-50%, -50%) scale(0.95);
            }
            
            .inquiry-modal.active {
                transform: translate(-50%, -50%) scale(1);
            }
            
            .inquiry-modal-header {
                padding: 1rem;
            }
            
            .inquiry-modal-body {
                padding: 1rem;
            }
        }


.product-share {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
            margin-top: 1.5rem;
        }
        
        .share-label {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-secondary);
        }
        
        .share-buttons {
            display: flex;
            gap: 0.6rem;
        }
        
        .share-btn {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--bg-light);
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.1rem;
            color: var(--text-secondary);
            transition: all 0.3s ease;
        }
        
        .share-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        
        .share-btn.facebook:hover {
            background: #1877F2;
            color: #ffffff;
        }
        
        .share-btn.instagram:hover {
            background: linear-gradient(135deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
            color: #ffffff;
        }
        
        .share-btn.twitter:hover {
            background: #000000;
            color: #ffffff;
        }
        
        .share-btn.pinterest:hover {
            background: #BD081C;
            color: #ffffff;
        }
        
        .share-btn.whatsapp:hover {
            background: #25D366;
            color: #ffffff;
        }
        
        .share-btn.linkedin:hover {
            background: #0A66C2;
            color: #ffffff;
        }
        
        @media (max-width: 768px) {
            .product-share {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.75rem;
            }
            
            .share-btn {
                width: 34px;
                height: 34px;
                font-size: 1rem;
            }
        }