:root {
    --voye-blue: #1000F3; 
    --voye-white: #ffffff;
    --voye-text-light:#696984;
    --voye-text-black:#2A2A2E;
    --voye-border-color:rgba(16, 0, 243, 0.10);
}

.woocommerce-cart .woocommerce-notices-wrapper
{
    display: none;
}
.woocommerce-cart .section-mobile-apps
{
   display: none; 
}

.voye-cart-item-country .voye-item-country
{
	font-size: 1.25rem;
    font-weight: 600;
    color: var(--voye-text-black);
    line-height: 30px;;
}
.voye-cart-item-country .voye-item-meta
{
    color: var(--voye-text-light);
    font-size: 1rem; 
    line-height: 24px;
    font-weight: 400;
}
.voye-cart-item-header .voye-cart-header-left 
{
    display: flex;
    gap: 12px;
    align-items: center;   
}

/* ---------- BOTTOM AREA ---------- */
.voye-cart-item-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-top: 0.188rem;
    margin-bottom: 0.188rem; */
}

.voye-cart-price-area {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.voye-cart-price-area .voye-cart-price-discount
{
    display: flex;
    align-items: center;
    gap: 10px;
}
.voye-cart-price-area .voye-sale-budge
{
    display: flex;
    gap: 9px; 
    align-items: center;
}
.voye-sale-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--voye-text-black);
    line-height: normal;
}

.voye-regular-price {
    font-size: 1rem;
    color: var(--voye-text-light);
    text-decoration: line-through;
    font-style: italic;
    font-weight: 400;
    line-height: normal;
}

.voye-badge {
    font-size: 0.75rem;
    color: var(--voye-white);
    background-color: #0F993E;
    padding: 2px 6px;
    border-radius: 4px;
    height: 22px;
    justify-content: center;
    align-items: center;
    display: flex;
}

/* ---------- Offer Text ---------- */
.voye-cart-offer {
    font-size: 0.75rem;
    color: var(--voye-blue);
    text-decoration: none;
    background: rgba(16, 0, 243, 0.08);
    padding: 2px 6px;
    border-radius: 4px;
    height: 22px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.voye-qty-box {
    display: flex;
    align-items: center;
    border: 1px solid var(--voye-blue);
    border-radius: 12px;
    padding: 6px 10px;
    gap: 14px;
}

.voye-qty-btn {
    /* width: 26px;
    height: 26px;
    font-size: 20px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #4a3aff;
    line-height: 1; */
}

.voye-qty-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--voye-blue);
}


.woocommerce-cart .voye-bg-shape
{

    background-color: #F7F7F7; 
}

.voye-cart-container{
    /* max-width: 1400px;
    margin: 0 auto; */
    padding: 3.75rem 0px;
}

.voye-cart-wrapper {
    display: grid;
    grid-template-columns: 1fr 650px;
    /* gap: 40px; */
    align-items: start;
}

/* Cart Items Section */
.voye-cart-left {
    background: var(--voye-white);
}

.voye-cart-title {
    font-size: 1.5rem;
    line-height: 36px;;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--voye-text-black);
}
.voye-cart-items
{
    gap: 1rem;
    display: grid;
}
.voye-cart-item {
    background: var(--voye-white);
    border: 1px solid rgba(16, 0, 243, 0.10);
    border-radius: 20px;
    padding: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;   
}

.voye-cart-item:hover {
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); */
}

.voye-cart-item-header {
    display: flex; 
    align-items: center;
    margin-bottom: 1rem;
    /* gap: 16px; */
    cursor: pointer;
    background: var(--voye-white);
    justify-content: space-between;
}
.voye-cart-item-header .voye-cart-header 
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width:100%;
}
.voye-category-flag {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50px;
    /* border: 1px solid #e5e7eb; */
}

.voye-cart-item-title {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.voye-discount-badge {
    font-size: 12px;
    color: #10b981;
    font-weight: 500;
}

.voye-item-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--voye-text-black);
}

