/*
Theme Name: Hello Elementor Child - Lostin.com
Theme URI: https://developer.wordpress.org/theme/
Description: Hello Elementor Child Theme for Lostin.com
Author: MultisiteDev
Author URI: https://multisitedev.com
Template: hello-elementor
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hello-elementor-child
*/

/* ==========================================================================
   DIGITAL GUIDES - MAIN STYLES
   ========================================================================== */

/* -------------------------------------------------------------------------
   Global Variables
   ------------------------------------------------------------------------- */
:root {
    --dg-primary-color: #000000;
    --dg-secondary-color: #E57237;
    --dg-text-color: #000000;
    --dg-white: #ffffff;
    --dg-border-color: #000000;
    --dg-font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* -------------------------------------------------------------------------
   Hero Section
   ------------------------------------------------------------------------- */
.dg-hero {
    background: var(--dg-white);
    color: var(--dg-text-color);
    padding: 40px 0 60px;
}

.dg-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.dg-hero-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 40px;
    color: var(--dg-text-color);
    font-family: var(--dg-font-family);
}

/* Hero Content - Two Column Grid */
.dg-hero-content {
    display: grid;
    grid-template-columns: minmax(300px, 400px) 1fr;
    gap: 50px;
    align-items: start;
}

/* Featured Guide - Left Column */
.dg-featured-guide {
    display: flex;
    flex-direction: column;
}

.dg-featured-guide a {
    display: block;
}

.dg-featured-guide-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.dg-featured-guide-info {
    margin-top: 20px;
    padding-top: 0;
}

.dg-featured-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--dg-secondary-color);
    display: block;
    margin-bottom: 8px;
    font-weight: 400;
}

.dg-featured-name {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    color: var(--dg-text-color);
}

.dg-featured-name a {
    color: inherit;
    text-decoration: none;
}

.dg-featured-desc {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    margin: 0 0 12px;
}

.dg-featured-link {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dg-secondary-color);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
}

.dg-featured-link:hover {
    color: var(--dg-text-color);
}

/* Highlights - Right Column */
.dg-highlights {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-top: 0;
}

.dg-highlight-item {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 20px;
    align-items: flex-start;
}

.dg-highlight-image {
    width: 160px;
    height: 107px;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}

.dg-highlight-content {
    flex: 1;
    padding-top: 0;
}

.dg-highlight-title {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dg-text-color);
    line-height: 1.3;
}

.dg-highlight-desc {
    font-size: 13px;
    color: #333;
    line-height: 1.5;
    margin: 0 0 10px;
}

.dg-highlight-link {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dg-text-color);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
}

.dg-highlight-link:hover {
    color: var(--dg-secondary-color);
}

/* Hide slider nav by default */
.dg-slider-nav {
    display: none;
}

/* Responsive - Tablet */
@media (max-width: 992px) {
    .dg-hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .dg-highlight-item {
        grid-template-columns: 140px 1fr;
        gap: 15px;
    }

    .dg-highlight-image {
        width: 140px;
        height: 93px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .dg-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dg-featured-guide-image {
        max-width: 100%;
    }

    .dg-highlight-item {
        grid-template-columns: 120px 1fr;
    }

    .dg-highlight-image {
        width: 120px;
        height: 80px;
    }
}

/* -------------------------------------------------------------------------
   Guides Section
   ------------------------------------------------------------------------- */
.dg-guides-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.dg-guides-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--dg-text-color);
}

.dg-region {
    margin-bottom: 0;
}

