/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      3.6.1
*/

/* ------------------------------------------
PRIMARY MENU CENTER
------------------------------------------ */
.nav-float-right #site-navigation{
    margin-left: auto;
    margin-right: auto;
}

/* ------------------------------------------
TOP HEADER STYLE
------------------------------------------ */
.top-header-wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

.top-header-wrap .top-header-logo{
    width: auto; /* Let it take only needed space */
}

.top-header-wrap .top-header-info{
    width: auto; /* Let it take only needed space */
    display: flex;
    align-items: center;
    gap: 15px; /* Add spacing between items 
    margin-left: auto; */
    justify-content: center;
}

/* ------------------------------------------
Language dropdown - keep it on the left 
------------------------------------------ */
.top-header-info-language {
    margin-right: auto; /* This keeps language on the left */
}

/* ------------------------------------------
The three items on the right 
------------------------------------------ */
.top-header-info-cart,
.top-header-info-login,
.top-header-info-shop {
    display: flex;
    align-items: center;
}

.top-header-info-cart{
    border: solid 1px #D8D8D8;
    padding: 6px;
    border-radius: 5px;
}

.custom-language-dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background: transparent !important;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    color: #000 !important;
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 140px;
    justify-content: space-between;
    transition: none;
}

.dropbtn:hover {
    background: transparent;
    border: none;

}

.language-flag {
    font-size: 16px;
}

.language-text {
    flex-grow: 1;
    text-align: left;
    font-family: 'Montserrat';
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    margin-right: 20px;
}

.custom-language-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 160px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
    padding: 10px 0;
    margin-top: 5px;
}

.custom-language-dropdown.active .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 8px 15px;
    margin-left: 10px;
    margin-right: 10px;
    text-decoration: none;
    color: #000;
    border-bottom: 1px solid #f0f0f0;
    transition: none;
    text-align: center;
}

.dropdown-content a:hover {
    background-color: transparent;
}

.dropdown-content a:last-child {
    /*border-bottom: none;*/
}


/* ------------------------------------------
Style for the language links 
------------------------------------------ */

.dropdown-content .gt-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
}

.language-option {
    display: block;
    text-align: center;
}

.language-option a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
    padding: 8px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.language-option:last-child a {
    border-bottom: none;
}

/* ------------------------------------------
Top header cart
------------------------------------------ */
.cart-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    color: #8C8C8C;
}

.cart-count-bubble {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}


/* ------------------------------------------
Login Dropdown Styles 
------------------------------------------ */
.login-dropdown {
    position: relative;
    display: inline-block;
}

.login-btn, a.login-btn {
    background: #E54400 !important;
    color: white;
    border: none;
    padding: 10px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.login-btn:hover {
    background: #cc3c00;
}

.login-icon, .login-arrow {
    display: flex;
    align-items: center;
}

.login-arrow {
    transition: transform 0.3s ease;
}

.login-dropdown.active .login-arrow {
    transform: rotate(180deg);
}

.login-dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 160px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
    padding: 10px 0;
    margin-top: 5px;
}

.login-dropdown.active .login-dropdown-content {
    display: block;
}

.login-option {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #000;
    border-bottom: 1px solid #f0f0f0;
    /*text-align: center;*/
    transition: background-color 0.2s ease;
}

.login-option:hover {
    background-color: #f8f8f8;
}

.login-option:last-child {
    border-bottom: none;
}

/* Login Modal Styles */
.login-modal {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: none; /* Hidden by default */
}

.login-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 450px;
    position: relative;
    font-family: 'Neue Montreal', sans-serif;
    animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
    from {opacity: 0; transform: translateY(-50px);}
    to {opacity: 1; transform: translateY(0);}
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
    z-index: 10001;
}

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

/* Rest of your modal CSS remains the same */
.login-header h2, .login-header p {
    font-family: 'Neue Montreal';
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 119%;
    letter-spacing: -0.01em;
    color: #1E232C;
    margin: 0 0 8px 0;
}

.login-form{
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    background: #F7F8F9;
    border: 1px solid #E8ECF4;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
}

a.register-link, a.forgot-link {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: #9C26FF;
    text-decoration: none;
}

