* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
body { font-family: "Open Sans", Arial, sans-serif; background: var(--color-white); color: var(--color-text-dark); overflow-x: hidden; -webkit-font-smoothing: antialiased; }

/* ===== INFO BAR (green top bar) ===== */
.info-bar { background: var(--color-brand-green); color: var(--color-white); width: 100%; z-index: 110; position: relative; }
.info-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 44px;
    margin: 0 auto;
    padding: 0 24px;
    height: 44px;
}
.info-bar-item { display: flex; align-items: center; gap: 9px; font-size: 13px;  white-space: nowrap; color: var(--color-white); text-decoration: none; }
.info-bar-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--color-white); }

/* Mobile: horizontal scroll, single line */
@media (max-width: 899px) {
    .info-bar-inner {
        justify-content: flex-start;
        gap: 26px;
        height: 40px;
        overflow-x: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
        padding: 0 16px;
    }
    .info-bar-inner::-webkit-scrollbar { display: none; }
    .info-bar-item { font-size: 11.5px; }
    .info-bar-item svg { width: 14px; height: 14px; }
}

/* ===== MOBILE HEADER ===== */
.mobile-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 16px; background: var(--color-white); position: relative; z-index: 100; }
.hamburger { width: 26px; height: 18px; display: flex; flex-direction: column; justify-content: space-between; cursor: pointer; flex-shrink: 0; z-index: 102; }
.hamburger, .mobile-menu-close { appearance: none; -webkit-appearance: none; border: 0; background: transparent; padding: 0; font: inherit; }
.logo-mobile a, .logo-desktop a { display: block; }
.logo-mobile img, .logo-desktop img { display: block; width: auto; }
.mobile-header .logo-mobile > a > img { height: 30px; }
.mobile-menu .logo-mobile > a > img { height: 40px; max-height: 40px !important; }
.desktop-header .logo-desktop img { height: 40px; max-height: 40px !important; }
.hamburger span { display: block; height: 1.5px; background: var(--color-brand-green); border-radius: 1px; width: 100%; transition: transform 0.3s ease, opacity 0.3s ease; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
.logo-mobile { display: flex; align-items: center; gap: 1px; }
.logo-mobile img { max-height: 30px !important; }
.logo-mobile .logo-text { font-size: 26px; font-weight: 800; color: var(--color-text-heading); letter-spacing: -0.5px; line-height: 1; }
.logo-mobile .logo-icon { width: 32px; height: 32px; position: relative; margin-left: 1px; margin-top: -2px; }
.logo-mobile .logo-sub { font-size: 8px; font-weight: 700; color: var(--color-text-light); letter-spacing: 2.5px; margin-top: -1px; margin-left: 1px; }
.header-right-mobile { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.account-btn-mobile { width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; }
.account-btn-mobile svg { width: 24px; height: 24px; color:var(--color-brand-green); }
/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu-overlay { position: fixed; inset: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); z-index: 99; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }
.mobile-menu { position: fixed; top: 0; left: 0; width: 85%; max-width: 360px; height: 100%; background: var(--color-white); z-index: 999; overflow-y: auto; transform: translate3d(-100%,0,0); transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1); will-change: transform; box-shadow: 4px 0 20px rgba(0,0,0,0.15); }
.mobile-menu.active { transform: translate3d(0,0,0); }
.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; padding: 16px; border-bottom: 1px solid var(--color-border-lighter); }
.mobile-menu-close { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; cursor: pointer; border-radius: 50%; }
.mobile-menu-close:hover { background: var(--color-bg-soft); }
.mobile-menu-close svg { width: 20px; height: 20px; color: var(--color-text-heading); }
.mobile-menu-section { padding: 8px 0; border-bottom: 1px solid var(--color-border-light); }
.mobile-menu-section-title { font-size: 11px; font-weight: 700; color: var(--color-text-light); text-transform: uppercase; letter-spacing: 1px; padding: 12px 16px 8px; }
.mobile-menu-item { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; font-size: 15px; font-weight: 600; color: var(--color-text-heading); text-decoration: none; transition: background 0.15s; }
.mobile-menu-item:hover { background: var(--color-bg-softer); }
.mobile-menu-item svg { width: 18px; height: 18px; color: var(--color-text-lighter); }
.mobile-menu-item.highlight { color: var(--color-brand-green); }
.mobile-menu-item.premium { background: var(--color-text-heading); color: var(--color-white); margin: 8px 16px; border-radius: 8px; justify-content: center; }
.mobile-menu-item.premium:hover { background: var(--color-menu-dark-hover); }
.mobile-menu-footer { padding: 20px 16px; background: var(--color-bg-softer); }
.mobile-menu-footer-title { font-size: 12px; font-weight: 700; color: var(--color-text-secondary); margin-bottom: 12px; }
.mobile-menu-footer-item { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 14px; color: var(--color-text-secondary); }
.mobile-menu-footer-item svg { width: 18px; height: 18px; color: var(--color-brand-green); flex-shrink: 0; }
/* ===== DESKTOP HEADER ===== */
.desktop-header { display: none; }
.header-top { display: flex; align-items: center; justify-content: space-between; padding: 16px 0px 12px 0px; margin: 0 16px; }
.logo-desktop { display: flex; align-items: center; gap: 2px; flex-shrink: 0; }
.logo-desktop img { max-height: 32px !important; }
.logo-desktop .logo-text { font-size: 42px; font-weight: 800; color: var(--color-text-heading); letter-spacing: -1px; line-height: 1; }
.logo-desktop .logo-icon { width: 52px; height: 52px; position: relative; margin-left: 2px; }
.logo-desktop .logo-sub { font-size: 13px; font-weight: 700; color: var(--color-text-light); letter-spacing: 3.5px; margin-top: -2px; margin-left: 2px; }
.search-bar-desktop { flex: 1; max-width: 720px; margin: 0 32px; position: relative; }
.search-bar-desktop input { width: 100%; height: 42px; border: 2px solid var(--color-brand-green); border-radius: 8px; padding: 0 20px 0 50px; font-size: 16px; color: var(--color-text-secondary); outline: none; background: var(--color-white); }
.search-bar-desktop input::placeholder { color: var(--color-text-light); font-size: 16px; }
.search-icon-desktop { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; color: var(--color-brand-green); }
.header-right-desktop { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.lang-selector { display: flex; align-items: center; gap: 6px; cursor: pointer; }
.lang-flag { width: 22px; height: 16px; border-radius: 2px; overflow: hidden; }
.lang-flag svg { width: 100%; height: 100%; }
.lang-arrow { width: 10px; height: 6px; color: var(--color-text-secondary); }
.account-btn-desktop { display: flex; align-items: center; gap: 6px; cursor: pointer; }
.account-btn-desktop svg { width: 24px; height: 24px; color: var(--color-text-secondary); }
.account-btn-desktop .dropdown-arrow { width: 10px; height: 6px; color: var(--color-text-secondary); }
.shipping-info { text-align: center; line-height: 1.3; }
.shipping-info .main { font-size: 11px; font-weight: 700; color: var(--color-brand-green); }
.shipping-info .sub { font-size: 11px; color: var(--color-brand-green); font-weight: 600; }
.shipping-info .sub .qmark { display: inline-flex; align-items: center; justify-content: center; width: 14px; height: 14px; border: 1.5px solid var(--color-brand-green); border-radius: 50%; font-size: 10px; font-weight: 700; margin-left: 2px; cursor: pointer; }
.cart-btn-desktop { width: 46px; height: 46px; background: var(--color-brand-green); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.cart-btn-desktop svg { width: 22px; height: 22px; color: var(--color-white); }
/* Desktop Navigation - BELOW header line */
.main-nav { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 8px 16px 14px 16px; width: 100%; margin: 0 auto; flex-wrap: wrap; }
.nav-item { font-size: 15px; font-weight: 600; color: var(--color-text-heading); text-decoration: none; padding: 8px 14px; border-radius: 6px; transition: background 0.2s; white-space: nowrap; line-height: 1.3; text-align: center; }
.nav-item:hover { background: var(--color-bg-soft); }
.nav-item.highlight { background: var(--color-accent-pink); color: var(--color-white); padding: 8px 18px; }
.nav-item.premium { background: var(--color-text-heading); color: var(--color-white); padding: 8px 22px; }
.nav-item.premium:hover { background: var(--color-menu-dark-hover); }

/* ===== MOBILE SEARCH BAR ===== */
.search-bar-mobile { padding: 0 16px 16px 16px; background: var(--color-white); }
.search-input-wrapper { position: relative; width: 100%; }
.search-input-wrapper input { width: 100%; height: 44px; border: 2px solid var(--color-brand-green); border-radius: 10px; padding: 0 16px 0 48px; font-size: 16px; color: var(--color-text-secondary); outline: none; background: var(--color-white); -webkit-appearance: none; }
.search-input-wrapper input::placeholder { color: var(--color-text-light); font-size: 16px; }
.search-icon-mobile-input { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; color: var(--color-brand-green); }
.thaps-search-box {
    max-width: 100% !important;
}

@media (min-width: 900px) {
    .mobile-header, .search-bar-mobile, .hero-banner-mobile, .trust-bar-wrapper-mobile, .mobile-menu-overlay, .mobile-menu { display: none !important; }
    .desktop-header { display: block; }
    .hero-banner-desktop, .trust-bar-desktop { display: flex; }
}


/* Desktop contact widget */
        .contact-widget {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: inherit;
            border-radius: 5px;
            padding: 5px 12px;
            white-space: nowrap;
        }

        .contact-widget-icon svg {
            display: block;
            color: var(--color-brand-green); 
        }
        .contact-widget-text {
            display: flex;
            flex-direction: column;
            line-height: 1.3;
        }
        .contact-label {
            font-size: 11px;
            color: var(--color-text-light);
        }
        .contact-number {
            font-size: 14px;
            font-weight: 600;
            color: var(--color-text-strong);
        }

        /* Mobile contact icon */
        .contact-btn-mobile a {
            display: flex;
            align-items: center;
            color: var(--color-brand-green);
        }
        
        
        /* search bar **/
        
        .thaps-from-wrap {

            border-radius: 0.4rem !important;
            border-color: var(--color-brand-green) !important;
        }
        
        .th-icon .th-icon-vector-search .icon-style {
            color: var(--color-brand-green) !important;
        }