.dg-region-header {
    background: var(--dg-primary-color);
    color: var(--dg-white);
    text-align: center;
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.dg-guides-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.dg-guide-item {
    border: 1px solid var(--dg-border-color);
    border-top: none;
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    color: var(--dg-text-color);
    transition: all 0.3s ease;
    display: block;
    background: var(--dg-white);
}

.dg-guide-item:nth-child(n+5) {
    border-top: none;
}

.dg-guide-item:not(:nth-child(4n)) {
    border-right: 1px solid var(--dg-border-color);
}

.dg-guide-item:hover {
    background-color: var(--hover-bg, #E8C547);
    color: var(--hover-text, #000);
}

.dg-guide-item:hover .dg-issue {
    color: var(--hover-text, #8B4E68);
}

.dg-guide-item:hover .dg-city {
    color: var(--hover-text, #000);
}

.dg-issue {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.dg-city {
    display: block;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

/* -------------------------------------------------------------------------
   Discover More Section
   ------------------------------------------------------------------------- */
.dg-discover-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.dg-discover-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 30px;
    color: var(--dg-text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 25px;
    border-bottom: 1px solid #ddd;
}

.dg-discover-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 40px;
}

.dg-discover-item {
    text-decoration: none;
    color: var(--dg-text-color);
    display: block;
}

.dg-discover-item:hover {
    color: var(--dg-text-color);
}

.dg-discover-item:hover .dg-discover-link {
    color: var(--dg-secondary-color);
}

.dg-discover-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    margin-bottom: 20px;
    display: block;
}

.dg-discover-info {
    display: block;
}

.dg-discover-issue {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 8px;
    display: block;
}



.dg-discover-name {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 14px;
    letter-spacing: 0.5px;
    line-height: 1.2;
    color: var(--dg-text-color);
}

.dg-discover-desc {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin: 0 0 16px;
}

.dg-discover-link {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dg-text-color);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
}

.dg-discover-link:hover {
    color: var(--dg-secondary-color);
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .dg-discover-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* -------------------------------------------------------------------------
   Single Guide Page
   ------------------------------------------------------------------------- */
.dg-single {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.dg-single-header {
    background: var(--dg-white);
    padding: 30px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.dg-single-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.dg-single .dg-issue {
    color: #666;
}

.dg-single .dg-city {
    font-size: 32px;
    margin-top: 10px;
}

.dg-fliphtml5-container {
    flex: 1;
    position: relative;
    width: 100%;
    min-height: 80vh;
    background: #f5f5f5;
}

.dg-fliphtml5-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.dg-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 0;
    color: var(--dg-text-color);
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dg-back-link:hover {
    text-decoration: underline;
}

/* -------------------------------------------------------------------------
   Responsive Styles
   ------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .dg-guides-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .dg-guide-item:not(:nth-child(3n)) {
        border-right: none;
    }

    .dg-guide-item:nth-child(3n) {
        border-right: 1px solid var(--dg-border-color);
    }

    .dg-discover-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .dg-guides-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dg-guide-item:not(:nth-child(2n)) {
        border-right: none;
    }

    .dg-guide-item:nth-child(2n) {
        border-right: 1px solid var(--dg-border-color);
    }

    .dg-hero-title {
        font-size: 24px;
    }

    .dg-guides-title,
    .dg-discover-title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .dg-guides-grid {
        grid-template-columns: 1fr;
    }

    .dg-guide-item {
        border-right: 1px solid var(--dg-border-color) !important;
    }

    .dg-discover-grid {
        grid-template-columns: 1fr;
    }

    .dg-highlight-item {
        flex-direction: column;
    }

    .dg-highlight-image {
        width: 100%;
        height: 150px;
    }
}

/* -------------------------------------------------------------------------
   Admin Styles (for settings page)
   ------------------------------------------------------------------------- */
.dg-admin-section {
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
}

.dg-admin-section h2 {
    margin-top: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.dg-sync-button {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.dg-sync-button:hover {
    background: #005a87;
}

.dg-sync-status {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
}

.dg-sync-status.success {
    background: #d4edda;
    color: #155724;
}

.dg-sync-status.error {
    background: #f8d7da;
    color: #721c24;
}

.dg-last-sync {
    font-size: 13px;
    color: #666;
    margin-top: 10px;
}

/* -------------------------------------------------------------------------
   Customizer Custom CSS
   ------------------------------------------------------------------------- */

.footer-li ul li:hover{
           color: #fff;
        text-decoration: underline;
	cursor: pointer;
}
/* currency switcher css  */
.currency-sec button.sccs-trigger {
    padding: 0;
    display: flex;
    justify-content: center !important;
    align-items: center;
	    font-size: 14px;
}
.currency-sec button.sccs-trigger:hover {
    background: #0000;
    text-decoration: underline;
}
.currency-sec ul.sccs-list {
    padding: 0;
    max-height: 205px;
    overflow-y: auto;
    color: #ffffffbf !important;
}
.currency-sec .sccs-dropdown.open {
    padding: 15px;
}
.currency-sec input.sccs-search {
    background: #0000 !important;
    color: #fff !important;
    border-radius: 0;
    border: 2px solid #fff;
	    margin-bottom: 15px;
}
.currency-sec .sccs-item {
    padding: 9px 15px;
    font-size: 14px;
}
.currency-sec .sccs-item span:nth-child(2) {
    display: none;
}
.currency-sec li.sccs-item:hover span:nth-child(2) {
    display: block !important;
}
.currency-sec .sccs-item:hover {
    background: #0000;
    color: #fff;
}
.currency-sec  button.sccs-trigger:focus {
    background: #0000;
}
/* footer */
/* #footer-currency-sec .sccs-dropdown {
    left: 0 !important;
    bottom: 35px !important;
    border: 1px solid !important;
} */
#footer-currency-sec .sccs-dropdown {
    border: 1px solid !important;
    z-index: 2;
    position: absolute !important;
    left: 0 !important;
    top: -300px;
}
#footer-currency-sec button.sccs-trigger {
    padding: 10px 12px 10px 12px;
    border: 2px solid #949494;
    border-radius: 0;
    font-size: 13px;
}
#footer-currency-sec button.sccs-trigger:hover {
    text-decoration: none;
}
/* footer */
#side-currency-sec button.sccs-trigger {
    color: #121212;
    font-size: 14px;
}

/* Digital Guides page css  */
/* dg hero  */
.dg-hero {
    padding: 44px 0 72px 0;
}
section.dg-hero {
    border-bottom: 1px solid #000000;
}
.dg-hero-container {
    max-width: 1400px !important;
    margin: 0 auto;
    padding: 0;
}
h1.dg-hero-title , h2.dg-discover-title , h2.dg-guides-title{
    padding-bottom: 20px;
    border-bottom: 1px solid #000000;
    font-size: 48px;
    font-family: "Promixa Nova", Sans-serif !important;
    font-weight: 600;
    line-height:1;
}
.dg-hero-content {
    grid-template-columns: repeat(2,1fr);
    column-gap: 4rem;
}
/* dg hero left  */
.dg-featured-guide {
    border-right: 1px solid #000000;
    padding-right: 40px;
    display: flex;
    justify-content: center;
	    height: 100%;
}
.dg-featured-guide img {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
padding-bottom: 20px;
}
.dg-featured-label , span.dg-discover-issue , span.dg-issue {
    font-size: 14px;
    color: #121212;
    font-family: "Promixa Nova", Sans-serif;
}
h2.dg-featured-name , h3.dg-discover-name {
    font-size: 24px;
    font-family: "Promixa Nova", Sans-serif !important;
    font-weight: 600;
    letter-spacing: 0.6px;
}
a.dg-featured-link , span.dg-discover-link {
    font-size: 16px;
    color: #000000;
    font-family: "Promixa Nova", Sans-serif;
    text-decoration: underline;
    text-underline-offset: .5rem;
    padding-top: 20px;
}

/* dg hero right */
.dg-highlights {
    gap: 50px;
}
.dg-highlight-item {
    display: flex !important;
    column-gap: 20px !important;
}
.dg-highlight-item img {
    min-width: 295px;
    width: 295px;
    height: 210px;
}
.dg-highlight-content {
    padding-right: 20px;
}
h3.dg-highlight-title , .dg-region-header , span.dg-city {
    font-size: 24px;
    font-weight: 600;
    font-family: "Promixa Nova", Sans-serif !important;
}
.dg-highlight-desc , p.dg-discover-desc {
    font-size: 14px;
    color: #121212;
    line-height: 1;
    padding: 0 0 20px 0;
    font-family: "Promixa Nova", Sans-serif !important;
}
a.dg-highlight-link {
    color: #000;
    text-decoration: underline;
    text-underline-offset: .5rem;
    font-size: 18px;
    font-weight: 400;
}
/* dg discover  */
section.dg-discover-section {
    max-width: 1400px !important;
    margin: 0 auto;
    padding: 56px 0px 36px 0;
}
span.dg-discover-issue {
    font-size: 16px;
}
h3.dg-discover-name , .dg-region-header , span.dg-city {
    font-size: 28px;
}

span.dg-discover-link , span.dg-issue {
    font-size: 18px;
}
p.dg-discover-desc {
    padding: 0;
    font-size: 18px;
    margin: 0;
}

/* dg guides  */
section.dg-guides-section {
    max-width: 1400px !important;
    margin: 0 auto;
    padding: 20px 0 0 0;
}
h2.dg-guides-title{
	border: 0;
	padding: 0;
	margin-bottom: 20px;
}
.dg-guide-item {
    padding: 38px 20px;
}
/* Remove left border from all except first column */
@media (min-width: 768px) {
  .dg-guide-item:not(:nth-child(4n+1)) {
    border-left: none;
  }
}
/* dg single page css  */
.dg-single-container {
    max-width: 1400px;
}
.dg-single {
    max-width: 1400px !important;
    margin: 0 auto;
    padding: 16px 20px 36px 20px;
}
.dg-single-container {
    padding: 0;
    margin: 0;
}
header.dg-single-header {
    text-align: left;
    padding: 10px 0 30px 0;
}
.dg-single span.dg-issue {
    font-size: 24px;
    font-family: "Promixa Nova", Sans-serif !important;
    color: #121212;
    text-transform: capitalize !important;
    margin: 0 !important;
}
.dg-single h1.dg-city , span.dg-nav-title {
    font-size: 48px !important;
    font-family: "Promixa Nova", Sans-serif !important;
    font-weight: 600;
    margin: 0 !important;
   color: #121212;
}
.dg-single p.dg-country, span.dg-nav-label{
    margin: 0 !important;
    color: #121212 !important;
    font-size: 16px !important;
    font-family: "Promixa Nova", Sans-serif !important;
}
span.dg-nav-label {
    font-size: 18px !important;
}
span.dg-nav-title {
	font-size: 28px !important;
}

/* Digital Guides page css  */


/* membership single page  */
.single-product main#main {
    max-width: 1400px;
    padding: 100px 0;
}
nav.woocommerce-breadcrumb a {
    font-size: 16px;
    color: #121212 !important;
    font-family: "Promixa Nova", Sans-serif;
    font-weight: 600;
}
nav.woocommerce-breadcrumb {
    color: #121212 !important;
    font-family: "Promixa Nova", Sans-serif;
}
h1.product_title.entry-title {
    font-size: 48px;
    font-family: "Promixa Nova", Sans-serif !important;
    font-weight: 600;
}
p.price {
    color: #121212 !important;
    font-family: "Promixa Nova", Sans-serif;
    font-size: 24px !important;
    font-weight: 600;
}
.woocommerce-product-details__short-description p {
    color: #121212 !important;
    font-family: "Promixa Nova", Sans-serif;
    font-size: 18px !important;
}
button.single_add_to_cart_button.button.alt , a.button.product_type_subscription.add_to_cart_button.ajax_add_to_cart {
    padding: 15px 36px;
    border-radius: 100px;
    background-color: #121212;
    font-family: "Promixa Nova", Sans-serif;
    font-size: 18px !important;
border: 1px solid #121212;
	color: #fff;
}
button.single_add_to_cart_button.button.alt:hover , a.button.product_type_subscription.add_to_cart_button.ajax_add_to_cart:hover{
    background: #0000;
    border: 1px solid #121212;
    color: #121212;
}
.product_meta {
    color: #121212;
    font-family: "Promixa Nova", Sans-serif;
}
.product_meta a {
    color: #fcb500;
}
section.related.products {
    width: 100% !important;
    clear: both;
}
section.related.products h2 , h2.woocommerce-loop-product__title , span.price {
    font-size: 40px;
    font-family: "Promixa Nova", Sans-serif !important;
    font-weight: 600;
	    color: #121212 !important;
}
h2.woocommerce-loop-product__title {
    font-size: 20px !important;
}
span.price {
	 font-size: 18px !important;
}
section.related.products ul li ,section.related.products ul {
    margin-bottom: 0 !important;
}
/* membership single page  */

/* membership page  */
.accordian-sec .e-n-accordion-item[open] > summary.e-n-accordion-item-title {
    border-bottom-color: transparent !important;
}
.e-n-accordion-item:nth-last-child(1) > summary.e-n-accordion-item-title {
    border: 0 !important;
    padding-bottom: 0;
}
.banner-btn svg {
    font-size: 12px;
}

/* membership page  */
@media (max-width: 1024px) {
	
/* 	dg hero  */
	.dg-hero-content {
    grid-template-columns: repeat(1,1fr);
}
.dg-featured-guide {
    border-right: 0;
    padding-right: 0;
}
.dg-highlight-item {
    display: block !important;
}
.dg-highlight-item img {
    min-width: 100%;
    width: 100%;
    margin-bottom: 20px;
    height: auto;
}
.dg-highlight-desc {
    padding: 0;
}

/* dg discover */
	.dg-discover-grid {
    grid-template-columns: repeat(1, 1fr);
}
	
/* dg guides  */
	.dg-guides-grid {
    grid-template-columns: repeat(1, 1fr);
}
	.single-product main#main {
    padding: 70px 32px;
}
	/* membership page  */
	.main-heading br{
		display: none;
	}
	/* membership page  */
}



@media (max-width: 767px) {
  #footer-currency-sec .sccs-dropdown {
    left: -15px !important;
  }
	.dg-hero {
    padding: 40px 0 54px 0;
}
	.single-product main#main {
    padding: 50px 30px;
}
	h1.product_title.entry-title {
    font-size: 36px;
}
	.hotel-slider img{
		width: auto !important;
	}
}


/* ---------------- Edit by Imran Malik (16/02/2026) ---------------- */

/* ----------------------------------------
   WRAPPER LAYOUT
----------------------------------------- */
.custom-checkout-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    font-family: 'Inter', sans-serif;
}

