
/* HarmoniaLife Custom CSS */

/* Fix product card image heights - ensure consistent sizing */
.tp-product-thumb img {
    height: 250px !important;
    width: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
}

/* Product listing page */
.tp-shop-product .tp-product-thumb img {
    height: 220px !important;
}

/* Smaller cards on mobile */
@media (max-width: 767px) {
    .tp-product-thumb img {
        height: 180px !important;
    }
}

/* Fix product item equal height */
.tp-product-item {
    height: 100%;
}

/* Hide empty header top bar (language bar removed) */
.tp-header-top {
    display: none !important;
}

/* Logo: let width be auto to preserve aspect ratio (theme was forcing square) */
.logo img,
.logo a img,
.tp-header-logo img,
header .logo img {
    width: auto !important;
    height: 68px !important;
    max-width: none !important;
    object-fit: contain !important;
    background: transparent !important;
}
/* Sticky header logo height a touch smaller */
.tp-header-sticky .logo img {
    height: 54px !important;
}
/* Mobile: smaller logo */
@media (max-width: 767px) {
    .logo img { height: 44px !important; }
}

/* Mobile sticky header: stop logo overlapping buttons */
@media (max-width: 767px) {
    .tp-header-sticky.tp-header-sticky-active .logo img,
    .tp-header-mobile-area .logo img,
    .tp-header-sticky .logo img {
        height: 34px !important;
        max-width: 140px !important;
    }
    /* Give right actions breathing room */
    .tp-header-sticky .tp-header-action,
    .tp-header-mobile-area .tp-header-action {
        gap: 10px;
    }
    /* Truncate logo container so it doesnt expand past safe area */
    .tp-header-sticky .logo,
    .tp-header-mobile-area .logo {
        max-width: 50%;
        overflow: hidden;
    }
}

/* Full-width slider text overlay */
.tp-slider-item { position: relative; overflow: hidden; }
.tp-slider-fullwidth-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 55%, rgba(0,0,0,0) 100%);
    z-index: 2;
}
.tp-slider-fullwidth-content {
    max-width: 620px;
    color: #fff;
    padding: 40px 20px;
    pointer-events: auto;
}
.tp-slider-fullwidth-subtitle {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(6px);
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 18px;
}
.tp-slider-fullwidth-title {
    font-size: clamp(28px, 5vw, 52px) !important;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 16px;
    font-weight: 700;
    text-shadow: 0 4px 18px rgba(0,0,0,.35);
}
.tp-slider-fullwidth-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    margin: 0 0 28px;
    text-shadow: 0 2px 10px rgba(0,0,0,.35);
    max-width: 540px;
}
.tp-slider-fullwidth-btn .tp-btn {
    background: #2d6a4f;
    color: #fff;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .25s;
    box-shadow: 0 10px 30px rgba(45,106,79,.35);
}
.tp-slider-fullwidth-btn .tp-btn:hover {
    background: #1b4332;
    transform: translateY(-2px);
    color: #fff;
}
@media (max-width: 767px) {
    .tp-slider-fullwidth-content { padding: 24px 16px; }
    .tp-slider-fullwidth-overlay { background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.55) 100%); }
}

/* ============================================= */
/* SEARCH BAR - Stoken-style restyle             */
/* ============================================= */
.tp-header-search-wrapper {
    background: #fff !important;
    border: 2px solid #2d6a4f !important;
    border-radius: 8px !important;
    overflow: hidden;
    height: 48px;
    padding: 0 !important;
}
.tp-header-search-box {
    flex: 1 1 auto;
    padding: 0 18px;
}
.tp-header-search-box input[type="search"] {
    width: 100%;
    height: 44px;
    border: none !important;
    outline: none !important;
    background: transparent !important;
    font-size: 15px;
    color: #010f1c;
    padding: 0 !important;
}
.tp-header-search-box input[type="search"]::placeholder {
    color: #7a8a8e;
}
.tp-header-search-category {
    position: relative;
    flex: 0 0 auto;
    border-left: 1px solid #e5e8eb;
    padding: 0 14px;
    height: 44px;
    display: flex;
    align-items: center;
    cursor: pointer;
    background: #fafafa;
    min-width: 170px;
}
.tp-header-search-category .product-category-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #010f1c;
    white-space: nowrap;
}
.tp-header-search-category .product-category-label svg {
    width: 14px;
    height: 14px;
    transition: transform .2s;
}
.tp-header-search-category:hover .product-category-label svg {
    transform: rotate(180deg);
}
.tp-header-search-btn {
    flex: 0 0 auto;
}
.tp-header-search-btn button {
    background: #2d6a4f !important;
    color: #fff !important;
    border: none !important;
    width: 56px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    border-radius: 0;
    margin: 0;
}
.tp-header-search-btn button:hover {
    background: #1b4332 !important;
}
.tp-header-search-btn button svg,
.tp-header-search-btn button .icon {
    width: 20px;
    height: 20px;
    color: #fff;
    stroke: #fff;
}
/* Category dropdown list when opened */
.tp-header-search-category .tp-header-search-category-dropdown,
.ajax-search-categories-dropdown {
    position: absolute;
    top: 100%;
    left: -2px;
    right: -2px;
    background: #fff;
    border: 1px solid #e5e8eb;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    z-index: 99;
    max-height: 360px;
    overflow-y: auto;
    padding: 8px 0;
    margin-top: 2px;
    border-radius: 0 0 8px 8px;
}
.ajax-search-categories-dropdown a,
.ajax-search-categories-dropdown li {
    display: block;
    padding: 8px 16px;
    color: #010f1c;
    font-size: 14px;
    text-decoration: none;
    transition: background .15s;
}
.ajax-search-categories-dropdown a:hover,
.ajax-search-categories-dropdown li:hover {
    background: #f1f5f3;
    color: #2d6a4f;
}

/* ============================================= */
/* ALL CATEGORIES DROPDOWN BUTTON (below header) */
/* ============================================= */
.tp-category-menu-btn {
    background: #2d6a4f !important;
    color: #fff !important;
    width: 100%;
    border: none !important;
    padding: 14px 20px !important;
    border-radius: 6px 6px 0 0;
    display: flex !important;
    align-items: center;
    gap: 10px;
    font-weight: 600 !important;
    font-size: 15px;
    cursor: pointer;
    transition: background .2s;
}
.tp-category-menu-btn:hover {
    background: #1b4332 !important;
}
.tp-category-menu-btn svg {
    stroke: #fff;
    fill: #fff;
}
.tp-category-menu-content {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    border: 1px solid #e5e8eb;
    border-top: none;
    border-radius: 0 0 6px 6px;
    max-height: 500px;
    overflow-y: auto;
}
.tp-category-menu-content ul {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}
.tp-category-menu-content ul li {
    position: relative;
}
.tp-category-menu-content ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all .15s;
    border-left: 3px solid transparent;
}
.tp-category-menu-content ul li a:hover {
    background: #f1f5f3;
    color: #2d6a4f;
    border-left-color: #2d6a4f;
    padding-left: 22px;
}
.tp-category-menu-content ul li.has-dropdown > a::after {
    content: '›';
    margin-left: auto;
    font-size: 18px;
    color: #999;
}

