/* Decor Elements Styles */
.decor-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.decor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.decor-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.decor-card .no-image {
    height: 200px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

.decor-category {
    font-size: 0.8rem;
    color: #e67e22;
    font-weight: 600;
    text-transform: uppercase;
}

.decor-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.decor-material {
    font-size: 0.9rem;
    color: #6c757d;
}

.decor-price {
    font-weight: 700;
    color: #2c3e50;
}

/* Detail Page Styles */
.decor-main-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.decor-gallery .img-thumbnail {
    cursor: pointer;
    transition: all 0.3s ease;
    height: 80px;
    object-fit: cover;
}

.decor-gallery .img-thumbnail:hover {
    border-color: #e67e22;
    transform: scale(1.05);
}

.decor-info {
    padding: 20px;
}

.decor-title {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.decor-price-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.decor-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e67e22;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.spec-item i {
    color: #e67e22;
    width: 20px;
}

.decor-actions {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

/* Categories Navigation */
.decor-categories .nav-pills .nav-link {
    color: #495057;
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
}

.decor-categories .nav-pills .nav-link.active,
.decor-categories .nav-pills .show > .nav-link {
    background: #e67e22;
    color: white;
}

.decor-categories .nav-pills .nav-link:hover:not(.active) {
    background: #f8f9fa;
    color: #e67e22;
}

/* Responsive */
@media (max-width: 768px) {
    .decor-price-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .decor-actions {
        flex-direction: column;
        gap: 1rem;
    }

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

    .decor-navigation {
        flex-direction: column;
        gap: 1rem;
    }

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