.login-submit-btn {
    width: 100%;
    padding: 15px;
    background: #E54400;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 25px;
}

.social-login-section .divider{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 1.5rem;
    padding-top: 1rem;
}

.divider span{
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #6A707C; 
    margin: auto;
}

.divider span.divider-1, .divider span.divider-2{
    border: 1px solid #E8ECF4;
    width: 30%;
    height: 0px;
}

.social-login-section .social-buttons{
    display: flex;
    text-align: center;
    row-gap: 1rem;
    column-gap: 2rem;
    justify-content: center;
}

.social-buttons button.facebook-btn,
.social-buttons button.google-btn,
.social-buttons button.apple-btn{
    background: #FFFFFF;
    border: 1px solid #E8ECF4;
    border-radius: 8px;
}


/* Shop Now Button Styles */
.shop-now-btn {
    background: white;
    color: #E54400;
    border: 2px solid #E54400;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    transition: all 0.2s ease;
}

.shop-now-btn:hover {
    background: #E54400;
    color: white;
}


/*
HOME PAGE BANNER STYLE
*/

.rainbow-esim-head{
    text-shadow: 0px 0px 8.5px rgba(254, 187, 47, 0.55), 0px 0px 8.5px rgba(254, 187, 47, 0.55), 0px 0px 8.5px rgba(254, 187, 47, 0.55), 0px 0px 8.5px rgba(254, 187, 47, 0.55), 0px 0px 8.5px rgba(254, 187, 47, 0.55), 0px 0px 8.5px rgba(254, 187, 47, 0.55), 0px 0px 8.5px rgba(254, 187, 47, 0.55), 0px 0px 8.5px rgba(254, 187, 47, 0.55);
}


/* ------------------------------------------
   FOOTER LOGO STYLE
------------------------------------------- */

.foot-logo {
    mix-blend-mode: multiply;
}


/* ------------------------------------------
   PRODUCT PAGE STYLE
------------------------------------------- */

/* ------------------------------------------
   PRODUCT TITLE
------------------------------------------- */
.single-product .product-right .product_title {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 26px;
    line-height: 38px;
    color: #252525;
    margin-bottom: 10px;
}

/* ------------------------------------------
   PRICE
------------------------------------------- */
.single-product .product-right .summary .price,
.single-product .product-right p.price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700 !important;
    font-size: 32px;
    line-height: 54px;
    color: #D9006D !important;
    margin: 10px 0 25px 0;
}

/* ----------------------------------
   QUANTITY BLOCK
----------------------------------- */

.quantity-block {
    margin: 15px 0 20px 0;
}

.qty-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 26px;
    color: #252525;
    margin-bottom: 10px;
    display: block;
}

.woocommerce-variation-add-to-cart {
    flex-direction: column;
}
.woocommerce-variation-add-to-cart:before {
    content: "Quantity";
    bottom: .6rem;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 26px;
    color: #252525;
}

.qty-wrapper {
    display: inline-block;
}

/* WooCommerce + / - alignment */
.qty-wrapper .quantity {
    display: flex !important;
    align-items: center;
    gap: 10px;
    justify-content: flex-start !important;
}

.qty-wrapper .quantity .qty {
    text-align: center;
}

.woocommerce form .quantity.buttons-added .minus,
.woocommerce form .quantity.buttons-added .plus{
    border-right-width: 1px !important;
    border-left-width: 1px !important;
}

.woocommerce form .quantity.buttons-added .qty,
.woocommerce form .quantity.buttons-added .minus,
.woocommerce form .quantity.buttons-added .plus{
    width: 40px !important;
    min-height: 40px !important;
    border-radius: 5px !important;
}

/* ----------------------------------
   BUTTONS — SIDE BY SIDE (UPDATED)
----------------------------------- */

.custom-buttons-row {
    display: flex;
    gap: 15px;
    margin: 20px 0 30px 0;
}