/* Submenu popout for categories */
.tp-category-menu-content .tp-submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
    border: 1px solid #e5e8eb;
    min-width: 240px;
    padding: 8px 0;
    border-radius: 6px;
}
.tp-category-menu-content ul li:hover > .tp-submenu {
    display: block;
}

/* Mobile: keep search usable */
@media (max-width: 991px) {
    .tp-header-search-wrapper { height: 44px; }
    .tp-header-search-category { min-width: 120px; }
    .tp-header-search-btn button { width: 48px; height: 40px; }
}

/* ============================================= */
/* Categories dropdown: hover-open + active      */
/* ============================================= */
.tp-category-menu.tp-category-menu-toggle:hover .tp-category-menu-content,
.tp-category-menu:hover > .tp-category-menu-content,
.tp-header-category:hover .tp-category-menu-content,
.tp-category-menu-content.is-open {
    display: block !important;
}
.tp-header-category-toggle {
    position: relative;
}
/* Keep dropdown visible while hovering over it */
.tp-category-menu-content {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 50;
    display: none;
}
.tp-header-category .tp-category-menu-btn {
    border-radius: 6px;
}
}

/* ============================================= */
/* STICKY HEADER: white bg + dark logo variant   */
/* ============================================= */
.tp-header-sticky-area {
    background: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border-bottom: 1px solid #e5e8eb;
}
.tp-header-sticky-area .logo--sticky img {
    height: 55px !important;
    width: auto !important;
    max-width: none !important;
}
/* Dark menu text on white sticky */
.tp-header-sticky-area .tp-header-sticky-menu a,
.tp-header-sticky-area nav a {
    color: #010f1c !important;
}
.tp-header-sticky-area .tp-header-sticky-menu a:hover,
.tp-header-sticky-area nav a:hover {
    color: #2d6a4f !important;
}
/* Action icons on white bg */
.tp-header-sticky-area .tp-header-action-btn,
.tp-header-sticky-area .tp-header-action-item svg {
    color: #010f1c !important;
    stroke: #010f1c;
}
.tp-header-sticky-area .tp-header-action-btn:hover {
    color: #2d6a4f !important;
}
.tp-header-sticky-area .tp-header-action-badge {
    background: #2d6a4f !important;
    color: #fff !important;
}

/* Mobile sticky: smaller logo, white bg */
@media (max-width: 767px) {
    .tp-header-sticky-area .logo--sticky img {
        height: 40px !important;
        max-width: 140px !important;
    }
    .tp-header-sticky-area .tp-header-action {
        gap: 10px;
    }
    .tp-header-sticky-area .logo {
        max-width: 55%;
        overflow: hidden;
    }
}

/* ============================================= */
/* Desktop header logo — larger, mobile-safe      */
/* ============================================= */
@media (min-width: 992px) {
    .tp-header-main .logo img,
    header .tp-header-main .logo a img {
        height: 85px !important;
        max-width: 260px !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .tp-header-main .logo img {
        height: 70px !important;
        max-width: 200px !important;
    }
}

/* ============================================= */
/* SEARCH: improved category select + button      */
/* ============================================= */
.tp-header-search-wrapper {
    height: 52px !important;
    border-width: 1px !important;
    border-color: #d8dfdc !important;
    transition: border-color .2s, box-shadow .2s;
    box-shadow: 0 1px 2px rgba(0,0,0,.02);
}
.tp-header-search-wrapper:focus-within {
    border-color: #2d6a4f !important;
    box-shadow: 0 0 0 3px rgba(45,106,79,.12);
}
.tp-header-search-box {
    padding: 0 20px !important;
}
.tp-header-search-box input[type="search"] {
    height: 50px !important;
    font-size: 15px !important;
    font-weight: 400;
}

/* Category select — sleek pill-like look */
.tp-header-search-category {
    min-width: 190px !important;
    padding: 0 18px !important;
    height: 50px !important;
    background: #f6f8f7 !important;
    border-left: 1px solid #e5e8eb !important;
    border-right: 1px solid #e5e8eb !important;
    transition: background .2s;
    position: relative;
}
.tp-header-search-category:hover {
    background: #eef2ef !important;
}
.tp-header-search-category::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 50%;
    width: 4px;
    height: 4px;
    background: #2d6a4f;
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity .2s;
}
.tp-header-search-category:hover::before,
.tp-header-search-category.has-selected::before {
    opacity: 1;
}
.tp-header-search-category .product-category-label {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #2d3b35 !important;
    padding-left: 8px;
}
.tp-header-search-category .product-category-label svg {
    width: 16px !important;
    height: 16px !important;
    color: #6b7870;
}

/* Search button — gradient green with larger icon */
.tp-header-search-btn {
    padding: 0 !important;
}
.tp-header-search-btn button {
    width: 64px !important;
    height: 50px !important;
    background: linear-gradient(135deg, #2d6a4f 0%, #1b4332 100%) !important;
    color: #fff !important;
    border: none !important;
    position: relative;
    transition: all .25s;
    cursor: pointer;
}
.tp-header-search-btn button::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #40916c 0%, #2d6a4f 100%);
    opacity: 0;
    transition: opacity .25s;
}
.tp-header-search-btn button:hover::after {
    opacity: 1;
}
.tp-header-search-btn button svg,
.tp-header-search-btn button .icon,
.tp-header-search-btn button i {
    width: 22px !important;
    height: 22px !important;
    color: #fff !important;
    stroke: #fff !important;
    position: relative;
    z-index: 1;
    stroke-width: 2;
}

/* Mobile responsive search */
@media (max-width: 991px) {
    .tp-header-search-wrapper { height: 46px !important; }
    .tp-header-search-box input[type="search"] { height: 44px !important; font-size: 14px !important; }
    .tp-header-search-category { min-width: 140px !important; padding: 0 12px !important; height: 44px !important; }
    .tp-header-search-category .product-category-label { font-size: 13px !important; }
    .tp-header-search-btn button { width: 54px !important; height: 44px !important; }
}
@media (max-width: 575px) {
    .tp-header-search-category { display: none !important; }
    .tp-header-search-box { padding: 0 14px !important; }
}

/* Focus state on input: subtle highlight */
.tp-header-search-box input[type="search"]:focus {
    outline: none !important;
}

