/* ============================================
   PRODUCT DETAIL PAGE STYLES
   ============================================ */

/* Breadcrumb Navigation */
.breadcrumb-section {
    background: #f8f9fa;
    padding: 20px 0;
    margin-top: 70px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb a {
    color: #2C3E50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #E74C3C;
}

.breadcrumb .separator {
    color: #ccc;
}

.breadcrumb .current {
    color: #E74C3C;
    font-weight: 500;
}

/* Product Detail Section */
.product-detail {
    padding: 60px 0;
    background: white;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    margin-bottom: 60px;
    align-items: start;
}

/* Product Image */
.product-detail-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 200px;
}

.product-detail-image img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.product-badge-large {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #E74C3C;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(231, 76, 60, 0.4);
}

/* Product Information */
.product-detail-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C3E50;
    line-height: 1.2;
    margin: 0;
}

.product-short-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Price Section */
.product-price-section {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
}

.product-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C3E50;
    font-family: 'Montserrat', sans-serif;
}

.coming-soon-price {
    font-size: 1.8rem;
    color: #E74C3C;
}

.product-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.product-status.available {
    background: #d4edda;
    color: #155724;
}

.product-status.coming-soon {
    background: #fff3cd;
    color: #856404;
}

/* Action Buttons */
.product-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-amazon {
    background: #FF9900;
    color: #232F3E;
}

.btn-amazon:hover {
    background: #ffb84d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.4);
}

.btn-disabled {
    background: #ccc;
    color: #666;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Product Features */
.product-features-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
}

.product-features-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #2C3E50;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.product-features-list i {
    color: #27AE60;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Share Section */
.product-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-label {
    font-weight: 600;
    color: #2C3E50;
    font-size: 1rem;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.share-btn.facebook {
    background: #1877F2;
}

.share-btn.twitter {
    background: #1DA1F2;
}

.share-btn.pinterest {
    background: #E60023;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Full Description */
.product-full-description {
    margin-top: 40px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 15px;
}

.product-full-description h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #2C3E50;
    margin: 0 0 25px 0;
}

.description-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

/* Related Products Section */
.related-products {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.related-products .section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 50px;
}

.related-products-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}

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

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

.related-product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.related-product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: #f8f9fa;
}

.related-product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.related-product-card:hover .related-product-image img {
    transform: scale(1.05);
}

.related-product-name {
    padding: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2C3E50;
    margin: 0;
    text-align: center;
    line-height: 1.4;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-product-link:hover .related-product-name {
    color: #E74C3C;
}

/* Responsive Design */
@media (max-width: 968px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .product-price-large {
        font-size: 2rem;
    }

    .related-products-carousel {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .breadcrumb-section {
        margin-top: 60px;
    }

    .product-detail {
        padding: 40px 0;
    }

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

    .product-price-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .product-actions {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }

    .product-full-description {
        padding: 25px;
    }

    .related-products-carousel {
        grid-template-columns: repeat(2, 1fr);
    }

    .related-product-image {
        height: 180px;
    }
}

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

    .product-price-large {
        font-size: 1.75rem;
    }

    .related-products-carousel {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}
