/* Product Details Page Styling */
.product-card {
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: white;
    max-width: 800px;
    margin: 0 auto;
}

.product-card .card-body {
    padding: 3rem;
}

.product-title {
    font-family: 'Playfair Display', serif;
    color: #d9534f;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.product-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.product-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 2rem;
    text-align: justify;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.product-tags h4 {
    width: auto;
    color: #d9534f;
    font-family: 'Playfair Display', serif;
    margin: 0;
    margin-right: 1rem;
}

.product-tags .tag {
    background-color: #fff;
    color: #d9534f;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid #d9534f;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.product-tags .tag:hover {
    background-color: #d9534f;
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-card .card-body {
        padding: 2rem;
    }

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

    .product-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .product-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .product-card .card-body {
        padding: 1.5rem;
    }

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

    .product-description {
        font-size: 1rem;
    }
} 