/* ============================================
   PRODUCT.CSS - COMBO LIST & COMBO DETAIL
   ============================================ */

/* === COMBO LIST PAGE === */
.combo-list {
    padding: 60px 0;
    background-color: var(--bg-body);
}

.combo-header {
    text-align: center;
    margin-bottom: 50px;
}

.combo-header h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.combo-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.combo-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Combo Card */
.combo-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.combo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(232, 93, 143, 0.15);
}

/* Combo Collage */
.combo-collage {
    background: linear-gradient(135deg, var(--bg-light), var(--bg-white));
    padding: 12px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.combo-collage-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.combo-collage-row:last-child {
    margin-bottom: 0;
}

.combo-collage-row > div {
    flex: 1;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 12px;
    background: var(--bg-secondary);
    position: relative;
}

.combo-collage-row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.combo-card:hover .combo-collage-row img {
    transform: scale(1.05);
}

/* Combo Card Body */
.combo-card .card-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.combo-card .card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.4;
}

.combo-card .short_description {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.combo-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.combo-price span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: normal;
}

/* === COMBO DETAIL PAGE === */
.combo-detail {
    padding: 60px 0;
    background-color: var(--bg-body);
}

.combo-detail-container {
    background: var(--bg-white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

/* Combo Gallery */
.combo-gallery {
    padding: 30px;
    background: linear-gradient(135deg, var(--bg-light), var(--bg-white));
    height: 100%;
}

.combo-collage-large {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 15px;
    box-shadow: var(--shadow-sm);
}

.combo-collage-large .combo-collage-row {
    gap: 10px;
    margin-bottom: 10px;
}

.combo-collage-large .combo-collage-row > div {
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.combo-collage-large img {
    transition: transform 0.5s ease;
}

.combo-collage-large img:hover {
    transform: scale(1.08);
}

/* Combo Info */
.combo-info {
    padding: 40px;
    height: 100%;
}

.combo-info h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.combo-info h1 i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.combo-info .combo-short-desc {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Combo Meta */
.combo-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 15px 0;
    margin-bottom: 20px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.combo-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.combo-meta-item i {
    color: var(--secondary-color);
    width: 18px;
}

/* Combo Price Box */
.combo-price-box {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
    text-align: center;
}

.combo-price-box .price-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.combo-price-box .price-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.combo-price-box .price-value span {
    font-size: 1rem;
    font-weight: normal;
}

/* Combo Products List */
.combo-products-list {
    margin-bottom: 25px;
}

.combo-products-list h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.combo-products-list h5 i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.combo-products-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.combo-products-container.two-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.combo-product-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.combo-product-item:hover {
    background: var(--primary-light);
    transform: translateX(5px);
}

.combo-product-item .num {
    width: 28px;
    height: 28px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.combo-product-item .name {
    flex: 1;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Combo Action Buttons */
.combo-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.combo-actions .btn {
    flex: 1;
    padding: 12px;
    font-weight: 600;
}

/* Combo Description */
.combo-description {
    padding: 40px;
    border-top: 1px solid var(--border-color);
}

.combo-description h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.combo-description h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
}

.combo-description-content {
    color: var(--text-dark);
    line-height: 1.8;
}

.combo-description-content p {
    margin-bottom: 15px;
}

.combo-description-content img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 20px 0;
}

/* Combo Products Gallery */
.combo-products-gallery {
    padding: 0 40px 40px;
}

.combo-products-gallery h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.combo-products-gallery h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
}

.product-gallery-item {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

.product-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.product-gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-gallery-item:hover img {
    transform: scale(1.05);
}

.product-gallery-item .product-name {
    padding: 15px;
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* === RESPONSIVE COMBO === */
@media (max-width: 992px) {
    .combo-list {
        padding: 50px 0;
    }
    
    .combo-info {
        padding: 30px;
    }
    
    .combo-description {
        padding: 30px;
    }
    
    .combo-products-gallery {
        padding: 0 30px 30px;
    }
}

@media (max-width: 768px) {
    .combo-header h1 {
        font-size: 1.8rem;
    }
    
    .combo-card .card-body {
        padding: 20px;
    }
    
    .combo-card .card-title {
        font-size: 1rem;
    }
    
    .combo-gallery {
        padding: 20px;
    }
    
    .combo-info {
        padding: 25px;
    }
    
    .combo-info h1 {
        font-size: 1.4rem;
    }
    
    .combo-meta {
        gap: 12px;
    }
    
    .combo-meta-item {
        font-size: 0.75rem;
    }
    
    .combo-price-box .price-value {
        font-size: 1.5rem;
    }
    
    .combo-products-container.two-cols {
        grid-template-columns: 1fr;
    }
    
    .combo-actions {
        flex-direction: column;
    }
    
    .combo-description {
        padding: 25px;
    }
    
    .combo-description h3 {
        font-size: 1.3rem;
    }
    
    .combo-products-gallery {
        padding: 0 25px 25px;
    }
    
    .product-gallery-item img {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .combo-list {
        padding: 40px 0;
    }
    
    .combo-header h1 {
        font-size: 1.5rem;
    }
    
    .combo-header p {
        font-size: 0.9rem;
    }
    
    .combo-collage-row {
        gap: 5px;
        margin-bottom: 5px;
    }
    
    .combo-collage {
        padding: 8px;
    }
    
    .combo-card .card-body {
        padding: 15px;
    }
    
    .combo-card .card-title {
        font-size: 0.95rem;
    }
    
    .combo-price {
        font-size: 0.95rem;
    }
    
    .combo-info {
        padding: 20px;
    }
    
    .combo-info h1 {
        font-size: 1.2rem;
    }
    
    .combo-info .combo-short-desc {
        font-size: 0.85rem;
    }
    
    .combo-price-box {
        padding: 15px;
    }
    
    .combo-price-box .price-value {
        font-size: 1.3rem;
    }
    
    .combo-description {
        padding: 20px;
    }
    
    .combo-products-gallery {
        padding: 0 20px 20px;
    }
    
    .product-gallery-item img {
        height: 150px;
    }
    
    .product-gallery-item .product-name {
        font-size: 0.8rem;
        padding: 10px;
    }
}