/* Modern Product Details Page Design */

/* Product Details Container */
.product-details-modern {
    background: #fff;
    padding: 30px 0;
}

/* Product Image Section */
.product-images-modern {
    position: relative;
}

.product-main-image {
    position: relative;
    background: #f8f8f8;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}

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

/* Discount Badge on Image */
.product-discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FF2B7A 0%, #E91E63 100%);
    color: #fff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.5);
    z-index: 5;
}

.product-discount-badge .discount-percent {
    font-size: 18px;
    line-height: 1;
    font-weight: 800;
}

.product-discount-badge .discount-label {
    font-size: 12px;
    line-height: 1;
    margin-top: 3px;
    font-weight: 600;
}

/* Thumbnail Images */
.product-thumbnails-modern {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product-thumbnail {
    width: 80px;
    height: 80px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-thumbnail:hover,
.product-thumbnail.active {
    border-color: #EC8951;
    transform: scale(1.05);
}

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

/* Breadcrumb Modern */
.breadcrumb-modern {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    padding: 0;
    background: none;
}

.breadcrumb-modern a {
    color: #666;
    text-decoration: none;
}

.breadcrumb-modern a:hover {
    color: #EC8951;
}

.breadcrumb-modern span {
    margin: 0 8px;
}

/* Product Info Modern */
.product-info-modern {
    padding: 0 15px;
}

.product-title-modern {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.3;
}

/* Price Modern */
.product-price-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.price-original {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
}

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

/* Rating Modern */
.product-rating-modern {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
}

.rating-stars {
    display: flex;
    gap: 2px;
    color: #ffa500;
}

.rating-value {
    color: #666;
    font-weight: 600;
}

.rating-link {
    color: #0066cc;
    text-decoration: underline;
    cursor: pointer;
}

/* Product Code Banner */
.product-code-banner {
    background: linear-gradient(135deg, #FF6B35 0%, #F25C3D 100%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px 0 6px 0;
    display: inline-block;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(242, 92, 61, 0.3);
}

/* Color Selector Modern */
.option-group-modern {
    margin-bottom: 20px;
}

.option-label-modern {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.color-swatches-modern {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.color-swatch {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.color-swatch:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.color-swatch.active {
    border-color: #222;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #222;
}

/* Size Selector Modern */
.size-buttons-modern {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.size-btn {
    min-width: 50px;
    padding: 10px 16px;
    border: 2px solid #ddd;
    background: #fff;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.size-btn:hover {
    border-color: #EC8951;
    background: #fff5f0;
}

.size-btn.active {
    border-color: #EC8951;
    background: #EC8951;
    color: #fff;
}

.size-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Brand Display */
.product-brand-modern {
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 6px;
    padding: 12px 15px;
    text-align: center;
    margin-bottom: 15px;
}

.product-brand-modern .brand-label {
    font-size: 13px;
    color: #666;
    font-weight: 400;
    margin-right: 5px;
}

.product-brand-modern .brand-value {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Product Accordions Section */
.product-accordions-section {
    margin-top: 20px;
}

.product-accordions-section .accordion-button {
    background: #fff;
    color: #333;
    font-weight: 600;
    font-size: 15px;
    padding: 15px 20px;
    border: none;
}

.product-accordions-section .accordion-button:not(.collapsed) {
    background: #f8f9fa;
    color: #EC8951;
    box-shadow: none;
}

.product-accordions-section .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.product-accordions-section .accordion-item {
    border: 1px solid #e0e0e0;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.product-accordions-section .accordion-body {
    padding: 20px;
    background: #fff;
}

.product-accordions-section .bordered-box {
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin-bottom: 15px;
    background: #f9f9f9;
}

.product-accordions-section .bordered-box.border-0 {
    border: none;
    background: transparent;
}

.product-accordions-section .sub-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.product-accordions-section .shipping-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-accordions-section .shipping-info li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.product-accordions-section .shipping-info li:last-child {
    border-bottom: none;
}

.product-accordions-section .shipping-info li span {
    font-weight: 600;
    color: #555;
}

.product-accordions-section .dashed-border-box {
    padding: 15px;
    border: 2px dashed #e0e0e0;
    border-radius: 6px;
    text-align: center;
}

.product-accordions-section .payment-img {
    max-width: 100%;
    height: auto;
    margin-top: 10px;
}

.product-accordions-section .delivery-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-accordions-section .delivery-details li {
    padding: 10px 0;
    font-size: 14px;
    color: #666;
}

.product-accordions-section .delivery-details li i {
    color: #EC8951;
    margin-right: 8px;
    font-size: 18px;
}

/* Quantity Selector Modern */
.quantity-selector-modern {
    display: flex;
    align-items: center;
    border: 2px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    width: fit-content;
    margin-bottom: 20px;
}

.quantity-btn {
    width: 45px;
    height: 45px;
    border: none;
    background: #f5f5f5;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: #EC8951;
    color: #fff;
}

.quantity-input {
    width: 60px;
    height: 45px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    outline: none;
}

/* Action Buttons Modern */
.action-buttons-modern {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
    width: 100%;
}

.btn-add-to-cart-bengali {
    background: linear-gradient(135deg, #FF6B35 0%, #F25C3D 100%);
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(242, 92, 61, 0.3);
    width: 100%;
    display: block;
    text-align: center;
}

.btn-add-to-cart-bengali:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(242, 92, 61, 0.4);
}

.btn-order-now-bengali {
    background: linear-gradient(135deg, #FF2B7A 0%, #E91E63 100%);
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
    width: 100%;
}

.btn-order-now-bengali:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(233, 30, 99, 0.4);
}

.btn-whatsapp-call {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.btn-whatsapp-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-call i {
    font-size: 20px;
}

/* Delivery Info Box */
.delivery-info-box {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    border: 2px solid #90CAF9;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.delivery-info-box .delivery-icon {
    font-size: 36px;
    color: #1976D2;
    flex-shrink: 0;
}

.delivery-info-text {
    flex: 1;
}

.delivery-info-text p {
    margin: 0 0 4px 0;
    color: #1565C0;
    font-weight: 600;
    font-size: 13px;
    line-height: 1.4;
}

.delivery-info-text p:last-child {
    margin-bottom: 0;
}

/* Wishlist and Compare Links */
.buy-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-bottom: 15px;
}

.buy-box a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    color: #555;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.buy-box a:hover {
    border-color: #EC8951;
    background: #fff5f0;
    color: #EC8951;
}

.buy-box a i {
    font-size: 18px;
}

/* Stock Progress Bar */
.left-progressbar {
    margin-bottom: 15px;
    width: 100%;
}

.left-progressbar h6 {
    text-align: center;
    font-size: 13px;
    margin-bottom: 8px;
}

.left-progressbar .progress {
    height: 8px;
    border-radius: 10px;
    background: #e0e0e0;
}

.left-progressbar .progress-bar {
    border-radius: 10px;
}

/* Product Facts Section */
.product-facts {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
}

.product-facts h5 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.product-facts h6 {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    margin-top: 15px;
    margin-bottom: 8px;
}

.product-facts .rich-content {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
}

/* Customer Reviews Accordion */
#reviewsAccordion .accordion-button {
    background: #fff;
    color: #333;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 15px;
}

#reviewsAccordion .accordion-button:not(.collapsed) {
    background: #f8f9fa;
    color: #EC8951;
}

#reviewsAccordion .accordion-body {
    padding: 15px;
}

/* Responsive */
@media (max-width: 991px) {
    .product-title-modern {
        font-size: 24px;
    }
    
    .price-sale {
        font-size: 28px;
    }
    
    .product-discount-badge {
        width: 60px;
        height: 60px;
    }
    
    .product-discount-badge .discount-percent {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .product-title-modern {
        font-size: 20px;
    }
    
    .price-sale {
        font-size: 24px;
    }
    
    .product-discount-badge {
        width: 55px;
        height: 55px;
        top: 10px;
        right: 10px;
    }
    
    .product-discount-badge .discount-percent {
        font-size: 14px;
    }
    
    .product-discount-badge .discount-label {
        font-size: 10px;
    }
    
    .action-buttons-modern {
        gap: 10px;
    }
    
    .btn-add-to-cart-bengali,
    .btn-order-now-bengali,
    .btn-whatsapp-call {
        padding: 12px 24px;
        font-size: 15px;
    }
}