/* ============================================= */
/* MEGA MENU — Stoken-style rich category list   */
/* ============================================= */
.tp-category-menu-content {
    min-width: 320px;
    padding: 6px 0 !important;
    border-radius: 0 0 8px 8px !important;
}
.tp-category-menu-content ul li a {
    padding: 12px 22px !important;
    font-size: 14.5px !important;
    font-weight: 500;
    position: relative;
}
.tp-category-menu-content ul li a span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(45,106,79,0.08);
    margin-right: 12px;
    color: #2d6a4f;
    flex-shrink: 0;
}
.tp-category-menu-content ul li a span svg,
.tp-category-menu-content ul li a span i {
    width: 18px !important;
    height: 18px !important;
    font-size: 18px;
    color: #2d6a4f !important;
    stroke: #2d6a4f;
}
.tp-category-menu-content ul li a:hover span {
    background: #2d6a4f;
    color: #fff;
}
.tp-category-menu-content ul li a:hover span svg,
.tp-category-menu-content ul li a:hover span i {
    color: #fff !important;
    stroke: #fff;
}
.tp-category-menu-content ul li.has-dropdown > a::after {
    content: '\203A';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #999;
    line-height: 1;
}

/* Sub-menu popout */
.tp-category-menu-content .tp-submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: -6px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
    border: 1px solid #e5e8eb;
    min-width: 260px;
    padding: 6px 0;
    border-radius: 8px;
    z-index: 100;
}
.tp-category-menu-content ul li:hover > .tp-submenu {
    display: block;
}

/* "View all categories" bottom link in mega-menu */
.tp-category-menu-content::after {
    content: '';
    display: block;
    border-top: 1px solid #eef1ef;
    margin: 8px 0 0;
}

/* ============================================= */
/* SLIDER: Fix transition overlap + mobile       */
/* ============================================= */
/* Hide overlay text on non-active slides (prevents overlap during fade) */
.tp-slider-full-width .swiper-slide .tp-slider-fullwidth-content > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease;
}
.tp-slider-full-width .swiper-slide-active .tp-slider-fullwidth-content > *,
.tp-slider-full-width .swiper-slide-duplicate-active .tp-slider-fullwidth-content > * {
    opacity: 1;
    transform: translateY(0);
}
/* Stagger the animations */
.tp-slider-full-width .swiper-slide-active .tp-slider-fullwidth-subtitle { transition-delay: 0.1s; }
.tp-slider-full-width .swiper-slide-active .tp-slider-fullwidth-title { transition-delay: 0.2s; }
.tp-slider-full-width .swiper-slide-active .tp-slider-fullwidth-desc { transition-delay: 0.3s; }
.tp-slider-full-width .swiper-slide-active .tp-slider-fullwidth-btn { transition-delay: 0.4s; }

/* Also ensure the overlay itself doesn't render for inactive slides text */
.tp-slider-full-width .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-duplicate-active) .tp-slider-fullwidth-overlay {
    pointer-events: none;
}

/* Fix duplicate title bleed on mobile — force hide during transition */
.tp-slider-full-width .swiper-slide-prev .tp-slider-fullwidth-content,
.tp-slider-full-width .swiper-slide-next .tp-slider-fullwidth-content {
    opacity: 0 !important;
}

/* Mobile slider adjustments */
@media (max-width: 991px) {
    .tp-slider-fullwidth-title {
        font-size: clamp(24px, 6vw, 36px) !important;
    }
    .tp-slider-fullwidth-desc {
        font-size: 14px !important;
        max-width: 320px !important;
    }
    .tp-slider-fullwidth-content {
        max-width: 460px !important;
        padding: 20px 16px !important;
    }
    .tp-slider-fullwidth-btn .tp-btn {
        padding: 10px 22px !important;
        font-size: 14px;
    }
}
@media (max-width: 575px) {
    .tp-slider-fullwidth-title {
        font-size: clamp(20px, 7vw, 28px) !important;
        margin-bottom: 10px !important;
    }
    .tp-slider-fullwidth-desc {
        font-size: 13px !important;
        line-height: 1.45 !important;
        max-width: 260px !important;
        margin-bottom: 16px !important;
    }
    .tp-slider-fullwidth-content {
        max-width: 100% !important;
        padding: 16px !important;
    }
    .tp-slider-fullwidth-subtitle {
        font-size: 11px !important;
        padding: 4px 10px !important;
    }
    /* Darker gradient overlay on mobile for better readability */
    .tp-slider-fullwidth-overlay {
        background: linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.55) 60%, rgba(0,0,0,.65) 100%) !important;
    }
    .tp-slider-fullwidth-btn .tp-btn {
        padding: 9px 18px !important;
        font-size: 13px !important;
    }
    /* Slider height on mobile */
    .tp-slider-item img,
    .tp-slider-thumb img {
        height: 340px !important;
        object-fit: cover;
    }
}

/* ============================================= */
/* Section title with "See All" action           */
/* ============================================= */
.tp-section-title-with-action {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 32px !important;
    padding-bottom: 16px;
    border-bottom: 1px solid #eef1ef;
}
.tp-section-title-left {
    flex: 1 1 auto;
}
.tp-section-title-right {
    flex: 0 0 auto;
}
.tp-section-title-pre {
    display: inline-block;
    color: #2d6a4f;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 600;
}
.tp-section-title {
    font-size: 32px !important;
    line-height: 1.2;
    margin: 0 !important;
    color: #010f1c;
}
.tp-section-title-see-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2d6a4f;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 18px;
    border: 1px solid #2d6a4f;
    border-radius: 24px;
    transition: all .25s;
    white-space: nowrap;
    text-decoration: none;
}
.tp-section-title-see-all:hover {
    background: #2d6a4f;
    color: #fff;
    transform: translateX(2px);
}
.tp-section-title-see-all svg {
    transition: transform .25s;
}
.tp-section-title-see-all:hover svg {
    transform: translateX(3px);
}
@media (max-width: 575px) {
    .tp-section-title-with-action {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .tp-section-title { font-size: 24px !important; }
    .tp-section-title-see-all { font-size: 13px; padding: 8px 14px; }
}

/* ============================================= */
/* Product pricing (discount visual)             */
/* ============================================= */
.tp-product-price-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.tp-product-price.new-price {
    color: #d62828 !important;
    font-weight: 700 !important;
    font-size: 16px !important;
}
.tp-product-price.old-price {
    color: #999 !important;
    font-size: 14px !important;
    text-decoration: line-through;
    font-weight: 400 !important;
}
.tp-product-badge .product-sale {
    background: #d62828 !important;
    color: #fff !important;
    font-weight: 600;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: .02em;
}

/* ============================================= */
/* HEADER CATEGORIES BAR — Stoken horizontal     */
/* ============================================= */
.tp-header-categories-bar {
    background: #2d6a4f;
    color: #fff;
    border-top: 1px solid rgba(255,255,255,0.08);
    position: relative;
    z-index: 9;
}
.tp-header-categories-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 10px;
}
.tp-header-categories-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex: 1 1 auto;
    align-items: stretch;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,.25) transparent;
}
.tp-header-categories-list::-webkit-scrollbar { height: 4px; }
.tp-header-categories-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,.25); border-radius: 4px; }
.tp-header-categories-list > li {
    position: relative;
    flex: 0 0 auto;
}
.tp-header-categories-list > li > a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    padding: 16px 18px;
    font-weight: 500;
    text-decoration: none;
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: background .2s;
    height: 100%;
    white-space: nowrap;
}
.tp-header-categories-list > li:first-child > a {
    border-left: 1px solid rgba(255,255,255,0.08);
}
.tp-header-categories-list > li > a:hover,
.tp-header-categories-list > li:hover > a {
    background: rgba(255,255,255,0.08);
    color: #fff;
}
.tp-cat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}
.tp-cat-icon svg,
.tp-cat-icon i {
    width: 22px;
    height: 22px;
    color: #fff;
    stroke: #fff;
}
.tp-cat-names {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.tp-cat-line1 {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}
.tp-cat-line2 {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
}

/* Submenu (hover-open) */
.tp-cat-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,.18);
    border: 1px solid #e5e8eb;
    border-radius: 8px;
    min-width: 240px;
    padding: 8px 0;
    list-style: none;
    margin: 8px 0 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .2s, transform .2s, visibility .2s;
    z-index: 100;
}
.tp-header-categories-list > li:hover .tp-cat-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.tp-cat-submenu > li > a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    color: #2d3b35;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background .15s, color .15s, padding-left .15s;
    border-left: 3px solid transparent;
}
.tp-cat-submenu > li > a:hover {
    background: #f1f5f3;
    color: #2d6a4f;
    border-left-color: #2d6a4f;
    padding-left: 22px;
}
.tp-cat-submenu > li > a svg,
.tp-cat-submenu > li > a i {
    width: 18px;
    height: 18px;
    color: #2d6a4f;
    flex-shrink: 0;
}

