/* Product Details Page Styles */
#product-details-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 5%;
}

.product-details-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.product-details-image-container {
    width: 100%;
}

.product-details-image {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 10px;
}

.product-details-info h1 {
    color: #36201a;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.product-details-price {
    color: #36201a;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.product-details-category {
    color: #666;
    margin-bottom: 1.5rem;
}

.product-details-category span {
    color: #36201a;
    font-weight: bold;
    text-transform: capitalize;
}

.product-details-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.add-to-cart-btn {
    padding: 1rem 2rem;
    background-color: #36201a;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-bottom: 1rem;
    display: block;
    width: 100%;
}

.add-to-cart-btn:hover {
    background-color: #8b766a;
}

.back-btn {
    display: inline-block;
    color: #36201a;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 2px solid #36201a;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background-color: #36201a;
    color: white;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background-color: #f5f5f5;
    border: 2px solid #ddd;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    color: #666;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: #36201a;
    color: white;
    border-color: #36201a;
}

.filter-btn.active {
    background-color: #36201a;
    color: white;
    border-color: #36201a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-details-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-details-info h1 {
        font-size: 2rem;
    }

    .product-details-price {
        font-size: 1.5rem;
    }

    .filter-buttons {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    /* About and Contact page responsive styling */
    section[style*="height: 50vh"] {
        margin-top: 70px !important;
        height: 40vh !important;
        padding: 2rem !important;
    }

    section[style*="height: 50vh"] h1 {
        font-size: 2.5rem !important;
    }

    section[style*="height: 50vh"] p {
        font-size: 1.1rem !important;
    }

    section[style*="height: 200px"] {
        height: 150px !important;
    }

    section[style*="height: 200px"] h2 {
        font-size: 1.8rem !important;
        padding: 0 1rem;
    }

    /* Contact page grid responsive */
    div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}