.buy-now-button,
.custom-add-to-cart-button {
    width: 165px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    padding: 10px 30px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

/* Blue Buy Now */
.buy-now-button {
    background: #2853FF;
}

/* Orange Add to Cart */
.custom-add-to-cart-button {
    background: #E54400;
}

/* Hover effects */
.buy-now-button:hover,
.custom-add-to-cart-button:hover {
    opacity: .9;
}


/* ------------------------------------------
   SHORT DESCRIPTION
------------------------------------------- */
.single-product .product-right .woocommerce-product-details__short-description{
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 26px;
    color: #323232;
    margin-top: 20px;
}

.entry-content:not(:first-child){
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #323232;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    font-family: 'Montserrat', sans-serif;
}

/* ------------------------------------------
   SINGLE PRODUCTS IMAGE LEFT WIDTH
------------------------------------------- */
.woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
    width: 40% !important;
}


/* ------------------------------------------
   CUSTOM BREADCRUMB 
------------------------------------------*/
/* Shop link */
.custom-breadcrumb a:first-of-type {
    color: #2B2B2B !important;
    text-decoration: none;
}

/* Separator always black */
.custom-breadcrumb .crumb-separator {
    color: #2b2b2bc2 !important;
    margin: 0 3px;
}

/* Category text (last item, not a link) */
.custom-breadcrumb {
    font-family: 'Neue Montreal', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #D9006D !important; 
}


/* ------------------------------------------
 HOME SEARCH STYLE
------------------------------------------ */
.aws-container .aws-search-form{
	border: 1.35514px solid #E54400;
  background: #FDFBEA !important;
  border-radius: 7px;
	height: 54px;
}

.aws-container .aws-search-field, .aws-container .aws-search-field:focus{
	color: #4D4D4D;
  background: #FDFBEA !important;
  font-family: 'Neue Montreal' !important;
  padding: 1rem;
  border-top-left-radius: 7px !important;
	border-bottom-left-radius: 7px !important;
	font-size: 21px !important;
	border: unset !important;
}

/* ------------------------------------------
 HOME SEARCH ICON STYLE
------------------------------------------ */
.aws-container .aws-search-form .aws-form-btn{
	background: #E54400 !important;
  width: 54px;
	border-top-right-radius: 7px !important;
  border-bottom-right-radius: 7px !important;
}

.aws-container .aws-search-form .aws-search-btn_icon{
	fill: rgb(255 255 255) !important;
 width: 54px !important;
 color: #ffffff !important;
}


/* ------------------------------------------
 HOW IT WORKS DOT LINE STYLE 
------------------------------------------ */

.main-step-line::before {
    content: "";
    position: absolute;
    top: 30%;                 /* center vertically */
    left: 14.5%;
    right: 0;
    border-top: 3px dotted #D9006D;
    transform: translateY(-50%);
    z-index: 1;
	  width: 70%
}

/* Keep icons ABOVE the dotted line */
.step1-line,
.step2-line,
.step3-line {
	z-index: 2;
}


/* ------------------------------------------
 ACTIVATE NOW STYLE 
------------------------------------------ */

.everest-forms{
	
}

.class_manual_activation{
    display: flex;
    justify-content: center;
}

.class_manual_activation #evf-form-365{
    text-align: center;
    width: 50%;
}

button.class_submit {
    font-family: Montserrat !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    color: #1F1F1F !important;
    border-radius: 5px !important;
    background-color: #F8D301 !important;
    border: unset !important;
    padding: 9px 40px !important;
}

button.class_submit:hover {
    background-color: #f8d301b3 !important;
}

.class_agent input[type=text],
.class_email input[type=email],
.class_sim_no input[type=number],
.class_start_date input[type=text],
.class_end_date input[type=text],
.class_phone_option input[type=number]{
    font-size: 16px !important;
    font-weight: 500 !important;
    font-family: Montserrat !important;
    color: #1F1F1F !important;
    border: 1px solid #F3F3F3 !important;
    background-color: #F3F3F3 !important;
    border-radius: 5px !important;
    padding: 9px 12px !important;
}

.class_agent input::placeholder,
.class_email input::placeholder,
.class_sim_no input::placeholder,
.class_start_date input::placeholder,
.class_end_date input::placeholder,
.class_phone_option input::placeholder {
    color: #1F1F1F !important;
}


/**
 * ---------------------------------------------------------
    CHECKOUT PAGE STYLE
 * ---------------------------------------------------------
 */
 
