/* Parana Product Actions Widget */

.parana-product-actions {
    direction: rtl;
    width: 100%;
    font-family: 'Tajawal', 'Inter', 'Roboto', sans-serif;
}

/* Section Title */
.parana-action-label {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 12px;
    color: #333;
    display: block;
}

/* --- Size Variations --- */
.parana-size-variations {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.parana-size-item {
    padding: 10px 20px;
    border: 1px solid #EDEDED;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #666;
    background: #fff;
    min-width: 80px;
    text-align: center;
}

.parana-size-item:hover {
    border-color: #655EAB;
    color: #655EAB;
}

.parana-size-item.active {
    background: #655EAB;
    color: #fff;
    border-color: #655EAB;
    box-shadow: 0 4px 15px rgba(101, 94, 171, 0.3);
}

/* --- Price --- */
.parana-product-action-price {
    font-size: 28px;
    font-weight: 800;
    color: #655EAB;
    margin-bottom: 25px;
    text-align: right;
}

/* --- Controls Row (Qty & Wishlist) --- */
.parana-controls-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

/* Quantity Selector */
.parana-qty-selector {
    display: flex !important;
    align-items: center !important;
    background: #F7F7FD !important;
    padding: 0 3.71px !important;
    border-radius: 14.83px !important;
    width: 126px !important;
    height: 40px !important;
    justify-content: space-between !important;
    opacity: 1 !important;
    box-sizing: border-box !important;
}

.parana-qty-btn {
    width: 33px;
    height: 33px;
    border-radius: 12.98px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #fff;
    border: none;
    color: #333;
    font-weight: bold;
    transition: 0.2s;
    opacity: 1;
    box-shadow: 0px 0.93px 1.85px -0.93px rgba(0, 0, 0, 0.1),
                0px 0.93px 2.78px 0px rgba(0, 0, 0, 0.1);
}

.parana-qty-btn:hover {
    background: #f0f0f0;
}

.parana-qty-btn.plus {
    background: #655EAB;
    color: #fff;
}

.parana-qty-input {
    width: 29px !important;
    height: 25px !important;
    text-align: center !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    font-family: 'Kanit', sans-serif !important;
    font-weight: 700 !important;
    font-size: 17.55px !important;
    line-height: normal !important;
    color: #131316 !important;
    pointer-events: none !important;
    opacity: 1 !important;
    min-height: auto !important;
}

/* --- Buttons --- */
.parana-buttons-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.parana-main-action-row {
    display: flex !important;
    gap: 15px !important;
    align-items: center !important;
    width: 100% !important;
    clear: both !important;
}

.parana-add-to-cart-btn {
    flex: 1;
    background: #8E89C7;
    background: linear-gradient(135deg, #8E89C7 0%, #655EAB 100%);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(101, 94, 171, 0.2);
    width: auto;
    position: relative;
    z-index: 1;
}

.parana-add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(101, 94, 171, 0.3);
}

.parana-product-action-wishlist-btn {
    width: 60px;
    height: 56px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #E0E0E0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    color: #655EAB;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.parana-product-action-wishlist-btn i,
.parana-product-action-wishlist-btn svg {
    font-size: 22px;
    width: 22px;
    height: 22px;
    color: #655EAB !important;
    display: block;
}

.parana-product-action-wishlist-btn:hover {
    background: #F7F7FD;
    border-color: #655EAB;
}

.parana-buy-now-btn {
    width: 100%;
    background: #fff;
    color: #655EAB;
    border: 2px solid #655EAB;
    padding: 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.parana-buy-now-btn:hover {
    background: #6966b0;
    border: 1px solid #655EAB;
}

.parana-btn-icon {
    font-size: 20px;
}

/* RTL icon adjustment */
.parana-buy-now-btn i.fa-arrow-left, 
.parana-buy-now-btn svg {
    margin-right: 10px;
}