.voye-toggle-details {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--voye-text-light);
    transition: transform 0.3s ease;
}

.voye-cart-item.expanded .voye-toggle-details {
    transform: rotate(180deg);
}

.voye-cart-item-details {
    /* max-height: 0;
    overflow: hidden; */
    transition: max-height 0.3s ease, padding 0.3s ease;
    /* padding: 0 20px; */
    /* background: #f9fafb; */
}

.voye-cart-item .voye-cart-item-details {
    /* max-height: 600px;
    padding: 0px;  */
    border-top: 1px solid #e5e7eb; 
    padding-top: 1rem;
}

.voye-item-destination {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.voye-destination-name {
    font-size: 18px;
    font-weight: 600;
    color: #var(--voye-text-black);
}

.voye-quantity-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0px;
}
.voye-quantity-controls .voye-cart-qty
{
    display:flex;
    border: 1px solid var(--voye-blue);
    border-radius: 8px;
    height: 40px;
    padding: 10px 8px;
   justify-content: center;
   align-items: center;
}
/* Left button ke right side line */
.voye-quantity-controls .voye-qty-minus {
    border-right: 1px solid #E5E5E5;   /* light grey line */
}

/* Right button ke left side line */
.voye-quantity-controls .voye-qty-plus {
    border-left: 1px solid #E5E5E5;
}
.voye-quantity-controls .voye-qty-input::-webkit-inner-spin-button,
.voye-quantity-controls .voye-qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.voye-qty-btn {
    width: 40px;
    height: 18px;
    border: none;
    /* border-radius: 8px; */
    background: var(--voye-white);
    color: var(--voye-blue);
    /* font-size: 1.25rem; */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}




.voye-qty-btn:hover {
    /* background: #f3f4f6;
    border-color: #d1d5db; */
}

.voye-qty-btn:active {
    transform: scale(0.95);
}

.voye-quantity-controls .voye-qty-input {
    width: 6.25rem;
    height: 38px;
    /* width: unset !important; */
    text-align: center;
    border: none;
    /* border-radius: 8px; */
    font-size: 0.875rem;
    font-weight: 600;
    background: var(--voye-white);
    color:var(--voye-blue);
}
.voye-quantity-controls .voye-qty-input:focus
{
    border: none ;
    outline: none ;
    box-shadow: none !important;
}

.voye-remove-item {
    width: 40px;
    height: 40px;
    border: 1px solid #ECEBFE;
    border-radius: 8px;
    background: #fef2f2;
    color: #AE0505;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.voye-remove-item:hover {
    background: #fee2e2;
    border-color: #fecaca;
}

.voye-plan-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    background: #FAFAFA;
    border-radius: 10px;
    margin: 8px 0px;
}

.voye-spec-item {
    display: flex;
    /* flex-direction: column; */
    gap: 1rem;
    padding: 12px;
     align-items: center;
    /* background: #fff; */
    /* border: 1px solid #e5e7eb; */
    /* border-radius: 8px; */
}
.voye-spec-item .voye-spec-item-left .voye-spec-img
{
    background: #fff;
    width: 32px;
    height: 32px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    display: flex;
    align-items: center;   
    justify-content: center; 
}
.voye-spec-item .voye-spec-item-right
{
    flex-direction: column;
    display: flex;
}
.voye-spec-item .voye-spec-item-right .voye-spec-data
{
    font-size: 0.875rem;
    font-weight: 700;
    color: #2A2A2E;
}
.voye-spec-item svg {
    color: #6366f1;
    margin-bottom: 4px;
}

.voye-spec-item span:first-of-type {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.voye-spec-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 400;
}

button.voye-proceed-btn {
    width: 100%;
    padding: 20px 24px;
    height: 72px;
    background-color: var(--surface-brand);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.25rem;
    line-height: 2rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 2rem;
    transition: background 0.2s ease;
  justify-content: center;
    align-items: center;
    display: flex;
}