body.woocommerce-checkout .inside-article,
 .woocommerce-checkout .inside-article{
    padding: 40px 0 !important;
}

.woocommerce-checkout .col2-set{
    width: 65% !important;
    margin-right: 0 !important;
}

#customer_details+#wc_checkout_add_ons, #order_review, #order_review_heading{
    width: 32% !important;
}

/* Prevent overlap after billing form */
.gp-checkout-payment {
    clear: both;
    margin-top: 32px;
}

/* Ensure billing wrapper expands properly */
.woocommerce-billing-fields__field-wrapper::after {
    content: "";
    display: block;
    clear: both;
}

.col-3 .form-row.place-order,
#order_review .gp-checkout-payment,
.woocommerce-terms-and-conditions-wrapper
{
    display: none !important;
}

/* Billing Information */
h3.checkout-headline-billing,
h3.checkout-headline-shipping,
h3#order_review_heading,
h3.gp-payment-title
{
    background: #9C26FF;
    border-radius: 5px 5px 0px 0px;
    padding: 1rem;
    margin-bottom: 0px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
}

.customer_details-contain,
div#order_review{
    background-color: #F3F5F7;
}

.woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper,
.woocommerce-shipping-fields__field-wrapper{
    padding: 1rem;
}

.woocommerce-additional-fields{
    padding: 0rem 1rem 1rem 1rem;
}


#ship-to-different-address {
    padding: 0 1rem 0 1.3rem !important;
}

/*
 * ---------------------------------------------------------
    PAYMENT OPTIONS AREA
 * ---------------------------------------------------------
*/

body.woocommerce-checkout ul.wc_payment_methods.payment_methods.methods {
    display: flex;
}

#add_payment_method #payment ul.payment_methods, .woocommerce-cart #payment ul.payment_methods, .woocommerce-checkout #payment ul.payment_methods{
    background-color: #f3f5f7;
}

#payment .payment_methods li.wc_payment_method>input[type=radio]:first-child:checked+label {
    font-weight: 500 !important;
    background-color: rgb(0 0 0 / 0%) !important;
    font-size: 14px;
    color: #191C1F;
    font-family: 'Montserrat';
}

#payment .payment_methods>.wc_payment_method>label{
	display: flex !important;
    flex-direction: column-reverse;
    align-items: center;
	font-weight: 500 !important;
    background-color: rgb(0 0 0 / 0%) !important;
    font-size: 14px;
    color: #191C1F;
    font-family: 'Montserrat';
}




/*
 * ---------------------------------------------------------
    Order Summary
 * ---------------------------------------------------------
*/

div#order_review {
    padding: 1rem;
}

.gp-order-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: solid 1px #d6d6d6;
}

.gp-order-item-thumb img {
    height: auto;
    max-width: 60px;
    border-radius: 5px;
}

.gp-order-item-info .gp-order-item-name,
.gp-order-item-info .gp-order-item-qty-price {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 17px;
    color: #191C1F;  
}

.gp-order-addons{
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 13px;
    margin-top: .6rem;
}

.gp-order-item-name {
    margin-bottom: 12px;
}

.gp-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.gp-total-row span{
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 17px;
    color: #5F6C72;  
}

body.woocommerce-checkout span.woocommerce-Price-amount.amount,
body.woocommerce-checkout span.woocommerce-Price-currencySymbol,
.shipping-class ul#shipping_method{
    font-family: 'Montserrat';
    font-weight: 500;
    color: #191C1F;
    font-size: 15px;
}

span.shipping-class{
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.woocommerce ul#shipping_method li{
    margin: 0;
}

.gp-order-totals {
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
}

button#place_order {
    font-family: 'Montserrat' !important;
    font-style: normal !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    line-height: 48px !important;
    letter-spacing: 0.012em !important;
    color: #FFFFFF;
    padding-top: .1rem !important;
    padding-bottom: .1rem !important;
    border-radius: 5px;
    background-color: #E54400;
}


/* ===============================
   CHECKOUT — TYPOGRAPHY
   =============================== */
body.woocommerce-checkout .woocommerce-checkout {
    font-family: 'Montserrat', sans-serif;
}