/* Destek Hattı — right side */
.tp-header-categories-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    flex-shrink: 0;
    border-left: 1px solid rgba(255,255,255,0.12);
    background: rgba(0,0,0,0.05);
}
.tp-header-categories-contact .tp-cat-icon {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
}
.tp-header-categories-contact .tp-cat-icon svg {
    width: 18px;
    height: 18px;
}
.tp-cat-contact-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.tp-cat-contact-text small {
    font-size: 11px;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 500;
}
.tp-cat-contact-text a {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

/* Hide the old separate .tp-header-bottom + .tp-category-menu* if any remained */
.tp-header-bottom { display: none !important; }

/* Mobile: hide the bar (mobile already has hamburger menu) */
@media (max-width: 991px) {
    .tp-header-categories-bar { display: none !important; }
}

/* z-index fix: cat submenu must be above slider */
.tp-header-categories-bar { z-index: 999 !important; }
.tp-header-categories-list { overflow-x: visible !important; overflow-y: visible !important; }
.tp-cat-submenu { z-index: 9999 !important; }
.tp-slider-area { z-index: 1 !important; }
header { z-index: 999 !important; position: relative; }

/* ============================================= */
/* Search bar category POPOVER (custom dropdown) */
/* ============================================= */
.tp-header-search-wrapper { overflow: visible !important; }
.tp-header-search-category { cursor: pointer; }

/* Hide native select but keep functional */
.hl-cat-native-select {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
    overflow: hidden;
}

/* Chevron rotates when open */
.tp-header-search-category .product-category-label svg {
    transition: transform .2s ease;
}
.tp-header-search-category.is-open .product-category-label svg {
    transform: rotate(180deg);
}

/* Popover panel */
.hl-cat-popover {
    position: absolute;
    top: calc(100% + 6px);
    left: -1px;
    width: 320px;
    background: #fff;
    border: 1px solid #e5e8eb;
    border-radius: 10px;
    box-shadow: 0 18px 50px rgba(0,0,0,.18);
    z-index: 9999;
    padding: 8px 0 0;
    overflow: hidden;
}
.hl-cat-popover[hidden] { display: none; }

.hl-cat-popover-search {
    padding: 8px 12px 10px;
    border-bottom: 1px solid #f0f3f1;
}
.hl-cat-popover-search input {
    width: 100%;
    height: 38px;
    padding: 0 14px;
    border: 1px solid #e5e8eb;
    border-radius: 6px;
    font-size: 13px;
    outline: none;
    background: #f8faf9;
    transition: border-color .2s, background .2s;
}
.hl-cat-popover-search input:focus {
    border-color: #2d6a4f;
    background: #fff;
}

.hl-cat-popover-list {
    list-style: none;
    margin: 0;
    padding: 6px 0 8px;
    max-height: 320px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #d2d8d5 transparent;
}
.hl-cat-popover-list::-webkit-scrollbar { width: 6px; }
.hl-cat-popover-list::-webkit-scrollbar-thumb { background: #d2d8d5; border-radius: 6px; }

.hl-cat-item {
    cursor: pointer;
    padding: 9px 16px;
    font-size: 13.5px;
    color: #2d3b35;
    transition: background .15s, color .15s, border-left-color .15s;
    border-left: 3px solid transparent;
    line-height: 1.3;
    user-select: none;
}
.hl-cat-item:hover {
    background: #f1f5f3;
    color: #2d6a4f;
    border-left-color: #2d6a4f;
}
.hl-cat-item.is-active {
    background: rgba(45,106,79,0.08);
    color: #2d6a4f;
    font-weight: 600;
    border-left-color: #2d6a4f;
}

/* ============================================= */
/* PRICE FILTER — Stoken/HL custom design        */
/* ============================================= */
.hl-price-filter {
    background: #fff;
    border: 1px solid #e5e8eb;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}
.hl-price-filter .bb-product-filter-title {
    font-size: 16px !important;
    font-weight: 700;
    color: #010f1c;
    margin-bottom: 18px !important;
    padding-bottom: 12px !important;
    border-bottom: 1px solid #f0f3f1 !important;
}

/* The jQuery UI slider — make it visible & themed */
.hl-price-filter .price-slider {
    position: relative;
    height: 4px !important;
    background: #e9eef0 !important;
    border: none !important;
    border-radius: 4px !important;
    margin: 24px 8px !important;
}
.hl-price-filter .price-slider .ui-slider-range {
    background: #2d6a4f !important;
    height: 4px !important;
    border-radius: 4px !important;
    border: none !important;
    top: 0;
}
.hl-price-filter .price-slider .ui-slider-handle {
    width: 20px !important;
    height: 20px !important;
    background: #fff !important;
    border: 3px solid #2d6a4f !important;
    border-radius: 50% !important;
    top: -9px !important;
    margin-left: -10px !important;
    cursor: grab;
    box-shadow: 0 3px 10px rgba(0,0,0,.12);
    transition: transform .15s, box-shadow .15s, border-color .15s;
}
.hl-price-filter .price-slider .ui-slider-handle:hover,
.hl-price-filter .price-slider .ui-slider-handle:focus {
    border-color: #1b4332 !important;
    transform: scale(1.15);
    outline: none !important;
    box-shadow: 0 4px 16px rgba(45,106,79,.35);
}
.hl-price-filter .price-slider .ui-slider-handle:active {
    cursor: grabbing;
    transform: scale(1.2);
}

/* Min/Max input row */
.hl-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 16px 0 12px;
}
.hl-price-input-group {
    flex: 1 1 50%;
    position: relative;
    display: flex;
    align-items: center;
    background: #f7fafa;
    border: 1px solid #e5e8eb;
    border-radius: 8px;
    transition: border-color .2s, background .2s;
}
.hl-price-input-group:focus-within {
    border-color: #2d6a4f;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(45,106,79,.1);
}
.hl-price-currency {
    padding: 0 8px 0 12px;
    color: #6b7870;
    font-size: 14px;
    font-weight: 500;
}
.hl-price-input {
    flex: 1 1 auto;
    width: 100%;
    height: 40px;
    border: none !important;
    background: transparent !important;
    padding: 0 12px 0 0 !important;
    outline: none !important;
    font-size: 14px !important;
    font-weight: 500;
    color: #010f1c;
    -moz-appearance: textfield;
}
.hl-price-input::-webkit-outer-spin-button,
.hl-price-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.hl-price-sep {
    color: #c5cdc7;
    font-weight: 600;
    flex-shrink: 0;
}

/* Range label */
.hl-price-filter .input-range-label {
    font-size: 12px;
    color: #6b7870;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-weight: 500;
}
.hl-price-filter .input-range-label .from,
.hl-price-filter .input-range-label .to {
    color: #2d6a4f;
    font-weight: 700;
}

/* Action row */
.hl-price-actions {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}
.hl-price-apply {
    flex: 1 1 auto;
    background: linear-gradient(135deg, #2d6a4f 0%, #1b4332 100%);
    color: #fff !important;
    border: none;
    height: 42px;
    padding: 0 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all .2s;
    text-align: center;
}
.hl-price-apply:hover {
    background: linear-gradient(135deg, #40916c 0%, #2d6a4f 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(45,106,79,.3);
}
.hl-price-reset {
    flex: 0 0 auto;
    background: #f7fafa;
    color: #2d3b35 !important;
    border: 1px solid #e5e8eb;
    height: 42px;
    padding: 0 18px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all .2s;
}
.hl-price-reset:hover {
    background: #eef2ef;
    color: #2d6a4f !important;
    border-color: #d2dad6;
}

/* ============================================= */
/* CONTACT PAGE — cards + map + form              */
/* ============================================= */
.hl-contact-hero {
    padding: 24px 0 8px;
}
.hl-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}
.hl-contact-card {
    background: #fff;
    border: 1px solid #e8edea;
    border-radius: 16px;
    padding: 32px 28px;
    text-align: left;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.hl-contact-card:hover {
    transform: translateY(-4px);
    border-color: #2d6a4f;
    box-shadow: 0 16px 40px rgba(45,106,79,0.12);
}
.hl-contact-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(45,106,79,0.1), rgba(45,106,79,0.04));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #2d6a4f;
    margin-bottom: 18px;
}
.hl-contact-card-icon i,
.hl-contact-card-icon svg {
    font-size: 26px;
    width: 26px;
    height: 26px;
    stroke: #2d6a4f;
}
.hl-contact-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #010f1c;
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}
.hl-contact-card p {
    color: #6b7870;
    font-size: 14px;
    line-height: 1.55;
    margin: 0 0 16px;
}
.hl-contact-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #2d6a4f;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: gap .2s, color .2s;
}
.hl-contact-card-link:hover {
    gap: 10px;
    color: #1b4332;
}
.hl-contact-card-link.hl-contact-phone {
    font-size: 18px;
    font-weight: 700;
}