button.voye-proceed-btn:hover {
    background-color: var(--surface-brand-darkest);
}

/* Cart Summary Section */
.voye-cart-right
{
    position: relative;
}
.voye-cart-summary {
    background: #fff;
    /* border: 1px solid #e5e7eb; */
    border-radius: 30px;
    padding: 1.5rem;
    position: sticky;
    top: 20px;
    position: absolute;
    right: 5%;
    top: 0; 
    z-index: 2;
}
.voye-cart-summary .voye-summary-text
{
    display: flex;
    position: relative;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    background: rgba(16, 0, 243, 0.08);
    padding: 8px 12px;
    border-radius: 12px;
    gap: 8px;
    margin-bottom: 1.5rem;  
    font-size: 0.875rem;
    font-weight: 600;
}
.voye-cart-summary .voye-summary-text img 
{
    margin-right:0.25rem;
}
.voye-cart-summary .voye-summary-text span.txt-brand
{
    color: #1000f3;
    display: contents;
}


.voye-summary-title {
    font-size: 1.5rem;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2A2A2E
}

.voye-summary-items {
    display: grid;
    gap: 1rem;
}

.voye-summary-item {
    display: flex;
    gap: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 1rem;
}

.voye-summary-item:last-child {
    /* border-bottom: none; */
}

.voye-summary-flag {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50px;
    /* border: 1px solid #e5e7eb; */
}

.voye-summary-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.voye-summary-country {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2A2A2E;
    line-height: 30px;
}

.voye-summary-plan {
    font-size: 1rem;
    color: #696969;
    line-height: 24px;
    font-style: normal;
    font-weight: 400;
}

.voye-summary-pack {
    font-size: 0.875rem;
    color: #696969;
    text-align: right;
}

.voye-summary-price {
    font-size: 1.5rem;
    line-height :36px;
    font-weight: 600;
    color: var(--voye-text-black);
    align-self: flex-start;
    font-style: normal;
}
.voye-summary-pack-qty
{
    color: var(--voye-blue);
    font-size: 0.875rem;
    text-align: right;
    line-height: 21px;   
    font-style: normal;
    font-weight: 400;
}

.voye-summary-totals {
    border-top: 1px solid rgba(16, 0, 243, 0.10);
    /* padding-top: 20px; */
    margin-top: 1.5rem;
}

.voye-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-bottom: 12px; */
    font-size: 14px;
    color: #6b7280;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    /* border-bottom: 1px solid rgba(16, 0, 243, 0.10); */
}

.voye-summary-total {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--voye-text-black);
    padding-top: 0px;
    /* border-top: 1px solid #f3f4f6; */
    margin-top: 1.25rem;
}
.voye-summary-total .voye-summary-total-title
{
    color: #696984;
    font-size: 1.25rem;
    line-height: 28px;   
    font-weight: 600;
}
.voye-summary-total .voye-summary-total-price
{
    color:var(--voye-text-black);
    font-size: 1.5rem;
    line-height: 33.6px;  
    font-weight: 700;
}
.voye-summary-total .woocommerce-Price-amount 
{
    color: var(--voye-text-black);
    font-size: 1.5rem;
    font-weight: 700;
}

.voye-summary-total span:last-child {
    /* color: #2A2A2E;
    font-size: 1.5rem;
    font-weight: 700; */
}

.voye-discount span:last-child {
    color: #10b981;
}



.voye-summary-taxs
{
     margin-top: 20px;   
}
.voye-summary-taxs .voye-summary-tax
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px; 
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--voye-text-black);
    padding-top: 0px;
    margin-top: 12px;
}
.voye-summary-taxs .voye-summary-tax span
{
    color: var(--voye-text-black);
    font-size: 1.25rem;
    font-weight: 500;
}
.voye-summary-taxs .voye-summary-tax .woocommerce-Price-amount,
.voye-summary-taxs .voye-summary-tax .woocommerce-Price-currencySymbol
{
    color: var(--voye-text-black);
    font-size: 1.25rem;
    font-weight: 700;
}


