/* Product Detail Page Styling */

/* Product Details Right Column */
.product-details {
    padding: 1.8rem;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.07);
    position: relative;
    overflow: hidden;
}

.product-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff445a, #ff8a00);
}

/* Product Title */
.product-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

/* Product Medium */
.product-medium {
    color: #888;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* Artist Info Section */
.artist-info {
    padding: 1.2rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    margin: 1.5rem 0 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.artist-info:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.artist-avatar img {
    border: 3px solid #fff;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.artist-avatar img:hover {
    transform: scale(1.08);
}

.artist-bio {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0.2rem 0.5rem;
    margin-top: 0.5rem;
    border-left: 3px solid #ddd;
}

/* View Profile Button */
.artist-info .btn-outline-secondary {
    border-color: #e0e0e0;
    color: #666;
    font-weight: 500;
    padding: 0.4rem 1.5rem;
    transition: all 0.3s ease;
    border-radius: 20px;
    font-size: 0.85rem;
}

.artist-info .btn-outline-secondary:hover {
    background-color: #f0f0f0;
    border-color: #ccc;
    color: #333;
    transform: translateY(-2px);
}

/* Price Tag */
.product-price {
    margin: 2rem 0;
    position: relative;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.price-tag {
    font-size: 2.3rem;
    font-weight: 700;
    color: #333;
    display: block;
    position: relative;
    padding-left: 1rem;
}

.price-tag::before {
    content: '$';
    font-size: 1.6rem;
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: #666;
}

/* Product Details List */
.product-details-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2.5rem;
}

.product-details-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 1rem;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.4;
}

.product-details-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.3rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ff445a;
    opacity: 0.25;
}

.product-details-list li::after {
    content: "";
    position: absolute;
    left: 3px;
    top: 0.6rem;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #ff445a;
}

/* Add to Cart Button */
.add-to-cart {
    background: linear-gradient(135deg, #ff445a, #ff6a3d);
    border: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.9rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 12px rgba(255, 68, 90, 0.2);
}

.add-to-cart:hover {
    background: linear-gradient(135deg, #e63347, #e85f35);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 51, 71, 0.3);
}

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

/* Delivery Information */
.delivery-info {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    border: 1px solid #eee;
}

.delivery-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
}

.delivery-title i {
    color: #999;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.delivery-info p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Returns Info */
.returns-info {
    background-color: #f0f9f5;
    padding: 1rem 1.2rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    border: 1px solid #e1f2e8;
    transition: all 0.3s ease;
}

.returns-info:hover {
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.1);
}

.returns-icon i {
    color: #28a745;
    font-size: 1.4rem;
}

.returns-info p {
    margin-bottom: 0;
    line-height: 1.4;
}

/* Social Sharing and Wishlist */
.social-share {
    display: flex;
    align-items: center;
}

.share-text {
    font-size: 0.85rem;
    color: #777;
    margin-right: 10px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #555;
    margin-left: 8px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.social-icon:nth-child(2):hover {
    background-color: #3b5998;
    color: white;
}

.social-icon:nth-child(3):hover {
    background-color: #1da1f2;
    color: white;
}

.social-icon:nth-child(4):hover {
    background-color: #e60023;
    color: white;
}

.wishlist-btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.wishlist-btn:hover {
    background-color: #fff0f2;
    border-color: #ff445a;
    color: #ff445a;
}

.wishlist-btn .fa-heart {
    transition: all 0.3s ease;
}

.wishlist-btn:hover .fa-heart {
    transform: scale(1.15);
    color: #ff445a;
}

/* Responsive adjustments for social sharing */
@media (max-width: 768px) {
    .social-share {
        margin-top: 1rem;
    }

    .action-buttons .d-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .wishlist-btn {
        margin-bottom: 1rem;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .product-details {
        padding: 1.2rem;
    }

    .price-tag {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .product-details::before {
        height: 3px;
    }

    .product-title {
        font-size: 1.5rem;
    }

    .price-tag {
        font-size: 1.6rem;
    }

    .add-to-cart {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}