/* Mobile Price Accordion */
.price-mobile-accordion {
    display: none;
    max-width: 100%;
    margin-top: 20px;
}

.pa-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.pa-header {
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
    font-weight: 700;
    color: #111;
    font-size: 18px;
    transition: background 0.3s;
}

.pa-header:hover {
    background: #f9f9f9;
}

.pa-label {
    background: #ff7b00;
    color: #fff;
    font-size: 12px;
    padding: 2px 10px;
    border-radius: 20px;
    margin-left: 10px;
    font-weight: 600;
}

.pa-label2 {
    background: #5d43d1;
    color: #fff;
    font-size: 12px;
    padding: 2px 10px;
    border-radius: 20px;
    margin-left: 10px;
    font-weight: 600;
}

.pa-icon {
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.3s;
}

.pa-icon::before,
.pa-icon::after {
    content: '';
    position: absolute;
    background: #333;
    transition: background 0.3s;
}

.pa-icon::before {
    width: 2px;
    height: 12px;
    left: 9px;
    top: 4px;
}

.pa-icon::after {
    width: 12px;
    height: 2px;
    left: 4px;
    top: 9px;
}

.pa-item.active .pa-icon {
    transform: rotate(45deg);
}

.pa-content {
    display: none;
    padding: 0 20px 25px;
    border-top: 1px solid #f0f0f0;
    text-align: left;
}

.pa-item.active .pa-content {
    display: block;
}

.pa-price-wrap {
    margin: 20px 0;
    text-align: center;
}

.pa-old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 16px;
    margin-right: 10px;
}

.pa-new-price {
    color: #d32f2f;
    font-size: 28px;
    font-weight: 700;
}

.pa-buy-btn {
    display: block;
    background: #3065af;
    color: #fff;
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 20px;
    transition: background 0.3s;
}

.pa-buy-btn:hover {
    background: #b71c1c;
}

.pa-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pa-features li {
    padding: 8px 0;
    font-size: 14px;
    color: #444;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: flex-start;
}

.pa-features li::before {
    content: '✔';
    color: #2e7d32;
    margin-right: 10px;
    font-weight: bold;
}

.pa-features li:last-child {
    border-bottom: none;
}

/* Responsive Switching */
@media (max-width: 768px) {
    .prc-container {
        display: none !important;
    }

    .price-mobile-accordion {
        display: block;
    }
}