/* Map */
.hl-contact-map {
    padding: 0 0 40px;
}
.hl-contact-map-frame {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e8edea;
    box-shadow: 0 4px 18px rgba(0,0,0,0.04);
}
.hl-contact-map-frame iframe {
    display: block;
}

/* Contact form section adjustments */
.tp-contact-area {
    padding-top: 0 !important;
    padding-bottom: 60px !important;
}
.tp-contact-wrapper {
    background: #fff;
    border: 1px solid #e8edea;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.03);
}
.tp-contact-title {
    font-size: 24px !important;
    font-weight: 700;
    margin-bottom: 24px !important;
    color: #010f1c;
}
.tp-contact-form .form-control,
.tp-contact-form input[type="text"],
.tp-contact-form input[type="email"],
.tp-contact-form input[type="tel"],
.tp-contact-form textarea {
    border: 1px solid #e5e8eb !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    background: #f8faf9 !important;
    transition: border-color .2s, background .2s, box-shadow .2s;
}
.tp-contact-form .form-control:focus,
.tp-contact-form input:focus,
.tp-contact-form textarea:focus {
    border-color: #2d6a4f !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(45,106,79,0.1) !important;
    outline: none !important;
}
.tp-contact-form button[type="submit"],
.tp-contact-form .btn-primary {
    background: linear-gradient(135deg, #2d6a4f 0%, #1b4332 100%) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 13px 32px !important;
    font-weight: 600 !important;
    transition: all .2s !important;
}
.tp-contact-form button[type="submit"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(45,106,79,0.25) !important;
}

/* Mobile */
@media (max-width: 991px) {
    .hl-contact-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .hl-contact-card { padding: 24px 22px; }
    .tp-contact-wrapper { padding: 24px; }
    .hl-contact-map-frame iframe { height: 320px !important; }
}

/* ============================================= */
/* HOMEPAGE MLM PROMO CARD                        */
/* ============================================= */
.hl-promo-section {
    padding: 50px 0 30px;
}
.hl-promo-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 440px;
    display: flex;
    align-items: stretch;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    isolation: isolate;
}
.hl-promo-bg {
    position: absolute;
    inset: 0;
    background-image: url('/storage/promo-mlm-team.jpg');
    background-size: cover;
    background-position: center right;
    z-index: 0;
}
.hl-promo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        rgba(27,67,50,0.96) 0%,
        rgba(27,67,50,0.88) 35%,
        rgba(27,67,50,0.5) 60%,
        rgba(27,67,50,0.1) 80%,
        rgba(27,67,50,0) 100%
    );
    z-index: 1;
}
.hl-promo-content {
    position: relative;
    z-index: 2;
    padding: 60px 50px;
    max-width: 620px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}