/* Full-page loading overlay */
.voye-cart-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8); /* light white overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999; /* ensure it’s above all content */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

/* Visible state */
.voye-cart-loading-overlay.visible {
    opacity: 1;
    visibility: visible;
}

/* Spinner style */
.voye-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0,0,0,0.1);
    border-top-color: #000; /* Use your theme's primary color here */
    border-radius: 50%;
    animation: voye-spin 0.75s linear infinite;
}



/* Spinner animation */
@keyframes voye-spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}


/* Empty Cart start css */
.cart-empty {
    text-align: center;
    padding: 60px 20px;
    font-size: 18px;
    color: #6b7280;
}
.cart-empty-wrapper {
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 20px; */
}
.cart-empty-wrapper .cart-empty-card {
    max-width: 100%;
    text-align: center;
}
.cart-empty-wrapper .cart-empty-icon {
    width: 100%;
    margin: 0 auto 1rem;
}
.cart-empty-wrapper .cart-empty-card h3.cart-empty-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #101828;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
	letter-spacing: 0.32px;
}
.cart-empty-wrapper .cart-empty-description {
    font-size: 0.875rem;
    color: #667085;
    font-style: normal;
    font-weight: 400;
    max-width: 366px;
    width: 100%;
    margin: 0 auto;
    line-height: 1.5;
    text-align: center;
    word-wrap: break-word;
    white-space: normal;
    padding-bottom: 2.5rem;
}
.cart-empty-wrapper .cart-empty-btn-group {
    display: flex;
    margin-bottom: 1.5rem;
}
.cart-empty-wrapper .cart-empty-btn-group .btn.btn-primary {
    background: #1000F3;
    color: #fff;
    flex: 1;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 1rem;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    line-height: 2rem;
}
.cart-empty-wrapper .cart-empty-btn-group .btn-primary:hover
{
    background: #0c00be;
}
/* Empty Cart end css */


/* WooCommerce Overrides */
.woocommerce .voye-custom-cart-wrapper {
    width: 100%;
}

/* button[name="update_cart"] {
    display: none !important;
} */


/* RTL css start */
html[dir="rtl"] .voye-cart-summary
{
right: auto;
left:5%;
}
html[dir="rtl"] .voye-summary-pack-qty
{
text-align:left;
}
.rtl .voye-summary-plan
{
    text-align: right;
    unicode-bidi: plaintext;
}
.rtl .voye-cart-item-country .voye-item-meta
{
    unicode-bidi: plaintext;
}


/* RTL css end */


/* Responsive Design */