/* ----------------------------------------
   STEP NAVIGATION (TOP TABS)
----------------------------------------- */
.checkout-steps-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 20px 0;
    list-style: none;
    margin: 0;
}

.checkout-steps-nav li {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #777;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.checkout-steps-nav li::before {
    content: "";
    width: 12px;
    height: 12px;
    background: #d0d0d0;
    border-radius: 50%;
    margin-bottom: 6px;
}

.checkout-steps-nav li.active {
    color: #0026ff;
}

.checkout-steps-nav li.active::before {
    background: #0026ff;
}

/* ----------------------------------------
   STEPS
----------------------------------------- */
.checkout-step {
    display: none;
}

.checkout-step.active {
    display: flex;
    gap: 40px;
}

/* ----------------------------------------
   TWO-COLUMN LAYOUT
----------------------------------------- */
.left-side {
    background: #ffffff;
    flex: 1;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.right-side {
    background: #d6b9f6;
    flex-basis: 50%;
    padding: 30px;
}

/* ----------------------------------------
   HEADINGS STYLE
----------------------------------------- */
.left-side h3,
.right-side h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0b239f;
    margin-bottom: 20px;
}

/* ----------------------------------------
   INPUT STYLE
----------------------------------------- */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select {
    border: 1px solid #dcdcdc !important;
    padding: 14px !important;
    border-radius: 8px !important;
    font-size: 15px;
    box-shadow: none !important;
}