.hl-promo-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    margin-bottom: 18px;
    width: fit-content;
    border: 1px solid rgba(255,255,255,0.18);
}
.hl-promo-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d9a441;
    box-shadow: 0 0 8px #d9a441;
    animation: hlPromoDotPulse 2s ease-in-out infinite;
}
@keyframes hlPromoDotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}
.hl-promo-title {
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 14px;
    color: #fff;
    letter-spacing: -0.02em;
}
.hl-promo-title strong {
    color: #d9a441;
    font-weight: 800;
}
.hl-promo-desc {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255,255,255,0.88);
    margin: 0 0 28px;
    max-width: 500px;
}
.hl-promo-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.hl-promo-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}
.hl-promo-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(217,164,65,0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #d9a441;
    flex-shrink: 0;
}
.hl-promo-stat-icon svg,
.hl-promo-stat-icon i {
    width: 20px;
    height: 20px;
    stroke: #d9a441;
    color: #d9a441;
}
.hl-promo-stat-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.hl-promo-stat-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}
.hl-promo-stat-sub {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: .06em;
}
.hl-promo-cta-row {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.hl-promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #d9a441;
    color: #1b4332 !important;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all .25s;
    box-shadow: 0 8px 24px rgba(217,164,65,0.35);
}
.hl-promo-cta:hover {
    background: #e9b854;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(217,164,65,0.5);
    color: #1b4332 !important;
}
.hl-promo-cta svg {
    transition: transform .25s;
}
.hl-promo-cta:hover svg {
    transform: translateX(4px);
}
.hl-promo-cta-secondary {
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 2px;
    transition: border-color .25s, color .25s;
}
.hl-promo-cta-secondary:hover {
    color: #d9a441 !important;
    border-color: #d9a441;
}

/* Mobile */
@media (max-width: 991px) {
    .hl-promo-card { min-height: 520px; }
    .hl-promo-overlay {
        background: linear-gradient(180deg,
            rgba(27,67,50,0.85) 0%,
            rgba(27,67,50,0.9) 50%,
            rgba(27,67,50,0.95) 100%
        );
    }
    .hl-promo-content {
        max-width: 100%;
        padding: 40px 28px;
    }
    .hl-promo-stats { gap: 14px; }
    .hl-promo-stat-icon { width: 36px; height: 36px; }
}
@media (max-width: 575px) {
    .hl-promo-section { padding: 30px 0 10px; }
    .hl-promo-card { min-height: 480px; border-radius: 18px; }
    .hl-promo-content { padding: 28px 20px; }
    .hl-promo-stats { flex-direction: column; gap: 10px; }
    .hl-promo-cta-row { flex-direction: column; align-items: flex-start; gap: 14px; }
    .hl-promo-cta { padding: 12px 24px; font-size: 14px; width: 100%; justify-content: center; }
}

/* Search button: icon + "Ara" label */
.tp-header-search-btn {
    position: static !important;
    flex: 0 0 auto;
    display: flex;
    align-items: stretch;
}
.tp-header-search-btn button {
    gap: 8px;
    padding: 0 22px !important;
    width: auto !important;
    min-width: 100px;
}
.tp-header-search-btn-label {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .02em;
    position: relative;
    z-index: 1;
}
@media (max-width: 991px) {
    .tp-header-search-btn-label { display: none; }
    .tp-header-search-btn button { min-width: 54px; padding: 0 !important; }
}

/* ============================================= */
/* NASIL ÇALIŞIR — MLM info page                 */
/* ============================================= */
.hl-hc-hero {
    background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%);
    color: #fff;
    padding: 80px 0 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hl-hc-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 10% 20%, rgba(217,164,65,0.08), transparent 40%),
                      radial-gradient(circle at 90% 80%, rgba(217,164,65,0.06), transparent 40%);
    pointer-events: none;
}
.hl-hc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 22px;
}
.hl-hc-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d9a441;
    box-shadow: 0 0 8px #d9a441;
    animation: hlPromoDotPulse 2s ease-in-out infinite;
}
.hl-hc-title {
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 18px;
    letter-spacing: -0.02em;
}
.hl-hc-title span {
    color: #d9a441;
}
.hl-hc-lead {
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255,255,255,0.85);
    max-width: 760px;
    margin: 0 auto;
}
.hl-hc-lead strong {
    color: #fff;
}

/* Section shared */
.hl-hc-section {
    padding: 70px 0;
}
.hl-hc-section-alt {
    background: #f7faf8;
}
.hl-hc-section-header {
    text-align: center;
    margin: 0 auto 50px;
    max-width: 720px;
}
.hl-hc-kicker {
    display: inline-block;
    color: #2d6a4f;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
}
.hl-hc-section-header h2 {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    margin: 0 0 14px;
    color: #010f1c;
    letter-spacing: -0.02em;
}
.hl-hc-section-header p {
    font-size: 16px;
    color: #6b7870;
    line-height: 1.65;
    margin: 0;
}

/* 2 column boxes */
.hl-hc-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.hl-hc-box {
    background: #fff;
    border: 1px solid #e8edea;
    border-radius: 18px;
    padding: 36px 32px;
    transition: transform .25s, border-color .25s, box-shadow .25s;
}
.hl-hc-box:hover {
    transform: translateY(-4px);
    border-color: #2d6a4f;
    box-shadow: 0 18px 50px rgba(45,106,79,0.12);
}
.hl-hc-box-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(45,106,79,0.12), rgba(45,106,79,0.04));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #2d6a4f;
    margin-bottom: 22px;
}
.hl-hc-box-icon i,
.hl-hc-box-icon svg {
    width: 30px;
    height: 30px;
    font-size: 30px;
    color: #2d6a4f;
    stroke: #2d6a4f;
}
.hl-hc-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #010f1c;
}
.hl-hc-box p {
    color: #4a5a53;
    line-height: 1.65;
    margin: 0;
    font-size: 15px;
}