/* ===============================
   CHECKOUT — LABELS
   =============================== */
body.woocommerce-checkout 
.woocommerce-checkout 
.woocommerce-billing-fields label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    line-height: 17px;
    color: #191C1F;
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}


/* ===============================
   CHECKOUT — INPUTS
   =============================== */
body.woocommerce-checkout 
.woocommerce-checkout 
input.input-text,
body.woocommerce-checkout 
.woocommerce-checkout 
textarea,
body.woocommerce-checkout 
.woocommerce-checkout 
select {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    padding: 14px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #191C1F;
    width: 100%;
    box-shadow: none;
}

body.woocommerce-checkout 
.woocommerce-checkout 
input::placeholder {
    color: #9CA3AF;
}


/* ===============================
   CHECKOUT — NAME ROW (3 COLS)
   =============================== */
body.woocommerce-checkout .gp-field-first,
body.woocommerce-checkout .gp-field-last,
body.woocommerce-checkout .gp-field-company {
    width: 49%;
    float: left;

}

body.woocommerce-checkout .gp-field-first {
    margin-right: 2%;
}

body.woocommerce-checkout .gp-field-company {
    margin-right: 0;
}


/* ===============================
   CHECKOUT — ADDRESS
   =============================== */
body.woocommerce-checkout .gp-field-address {
    width: 100%;
    clear: both;
}


/* ===============================
   CHECKOUT — LOCATION ROW
   =============================== */
body.woocommerce-checkout .gp-field-country,
body.woocommerce-checkout .gp-field-state,
body.woocommerce-checkout .gp-field-city,
body.woocommerce-checkout .gp-field-zip {
    width: 23.5%;
    float: left;
    margin-right: 2%;
}

body.woocommerce-checkout .gp-field-zip {
    margin-right: 0;
}


/* ===============================
   CHECKOUT — EMAIL / PHONE
   =============================== */
body.woocommerce-checkout .gp-field-email,
body.woocommerce-checkout .gp-field-phone {
    width: 49%;
    float: left;
}

body.woocommerce-checkout .gp-field-email {
    margin-right: 2%;
}


/* ===============================
   CHECKOUT — SPACING
   =============================== */
body.woocommerce-checkout .woocommerce-checkout .form-row {
    margin-bottom: 18px;
}

body.woocommerce-checkout 
.woocommerce-billing-fields::after {
    content: "";
    display: table;
    clear: both;
}


/* ===============================
   CHECKOUT — SHIPPING TOGGLE
   =============================== */
body.woocommerce-checkout 
.woocommerce-shipping-fields {
    margin-top: 0px;
}

body.woocommerce-checkout 
.woocommerce-shipping-fields label {
    font-size: 13px;
    color: #191C1F;
    font-weight: 500;
}

body.woocommerce-checkout #add_payment_method .checkout .col-2 .form-row-first, .woocommerce-cart .checkout .col-2 .form-row-first, .woocommerce-checkout .checkout .col-2 .form-row-first {
    clear: unset !important;
}

.select2-container .select2-selection--single .select2-selection__rendered{
    padding: 1rem .5em !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    line-height: 17px;
    color: #191C1F;
    font-weight: 500;
}

.select2-container .select2-dropdown, .select2-container .select2-selection{
    border: var(--wc-form-border-width, 1px) solid rgb(32 7 7 / 11%) !important;
}


/*
 * ---------------------------------------------------------
    MY ACCOUNT DASHBOARD
 * ---------------------------------------------------------
*/

.figma-myaccount-nav {
	background: #f3f5f7;
	border-radius: 12px;
	padding: 16px;

}

.figma-myaccount-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.figma-menu-item {
	margin-bottom: 6px;
}

.figma-menu-item a {
	display: block;
	padding: 12px 14px;
	border-radius: 8px;
	color: #555454;
	font-weight: 600;
	text-decoration: none;
	font-family: 'Montserrat';
    font-size: 15px;
    line-height: 25px;
}

.figma-menu-item.is-active a {
	background: #2f5bff;
	color: #fff;
}

.figma-logout a {
	color: #d63638;
}

/* ================================
   ACCOUNT PROFILE HEADER
   ================================ */