@media (max-width: 767px) {
     .voye-cart-container {
        padding: 1.25rem 0;
    }

    /* cart detail */ 
    .voye-cart-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .voye-cart-title 
    {
        line-height: normal;
        font-style: normal;
    }
   .voye-category-flag {
        width: 40px;
        height: 40px;
    }
    .voye-cart-items
    {
         gap: 1.25rem;
    }
    .voye-cart-item-country .voye-item-country
    {
        font-size: 1rem;
        line-height: 24px;
        text-overflow: ellipsis;
        font-style: normal;
    }
     .voye-cart-item-country .voye-item-meta
    {
        font-size: 0.75rem;  
        line-height: 18px;
    }
    .voye-cart-price-area
    {
      display: grid;  
      gap: 9.5px;
    }
     .voye-cart-item-bottom
    {
        display: flex;
    }
    .voye-quantity-controls .voye-qty-input
   {
    width:2.125rem;
    padding-left:0px;
    padding-right:0px;
   }
   .voye-qty-btn
   {
    width: 25px;
   }



 .voye-summary-title
    {
  line-height: normal;
  margin-bottom: 1.25rem;
    }
 .voye-cart-summary 
 {
        padding: 1rem;
        border-radius: 1.5rem;
    }
   
  .voye-summary-item
    {
    gap: 12px;
    }
     .voye-summary-flag
    {
   width: 40px;
 height: 40px;
    }
     .voye-summary-country
    {
        font-size: 1rem;
         line-height: 22.4px;
    }
     .voye-summary-plan
    {
     font-size: 0.75rem;   
    line-height: 16.8px;
    }
     .voye-summary-price
    {
    font-size: 1.125rem;    
     line-height: 25.2px;
    }
   .voye-summary-pack-qty
   {
    font-size: 0.75rem;
    line-height: 16.8px;
   }
   .voye-summary-totals
   {
        border-top: none;
        margin-top: 2rem;
   }
   .voye-summary-total .voye-summary-total-title
   {
    line-height: normal;
    font-style: normal;
    color:#2A2A2E;
   }
   .voye-summary-total .woocommerce-Price-amount
   {
     color: #0B1215;
     font-size: 1.25rem;
   }
   .voye-summary-total .voye-summary-total-price
   {
   color: #0B1215;
   line-height:normal;
   font-style: normal;
   }
   .voye-proceed-btn-m
   {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
   }
   button.voye-proceed-btn
   {
        height: 48px;
        padding: 12px 16px;
        font-size:1rem;
        line-height :24px;
        margin-top: 1rem;
   }
   
    .voye-summary-total
    {
      font-size: 1.125rem;   
      margin-bottom: 0px;
    }
   
}

@media (max-width: 1024px) {
   .woocommerce-cart .voye-cart-container 
    {
        max-width: 100%;
        padding-right: 0px; 
        padding-left: 0px;
    }
    .woocommerce-cart .voye-cart-right
    {
      background-color: #f7f7f7;  
      padding-top: 1.25rem;
      padding-bottom: 1.25rem;
    }
    .woocommerce-cart .voye-cart-left,
     .woocommerce-cart .voye-cart-right
    {
       padding-right: 1.25rem; 
       padding-left: 1.25rem; 
    }
  
    .voye-cart-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .voye-cart-summary {
        position: static;
    }
    .voye-sale-price 
    {
      font-size: 1.125rem;  
    }
}

/* Cart Login Modal */
.voye-cart-login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.voye-cart-login-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.voye-cart-login-modal .modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    max-width: 673px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.voye-cart-login-modal .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid #e5e7eb;
}

.voye-cart-login-modal .modal-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    color: #2A2A2E;
}

.voye-cart-login-modal .modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7280;
    transition: color 0.2s;
}

.voye-cart-login-modal .modal-close:hover {
    color: #2A2A2E;
}

.voye-cart-login-modal .modal-body {
    padding: 0;
}

.voye-cart-login-modal .modal-body .forms-wrap {
    padding: 0;
}

.voye-cart-login-modal .modal-body .p-8 {
    background: transparent;
}

body.modal-open {
    overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
    .voye-cart-login-modal .modal-content {
        max-width: 95%;
        max-height: 95vh;
    }
    
    .voye-cart-login-modal .modal-header {
        padding: 16px;
    }
    
    .voye-cart-login-modal .modal-header h3 {
        font-size: 20px;
    }
}

/* Login/Register Modal */
.voye-cart-login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.voye-cart-login-modal.visible {
    opacity: 1;
    visibility: visible;
}

.voye-cart-login-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.voye-cart-login-modal .modal-content {
    position: relative;
    background: #fff;
    border-radius: 16px;
    max-width: 530px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.voye-cart-login-modal .modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #666;
    transition: color 0.2s;
}

.voye-cart-login-modal .modal-close:hover {
    color: #000;
}

/* Modal Tabs */
.voye-cart-login-modal .modal-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 4px;
}

.voye-cart-login-modal .tab-btn {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: transparent;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    color: #666;
}

.voye-cart-login-modal .tab-btn.active {
    background: #0000ff;
    color: #fff;
}