/* 4 cards grid */
.hl-hc-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.hl-hc-card {
    background: #fff;
    border: 1px solid #e8edea;
    border-radius: 16px;
    padding: 28px 24px;
    position: relative;
    transition: transform .25s, border-color .25s;
}
.hl-hc-card:hover {
    transform: translateY(-3px);
    border-color: #2d6a4f;
}
.hl-hc-card-num {
    font-size: 36px;
    font-weight: 800;
    color: rgba(45,106,79,0.12);
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: -0.03em;
}
.hl-hc-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #010f1c;
    margin: 0 0 10px;
}
.hl-hc-card p {
    color: #6b7870;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Steps (numbered) */
.hl-hc-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    position: relative;
}
.hl-hc-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: repeating-linear-gradient(to right, #2d6a4f 0 6px, transparent 6px 14px);
    z-index: 0;
}
.hl-hc-step {
    background: #fff;
    border-radius: 16px;
    padding: 24px 22px;
    text-align: center;
    position: relative;
    z-index: 1;
    border: 1px solid #e8edea;
}
.hl-hc-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2d6a4f, #1b4332);
    color: #fff;
    font-weight: 800;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 8px 20px rgba(45,106,79,0.22);
}
.hl-hc-step h4 {
    font-size: 16px;
    font-weight: 700;
    color: #010f1c;
    margin: 0 0 8px;
}
.hl-hc-step p {
    color: #6b7870;
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

/* FAQ */
.hl-hc-faq {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.hl-hc-faq-item {
    background: #fff;
    border: 1px solid #e8edea;
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}
.hl-hc-faq-item[open] {
    border-color: #2d6a4f;
    box-shadow: 0 6px 20px rgba(45,106,79,0.08);
}
.hl-hc-faq-item summary {
    list-style: none;
    padding: 18px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15.5px;
    color: #010f1c;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    user-select: none;
}
.hl-hc-faq-item summary::-webkit-details-marker { display: none; }
.hl-hc-faq-item summary::after {
    content: '+';
    font-size: 22px;
    font-weight: 400;
    color: #2d6a4f;
    transition: transform .25s;
    flex-shrink: 0;
}
.hl-hc-faq-item[open] summary::after {
    transform: rotate(45deg);
}
.hl-hc-faq-item p {
    padding: 0 24px 20px;
    margin: 0;
    color: #4a5a53;
    line-height: 1.65;
    font-size: 14.5px;
}
.hl-hc-faq-item p a {
    color: #2d6a4f;
    text-decoration: underline;
}

/* Legal notice */
.hl-hc-legal {
    background: #fff;
    border: 1px solid #e8edea;
    border-left: 4px solid #2d6a4f;
    border-radius: 14px;
    padding: 28px 32px;
    display: flex;
    gap: 22px;
    max-width: 920px;
    margin: 0 auto;
}
.hl-hc-legal-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(45,106,79,0.08);
    color: #2d6a4f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hl-hc-legal-icon i {
    font-size: 24px;
    color: #2d6a4f;
}
.hl-hc-legal h4 {
    font-size: 17px;
    font-weight: 700;
    color: #010f1c;
    margin: 0 0 10px;
}
.hl-hc-legal p {
    color: #4a5a53;
    line-height: 1.6;
    margin: 0;
    font-size: 14.5px;
}

/* Bottom CTA */
.hl-hc-cta {
    background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%);
    color: #fff;
    padding: 70px 0;
    text-align: center;
}
.hl-hc-cta h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    margin: 0 0 14px;
    letter-spacing: -0.01em;
}
.hl-hc-cta p {
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    margin: 0 0 28px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.hl-hc-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.hl-hc-cta-primary {
    background: #d9a441;
    color: #1b4332 !important;
    padding: 14px 30px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .25s;
    box-shadow: 0 8px 24px rgba(217,164,65,0.3);
}
.hl-hc-cta-primary:hover {
    background: #e9b854;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(217,164,65,0.4);
}
.hl-hc-cta-secondary {
    background: transparent;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 14px 30px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all .25s;
}
.hl-hc-cta-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

/* Mobile */
@media (max-width: 991px) {
    .hl-hc-grid-2, .hl-hc-grid-4, .hl-hc-steps {
        grid-template-columns: 1fr 1fr;
    }
    .hl-hc-steps::before { display: none; }
}
@media (max-width: 575px) {
    .hl-hc-hero { padding: 50px 0 60px; }
    .hl-hc-section { padding: 50px 0; }
    .hl-hc-grid-2, .hl-hc-grid-4, .hl-hc-steps {
        grid-template-columns: 1fr;
    }
    .hl-hc-legal { flex-direction: column; padding: 24px; gap: 16px; }
    .hl-hc-cta-actions { flex-direction: column; }
    .hl-hc-cta-primary, .hl-hc-cta-secondary { width: 100%; justify-content: center; }
}

/* ============================================= */
/* Inline SVG icons via CSS mask                  */
/* (BaseHelper::clean strips inline <svg> from    */
/* page content, and Tabler webfont CDN doesn't   */
/* attach :before content reliably; this is the   */
/* most portable fix.)                            */
/* ============================================= */
i.ti, i[class*="ti-"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
/* Make every i.ti-XXX render the SVG as a 1em mask */
i[class*="ti-"]::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: currentColor;
    mask-position: center;
    -webkit-mask-position: center;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-size: contain;
    -webkit-mask-size: contain;
}

/* SVG paths from Tabler Icons (each used elsewhere on the site) */
i.ti-coin::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M14.8 9a2 2 0 0 0-1.8-1h-2a2 2 0 1 0 0 4h2a2 2 0 1 1 0 4h-2a2 2 0 0 1-1.8-1'/%3E%3Cpath d='M12 7v10'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M14.8 9a2 2 0 0 0-1.8-1h-2a2 2 0 1 0 0 4h2a2 2 0 1 1 0 4h-2a2 2 0 0 1-1.8-1'/%3E%3Cpath d='M12 7v10'/%3E%3C/svg%3E");
}
i.ti-arrows-split-2::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 17h-5.397a5 5 0 0 1-4.193-2.273l-.81-1.244a5 5 0 0 0-4.193-2.273H3'/%3E%3Cpath d='M18 14l3 3l-3 3'/%3E%3Cpath d='M3 7h3.407a5 5 0 0 1 4.193 2.273l.165.253'/%3E%3Cpath d='M21 7h-5.397a5 5 0 0 0-3.407 1.334'/%3E%3Cpath d='M18 4l3 3l-3 3'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 17h-5.397a5 5 0 0 1-4.193-2.273l-.81-1.244a5 5 0 0 0-4.193-2.273H3'/%3E%3Cpath d='M18 14l3 3l-3 3'/%3E%3Cpath d='M3 7h3.407a5 5 0 0 1 4.193 2.273l.165.253'/%3E%3Cpath d='M21 7h-5.397a5 5 0 0 0-3.407 1.334'/%3E%3Cpath d='M18 4l3 3l-3 3'/%3E%3C/svg%3E");
}
i.ti-crown::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 6l4 6l5-4l-2 10H5L3 8l5 4z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 6l4 6l5-4l-2 10H5L3 8l5 4z'/%3E%3C/svg%3E");
}
i.ti-map-pin::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='11' r='3'/%3E%3Cpath d='M17.657 16.657l-4.243 4.243a2 2 0 0 1-2.827 0l-4.244-4.243a8 8 0 1 1 11.314 0z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='11' r='3'/%3E%3Cpath d='M17.657 16.657l-4.243 4.243a2 2 0 0 1-2.827 0l-4.244-4.243a8 8 0 1 1 11.314 0z'/%3E%3C/svg%3E");
}
i.ti-phone::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5-2.5l5 2v4a2 2 0 0 1-2 2a16 16 0 0 1-15-15a2 2 0 0 1 2-2'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5-2.5l5 2v4a2 2 0 0 1-2 2a16 16 0 0 1-15-15a2 2 0 0 1 2-2'/%3E%3C/svg%3E");
}
i.ti-mail::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpolyline points='3 7 12 13 21 7'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpolyline points='3 7 12 13 21 7'/%3E%3C/svg%3E");
}
i.ti-arrow-right::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l14 0'/%3E%3Cpath d='M13 18l6-6'/%3E%3Cpath d='M13 6l6 6'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l14 0'/%3E%3Cpath d='M13 18l6-6'/%3E%3Cpath d='M13 6l6 6'/%3E%3C/svg%3E");
}
i.ti-hierarchy-2::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='6' r='3'/%3E%3Ccircle cx='6' cy='18' r='3'/%3E%3Ccircle cx='18' cy='18' r='3'/%3E%3Cpath d='M6 9v3a3 3 0 0 0 3 3h6a3 3 0 0 0 3-3V9'/%3E%3Cpath d='M12 9v6'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='6' r='3'/%3E%3Ccircle cx='6' cy='18' r='3'/%3E%3Ccircle cx='18' cy='18' r='3'/%3E%3Cpath d='M6 9v3a3 3 0 0 0 3 3h6a3 3 0 0 0 3-3V9'/%3E%3Cpath d='M12 9v6'/%3E%3C/svg%3E");
}
i.ti-shield-check::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11.46 20.846a12 12 0 0 1-7.96-14.846a12 12 0 0 0 8.5-3a12 12 0 0 0 8.5 3a12 12 0 0 1-.09 7.06'/%3E%3Cpath d='M15 19l2 2l4-4'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11.46 20.846a12 12 0 0 1-7.96-14.846a12 12 0 0 0 8.5-3a12 12 0 0 0 8.5 3a12 12 0 0 1-.09 7.06'/%3E%3Cpath d='M15 19l2 2l4-4'/%3E%3C/svg%3E");
}

