/* Product Detail Page Styles */

/* Page Header Styles for Detail Page */
.page-title {
    color: #ffffff !important;
}

.product-detail-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.product-image-container {
    position: relative;
    margin-bottom: 30px;
}

.product-main-image {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.product-main-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.product-main-image:hover img {
    transform: scale(1.05);
}

.product-placeholder-large {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 20px;
    padding: 80px 30px;
    text-align: center;
    color: #94a3b8;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.product-placeholder-large i {
    font-size: 6rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.product-placeholder-large p {
    font-size: 1.2rem;
    margin: 0;
}

.product-info {
    padding: 20px 0;
}

.product-category-detail {
    margin-bottom: 20px;
}

.category-badge-large {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title-detail {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 30px;
    line-height: 1.2;
}

.product-description-detail {
    margin-bottom: 30px;
}

.product-description-detail h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-description-detail h3::before {
    content: '';
    width: 4px;
    height: 25px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 2px;
}

.product-description-detail p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #64748b;
    margin: 0;
}

.product-price-detail {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 2px solid #bbf7d0;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: center;
}

.price-label-detail {
    display: block;
    font-size: 1rem;
    color: #059669;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value-detail {
    font-size: 2.2rem;
    font-weight: 700;
    color: #047857;
    background: linear-gradient(135deg, #059669, #047857);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-actions-detail {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 30px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary-large:hover::before {
    left: 100%;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.3);
    color: #ffffff;
}

.btn-secondary-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 30px;
    background: #ffffff;
    color: #64748b;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
}

.btn-secondary-large:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #374151;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-meta {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #64748b;
}

.meta-item:last-child {
    margin-bottom: 0;
}

.meta-item i {
    color: #3b82f6;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.related-products-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-not-found {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.not-found-content {
    max-width: 500px;
    margin: 0 auto;
}

.not-found-icon {
    margin-bottom: 30px;
}

.not-found-icon i {
    font-size: 5rem;
    color: #f59e0b;
    opacity: 0.8;
}

.not-found-content h2 {
    font-size: 2.2rem;
    color: #374151;
    margin-bottom: 20px;
    font-weight: 600;
}

.not-found-content p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-detail-section {
        padding: 60px 0;
    }
    
    .product-title-detail {
        font-size: 2rem;
    }
    
    .product-actions-detail {
        flex-direction: column;
    }
    
    .btn-primary-large,
    .btn-secondary-large {
        justify-content: center;
        width: 100%;
    }
    
    .related-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-main-image {
        padding: 20px;
    }
    
    .product-placeholder-large {
        padding: 60px 20px;
    }
    
    .product-placeholder-large i {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    .product-title-detail {
        font-size: 1.8rem;
    }
    
    .price-value-detail {
        font-size: 1.8rem;
    }
    
    .btn-primary-large,
    .btn-secondary-large {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .product-meta {
        padding: 20px;
    }
    
    .meta-item {
        font-size: 0.95rem;
    }
} 