.woocommerce form .form-row label {
    font-weight: 600;
    font-size: 13px;
    color: #032082;
    margin-bottom: 6px;
}

/* ----------------------------------------
   ORDER SUMMARY BOX
----------------------------------------- */
.order-summary-box {
    background: white;
    border-radius: 10px;
    padding: 15px;
    margin-top: 10px;
    border: 1px solid #c7b8ff;
}

.order-summary-box p {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 600;
}

/* ----------------------------------------
   BUTTON STYLING
----------------------------------------- */
.next-step,
.prev-step {
    display: inline-block;
    padding: 16px 30px;
    border-radius: 30px;
    background: #0b43ff;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
}

.prev-step {
    background: #aaa;
}

#order-number {
    background: white;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    color: #0b239f;
    border: 1px solid #c7b8ff;
}

@media (max-width: 900px) {
    .checkout-step.active {
        flex-direction: column;
    }
}

.order-summary-box {
    background: #ffffff;
    border-radius: 10px;
    width: 100%;
    padding: 0;
    overflow: hidden;
    border: 1px solid #c3b6ff;
    margin-top: 10px;
}

.os-header {
    display: grid;
    grid-template-columns: 1fr 60px 80px;
    background: #0435b5;
    color: #fff;
    font-weight: 700;
    padding: 12px 15px;
    font-size: 14px;
    text-transform: uppercase;
}