/* Sized variants per context */
.hl-promo-stat-icon i::before { width: 20px; height: 20px; }
.hl-contact-card-icon i::before { width: 26px; height: 26px; }
.hl-hc-box-icon i::before { width: 30px; height: 30px; }
.hl-hc-legal-icon i::before { width: 24px; height: 24px; }
.hl-hc-cta-primary i::before,
.hl-contact-card-link i::before { width: 14px; height: 14px; }

/* ============================================= */
/* Checkout: kupon kodları bölümünü gizle (HL)  */
/* ============================================= */
.checkout__coupon-section,
.checkout-discount-section,
.coupon-wrapper {
    display: none !important;
}

/* ============================================= */
/* MOBILE OFFCANVAS: override desktop CSS for    */
/* cloned category + main menu nav               */
/* ============================================= */

/* Category nav cloned into mobile offcanvas */
.tp-category-mobile-menu .tp-category-menu-content {
    position: static !important;
    display: none; /* starts hidden; jQuery slideToggle reveals it */
    z-index: auto !important;
    border: none !important;
    box-shadow: none !important;
    min-width: 0 !important;
    width: 100% !important;
    padding: 0 !important;
    border-radius: 0 !important;
    max-height: none !important;
    overflow: visible !important;
}
.tp-category-mobile-menu .tp-category-menu-content ul {
    padding: 0 !important;
    margin: 0 !important;
}
.tp-category-mobile-menu .tp-category-menu-content ul li a {
    padding: 10px 16px !important;
    font-size: 14px !important;
    border-left: none !important;
    border-radius: 0;
}
.tp-category-mobile-menu .tp-category-menu-content ul li a:hover {
    padding-left: 16px !important;
}
/* hide desktop "›" arrow — JS adds its own toggle btn */
.tp-category-mobile-menu .tp-category-menu-content ul li.has-dropdown > a::after {
    display: none !important;
}
/* Subcategory list in mobile: static, indented */
.tp-category-mobile-menu .tp-category-menu-content .tp-submenu {
    position: static !important;
    display: none;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    min-width: 0 !important;
    background: rgba(45,106,79,0.04) !important;
    padding: 0 0 0 16px !important;
}
.tp-category-mobile-menu .tp-category-menu-content .tp-submenu li a {
    font-size: 13px !important;
    padding: 8px 14px !important;
}
/* Remove mega-menu images and brand blocks on mobile */
.tp-category-mobile-menu .mega-menu,
.tp-category-mobile-menu .tp-category-mega-img {
    display: none !important;
}

/* Offcanvas search box */
.offcanvas__search .tp-header-search-2 {
    position: relative;
}
.offcanvas__search .tp-header-search-2 input[type="search"] {
    width: 100%;
    height: 42px;
    border: 1px solid #dde2e0 !important;
    border-radius: 6px !important;
    padding: 0 44px 0 14px !important;
    font-size: 14px;
    outline: none !important;
    background: #fff;
    color: #010f1c;
}
.offcanvas__search .tp-header-search-2 input[type="search"]:focus {
    border-color: #2d6a4f !important;
    box-shadow: 0 0 0 2px rgba(45,106,79,.12) !important;
}
.offcanvas__search .tp-header-search-2 button[type="submit"] {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 42px;
    background: none !important;
    border: none !important;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.offcanvas__search .tp-header-search-2 button[type="submit"] svg {
    width: 18px;
    height: 18px;
    stroke: #666;
}
.offcanvas__search .tp-header-search-2 button[type="submit"]:hover svg {
    stroke: #2d6a4f;
}
/* Hide ajax search results from desktop wrapper inside offcanvas */
.offcanvas__search .tp-header-search-offcanvas {
    position: relative;
    width: 100%;
}

/* ============================================= */
/* MOBILE SPACING FIXES (< 768px)                */
/* ============================================= */
@media (max-width: 767px) {
    /* Breadcrumb section: reduce excessive top/bottom padding */
    .breadcrumb__area {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
        margin-bottom: 0 !important;
    }

    /* Shop area container: reduce top padding */
    .tp-shop-area .container {
        padding-top: 20px !important;
    }

    /* Checkout / cart page containers */
    .tp-cart-area .container,
    .tp-checkout-area .container {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    /* Product detail page */
    .tp-product-details-area .container {
        padding-top: 20px !important;
    }

    /* Cart table: remove horizontal scrollbar (stacked layout doesn't need it) */
    .tp-cart-list.bb-ecommerce-table {
        overflow-x: visible !important;
        margin-right: 0 !important;
    }

    /* Reduce excessive bottom padding on cart/checkout/account sections */
    .tp-cart-area.pb-120,
    .tp-checkout-area.pb-120,
    .tp-my-account-area.pb-120,
    .tp-wishlist-area.pb-120,
    .tp-compare-area.pb-120 {
        padding-bottom: 40px !important;
    }

    /* Product detail: reduce bottom padding */
    .tp-product-details-area {
        padding-bottom: 0 !important;
    }
}
