:root {
    --gradient-primary: linear-gradient(135deg, #e24f28 0%, #c2654c 100%);
    --cinnabar: #e24f28;
    --mandys-pink: #c2654c;
    --fuzzy-wuzzy-brown: #db9676;
    --flame-pea: #d65b39;
    --hit-gray: #a2a9b0;
    --porcelain: #f7fafc;
}

.price-list {
 
    border-radius: 12px;
}

.price-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 0;
    width: 100%;
}

.price-category {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    background: #f7fafc;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
}

.price-category .text-column {
    padding: 0.5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.price-category h3.category-header {
    margin: 0.5rem 0 0.5rem 0.5rem;
    padding: 0.5rem 0;
    color: white;
    cursor: pointer;
    font-size: 1.5rem;
    width: 100%;
    text-align: left;
    transition: color 0.3s ease;
}

.price-category h3.category-header:hover {
    color: #ffd;
}

.price-category ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0.5rem 0.5rem;
    width: 50%;
    max-height: 0;
    overflow: visible;
    opacity: 0;
    transform: translateY(-20px);
    transition: max-height 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.price-category.active ul {
    max-height: 1000px;
    opacity: 1;
    transform: translateY(0);
}

.price-category li {
    display: flex;
    align-items: center;
    padding: 0.6rem 0.8rem;
    color: #333;
    font-size: 0.95rem;
    width: 90%;
    margin-left: 0.5rem;
    border-bottom: 1px solid #f0f0f0;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.price-category.active li {
    opacity: 1;
    transform: translateX(0);
}

.price-category li:nth-child(1) { transition-delay: 0.2s; }
.price-category li:nth-child(2) { transition-delay: 0.3s; }
.price-category li:nth-child(3) { transition-delay: 0.4s; }
.price-category li:nth-child(4) { transition-delay: 0.5s; }
.price-category li:nth-child(5) { transition-delay: 0.6s; }
.price-category li:nth-child(6) { transition-delay: 0.7s; }
.price-category li:nth-child(7) { transition-delay: 0.8s; }
.price-category li:nth-child(8) { transition-delay: 0.9s; }
.price-category li:nth-child(9) { transition-delay: 1.0s; }
.price-category li:nth-child(10) { transition-delay: 1.1s; }
.price-category li:nth-child(11) { transition-delay: 1.2s; }
.price-category li:nth-child(12) { transition-delay: 1.3s; }
.price-category li:nth-child(13) { transition-delay: 1.4s; }

.price-category li:last-child {
    border-bottom: none;
}

.price-category li strong {
    font-weight: 300;
    flex: 1 1 auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 0.5rem;
}

.price-category li span {
    font-weight: 700;
    text-align: right;
    color: var(--cinnabar);
    flex: 0 0 auto;
    min-width: 45px;
    white-space: nowrap;
}

.price-category h3.category-header::after {
    content: '\25BC';
    margin-left: 0.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.price-category.active h3.category-header::after {
    transform: rotate(180deg);
}

.price-category .image-column {
    min-height: 100px;
    position: relative;
    z-index: 0;
}

.price-category:nth-child(1) {
    background: url('pics/jeans-bg.jpg') no-repeat center;
    background-size: cover;
}
.price-category:nth-child(2) {
    background: url('pics/shirts-bg.jpg') no-repeat center;
    background-size: cover;
}
.price-category:nth-child(3) {
    background: url('pics/bridal-bg.jpg') no-repeat center;
    background-size: cover;
}
.price-category:nth-child(4) {
    background: url('pics/skirts-bg.jpg') no-repeat center;
    background-size: cover;
}
.price-category:nth-child(5) {
    background: url('pics/jackets-bg.jpg') no-repeat center;
    background-size: cover;
}
.price-category:nth-child(6) {
    background: url('pics/curtains-bg.jpg') no-repeat center;
    background-size: cover;
}

.price-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 0;
    transition: background 0.5s ease;
}

.price-category.active::before {
    background: rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .price-categories {
        margin: 0;
       
    }
    .price-category {
        grid-template-columns: 1fr;
    }
    .price-category .text-column {
        padding: 0.5rem 0;
        align-items: stretch;
    }
    .price-category h3 {
        font-size: 1.3rem;
        margin: 0.5rem 0 0.5rem 0.5rem;
    }
    .price-category ul {
        width: 50%;
        margin: 0.5rem 0 0.5rem 0.5rem;
        padding: 0;
        background: rgba(255, 255, 255, 0.98);
    }
    .price-category li {
        font-size: 0.9rem;
        padding: 0.6rem 0rem;
        gap: 0.1rem;
        width: 90%;
        margin-left: 0.5rem;
    }
    .price-category li span {
        min-width: 40px;
        flex: 0 0 auto;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .price-category h3 {
        font-size: 1.2rem;
        margin: 0.5rem;
    }
    .price-category ul {
        width: 50%;
        margin: 0.5rem 0 0.5rem 0.5rem;
        padding: 0;
    }
    .price-category li {
        font-size: 0.85rem;
        padding: 0.5rem 0rem;
        gap: 0.1rem;
        width: 90%;
        margin-left: 0.5rem;
    }
    .price-category li span {
        min-width: 35px;
    }
}