/* sanjay Plans css */
.product .plan-details li
{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.product .plan-action-bar
{
    grid-template-columns: 1fr 1fr;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 2rem;
    padding-bottom: 0px;
    align-items: center;
}
.product .plan_buttons .view_product
{
    height: 25px;
    flex-direction: initial;
    justify-content: left; 
    padding-left: 0px;
}
.product .plan_buttons .view_product span
{
    font-style: normal;
    font-weight: 400;
    font-size: 1rem;
    line-height: 22.4px;
    padding-bottom: 0px;
}
.product .plan_buttons .voye-more-info-link:hover {
    opacity: 0.8;
}
.product .plan_buttons .plan-action-price
{
    background: none;
    border: none; 
    color: #2A2A2E;
    line-height: 36px;
    height: auto;
    padding-left: 0px;
    padding-right: 0px;
    justify-content: right;
    display: inline-flex
}

/* sanjay Plans cart css */
.plan-cart-wrapper {
    width: 100% ;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 2rem;
    padding-bottom: 1.5rem;
}
.plan-cart-wrapper button.voye-product-cart-btn 
{
    width: 100%;
    height: 56px;
    background: #fff;
    border: 2px solid #1000F3;
    border-radius: 12px;
    color: #1000F3;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    pointer-events: auto;
}
/* Quantity Mode */
.voye-product-cart-btn.has-quantity {
    justify-content: space-between;
    padding: 0 16px;
}
.voye-product-cart-btn.loading {
    opacity: 0.6;
    pointer-events: none;
}
.voye-product-cart-btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #1000F3;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

/* sanjay Plans cart quanity css */
.qty-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

/* Minus & Plus */
.qty-box .voye-qty-minus,
.qty-box .voye-qty-plus{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 400;
    color: #1000F3;
    cursor: pointer;
    font-style: normal;
    line-height: 32px;
}

/* Quantity number */
.qty-box .voye-qty-number{
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    color: #1000F3;
}


/* Floating Cart Button */

.voye-floating-cart-btn {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #1a00ff;
    color: white;
    padding: 12px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 9999;
    opacity: 0;
}
.voye-floating-cart-btn .cart-flags {
    position: relative;
}
.voye-floating-cart-btn .cart-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.voye-floating-cart-btn .cart-text .cart-title {
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.voye-floating-cart-btn .cart-text .cart-subtitle {
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #fff;
    }
.voye-floating-cart-btn .cart-flags .voye-floating-cart-icon {
    display: flex;
    align-items: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.voye-floating-cart-btn .cart-flags .voye-floating-flag {
  width: 60px;
  height: 60px;
  border-radius: 60px;
  border: 2px solid #fff;
  background: #fff;
  object-fit: cover;
}

.voye-floating-cart-btn .cart-flags .voye-floating-flag:nth-child(2) {
  margin-left: -34px;
}
.voye-floating-cart-btn.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.voye-floating-cart-btn:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 6px 25px rgba(16, 0, 243, 0.4);
}


/* RTL css  start */

.rtl .product .plan_buttons .plan-action-price{
    justify-content: left;
}
.rtl .product .plan_buttons .view_product{
   justify-content: right;
}


/* Responsive */
@media (max-width: 767px) {
.voye-floating-cart-btn
{
    padding: 8px 12px;    
}
 .voye-floating-cart-btn .cart-flags .voye-floating-flag
 {
    width: 40px;
    height: 39px;
    border: 1px solid #fff;
    border-radius: 40px;
 }  
 .voye-floating-cart-btn .cart-text .cart-title
 {
    font-size: 0.875rem; 
 }
 .voye-floating-cart-btn .cart-text .cart-subtitle
 {
    font-size: 0.625rem;
 }

}