.os-item {
    display: grid;
    grid-template-columns: 80px 1fr 60px 80px;
    padding: 15px;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
    gap: 10px;
}

.os-img img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 6px;
    background: #f9f9f9;
    border: 1px solid #ddd;
}

.os-details .os-title {
    font-size: 15px;
    font-weight: 700;
    color: #000;
}

.os-details .os-subtitle {
    font-size: 13px;
    color: #777;
    margin-top: 2px;
}

.os-qty,
.os-price {
    font-size: 15px;
    font-weight: 600;
    text-align: right;
    color: #000;
}

.os-footer {
    display: grid;
    grid-template-columns: 1fr 80px;
    background: #0435b5;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 15px;
    text-transform: uppercase;
}

.im-form-holder input,
.im-form-holder textarea,
.im-form-holder select,
.im-form-holder .select2-selection,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select {
    width: 100% !important;
    padding: 10px 20px !important;
    border-radius: 30px !important;
    font-size: 20px !important;
    margin-bottom: 24px !important;
    border: 1px solid transparent !important;
    outline: 0 !important;
    font-weight: 400 !important;
}

.im-form-holder input:focus,
.im-form-holder textarea:focus,
.im-form-holder select:focus,
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row select {
    border: 1px solid #0435b5 !important;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea,
.border-form .im-form-holder input,
.border-form .im-form-holder textarea,
.border-form .im-form-holder select,
.im-form-holder .select2-selection {
    border: 1px solid #A9A9A9 !important;
}

.im-form-holder .select2-selection {
    padding: 0 !important;
}

.im-form-holder .select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 26px !important;
}

