/* Hide Alpine x-cloak elements until Alpine initialises */
[x-cloak] {
    display: none !important;
}

.required {
    color: red !important;
}
@media (max-width: 575px) {
    .header-logo {
        max-width: 165px;
    }
}
/*header top start*/
.header-layout1.style3 .header-links li:first-child {
    display: inline-block;
}

@media (max-width: 767.98px) {
    .header-links li:not(:last-child) {
        margin-right: 0px;
    }
    .header-links ul {
         display: inline-block;
         /*flex-direction: column;*/
         /*align-items: center;*/
        gap: 3px;
        padding: 0;
        margin: 0;
    }
    .header-links ul li {
        font-size: 12px !important;
    }
    .header-links ul li a {
        font-size: 14px !important;
    }
}
/*header top end*/
/* Product Action Buttons - Reusable across all pages */
.product-action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.product-action-buttons .btn-add-cart {
    flex: 1;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    color: white;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

.product-action-buttons .btn-add-cart:hover {
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.product-action-buttons .btn-buy-now {
    flex: 1;
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    border: none;
    color: white;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
}

.product-action-buttons .btn-buy-now:hover {
    background: linear-gradient(135deg, #1e7e34 0%, #145a27 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

/* Small version of product action buttons - for related products and shop page */
.product-action-buttons.btn-sm {
    gap: 6px;
    margin-top: 8px;
}

.product-action-buttons.btn-sm .btn-add-cart,
.product-action-buttons.btn-sm .btn-buy-now {
    padding: 6px 8px;
    font-size: 10px;
    gap: 3px;
}

.product-action-buttons.btn-sm .btn-add-cart i,
.product-action-buttons.btn-sm .btn-buy-now i {
    font-size: 9px;
}

.product-action-buttons.btn-sm .btn-add-cart,
.product-action-buttons.btn-sm .btn-buy-now {
    white-space: normal;
}

/* ============================================================
   TecBird JAPAN IT — Premium Navigation Styles
   ============================================================ */

/* ── Header-bottom: visible separator from logo section ── */
.header-layout1 .header-bottom .sticky-active {
    background: #fff;
    border-top: 2px solid #f0f0f0;
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.07);
}

/* menu-top row fills the bar height */
.header-layout1 .header-bottom .menu-top {
    min-height: 60px;
}

/* menu-inner: logo left, nav fills remaining space */
.header-layout1 .menu-inner {
    display: flex;
    align-items: center;
    width: 100%;
}

/* nav wrapper: takes all remaining space and centers its content (on desktop) */
.header-layout1 .menu-area {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 991.98px) {
    /* on mobile, push the hamburger menu to the right edge */
    .header-layout1 .menu-area {
        justify-content: flex-end;
    }
    .header-layout1 .header-logo img.logo {
        height: 50px !important;  /* slightly smaller logo on mobile so it fits nicely */
    }
}

/* ── Inter font scoped to nav ── */
.tb-nav>ul>li>a,
.tb-nav__login-btn,
.tb-mobile-toggle {
    font-family: 'Inter', sans-serif;
}

/* ── Nav UL: flex row, 60px tall, centered ── */
.tb-nav>ul {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 60px;
}

/* ── Regular nav links (excludes .tb-nav__cta li) ── */
.tb-nav>ul>li:not(.tb-nav__cta)>a {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 60px;
    padding: 0 18px;
    font-size: 13.5px;
    font-weight: 500;
    color: #2c2c3e;
    letter-spacing: 0.2px;
    text-decoration: none !important;
    border-bottom: none !important;
    /* prevent theme border on hover */
    box-shadow: none !important;
    white-space: nowrap;
    transition: color 0.22s ease;
}

/* 🟥 KILL THEME'S DEFAULT UNDERLINE (from .menu-style1) 🟥 */
nav.menu-style1.tb-nav>ul>li>a::before,
nav.menu-style1.tb-nav>ul>li:hover>a::before,
nav.menu-style1.tb-nav>ul>li.active>a::before {
    display: none !important;
    content: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    width: 0 !important;
    background: transparent !important;
}

/* Center-out underline — ONLY regular links, NEVER .tb-nav__cta */
.tb-nav>ul>li:not(.tb-nav__cta)>a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    /* offset from bottom edge — not touching breadcrumb */
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--theme-color, #e84545);
    border-radius: 2px;
    transition: width 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover: only show underline, color already red on active so no double effect */
.tb-nav>ul>li:not(.tb-nav__cta)>a:hover {
    color: var(--theme-color, #e84545);
    text-decoration: none !important;
    /* double-kill theme underline on hover */
    border-bottom: none !important;
    /* kill theme border-bottom */
    box-shadow: none !important;
    /* kill theme box-shadow underline */
    outline: none !important;
}

.tb-nav>ul>li:not(.tb-nav__cta)>a:hover::after {
    width: 55%;
}

/* ── Active page indicator ── */
.tb-nav>ul>li.active:not(.tb-nav__cta)>a {
    color: var(--theme-color, #e84545);
    font-weight: 600;
}

.tb-nav>ul>li.active:not(.tb-nav__cta)>a::after {
    width: 55%;
}

/* ── CTA li: vertically centered, does NOT stretch full 60px ── */
.tb-nav__cta {
    margin-left: 16px;
    display: flex;
    align-items: center;
    /* button stays at its natural size */
}

/* ── Login / Logout button: solid pill ── */
.tb-nav__login-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: var(--theme-color, #e84545);
    border: 2px solid var(--theme-color, #e84545);
    color: #fff !important;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
    cursor: pointer;
    text-decoration: none !important;
    white-space: nowrap;
    line-height: 1.4;
    transition: background 0.22s ease, border-color 0.22s ease,
        box-shadow 0.22s ease, transform 0.18s ease;
}

/* Explicitly kill any ::after on the button */
.tb-nav__login-btn::after {
    display: none !important;
}

.tb-nav__login-btn:hover {
    background: #c0392b;
    border-color: #c0392b;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(192, 57, 43, 0.4);
    transform: translateY(-1px);
}



/* ── Mobile nav list items ── */
.tb-mobile-nav>ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.tb-mobile-nav>ul>li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.tb-mobile-nav>ul>li>a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
}

.tb-mobile-nav>ul>li>a i {
    font-size: 13px;
    color: var(--theme-color, #e84545);
    width: 16px;
}

.tb-mobile-nav>ul>li>a:hover {
    color: var(--theme-color, #e84545);
    padding-left: 28px;
    background: rgba(232, 69, 69, 0.04);
}

.tb-mobile-nav>ul>li.active>a {
    color: var(--theme-color, #e84545);
    font-weight: 600;
}

/* Mobile Login button */
.tb-mobile-nav__login {
    padding: 16px 20px !important;
    border-bottom: none !important;
}

.tb-mobile-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
    padding: 11px 20px;
    background: var(--theme-color, #e84545);
    color: #fff !important;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.tb-mobile-login-btn:hover {
    background: #c0392b;
    transform: translateY(-1px);
}

/* Mobile Logout button */
.tb-mobile-nav__logout {
    padding: 16px 20px !important;
    border-bottom: none !important;
}

.tb-mobile-logout-btn {
    width: 100%;
    padding: 11px 20px;
    background: none;
    border: 2px solid var(--theme-color, #e84545);
    color: var(--theme-color, #e84545);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}

.tb-mobile-logout-btn:hover {
    background: var(--theme-color, #e84545);
    color: #fff;
}

/* ── Hamburger / Mobile Toggle ── */
.tb-mobile-toggle {
    background: none;
    border: 2px solid var(--theme-color, #e84545);
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.tb-mobile-toggle:hover {
    background: var(--theme-color, #e84545);
}

.tb-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.tb-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--theme-color, #e84545);
    border-radius: 2px;
    transition: background 0.2s ease, transform 0.3s ease, opacity 0.2s ease;
    transform-origin: center;
}

.tb-mobile-toggle:hover .tb-hamburger span {
    background: #fff;
}

/* Animate hamburger → X when mobile menu is open */
.vs-body-visible .tb-hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.vs-body-visible .tb-hamburger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.vs-body-visible .tb-hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.footer-layout1.style2 .cta-layout1 .cta-logo {
    background: #fff !important;
}
@media (max-width: 767px) {
    .footer-layout1.style2 .cta-layout1 {
        background: #fff !important;
    }
}

/* ============================================================
   BRAND STATEMENT & SOCIAL LINKS - Footer Top CTA (Fixed)
   ============================================================ */

/* Main wrapper: 2-column Flexbox layout */
.cta-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    min-height: 100%;
}

/* ── LEFT: Brand Tagline Section ── */
.cta-tagline-section {
    flex: 1;
    display: flex;
    align-items: center;
}

.cta-brand-tagline {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.65;
    letter-spacing: 0.3px;
    margin: 0;
    padding: 0;
    color: #e8e8e8;
    font-family: 'Poppins', sans-serif;
}

/* ── RIGHT: Social Links Section ── */
.cta-social-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
    white-space: nowrap;
}

.cta-social-title {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-family: 'Josefin Sans', sans-serif;
}

/* ── Social Icons Container ── */
.cta-social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* ── Individual Social Icon Button ── */
.cta-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 3px 12px rgba(0, 123, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.cta-social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.35s ease, height 0.35s ease;
    z-index: 0;
}

.cta-social-icon:hover {
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 24px rgba(0, 123, 255, 0.4);
}

.cta-social-icon:hover::before {
    width: 110px;
    height: 110px;
}

.cta-social-icon i {
    position: relative;
    z-index: 1;
    font-weight: 600;
}

/* ── Responsive Adjustments ── */
@media (max-width: 1199px) {
    .cta-content-wrapper {
        gap: 30px;
    }

    .cta-brand-tagline {
        font-size: 15px;
        line-height: 1.6;
    }

    .cta-social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .cta-social-title {
        font-size: 12px;
    }
}

@media (max-width: 991.98px) {
    .cta-content-wrapper {
        flex-direction: column;
        gap: 24px;
        align-items: center;
        text-align: center;
    }

    .cta-tagline-section {
        justify-content: center;
    }

    .cta-social-section {
        align-items: center;
    }

    .cta-brand-tagline {
        font-size: 14.5px;
    }
}

@media (max-width: 767px) {
    .cta-content-wrapper {
        gap: 20px;
        padding: 20px 0;
    }

    .cta-brand-tagline {
        font-size: 13.5px;
        line-height: 1.5;
    }

    .cta-social-icons {
        gap: 12px;
    }

    .cta-social-icon {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .cta-social-title {
        font-size: 11px;
        letter-spacing: 1px;
    }
}
/* ============================================================
   PAGE CONTENT COLOR & TEXT VISIBILITY - CORE STYLES
   ============================================================ */

/* Main page containers */
.vs-page-content,
.page-content,
.page-wrapper,
.content-wrapper,
main {
    color: #333333;
}

/* Card and box content */
.card,
.box,
.content-box {
    color: #333333;
}

.card-title,
.box-title,
.content-title {
    color: #202c45;
    font-weight: 600;
}

.card-text,
.box-text,
.content-text {
    color: #555555;
}

/* Product descriptions */
.product-description,
.product-detail,
.product-content {
    color: #333333;
    line-height: 1.6;
}

.product-title {
    color: #202c45 !important;
    font-weight: 600;
}

.product-price {
    color: var(--theme-color, #202c45);
    font-weight: 700;
}

/* Text content blocks */
.text-content,
.content-block,
.description {
    color: #333333;
}

/* Ensure accessibility: strong contrast on all backgrounds */
.vs-page-wrapper,
.page {
    background: #ffffff;
}

.footer-top{padding-top: 50px !important; padding-bottom: 30px !important; }

/* Footer bottom-info: white background, black text, no link underline */
.bottom-info {
    background-color: #ffffff !important;
    color: #000000 !important;
}

.bottom-info a,
.bottom-info .social-links a,
.bottom-info .copyright-menu a {
    color: #000000 !important;
    text-decoration: none !important;
}

.bottom-info a:hover,
.bottom-info .social-links a:hover,
.bottom-info .copyright-menu a:hover {
    text-decoration: none !important;
    opacity: 0.75;
}

/* ============================================================
   Header Top Bar — Mobile Fix
   ============================================================ */

/* On mobile, stack items vertically and keep text legible */
@media (max-width: 767.98px) {
    .header-layout1 .header-top .container > .row {
        flex-direction: column;
        align-items: center;
        gap: 4px;
        padding: 6px 0;
    }

    .header-links ul {
        display: inline-block;
        flex-direction: column;
        align-items: center;
        gap: 3px;
        padding: 0;
        margin: 0;
    }

    .header-links ul li {
        font-size: 11px;
        line-height: 1.4;
        text-align: center;
    }

    .header-links ul li a {
        font-size: 11px;
        word-break: break-all;
    }

    .header-right {
        justify-content: center;
    }
}

/* ============================================================
   Mobile Cart — Direct Checkout (hide dropdown on touch screens)
   The cart <a> already links to checkout; we just suppress the
   hover/focus dropdown so it never appears on mobile.
   ============================================================ */
@media (max-width: 768px) {
    /* Hide the mini-cart dropdown entirely on mobile */
    .header-cart .woocommerce.widget_shopping_cart {
        display: none !important;
    }

    /* Ensure the cart icon itself is fully clickable / tappable */
    .header-cart .vs-icon.has-badge {
        pointer-events: auto !important;
        cursor: pointer;
    }
}