.voye-cart-login-modal .tab-content {
    display: none;
}

.voye-cart-login-modal .tab-content.active {
    display: block;
}

/* Social Login Buttons */
.social-login-buttons {
    margin-bottom: 24px;
}

.social-login-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 12px;
}

.social-login-btn:hover {
    border-color: #999;
    background: #f9f9f9;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 24px 0;
    color: #999;
    font-size: 14px;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e0e0e0;
}

.divider span {
    padding: 0 16px;
}

/* Form Styling */
.voye-cart-login-modal .woocommerce-form-row {
    margin-bottom: 16px;
}

.voye-cart-login-modal label {
    /* display: block; */
    display:flex;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.voye-cart-login-modal .required {
    color: #ff0000;
}

.voye-cart-login-modal .input-text {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.voye-cart-login-modal .input-text:focus {
    outline: none;
    border-color: #0000ff;
}

/* Phone Input */
.phone-input-wrapper {
    display: flex;
    gap: 8px;
}

.phone-code-select {
    width: 100px;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
}

.phone-number-input {
    flex: 1;
}

/* Submit Button */
.voye-cart-login-modal .woocommerce-Button {
    width: 100%;
    padding: 14px 16px;
    background: #0000ff;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.voye-cart-login-modal .woocommerce-Button:hover {
    background: #0000cc;
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
}


/*================ Media Query CSS==========================*/
@media only screen and (max-width:1023.5px){
    /* mobile view design */

/* cart empty css start */

.cart-empty-wrapper .cart-empty-icon
{
    margin: 0 auto 1rem;
}
.cart-empty-wrapper .cart-empty-icon svg 
{
    width:100%;
    height:auto;
}
.cart-empty-wrapper .cart-empty-card h3.cart-empty-title
{
    letter-spacing: 0.32px;
}
.cart-empty-wrapper .cart-empty-description
{
    margin-bottom: 1rem;
    padding-bottom:0px;
}
.cart-empty-wrapper .cart-empty-btn-group .btn.btn-primary
{
    padding: 12px 16px;
    font-size: 1rem;
    height:48px;
    line-height: 24px;
    font-weight: 500;
}
/* cart empty screen css end */

}



@media (min-width: 1024px) {

.checkout-login-wrap .myaccount-login-wrap
  {
    padding-bottom:0px;
  }
.checkout-login-wrap .login-wrap h2 
  {
    color: #2A2A2E;
    font-size: 1.625rem;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
  }
.checkout-login-wrap .tabs
{
    padding:0px;
}
.checkout-login-wrap .tabs .tab 
{
   padding-left: 0px;
   padding-right: 0px;
}
.checkout-login-wrap .tabs-header .line 
{
    display: none;
}
.checkout-login-wrap .tabs-header
{
    border-radius: 10px;
    border: 1px solid rgba(16, 0, 243, 0.10);
    background: #fff;
    padding: 6px;
    gap: 12px;
    height: auto;
    margin-top: 1.5rem;
}
 .checkout-login-wrap .tab-header-btn
  {
    border-bottom:none;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
  }
 .checkout-login-wrap .tab-header-btn.active  
 {
    border-radius: 6px;
    background: #1000F3;
    padding: 8px 14px;
    align-items: center;
    color: #fff;  
    height: 44px;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
 }
 .checkout-login-wrap .woo-login-with
 {
    color: #696984;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
 }

 .checkout-login-wrap .woo-login-with {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #6b7280; /* optional */
}

.checkout-login-wrap .woo-login-with::before,
.checkout-login-wrap .woo-login-with::after {
	content: "";
	flex: 1;
	height: 1px;
	background: rgba(16, 0, 243, 0.10); /* line color */
}

.checkout-login-wrap .woo-login-with::before {
	margin-right: 12px;
}

.checkout-login-wrap .woo-login-with::after {
	margin-left: 12px;
}

 
}