.im-form-holder textarea,
.woocommerce form .form-row textarea {
    resize: none;
}

.im-form-holder input::placeholder,
.im-form-holder textarea::placeholder,
.woocommerce form .form-row input.input-text::placeholder,
.woocommerce form .form-row textarea::placeholder {
    color: #A9A9A9;
}

.im-form-holder label {
    color: #000000 !important;
    font-weight: 600 !important;
    text-transform: uppercase;
}

.im-button-holder {
    display: flex;
    gap: 30px;
}

.im-main-btn,
.im-main-btn:active,
.im-main-btn:visited,
.im-main-btn:focus,
.im-form-holder input[type=submit],
.im-form-holder input[type=submit]:active,
.im-form-holder input[type=submit]:visited,
.im-form-holder input[type=submit]:focus,
.im-form-holder button,
.im-form-holder button:active,
.im-form-holder button:visited,
.im-form-holder button:focus,
.place-order button,
.place-order button:active,
.place-order button:visited,
.place-order button:focus {
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 14px 20px !important;
    border-radius: 30px !important;
    background: #133AA9 !important;
    color: #ffffff !important;
    border: 0 !important;
}

.im-main-btn:hover,
.im-form-holder input[type=submit]:hover,
.im-form-holder button:hover,
.place-order button:hover {
    background: #000000 !important;
}

.upper {
    text-transform: uppercase;
}

.im-link {
    color: #133AA9;
}

.im-h2 {
    font-weight: 800 !important;
    font-size: 30px !important;
    line-height: 34px !important;
    text-transform: uppercase;
    color: #133AA9;
    margin-top: 0;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}


.im-h2 span {
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 14px !important;
    text-transform: uppercase;
    color: #D6B9F6;
}

.im-order-heading h2,
.im-h3 {
    font-weight: 700 !important;
    font-size: 22px !important;
    line-height: 22px !important;
    text-transform: uppercase;
    color: #133AA9 !important;
    margin-top: 100px;
}

.secure-server-label {
    font-size: 14px;
    color: #D6B9F6;
    text-transform: none;
    font-weight: 400;
}

.summary-label {
    font-size: 14px;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
    text-transform: uppercase;
    margin-top: 30px;
}

.billing-address-details {
    line-height: 1.6;
    color: #777;
    /* Grey text from image */
    font-size: 15px;
}

.summary-divider {
    border: 0;
    border-top: 1px solid #eee;
    margin: 20px 0 !important;
}

.thank-you-text {
    color: #133AA9;
}

.thank-you-cta {
    margin-top: 30px;
}