.account-profile {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 24px;
/*	padding-bottom: 16px;
	border-bottom: 1px solid #e6e6e6; */
}

.profile-avatar {
	width: 60px;
	height: 60px;
	border-radius: 20%;
	background: #9c26ff;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.profile-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.avatar-initials {
	color: #fff;
	font-weight: 600;
	font-size: 16px;
}

.profile-name strong {
	font-size: 18px;
	font-weight: 700;
	color: #111;
	font-family: 'Montserrat';
}


/*
 * MY DASHBOARD ACCOUNT NAV CONTENT
 * 
 */

.figma-myaccount-wrapper {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 32px;
	align-items: start;
}

.figma-myaccount-sidebar {
	background: #f3f5f7;
	border-radius: 12px;
	padding: 20px;
}

.figma-myaccount-content {
	background: #ffffff;
	border-radius: 12px;
	padding: 0 24px 24px 24px;
}

/*
 * MY DASHBOARD ACCOUNT NAV ORDERS
 * 
 */

.figma-orders-wrapper {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.order-status {
	display: inline-block;
	margin-top: 6px;
	font-size: 12px;
	font-weight: 600;
	padding: 4px 8px;
	border-radius: 6px;
}

.badge-completed { background: #e6f6ee; color: #0a7a3d; }
.badge-processing { background: #e8f0ff; color: #2f5bff; }
.badge-pending { background: #fff2e5; color: #c05600; }

.order-qr img {
	width: 64px;
	height: 64px;
}


/*
 * MY DASHBOARD ACCOUNT ORDERS TAB
 * 
 */

.figma-order-tabs {
	display: flex;
	gap: 12px;
	margin-bottom: 24px;
	background: #f3f5f7;
	padding: 6px;
	border-radius: 10px;
}

.order-tab {
	flex: 1;
	text-align: center;
	padding: 10px 0;
	border-radius: 8px;
	font-weight: 600;
	color: #555;
	text-decoration: none;
	background: none;
}

.order-tab:hover {
	background: #2f5bff;
	color: #fff;
}

.order-tab.active {
	background: #2f5bff;
	color: #fff;
}

/**/
.figma-order-card {
	display: grid;
	grid-template-columns: 60px 130px 1.2fr 1.2fr auto;
	grid-template-rows: auto auto;
	gap: 12px 20px;
	padding: 20px;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	background: #fff;
	margin-bottom: 18px;
	align-items: center;
}

/* ICON */
.order-icon {
	grid-row: span 2;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #f1f3f5;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* INFO */
.order-info {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-family: 'Montserrat';
    font-size: 16px;
}

.order-price,
span.qr-pending{
    font-family: 'Montserrat';
    font-size: 14px;
}

.fulfillment-status {
	border: 1px solid #2f5bff;
	color: #2f5bff;
	border-radius: 999px;
	padding: 4px 10px;
	font-size: 12px;
	font-weight: 600;
	width: fit-content;
}

/* PRICE */
.payment-status {
	margin-left: 8px;
	font-size: 12px;
	padding: 4px 10px;
	border-radius: 999px;
	font-weight: 600;
}

.payment-status.paid {
	background: #e6f6ee;
	color: #0a7a3d;
}

.payment-status.unpaid {
	background: #ffecec;
	color: #c92a2a;
}

/* QR */
.order-qr img {
	width: 72px;
	height: 72px;
}

.esim-info{
   margin-bottom: 1rem; 
}

.esim-info strong{
    font-size: 15px !important;
}

.esim-info small{
    font-size: 10px !important;
}

/* BUTTON */
.btn-buy-again {
	background: #ff5a00;
	color: #fff !important;
	padding: 8px 18px 10px;
	border-radius: 10px;
	font-weight: 600;
	text-decoration: none;
	font-size: 15px;
}

.order-products {
	width: 100%;
	border-collapse: collapse;
}

.order-products td {
	padding: 6px 0;
}

/* EXPAND WRAPPER */
.order-expand {
	grid-column: 1 / -1;
	margin-top: 16px;
	border-top: 1px solid #e5e7eb;
	padding-top: 14px;
}

/* SUMMARY */
.order-expand-summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	font-weight: 500;
	color: #374151;
	list-style: none;
}

.order-expand summary::-webkit-details-marker {
	display: none;
}

/* ARROW */
.expand-icon {
	width: 16px;
	height: 16px;
	transition: transform 0.25s ease;
}

.order-expand[open] .expand-icon {
	transform: rotate(180deg);
}

/* DETAILS BODY */
.order-details {
	margin-top: 16px;
}

/* DETAILS BODY EXPAND ITEM DATA ADDONS*/
.gp-addon-item {
    display: grid;
    grid-template-columns: 170px 1fr;
}

/* PRODUCT ROWS */
.order-product-row {
	display: grid;
	grid-template-columns: 1fr auto;
	padding: 10px 0;
	border-bottom: 1px solid #e5e7eb;
	font-size: 14px;
	font-family: 'Montserrat';
}

.product-title {
	color: #111827;
}

.product-price {
	font-weight: 500;
}

/* SUMMARY ROWS */
.order-summary-row {
	display: grid;
	grid-template-columns: 1fr auto;
	padding: 10px 0;
	border-bottom: 1px solid #e5e7eb;
	font-size: 14px;
	font-family: 'Montserrat';
}

.order-summary-row:last-child {
	border-bottom: none;
}

.order-summary-row .label {
	color: #6b7280;
}

.order-summary-row .value {
	font-weight: 500;
}

/* MY DASHBOARD ACCOUNT ORDERS TAB PAGINATION */
.figma-pagination {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 24px;
	padding-top: 16px;
	border-top: 1px solid #e5e7eb;
}

.figma-pagination a {
	text-decoration: none;
	font-weight: 600;
	color: #2f5bff;
}

.page-info {
	font-size: 14px;
	color: #6b7280;
	font-family: 'Montserrat'; 
}

button.page-prev,
button.page-next{
    background-color: #ff5a00;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Montserrat'; 
}


/*
 * THANK YOU AFTER CHECKOUT HOOK STYLE
 * 
 */

.custom-thankyou-wrapper {
	padding: 0px 20px 80px;
}

.thankyou-title {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 30px;
	text-align: center;
}

.thankyou-icon{
	text-align: center;   
}

.thankyou-message {
	font-size: 25px;
	font-weight: 600;
	margin-top: 20px;
	font-family: Neue Montreal;
	line-height: 24px;
	text-align: center;
}


.thankyou-columns {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 40px;
	margin-top: 50px;
}

.thankyou-divider {
	width: 1px;
	background-color: #E5E5E5;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
	font-size: 16px;
	font-family: 'Montserrat';
    color: #6B6B6B;
    line-height: 19px;
}

.thankyou-actions {
	margin-top: 60px;
	display: flex;
	justify-content: center;
	gap: 20px;
}

.thankyou-actions a {
    font-family: 'Montserrat';
	padding: 14px 28px;
	border-radius: 6px;
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	color: #fff;
	text-align: center;
}

.btn-home {
	background: #2F5BFF;
	color: #fff;
}

.btn-shop {
	background: #E1006A;
	color: #fff;
}

ul.thankyou-left-bullet {
    margin-left: 1.1rem;
}

ul.thankyou-left-bullet li {
    text-align: left;
    font-family: Neue Montreal;
    font-size: 16px;
    color: #323232;
}

.thankyou-right h3,
.thankyou-left h3{
    text-align: left;
    font-family: Neue Montreal;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
}



@media (max-width: 768px) {
	.thankyou-columns {
		grid-template-columns: 1fr;
	}

	.thankyou-divider {
		display: none;
	}

	.thankyou-actions {
		flex-direction: column;
	}
	
    .contact-item {
        align-items: flex-start;
    }

    .contact-item .icon {
        flex-shrink: 0; /* keep icon size */
    }

    .contact-item .thank-you-email-icon {
        display: block;
        max-width: 100%;
        word-break: break-all;
        overflow-wrap: anywhere;
        white-space: normal;
    }
	
    .action-buttons {
        flex-direction: column;
    }
    
    .buy-now-button,
    .add-to-cart-button {
        flex: none;
        width: 100%;
    }
    
    .product-price-wrapper .price {
        font-size: 20px;
    }
    
/**
 * ---------------------------------------------------------
    CHECKOUT PAGE STYLE
 * ---------------------------------------------------------
 */
 
    body.woocommerce-checkout .inside-article,
     .woocommerce-checkout .inside-article{
        padding: 1rem !important;
    }
    
    .woocommerce-checkout .col2-set{
        width: 100% !important;

    }
    
    #customer_details+#wc_checkout_add_ons, #order_review, #order_review_heading{
        width: 100% !important;
    }
    
    body.woocommerce-checkout .gp-field-first, body.woocommerce-checkout .gp-field-last, body.woocommerce-checkout .gp-field-company {
        width: 100%;
    }
  
/* ------------------------------------------
   PRODUCT PAGE STYLE
------------------------------------------- */ 
  .custom-buttons-row{
    flex-direction: column;
  }
  
  .buy-now-button, .custom-add-to-cart-button{
      width: 100%;
  }
  
/* ------------------------------------------
   SINGLE PRODUCTS IMAGE LEFT WIDTH
------------------------------------------- */
.woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
    width: 100% !important;
}
  
/* ===============================
   CHECKOUT — LOCATION ROW
   =============================== */
body.woocommerce-checkout .gp-field-country,
body.woocommerce-checkout .gp-field-state,
body.woocommerce-checkout .gp-field-city,
body.woocommerce-checkout .gp-field-zip {
    width: 100%;
}

/* ===============================
   CHECKOUT — EMAIL / PHONE
   =============================== */
body.woocommerce-checkout .gp-field-email,
body.woocommerce-checkout .gp-field-phone {
    width: 100%;
}  
  
/*
 * ---------------------------------------------------------
    PAYMENT OPTIONS AREA
 * ---------------------------------------------------------
*/

body.woocommerce-checkout ul.wc_payment_methods.payment_methods.methods {
    flex-direction: column;
}
	
/* ------------------------------------------
 ACTIVATE NOW STYLE 
------------------------------------------ */

.class_manual_activation #evf-form-365{
    width: 100%;
}	
  
/* ------------------------------------------
 MY ACCOUNT – MOBILE LAYOUT
------------------------------------------ */ 
 
	.figma-myaccount-wrapper {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.figma-myaccount-sidebar {
		padding: 16px;
	}

	.figma-myaccount-content {
		padding: 20px 0;
	}
  
 
 /* ------------------------------------------
 MY DASHBOARD ACCOUNT ORDERS TAB
------------------------------------------ */ 
.figma-order-card{
    grid-template-columns: 1fr;
    justify-items: center;
}

.order-expand{
    width: 100%;
}

.figma-menu-item a{
    font-size: 14px;   
}

.order-tab{
    font-family: 'Montserrat';
    font-size: 13px;
}

.order-info,
.order-price{
    border-bottom: 1px solid #7c7c7c5c;
    width: 100%;
    align-items: center;
    text-align: center;
    padding-bottom: 1rem;
}
 
.order-qr {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #7c7c7c5c;
    padding-bottom: 1rem;
    margin-bottom: .8rem;
}


  
    
}




/* Variation Products Support */
.variations_form .action-buttons {
    margin-top: 20px;
}

/* Out of Stock Style */
.out-of-stock .action-buttons {
    opacity: 0.6;
    pointer-events: none;
}





/* Optional: Add some responsive spacing */
@media (max-width: 1024px) {
    .top-header-info {
        gap: 10px ;
    }
}

@media (max-width: 768px) {
    .top-header-wrap {
        flex-wrap: wrap;
        padding: 10px;
    }
    
    .top-header-info {
        gap: 10px;
    }
    
    .login-text,
    .dashboard-text,
    .shop-now-btn span {
        display: none; /* Hide text on mobile, show only icons */
    }
    
    .login-btn, 
    .dashboard-text,
    .shop-now-btn {
        padding: 8px 12px !important;
        font-size: 10px;
    }
    
    .language-text {
        font-family: 'Montserrat';
        font-size: 16px;
}

    .esim .do-quantity-buttons div.quantity {
        justify-content: unset !important;
    }

    
}

