.product-gallery {
    position: relative;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.btn-share-floating {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: #dc3545;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-share-floating:hover {
    background: #dc3545;
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(220, 53, 69, 0.3);
    border-color: #dc3545;
}

.main-img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    background: #f8f9fa;
    border-radius: 15px;
}

.thumbSwiper {
    height: 100px;
}

.thumbSwiper .swiper-slide {
    opacity: 0.5;
    cursor: pointer;
}

.thumbSwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.thumb-img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    border: 2px solid #eee;
    border-radius: 10px;
    /* padding: 5px; */
}

.product-info {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #222;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    margin-left: 10px;
}

.discount {
    color: #28a745;
    font-weight: 600;
}

.qty-box {
    width: 140px;
}

.book-features li {
    margin-bottom: 10px;
}

.btn-buy {
    background: #ff0000;
    border: none;
    color: #fff;
    padding: 12px 30px;
    font-weight: 600;
}

.btn-buy:hover {
    background: #cc0000;
    color: #fff;

}

.description-box {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
}

.discount-badge {
    display: inline-block;
    background: #198754;
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    width: auto;
}

.price-section {
    font-family: Arial, sans-serif;
}

.current-price {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-right: 8px;
}

.mrp-label {
    font-size: 18px;
    color: #666;
    margin-right: 4px;
}

.old-price {
    font-size: 18px;
    color: #777;
    text-decoration: line-through;
    margin-right: 8px;
}

.discount {
    font-size: 18px;
    font-weight: 600;
    color: #ff7a45;
}

.tax-text {
    margin-top: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #00a86b;
}


.specifications-section {
    margin-top: 40px;
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 991px) {
    .specifications-section {
        background: transparent;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        border: none;
    }
}

.spec-title {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.spec-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, #dc3545, #ff4545);
    border-radius: 2px;
}

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

@media (max-width: 768px) {
    .spec-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .spec-item {
        padding: 10px 12px;
        gap: 10px;
        border-radius: 12px;
    }
    .spec-icon-wrapper {
        width: 36px;
        height: 36px;
        font-size: 14px;
        border-radius: 8px;
    }
    .spec-label {
        font-size: 10px;
    }
    .spec-value {
        font-size: 13px;
    }
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 15px 20px;
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.spec-item:hover {
    transform: translateY(-2px);
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: #dc3545;
}

.spec-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    font-size: 18px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.spec-item:hover .spec-icon-wrapper {
    background: #dc3545;
    color: #ffffff;
    transform: scale(1.05);
}

.spec-info {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #9ca3af;
    margin-bottom: 2px;
}

.spec-value {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
}
