/* Product Detail Page - Beautiful Sophia Pro Inspired Design */

/* Product Info Card */
.product-info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
}

@media (max-width: 991px) {
    .product-info-card {
        padding: 2rem;
        margin-top: 2rem;
    }
}

/* Product Badge Detail */
.product-badge-detail {
    display: inline-block;
}

.badge-tag {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

/* Product Title */
.product-detail-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

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

/* Product Quantity Detail */
.product-quantity-detail {
    display: inline-flex;
    align-items: center;
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

.product-quantity-detail i {
    color: #6a994e;
    font-size: 1rem;
}

/* Product Price Detail */
.product-price-detail {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
}

.price-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #6a994e;
    letter-spacing: -1px;
}

.stock-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.stock-badge.in-stock {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.stock-badge.out-of-stock {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* Product Description */
.product-description-detail {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.product-description-detail p {
    margin-bottom: 0;
}

/* Product Benefits */
.product-benefits-detail {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #6a994e;
    margin-bottom: 2rem;
}

.benefits-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.benefits-list-detail {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list-detail li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: #555;
    display: flex;
    align-items: flex-start;
}

.benefits-list-detail li i {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Usage Section */
.product-usage-detail {
    margin-bottom: 2rem;
    padding: 1.25rem;
    background: #f8f9fa;
    border-left: 3px solid #6a994e;
    border-radius: 8px;
}

.usage-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
}

.usage-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Product Disclaimer */
.product-disclaimer {
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.product-disclaimer small {
    font-size: 0.8rem;
    line-height: 1.4;
    display: block;
}

/* Product Variants */
.product-variants {
    margin-bottom: 2rem;
}

.variant-label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
    display: block;
}

.variant-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.variant-option {
    position: relative;
}

.variant-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.variant-option label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.variant-option input[type="radio"]:checked + label {
    border-color: #6a994e;
    background: #f8fdf5;
    box-shadow: 0 4px 12px rgba(106, 153, 78, 0.15);
}

.variant-option label:hover {
    border-color: #a7c957;
    background: #fafdfb;
}

.variant-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.variant-name {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.variant-quantity {
    font-size: 0.9rem;
    color: #666;
}

.variant-savings {
    display: inline-block;
    background: #6a994e;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.25rem;
    width: fit-content;
}

.variant-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6a994e;
}

/* Quantity Selector */
.quantity-selector label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}

.quantity-selector .input-group {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.quantity-selector .btn {
    border: none;
    background: #f0f0f0;
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.quantity-selector .btn:hover {
    background: #6a994e;
    color: white;
}

.quantity-selector .form-control {
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    background: white;
}

/* Product Add to Cart Button */
.product-add-to-cart-btn {
    background: linear-gradient(135deg, #6a994e 0%, #a7c957 100%);
    border: none;
    color: white;
    padding: 20px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(106, 153, 78, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-add-to-cart-btn:hover {
    background: linear-gradient(135deg, #5a8a3e 0%, #97b947 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(106, 153, 78, 0.5);
    color: white;
}

.product-add-to-cart-btn:active {
    transform: translateY(-1px);
}

.product-add-to-cart-btn i {
    font-size: 1.2rem;
}

/* Delivery Info - Low Profile */
.product-delivery-info {
    background: transparent;
    padding: 0.75rem 0;
    border-top: 1px solid #e9ecef;
    margin-top: 1.5rem;
}

.delivery-heading {
    font-size: 0.85rem;
    font-weight: 600;
    color: #999;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shipping-options {
    margin-bottom: 0.5rem;
}

.shipping-option {
    padding: 0.25rem 0;
}

.shipping-option small {
    color: #999;
    font-size: 0.8rem;
    line-height: 1.4;
}

.uk-only-note {
    margin-top: 0.5rem;
}

.uk-only-note small {
    color: #bbb;
    font-style: italic;
    font-size: 0.75rem;
}

/* Product Main Image Enhancement */
.product-main-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
}

.product-main-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

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

/* Thumbnail Enhancement */
.thumbnail-item {
    border: 3px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.thumbnail-item:hover {
    border-color: #6a994e;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(106, 153, 78, 0.3);
}

.thumbnail-item.active {
    border-color: #6a994e;
    box-shadow: 0 6px 18px rgba(106, 153, 78, 0.4);
}

.product-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.thumbnail-item:hover .product-thumbnail {
    transform: scale(1.05);
}

/* Product SKU */
.product-sku {
    font-size: 0.9rem;
    color: #999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Product Detail Wrapper Enhancement */
.product-detail-wrapper {
    background: transparent;
    padding: 0;
    box-shadow: none;
}

/* Breadcrumb Styling */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}