.payment-icon img {
    max-height: 20px;
    margin-top: 5px;
}

.woocommerce-SavedPaymentMethods,
.woocommerce-SavedPaymentMethods li,
.woocommerce-SavedPaymentMethods li input {
    padding: 0;
    margin: 0;
}

.woocommerce-SavedPaymentMethods li input {
    width: auto !important;
    padding: 0 !important;
    margin: 0 !important;
}

.woocommerce-SavedPaymentMethods li {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}

.woocommerce-button.button.woocommerce-form-login__submit {
    width: 100% !important;
}

.woocommerce-billing-fields>h3,
.woocommerce-account-fields>h3,
.woocommerce-billing-fields__field-wrapper+h3 {
    display: none !important;
}

.divider-line {
    content: "";
    position: relative;
    height: 1px;
    width: 100%;
    background: #133AA9;
}

.divider-line span {
    background: #d6b9f6;
    padding: 5px 20px;
    position: relative;
    top: -8px;
}

.xs-login.xs-login--style-2 {
    justify-content: center;
}

#xs-social-login-container {
    padding-bottom: 0;
    max-height: 30px;
}

/* Base Style for All Alerts */
.im-alert {
    padding: 15px 20px;
    border-radius: 4px;
    margin: 15px 0;
    font-size: 14px;
    line-height: 1.6;
    border-left: 4px solid;
    background: #f9f9f9;
    display: block;
}

/* Error (WooCommerce Red) */
.im-alert.im-error {
    border-left-color: #b81c23;
    background: #f8d7da;
    color: #842029;
}

/* Success (WooCommerce Green) */
.im-alert.im-success {
    border-left-color: #46b450;
    background: #d1e7dd;
    color: #0f5132;
}

/* Danger (same as error but more intense) */
.im-alert.im-danger {
    border-left-color: #dc3545;
    background: #f8d7da;
    color: #842029;
}

/* Info (WooCommerce Blue) */
.im-alert.im-info {
    border-left-color: #1e85be;
    background: #d1ecf1;
    color: #0c5460;
}

/* Optional: Fade-in Animation */
.im-alert {
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --------------------- Progress Nav --------------------- */
.checkout-progress-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    list-style: none;
    padding: 40px 60px 50px;
    margin: 0;
    position: relative;
}

/* Center line */
.checkout-progress-bar:before {
    content: "";
    position: absolute;
    top: 52px;
    /* Adjusted to match screenshot */
    left: 80px;
    right: 80px;
    height: 2px;
    background: #004fbb;
    z-index: 0;
}

/* Step container */
.cpb-step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.cpb-step.step-1 {
    text-align: left;
}

.cpb-step.step-1 .cpb-label {
    margin-left: -17px;
}

.cpb-step.step-3 {
    text-align: right;
}

.cpb-step.step-3 .cpb-label {
    margin-right: -25px;
}

/* Circles */
.cpb-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #004fbb;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    position: relative;
}

/* Tick inside active step */
.cpb-step.active .cpb-circle {
    background: #004fbb;
    border-color: #004fbb;
}

.cpb-step.active .cpb-circle::after {
    content: "✔";
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    position: absolute;
}

.cpb-step.checked .cpb-circle::after {
    content: "✔";
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    position: absolute;
}

/* Label below circle */
.cpb-label {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #004fbb;
    text-transform: uppercase;
}

/* Inactive label */
.cpb-step:not(.active) .cpb-label {
    color: #6f7fbf;
}

@media (max-width: 991px) {

    .checkout-step,
    .im-h2 {
        flex-direction: column;
    }

    .left-side,
    .right-side {
        padding: 10px;
    }

    .left-side {
        order: 2;
    }

    .right-side {
        order: 1;
    }

    .im-h2 {
        align-items: start;
    }
}



.im-form-holder.im-colored-border input,
.im-form-holder.im-colored-border textarea,
.im-form-holder.im-colored-border select,
.im-form-holder.im-colored-border .select2-selection {
    border: 1px solid #0435b5 !important;
}

.white-divider-line {
    content: "";
    position: relative;
    height: 1px;
    width: 100%;
    background: #133AA9;
}

.white-divider-line span {
    background: #ffffff;
    padding: 5px 20px;
    position: relative;
    top: -8px;
}