/* Price List - Premium Luxury Style */
.price-list-container {
    width: 100%;
    margin: 0;
    background: #ffffff;
    padding: 3rem 10% 4rem;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    box-shadow: none;
}

.price-list-container::before {
    content: none;
}

.price-list-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2C2C2C;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 1px;
}

.price-category {
    margin-bottom: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 2px;
    border-left: 3px solid #C9A961;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-category:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.1);
    transform: translateX(5px);
}

.price-category:last-child {
    margin-bottom: 0;
}

.price-category h4 {
    font-size: 2rem;
    color: #A68B4A;
    margin-bottom: 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0.75rem;
}

.price-category h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(135deg, #E8D5A8 0%, #C9A961 100%);
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.price-item {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(201, 169, 97, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    cursor: pointer;
}

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

.price-item:hover {
    padding-left: 0.5rem;
}

.price-item:hover .price-name {
    color: #A68B4A;
}

.price-name {
    font-weight: 400;
    font-size: 1.2rem;
    color: #2C2C2C;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 0 1 auto;
}

.price-dots {
    flex: 1 1 auto;
    min-width: 40px;
    transform: translateY(-2px);
}

.price-value {
    font-weight: 600;
    color: #C9A961;
    font-size: 1.4rem;
    white-space: nowrap;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.5px;
    min-width: 140px;
    text-align: right;
}

/* Tablet responsive */
@media (max-width: 1024px) {
    .price-list-container {
        padding: 3rem 5% 4rem;
    }
}

/* Mobile responsive */
@media (max-width: 640px) {
    .price-list-container {
        padding: 2.5rem 1.25rem;
    }

    .price-list-title {
        font-size: 2.4rem;
    }

    .price-category {
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
    }

    .price-category h4 {
        font-size: 1.6rem;
    }

    .price-item {
        gap: 0.75rem;
        align-items: flex-end;
    }

    .price-name {
        font-size: 1.1rem;
    }

    .price-value {
        font-size: 1.25rem;
        min-width: 110px;
    }
}