@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700;800&display=swap');
:root{
    --green:#e6c020;
    --green-dark:#c8a010;
    --green-light:#fdd352;
    --lime:#fdd352;
    --text:#1a1a1a;
    --muted:#6b7280;
    --border:#e5e7eb;
    --bg:#fff;
    --white:#fff;
    --shadow:0 10px 30px rgba(0,0,0,.1);
    --gold:#fdd352;
    --gold-dark:#c8a010;
    --gold-light:#ffe580;
    --black:#1a1a1a;
}
*{box-sizing:border-box}
html,body{overflow-x:hidden}
body{font-family:'Be Vietnam Pro',sans-serif;color:var(--text);background:var(--bg);font-size:15.5px;line-height:1.7}
a{color:var(--green);transition:all .2s ease}a:hover,a:focus{color:var(--green-dark);text-decoration:none}
img{max-width:100%;height:auto}
body.mobile-drawer-open{overflow:hidden}

/* Header */
.site-header{position:relative;z-index:20}
.hg-topbar{background:#1a1a1a;border-top:0;border-bottom:1px solid #333}
.hg-topbar-inner{display:flex;align-items:center;justify-content:space-between;gap:24px;padding:7px 0;font-size:13px;color:#ccc}
.hg-topbar-item{display:inline-flex;align-items:center;gap:7px;color:#ccc}
.hg-topbar-item i{font-size:14px}
.hg-topbar-email{font-weight:600}

.hg-header-main{background:#fff;padding:16px 0 14px}
.hg-header-grid{display:grid;grid-template-columns:170px minmax(280px,1fr) 260px;align-items:center;gap:24px}
.hg-logo{display:flex;align-items:center;justify-content:center}
.hg-logo img{max-height:92px;width:auto}
.hg-search-form{position:relative;display:flex;align-items:center}
.hg-search-form input{width:100%;height:40px;border:1px solid var(--green);border-radius:999px;padding:0 58px 0 22px;font-size:15px;color:var(--text);background:#fff;outline:none}
.hg-search-form input::placeholder{color:#8f96a3}
.hg-search-form button{position:absolute;right:6px;top:50%;transform:translateY(-50%);width:36px;height:36px;border:0;border-radius:50%;background:transparent;color:var(--green);font-size:24px;display:flex;align-items:center;justify-content:center}
.hg-hotline-box{display:flex;align-items:center;justify-content:flex-start;gap:14px;color:var(--text)}
.hg-hotline-box:hover{color:var(--green-dark)}
.hg-hotline-icon{width:56px;height:56px;border-radius:50%;border:2px solid #c8a010;display:inline-flex;align-items:center;justify-content:center;color:#c8a010;font-size:28px;flex:0 0 56px}
.hg-hotline-text{display:flex;flex-direction:column;line-height:1.3}
.hg-hotline-text small{font-size:18px;color:#333;font-weight:500}
.hg-hotline-text strong{font-size:18px;color:#c8a010;font-weight:800}

.hg-nav-wrap{background:#fff;border-bottom:3px solid #fdd352;position:relative}
.hg-nav-inner{display:flex;align-items:stretch;gap:12px;position:relative}
.hg-nav-category{position:relative;z-index:5;flex:0 0 275px}
.hg-category-trigger{height:52px;width:100%;border:0;background:#fdd352;color:#1a1a1a;font-weight:800;text-transform:uppercase;font-size:15px;display:flex;align-items:center;justify-content:space-between;padding:0 18px;border-radius:10px 10px 0 0;box-shadow:var(--shadow)}
.hg-category-trigger span{display:flex;align-items:center;gap:14px}
.hg-category-trigger .hg-category-icon{font-size:24px}
.hg-category-trigger .fa-angle-down{font-size:20px}
.hg-desktop-category-panel{position:absolute;top:52px;left:0;width:100%;background:rgba(255,255,255,.98);border-radius:0 0 14px 14px;box-shadow:var(--shadow);padding:0 0 6px;opacity:0;visibility:hidden;transform:translateY(10px);transition:all .25s ease;max-height:440px;overflow:auto}
.hg-nav-category:hover .hg-desktop-category-panel,.hg-nav-category.is-home .hg-desktop-category-panel{opacity:1;visibility:visible;transform:translateY(0)}
.hg-desktop-category-panel ul{list-style:none;margin:0;padding:0}
.hg-desktop-category-panel li+li{border-top:1px dashed #e8dda0}
.hg-desktop-category-panel a{display:flex;align-items:center;justify-content:space-between;padding:15px 16px 15px 18px;color:#111;font-size:16px;font-weight:600}
.hg-desktop-category-panel a i{font-size:17px;color:#111}
.hg-desktop-category-panel a:hover{background:#fffbea;color:#c8a010}

.hg-main-menu{list-style:none;display:flex;align-items:center;gap:0;margin:0;padding:0;flex:1}
.hg-main-menu>li{position:relative}
.hg-main-menu>li>a{display:flex;align-items:center;gap:7px;height:52px;padding:0 14px;color:#333;font-size:15px;font-weight:700}
.hg-main-menu>li.active>a,.hg-main-menu>li>a:hover{color:#c8a010;background:transparent}
.hg-main-menu>li.active>a::after,.hg-main-menu>li>a:hover::after{content:'';position:absolute;left:14px;right:14px;bottom:0;height:3px;background:#fdd352;border-radius:0}
.hg-main-menu>li.has-child:hover .hg-sub-menu{opacity:1;visibility:visible;transform:translateY(0)}
.hg-sub-menu{position:absolute;top:100%;left:0;min-width:220px;background:#fff;list-style:none;margin:0;padding:10px 0;border-radius:0 0 10px 10px;box-shadow:var(--shadow);opacity:0;visibility:hidden;transform:translateY(12px);transition:all .2s ease}
.hg-sub-menu li a{display:block;padding:10px 16px;color:var(--text);font-weight:600;font-size:14px}.hg-sub-menu li a:hover{background:#fffbea;color:#c8a010}

/* Mobile header */
.hg-mobile-header{background:#fff}
.hg-mobile-logo-wrap{padding:18px 15px 10px;text-align:center}
.hg-mobile-logo img{max-height:70px;width:auto}
.hg-mobile-searchbar{background:#1a1a1a;padding:12px 14px;display:flex;align-items:center;gap:12px}
.hg-mobile-menu-btn{border:0;background:transparent;width:30px;height:30px;padding:0;display:flex;flex-direction:column;justify-content:center;gap:4px}
.hg-mobile-menu-btn span{display:block;height:2px;background:#fff;border-radius:3px}
.hg-mobile-menu-btn span:nth-child(1){width:22px}.hg-mobile-menu-btn span:nth-child(2){width:18px}.hg-mobile-menu-btn span:nth-child(3){width:22px}
.hg-search-form-mobile{flex:1}
.hg-search-form-mobile input{height:38px;border:0;padding-left:18px;padding-right:52px}
.hg-search-form-mobile button{right:5px;width:34px;height:34px;color:#fff;background:rgba(255,255,255,.18);font-size:22px}

.hg-mobile-drawer{position:fixed;inset:0;pointer-events:none;z-index:9999}
.hg-mobile-drawer.is-open{pointer-events:auto}
.hg-mobile-overlay{position:absolute;inset:0;background:rgba(0,0,0,.62);opacity:0;transition:opacity .25s ease}
.hg-mobile-panel{position:relative;width:82%;max-width:320px;height:100%;background:rgba(255,255,255,.96);backdrop-filter:blur(6px);transform:translateX(-100%);transition:transform .28s ease;overflow-y:auto}
.hg-mobile-drawer.is-open .hg-mobile-overlay{opacity:1}
.hg-mobile-drawer.is-open .hg-mobile-panel{transform:translateX(0)}
.hg-mobile-close{position:absolute;top:14px;right:14px;border:0;background:transparent;color:#8a8a8a;font-size:28px;z-index:2}
.hg-mobile-tabs{display:grid;grid-template-columns:1fr 1fr;background:#f3f4f6;padding-right:48px}
.hg-mobile-tabs button{height:56px;border:0;background:transparent;text-transform:uppercase;font-size:14px;color:#888;letter-spacing:.2px;position:relative}
.hg-mobile-tabs button.active{color:var(--green);background:#fff}
.hg-mobile-tabs button.active::after{content:'';position:absolute;left:0;right:0;bottom:0;height:3px;background:#fdd352}
.hg-mobile-panel-search{padding:14px 14px 10px;border-bottom:1px solid rgba(0,0,0,.05)}
.hg-search-form-drawer input{height:40px;border:1px solid #d8d8d8;padding-left:16px;padding-right:50px}
.hg-search-form-drawer button{right:6px;width:32px;height:32px;color:#111;background:transparent;font-size:22px}
.hg-mobile-tab-content{display:none}.hg-mobile-tab-content.active{display:block}
.hg-mobile-list,.hg-mobile-sub-list{list-style:none;margin:0;padding:0}
.hg-mobile-list>li>a{display:block;padding:16px 20px;border-bottom:1px solid rgba(0,0,0,.06);color:#111;text-transform:uppercase;font-size:15px;font-weight:500}
.hg-mobile-sub-list li a{display:block;padding:10px 32px;border-bottom:1px solid rgba(0,0,0,.04);color:#4b5563;font-size:14px}

/* Home showcase */
.home-showcase{padding:0 0 24px;background:transparent}
.home-showcase .container{position:relative}
.home-showcase-inner{margin-left:0;background:linear-gradient(135deg,#fefefe,#f1f8f2);border-radius:0 0 18px 18px;box-shadow:var(--shadow);padding:36px 38px;display:grid;grid-template-columns:minmax(320px,1fr) 420px;align-items:center;gap:24px;min-height:374px;position:relative;overflow:hidden}
.home-page .home-showcase-inner{margin-left:290px;border-radius:0 0 18px 18px}
.home-showcase-inner::before{content:'';position:absolute;width:360px;height:360px;border-radius:50%;background:radial-gradient(circle,rgba(76,175,80,.22),rgba(76,175,80,0));right:-80px;top:-60px}
.home-showcase-inner::after{content:'';position:absolute;left:45%;bottom:-30px;width:280px;height:140px;background:linear-gradient(90deg,var(--green-light),var(--green-dark));transform:skewX(-34deg);border-radius:22px;opacity:.92}
.home-showcase-label{margin:0 0 10px;color:var(--green);text-transform:uppercase;font-weight:700;letter-spacing:1px}
.home-showcase h1{margin:0 0 12px;font-size:46px;line-height:1.12;color:var(--green);font-weight:800;text-transform:uppercase;max-width:600px}
.home-showcase-desc{font-size:22px;color:#2b2b2b;max-width:580px;margin:0 0 24px}
.home-showcase-actions{display:flex;gap:12px;flex-wrap:wrap;position:relative;z-index:1}
.home-showcase-btn{display:inline-flex;align-items:center;gap:8px;padding:12px 24px;border-radius:999px;font-weight:700;font-size:15px}
.home-showcase-btn.primary{background:var(--lime);color:#205330}
.home-showcase-btn.secondary{background:#fff;color:var(--green);border:1px solid #cfead6}
.home-showcase-visual{position:relative;z-index:1;display:flex;align-items:center;justify-content:center;min-height:290px}
.home-showcase-image{width:100%;max-width:390px;height:290px;border-radius:22px;background:linear-gradient(180deg,#fff,#eef6ef);display:flex;align-items:center;justify-content:center;box-shadow:inset 0 0 0 1px rgba(255,255,255,.7),0 12px 24px rgba(3,118,58,.12);padding:18px}
.home-showcase-image img{max-height:240px;object-fit:contain}
.home-showcase-badge{position:absolute;background:#fff;border:3px solid var(--green);color:var(--green);padding:12px 18px;border-radius:999px;font-weight:800;box-shadow:var(--shadow);text-transform:uppercase;font-size:13px}
.home-showcase-badge.badge-1{top:4px;right:24px}
.home-showcase-badge.badge-2{right:-8px;top:120px}
.home-showcase-badge.badge-3{left:10px;bottom:18px}

/* Breadcrumb */
.breadcrumb-tp{background:#fff;border-bottom:1px solid #e9ecef;padding:12px 0;margin-bottom:22px}
.breadcrumb-tp .breadcrumb{margin:0;padding:0;background:none;font-size:14px}.breadcrumb-tp .breadcrumb>li+li:before{content:"›";color:#9ca3af;padding:0 6px}.breadcrumb-tp .breadcrumb>.active{color:#1a1a1a;font-weight:600}

/* Sections */
.section-cat{padding:28px 0}.section-cat:nth-child(even){background:#fff}
/* 5 cột trên desktop cho module sản phẩm trang chủ */
.col-home-5{width:20%;float:left;padding-left:15px;padding-right:15px;margin-bottom:20px;}
@media(max-width:991px){.col-home-5{width:33.3333%;}}
@media(max-width:767px){.col-home-5{width:50%;}}
.section-title{text-align:center;margin-bottom:24px;position:relative;padding-bottom:12px}
.section-title h2{font-size:30px;font-weight:800;color:#1a1a1a;text-transform:uppercase;margin:0 0 6px}
.section-title p{color:#6b7280;font-size:14px;margin:0 auto;max-width:760px}
.section-title::after{content:'';position:absolute;bottom:0;left:50%;transform:translateX(-50%);width:58px;height:3px;background:linear-gradient(90deg,var(--green-dark),var(--green-light));border-radius:2px}
.view-more-wrap{text-align:center;margin-top:16px}
.btn-viewmore{display:inline-flex;align-items:center;gap:8px;border:1.5px solid #c8a010;color:#c8a010;padding:9px 24px;border-radius:999px;font-weight:700;font-size:13px;text-transform:uppercase;letter-spacing:.5px;transition:all .2s}
.btn-viewmore:hover{background:#1a1a1a;border-color:#1a1a1a;color:#fdd352}

/* Product cards */
.product-card{background:#fff;border-radius:16px;overflow:hidden;box-shadow:0 2px 12px rgba(16,24,40,.06);transition:all .3s;border:1px solid #eef0f2;margin-bottom:24px}
.product-card:hover{transform:translateY(-4px);box-shadow:0 10px 28px rgba(16,24,40,.12);border-color:#dbece1}
.product-card .card-img{position:relative;overflow:hidden;padding-top:100%;background:#f8fafb;display:block}
.product-card .card-img img{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover;transition:transform .4s}
.product-card:hover .card-img img{transform:scale(1.05)}
.product-card .card-img .overlay{position:absolute;bottom:0;left:0;right:0;padding:20px 10px 12px;opacity:0;transition:opacity .25s;text-align:center;background:linear-gradient(180deg,rgba(0,0,0,0),rgba(9,77,38,.38))}
.product-card:hover .card-img .overlay{opacity:1}
.product-card .card-img .overlay .btn-detail{background:var(--lime);color:#244633;padding:6px 16px;border-radius:16px;font-size:11px;font-weight:800;text-transform:uppercase}
.product-card .card-body{padding:14px 15px 16px}
.product-card .card-body h3{margin:0 0 6px;font-size:15px;font-weight:700;line-height:1.45;min-height:44px;overflow:hidden}
.product-card .card-body h3 a{color:#1f2937}.product-card .card-body h3 a:hover{color:var(--green)}
.product-card .card-body p{color:#6b7280;font-size:12px;margin:0;line-height:1.55;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;min-height:37px}
.no-image{position:absolute;top:0;left:0;right:0;bottom:0;width:100%;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;background:#f8f8f8;text-decoration:none}
.no-image svg{width:44px;height:44px;opacity:.35}
.no-image span{font-size:10px;text-transform:uppercase;letter-spacing:2px;color:#94a3b8;font-weight:700}

/* Search page */
.section-search{background:#fff}
.search-page-form-wrap{max-width:760px;margin:0 auto 26px}
.search-page-form{display:flex;align-items:center;gap:10px;background:#fff;padding:8px;border:1px solid #e4e7ec;border-radius:999px;box-shadow:0 4px 18px rgba(16,24,40,.05)}
.search-page-form input{flex:1;height:44px;border:0;outline:none;padding:0 16px;font-size:15px;background:transparent}
.search-page-form button{height:44px;border:0;border-radius:999px;background:linear-gradient(90deg,var(--green-dark),var(--green-light));color:#fff;padding:0 20px;font-weight:700;display:inline-flex;align-items:center;gap:8px}

/* Product detail */
.product-detail{padding:24px 0 38px}
.product-detail .main-image{border-radius:16px;overflow:hidden;background:#fff;box-shadow:var(--shadow);margin-bottom:12px}.product-detail .main-image img{width:100%}
.product-detail .thumb-list{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:15px}
.product-detail .thumb-list img{width:68px;height:68px;object-fit:cover;border-radius:10px;border:2px solid transparent;cursor:pointer;background:#fff;box-shadow:0 2px 10px rgba(16,24,40,.08)}
.product-detail .thumb-list img:hover,.product-detail .thumb-list img.active{border-color:var(--green)}
.product-detail h1{font-size:32px;font-weight:800;color:#17212b;margin:0 0 10px}
.product-detail .meta-info{color:#667085;font-size:13px;margin-bottom:14px}
.product-detail .desc{line-height:1.8;color:#4b5563;font-size:15px;background:#fff;padding:18px;border-radius:16px;box-shadow:0 2px 10px rgba(16,24,40,.05)}
.btn-contact-main{display:flex;align-items:center;justify-content:center;gap:8px;background:linear-gradient(135deg,#c8a010,#fdd352);color:#1a1a1a!important;padding:12px 25px;border-radius:999px;font-weight:800;font-size:14px;margin-top:18px;transition:all .2s;text-transform:uppercase;box-shadow:0 8px 24px rgba(253,211,82,.35)}
.btn-contact-main:hover{transform:translateY(-1px);color:#fff}

/* Content pages */
.info-page{padding:24px 0 38px}
.info-page .content-box{background:#fff;padding:24px;border-radius:16px;box-shadow:var(--shadow);line-height:1.8}
.info-page .content-box h1{color:#15232d;margin-top:0;font-size:28px;border-bottom:2px solid #e6f3eb;padding-bottom:12px}

/* Footer */
.site-footer{background:#f8f7f3;color:#444;border-top:3px solid #fdd352;padding:32px 0 0;font-size:13px;margin-top:10px}
.site-footer h4{color:#1a1a1a;font-size:15px;font-weight:800;text-transform:uppercase;margin:0 0 14px;padding-bottom:10px;position:relative}
.site-footer h4::after{content:'';position:absolute;bottom:0;left:0;width:34px;height:3px;background:#fdd352;border-radius:2px}
.site-footer ul{list-style:none;padding:0;margin:0}.site-footer ul li{margin-bottom:6px}.site-footer ul li a{color:#555}.site-footer ul li a:hover{color:#c8a010;font-weight:600}
.site-footer ul li i{color:#c8a010;margin-right:5px;width:14px}
.site-footer p{color:#555;line-height:1.7;margin:0 0 6px}
.footer-bottom{border-top:1px solid #e0ddd5;text-align:center;padding:14px 0;margin-top:22px;color:#888;font-size:12px}.footer-bottom a{color:#c8a010}

.call-btn-fixed{position:fixed;bottom:18px;right:18px;z-index:999}
.call-btn-fixed a{display:flex;align-items:center;gap:8px;background:linear-gradient(90deg,var(--green-dark),var(--green-light));color:#fff;padding:11px 18px;border-radius:999px;font-weight:800;font-size:13px;box-shadow:0 6px 20px rgba(10,138,67,.35);animation:pulseCall 1.6s infinite}
.call-btn-fixed a:hover{color:#fff;text-decoration:none}
.call-btn-fixed a i{font-size:16px;animation:shake .8s infinite}
@keyframes pulseCall{0%{box-shadow:0 0 0 0 rgba(10,138,67,.38)}50%{box-shadow:0 0 0 10px rgba(10,138,67,0)}100%{box-shadow:0 0 0 0 rgba(10,138,67,0)}}
@keyframes shake{0%,100%{transform:rotate(0)}25%{transform:rotate(12deg)}50%{transform:rotate(-8deg)}75%{transform:rotate(8deg)}}

.pagination>li>a,.pagination>li>span{color:#54606e;border-color:#e5e7eb}
.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover{background:#1a1a1a;border-color:#1a1a1a;color:#fdd352}
.pagination>li>a:hover{color:#c8a010}

@media (max-width:1199px){
    .hg-header-grid{grid-template-columns:150px minmax(200px,1fr) 220px;gap:16px}
    .hg-main-menu>li>a{padding:0 14px;font-size:15px}
    .home-page .home-showcase-inner{margin-left:290px}
    .home-showcase h1{font-size:38px}
    .home-showcase-inner{grid-template-columns:minmax(280px,1fr) 330px}
}

@media (max-width:991px){
    .hg-topbar-inner{font-size:12px}
    .hg-header-grid{grid-template-columns:135px 1fr 210px}
    .hg-hotline-icon{width:48px;height:48px;font-size:22px;flex-basis:48px}
    .hg-hotline-text small,.hg-hotline-text strong{font-size:15px}
    .hg-nav-category{flex:0 0 250px}
    .home-page .home-showcase-inner{margin-left:265px}
    .home-showcase-inner{padding:32px 24px;grid-template-columns:1fr 280px;min-height:320px}
    .home-showcase h1{font-size:30px}
    .home-showcase-desc{font-size:18px}
    .home-showcase-badge{font-size:11px;padding:10px 14px}
    .section-title h2{font-size:24px}
    .product-detail h1{font-size:26px}
}

@media (max-width:767px){
    .home-showcase{padding-bottom:18px}
    .home-showcase .container{padding-left:0;padding-right:0}
    .home-showcase-inner,.home-page .home-showcase-inner{margin-left:0;border-radius:0;grid-template-columns:1fr;padding:16px 14px 18px;min-height:0;gap:10px}
    .home-showcase-inner::after{left:auto;right:-45px;bottom:-25px;width:180px;height:110px}
    .home-showcase-label{font-size:11px;margin-bottom:6px}
    .home-showcase h1{font-size:19px;max-width:none;margin-bottom:8px}
    .home-showcase-desc{font-size:13px;line-height:1.5;margin-bottom:12px}
    .home-showcase-actions{gap:8px}
    .home-showcase-btn{padding:10px 16px;font-size:12px}
    .home-showcase-visual{min-height:0}
    .home-showcase-image{height:155px;border-radius:16px;padding:12px}
    .home-showcase-image img{max-height:128px}
    .home-showcase-badge{font-size:9px;padding:7px 10px;border-width:2px}
    .home-showcase-badge.badge-1{top:0;right:8px}
    .home-showcase-badge.badge-2{top:65px;right:-4px}
    .home-showcase-badge.badge-3{left:4px;bottom:0}

    .breadcrumb-tp{margin-bottom:14px;padding:10px 0}
    .section-cat{padding:22px 0}
    .section-title{margin-bottom:18px}
    .section-title h2{font-size:20px}
    .section-title p{font-size:13px}
    .product-card{border-radius:12px;margin-bottom:16px}
    .product-card .card-body{padding:10px 12px 12px}
    .product-card .card-body h3{font-size:14px;min-height:38px}
    .product-card .card-body p{font-size:11px;min-height:34px}
    .search-page-form{display:block;border-radius:18px;padding:10px}
    .search-page-form input{width:100%;padding:0 14px;height:40px;border-bottom:1px solid #eef2f4;margin-bottom:8px}
    .search-page-form button{width:100%;justify-content:center;height:40px}
    .product-detail{padding:16px 0 30px}
    .product-detail h1{font-size:22px}
    .product-detail .thumb-list img{width:56px;height:56px}
    .product-detail .desc{padding:15px;font-size:14px}
    .call-btn-fixed a span{display:none}.call-btn-fixed a{padding:12px;border-radius:50%}.call-btn-fixed a i{font-size:18px;margin:0}
}

.section-product-all{background:#fff}


/* Home hero slider */
.home-hero-slider{padding:0 0 26px;background:transparent}
.home-hero-slider-wrap{position:relative;overflow:hidden;border-radius:0 0 22px 22px;box-shadow:var(--shadow);background:#eef6ef}
.home-page .home-hero-slider-wrap{margin-left:290px}
.home-hero-slide{display:block;background:linear-gradient(135deg,#f6fbf7,#edf6ef)}
.home-hero-slide img{display:block;width:100%;height:450px;object-fit:cover}
.tp-home-owl .owl-dots{position:absolute;left:0;right:0;bottom:14px;display:flex;align-items:center;justify-content:center;gap:8px}
.tp-home-owl .owl-dot span{display:block;width:10px;height:10px;border-radius:50%;background:rgba(255,255,255,.88);box-shadow:0 0 0 1px rgba(10,138,67,.18) inset;transition:all .2s ease}
.tp-home-owl .owl-dot.active span{width:28px;border-radius:999px;background:var(--lime)}
.tp-home-owl .owl-stage-outer,.tp-home-owl .owl-stage,.tp-home-owl .owl-item,.tp-home-owl .item{height:100%}

@media (max-width:1199px){
    .home-page .home-hero-slider-wrap{margin-left:290px}
    .home-hero-slide img{height:410px}
}

@media (max-width:991px){
    .home-page .home-hero-slider-wrap{margin-left:265px}
    .home-hero-slide img{height:360px}
}

@media (max-width:767px){
    .home-hero-slider{padding-bottom:18px}
    .home-hero-slider .container{padding-left:0;padding-right:0}
    .home-page .home-hero-slider-wrap,.home-hero-slider-wrap{margin-left:0;border-radius:0;box-shadow:none}
    .home-hero-slide img{height:auto;min-height:160px;object-fit:cover}
    .tp-home-owl .owl-dots{bottom:10px}
    .tp-home-owl .owl-dot span{width:8px;height:8px}
    .tp-home-owl .owl-dot.active span{width:22px}
}



/* Home section title system */
.home-section-title{position:relative}
.home-section-title h2{margin:0;text-transform:uppercase;font-weight:900;letter-spacing:-.02em}
.home-section-title p{margin:12px auto 0;max-width:760px;font-size:16px;line-height:1.6;color:#516071}
.home-section-title::after{content:'';position:absolute;bottom:0;border-radius:999px;background:linear-gradient(90deg,var(--green-dark),#31b06d)}
.home-section-title--brand h2{color:#c8a010}
.home-section-title--light h2{color:#1a1a1a}.home-section-title--light p{color:#555}
.home-section-title--center{text-align:center;padding-bottom:16px}
.home-section-title--center::after{left:50%;transform:translateX(-50%);width:126px;max-width:100%;height:4px}
.home-section-title--left{text-align:left;padding-bottom:14px}
.home-section-title--left::after{left:0;transform:none;width:280px;max-width:100%;height:6px}
.home-section-title--xl h2{font-size:46px;line-height:1.08}
.home-section-title--center h2{font-size:34px;line-height:1.18}
.home-section-title--stars::before{content:'✦ ✦ ✦';display:block;font-size:14px;font-weight:700;letter-spacing:6px;position:absolute;left:50%;transform:translateX(-50%);bottom:-12px}
.home-section-title--brand.home-section-title--stars::before{color:#7fca69}
.home-section-title--light.home-section-title--stars::before{color:#f2f8f3}

@media (max-width:991px){
    .home-section-title--center h2{font-size:28px}
    .home-section-title--xl h2{font-size:34px}
    .home-section-title p{font-size:15px}
    .home-section-title--left::after{width:200px;height:5px}
}

@media (max-width:767px){
    .home-section-title--center{padding-bottom:14px}
    .home-section-title--center h2{font-size:24px;line-height:1.28}
    .home-section-title--xl h2{font-size:24px;line-height:1.2}
    .home-section-title p{font-size:13px;line-height:1.55;max-width:94%}
    .home-section-title--center::after{width:96px;height:4px}
    .home-section-title--left{padding-bottom:10px}
    .home-section-title--left::after{width:118px;height:4px}
    .home-section-title--stars::before{font-size:12px;letter-spacing:4px;bottom:-10px}
}

/* Featured products home module */
.section-featured-home{background:#f7f8f8;padding-top:24px;padding-bottom:14px}
.section-title-featured{margin-bottom:26px}
.featured-products-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:14px}
.featured-product-item{min-width:0}
.featured-product-card{height:100%;margin-bottom:0;border-radius:18px;overflow:hidden;background:#fff}
.featured-product-card .card-img{padding-top:78%;background:#f5f7f8}
.featured-product-card .card-body{text-align:center;padding:10px 10px 12px}
.featured-product-card .card-body h3{min-height:44px;font-size:14px;margin-bottom:6px}
.featured-product-card .card-body p{display:none}
.featured-product-price{color:#ff2a2a;font-size:13px;font-weight:700}
.featured-home-viewmore{margin-top:18px}
.btn-viewmore-solid{background:var(--green);color:#fff;border-color:var(--green);padding:10px 26px}
.btn-viewmore-solid:hover{background:var(--green-dark);border-color:var(--green-dark);color:#fff}

@media (max-width:1199px){
    .featured-products-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
}

@media (max-width:991px){
    .featured-products-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
}

@media (max-width:767px){
    .section-featured-home{padding-top:18px;padding-bottom:8px}
    .featured-products-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
    .featured-product-card{border-radius:14px}
    .featured-product-card .card-body{padding:8px 8px 10px}
    .featured-product-card .card-body h3{font-size:12px;min-height:36px;margin-bottom:4px}
    .featured-product-price{font-size:12px}
    .featured-home-viewmore{margin-top:14px}
    .btn-viewmore-solid{padding:9px 20px;font-size:12px}
}

/* Why choose us home module */
.home-why-choose-section{position:relative;overflow:hidden;background:#fff;padding:74px 0 12px;color:#1a1a1a}
.home-why-choose-section::before,.home-why-choose-section::after{content:'';position:absolute;pointer-events:none;opacity:.2;border-radius:50%}
.home-why-choose-section::before{width:420px;height:420px;right:-120px;top:80px;background:rgba(253,211,82,.15)}
.home-why-choose-section::after{width:320px;height:320px;left:-140px;bottom:-120px;background:rgba(253,211,82,.1)}
.home-why-choose-wave{position:absolute;left:0;right:0;top:0;height:92px;overflow:hidden}
.home-why-choose-wave::before,.home-why-choose-wave::after{content:'';position:absolute;left:-4%;right:-4%;height:98px;border-radius:0 0 50% 50%}
.home-why-choose-wave::before{top:-50px;background:rgba(253,211,82,.3);transform:rotate(-1.5deg)}
.home-why-choose-wave::after{top:-40px;background:rgba(253,211,82,.2);transform:rotate(1.2deg)}
.home-why-choose-section .container{position:relative;z-index:2}
.home-why-choose-head{margin-bottom:34px}
.home-why-choose-head.home-section-title::after{background:#fdd352}
.home-why-choose-stars{display:none}
.home-why-choose-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));border-top:1px dashed rgba(200,160,16,.2);border-left:1px dashed rgba(200,160,16,.2)}
.home-why-choose-item{padding:34px 34px 30px;text-align:center;border-right:1px dashed rgba(200,160,16,.2);border-bottom:1px dashed rgba(200,160,16,.2)}
.home-why-choose-icon{width:80px;height:80px;margin:0 auto 18px;display:flex;align-items:center;justify-content:center;font-size:48px;color:#c8a010}
.home-why-choose-item h3{margin:0 0 14px;font-size:18px;line-height:1.35;font-weight:800;text-transform:uppercase;color:#1a1a1a}
.home-why-choose-item p{margin:0 auto;max-width:360px;font-size:16px;line-height:1.7;color:#555}

@media (max-width:1199px){
    .home-why-choose-item{padding:28px 24px}
    .home-why-choose-item p{font-size:15px}
}

@media (max-width:991px){
    .home-why-choose-section{padding-top:66px}
    .home-why-choose-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}

@media (max-width:767px){
    .home-why-choose-section{padding:56px 0 4px}
    .home-why-choose-wave{height:70px}
    .home-why-choose-wave::before,.home-why-choose-wave::after{height:76px}
    .home-why-choose-head{margin-bottom:22px}
    .home-why-choose-head h2{padding:0 10px}
    .home-why-choose-grid{grid-template-columns:1fr}
    .home-why-choose-item{padding:24px 18px 22px}
    .home-why-choose-icon{width:64px;height:64px;margin-bottom:12px;font-size:38px}
    .home-why-choose-item h3{font-size:16px;margin-bottom:10px}
    .home-why-choose-item p{font-size:14px;line-height:1.65}
}


/* Home equipment sync slider module */
.home-equipment-section{padding:34px 0 40px;background:#f6f7f7}
.home-equipment-shell{max-width:100%;margin:0 auto}
.home-equipment-head{margin:0 0 22px}
.home-equipment-slider{width:100%}
.equipment-main-card{border-radius:24px;overflow:hidden;background:#fff;box-shadow:0 14px 40px rgba(15,23,32,.08);position:relative}
.equipment-main-card img{display:block;width:100%;height:560px;object-fit:contain;background:#fff}
.equipment-main-link{display:block}
.tp-equipment-main-owl .owl-nav{position:absolute;left:20px;right:20px;top:50%;margin-top:-22px;pointer-events:none}
.tp-equipment-main-owl .owl-prev,.tp-equipment-main-owl .owl-next{pointer-events:auto;position:absolute;width:44px;height:44px;border:none!important;border-radius:50%!important;background:rgba(255,255,255,.92)!important;color:var(--green-dark)!important;font-size:28px!important;display:flex!important;align-items:center;justify-content:center;box-shadow:0 8px 20px rgba(15,23,32,.16);transition:all .2s ease}
.tp-equipment-main-owl .owl-prev:hover,.tp-equipment-main-owl .owl-next:hover{background:#fff!important;transform:translateY(-1px)}
.tp-equipment-main-owl .owl-prev{left:0}
.tp-equipment-main-owl .owl-next{right:0}
.equipment-thumb-wrap{margin-top:14px}
.equipment-thumb-card{display:block;width:100%;padding:0;border:0;background:transparent;border-radius:18px;overflow:hidden;cursor:pointer}
.equipment-thumb-card img{display:block;width:100%;height:110px;object-fit:contain;border-radius:18px;border:2px solid transparent;transition:all .2s ease;background:#fff}
.tp-equipment-thumb-owl .owl-item.current-thumb .equipment-thumb-card img{border-color:var(--green-dark);box-shadow:0 8px 20px rgba(10,138,67,.16)}
.tp-equipment-thumb-owl .owl-stage{display:flex;align-items:stretch}
.tp-equipment-thumb-owl .owl-item{padding-bottom:4px}

@media (max-width:1399px){
    .equipment-main-card img{height:500px}
}

@media (max-width:1199px){

    .equipment-main-card img{height:460px}
    .equipment-thumb-card img{height:96px}
}

@media (max-width:991px){
    .home-equipment-section{padding:28px 0 32px}

    .equipment-main-card{border-radius:18px}
    .equipment-main-card img{height:360px}
    .equipment-thumb-card img{height:82px;border-radius:14px}
}

@media (max-width:767px){
    .home-equipment-section{padding:24px 0 26px}
    .home-equipment-head{margin-bottom:14px}

    .equipment-main-card{border-radius:16px}
    .equipment-main-card img{height:240px}
    .tp-equipment-main-owl .owl-nav{left:10px;right:10px;margin-top:-16px}
    .tp-equipment-main-owl .owl-prev,.tp-equipment-main-owl .owl-next{width:32px;height:32px;font-size:22px!important}
    .equipment-thumb-wrap{margin-top:10px}
    .equipment-thumb-card img{height:58px;border-radius:12px}
}


/* Title style sync fix */
.section-cat .home-section-title,
.section-featured-home .home-section-title,
.home-equipment-section .home-section-title{position:relative}
.section-cat .home-section-title h2,
.section-featured-home .home-section-title h2,
.home-equipment-section .home-section-title h2{color:var(--green-dark)!important;font-weight:900;text-transform:uppercase;letter-spacing:-.02em}
.section-cat .home-section-title p,
.section-featured-home .home-section-title p{color:#5f6d79!important}
.section-cat .home-section-title--center,
.section-featured-home .home-section-title--center{padding-bottom:18px}
.section-cat .home-section-title--center::after,
.section-featured-home .home-section-title--center::after{background:linear-gradient(90deg,var(--green-dark),#31b06d)!important;height:4px;width:112px}
.section-cat .home-section-title--center h2,
.section-featured-home .home-section-title--center h2{font-size:34px;line-height:1.18}
.home-equipment-section .home-section-title--left::after{background:linear-gradient(90deg,var(--green-dark),#31b06d)!important}

/* Equipment slider caption */
.equipment-main-card{display:flex;flex-direction:column}
.equipment-main-media{position:relative;flex:1 1 auto}
.equipment-main-caption{padding:14px 22px 16px;font-size:22px;line-height:1.3;font-weight:800;color:var(--green-dark);text-align:center;background:#fff;border-top:1px solid #edf1f2}
.equipment-thumb-card{display:flex;flex-direction:column;justify-content:flex-start;align-items:stretch;background:#fff;border:1px solid #e1e8e3;border-radius:18px;overflow:hidden;min-height:100%}
.equipment-thumb-card img{border:none;box-shadow:none;border-radius:0;background:#fff}
.equipment-thumb-title{display:block;padding:8px 10px 12px;font-size:14px;line-height:1.35;font-weight:700;color:#234;text-align:center;white-space:normal}
.tp-equipment-thumb-owl .owl-item.current-thumb .equipment-thumb-card{border-color:var(--green-dark);box-shadow:0 8px 20px rgba(10,138,67,.16)}
.tp-equipment-thumb-owl .owl-item.current-thumb .equipment-thumb-card img{border-color:transparent;box-shadow:none}

@media (max-width: 991px){
  .section-cat .home-section-title--center h2,
  .section-featured-home .home-section-title--center h2{font-size:28px}
  .equipment-main-caption{font-size:18px;padding:12px 16px 14px}
  .equipment-thumb-title{font-size:13px;padding:8px 8px 10px}
}

@media (max-width: 767px){
  .section-cat .home-section-title--center h2,
  .section-featured-home .home-section-title--center h2{font-size:24px}
  .section-cat .home-section-title--center::after,
  .section-featured-home .home-section-title--center::after{width:92px;height:4px}
  .equipment-main-caption{font-size:15px;padding:10px 12px 12px}
  .equipment-thumb-title{font-size:11px;line-height:1.3;padding:6px 6px 8px}
}


/* =========================
   HOME TESTIMONIAL MODULE
========================= */
.home-testimonial-section{position:relative;padding:70px 0 64px;background:linear-gradient(180deg,#07131d 0%,#04080c 100%);overflow:hidden}
.home-testimonial-section::before,.home-testimonial-section::after{content:'';position:absolute;border-radius:50%;border:1px solid rgba(255,255,255,.05);pointer-events:none}
.home-testimonial-section::before{width:520px;height:520px;left:-120px;top:40px}
.home-testimonial-section::after{width:620px;height:620px;right:-140px;top:20px}
.home-testimonial-overlay{position:absolute;inset:0;background:radial-gradient(circle at 20% 55%,rgba(255,255,255,.04),transparent 28%),radial-gradient(circle at 80% 35%,rgba(255,255,255,.04),transparent 24%)}
.home-testimonial-head{position:relative;z-index:1;margin-bottom:34px}
.home-testimonial-head h2{color:#fff!important}
.home-testimonial-head p{color:rgba(255,255,255,.86)!important;font-size:16px;max-width:980px}
.tp-testimonial-owl{position:relative;z-index:1}
.home-testimonial-card{height:100%;text-align:center;color:#fff;padding:0 12px 12px}
.home-testimonial-avatar-wrap{display:flex;justify-content:center;margin-bottom:16px}
.home-testimonial-avatar{width:96px;height:96px;border-radius:50%;object-fit:cover;border:4px solid rgba(255,255,255,.12);box-shadow:0 12px 28px rgba(0,0,0,.24);background:#123}
.home-testimonial-avatar-fallback{display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#0b8f45,#4cc97f);font-size:36px;font-weight:800;color:#fff}
.home-testimonial-rating{margin-bottom:12px;color:#e9ff13;font-size:24px;letter-spacing:2px}
.home-testimonial-content{font-size:18px;line-height:1.55;font-style:italic;max-width:380px;margin:0 auto 16px;color:#fff;min-height:168px}
.home-testimonial-author{font-size:17px;font-weight:800;color:#fff}
.home-testimonial-author span{font-weight:700;color:#fff}
.tp-testimonial-owl .owl-stage{display:flex;align-items:stretch}
.tp-testimonial-owl .owl-item{display:flex}
.tp-testimonial-owl .owl-dots{margin-top:18px;text-align:center}
.tp-testimonial-owl .owl-dot span{width:10px;height:10px;border-radius:50%;display:block;background:rgba(255,255,255,.28);margin:0 5px}
.tp-testimonial-owl .owl-dot.active span{background:#dfff19}

@media (max-width:1199px){
    .home-testimonial-content{font-size:17px;min-height:180px;max-width:100%}
}

@media (max-width:767px){
    .home-testimonial-section{padding:48px 0 42px}
    .home-testimonial-head{margin-bottom:22px}
    .home-testimonial-head p{font-size:14px}
    .home-testimonial-avatar{width:82px;height:82px}
    .home-testimonial-rating{font-size:20px;margin-bottom:10px}
    .home-testimonial-content{font-size:15px;min-height:auto;margin-bottom:12px}
    .home-testimonial-author{font-size:15px}
}

/* =========================================
   HOME NEWS MODULE
========================================= */
.home-news-section{padding:28px 0 44px}
.home-news-layout{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);gap:20px;align-items:stretch}
.home-news-card{background:#fff;border:1px solid #d8d8d8;border-radius:16px;overflow:hidden;box-shadow:0 4px 14px rgba(0,0,0,.06);height:100%}
.home-news-card--featured{display:flex;flex-direction:column}
.home-news-card--side{display:grid;grid-template-columns:240px minmax(0,1fr);gap:0;margin-bottom:12px}
.home-news-card--side:last-child{margin-bottom:0}
.home-news-thumb{position:relative;display:block;overflow:hidden;background:#f3f3f3}
.home-news-card--featured .home-news-thumb{height:315px}
.home-news-card--side .home-news-thumb{height:135px}
.home-news-thumb img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .35s ease}
.home-news-card:hover .home-news-thumb img{transform:scale(1.04)}
.home-news-date-badge{position:absolute;top:14px;left:14px;width:42px;border-radius:2px;overflow:hidden;background:#fff;color:#007a43;text-align:center;font-weight:700;box-shadow:0 6px 16px rgba(0,0,0,.12);z-index:2}
.home-news-date-badge strong{display:block;font-size:25px;line-height:1;padding:8px 4px 4px}
.home-news-date-badge span{display:block;font-size:13px;line-height:1.2;padding:0 4px 8px}
.home-news-content{padding:16px 18px}
.home-news-content h3{margin:0 0 10px;font-size:17px;line-height:1.45;font-weight:700}
.home-news-content h3 a{color:#10233e}
.home-news-content h3 a:hover{color:#007a43}
.home-news-content p{margin:0;color:#334155;font-size:15px;line-height:1.72;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.home-news-card--featured .home-news-content h3{font-size:18px}
.home-news-list{display:flex;flex-direction:column}

/* =========================================
   NEWS PAGE
========================================= */
.news-page-section{padding:34px 0 48px}
.news-page-head{margin-bottom:30px!important}
.news-list-card,.news-detail-card,.news-sidebar-box{background:#fff;border:1px solid #e2e8f0;border-radius:18px;box-shadow:0 6px 20px rgba(15,23,42,.05)}
.news-list-card{display:grid;grid-template-columns:280px minmax(0,1fr);overflow:hidden;margin-bottom:20px}
.news-list-thumb{position:relative;display:block;min-height:220px;background:#f5f5f5}
.news-list-thumb img{width:100%;height:100%;object-fit:cover;display:block}
.news-list-content{padding:20px 22px}
.news-list-category{display:inline-flex;align-items:center;padding:7px 14px;border-radius:999px;background:#edf9f2;color:#0b8e4a;font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.4px;margin-bottom:12px}
.news-list-content h3{margin:0 0 12px;font-size:28px;line-height:1.35;font-weight:800}
.news-list-content h3 a{color:#0f172a}
.news-list-content h3 a:hover{color:#007a43}
.news-list-content p{margin:0 0 14px;color:#475569;font-size:16px;line-height:1.75}
.news-readmore{display:inline-flex;align-items:center;gap:6px;font-weight:700;color:#007a43}
.news-sidebar{display:flex;flex-direction:column;gap:20px}
.news-sidebar-box{padding:22px}
.news-sidebar-box h3{margin:0 0 16px;font-size:20px;font-weight:800;color:#0f172a}
.news-category-list{list-style:none;padding:0;margin:0}
.news-category-list li{border-bottom:1px solid #edf2f7}
.news-category-list li:last-child{border-bottom:none}
.news-category-list a{display:block;padding:12px 0;color:#334155;font-weight:600}
.news-category-list a.active,.news-category-list a:hover{color:#007a43}
.news-empty-state{padding:40px 24px;background:#fff;border:1px dashed #cbd5e1;border-radius:16px;text-align:center;color:#64748b}
.news-pagination-wrap{text-align:center;margin-top:10px}
.news-detail-thumb img{width:100%;height:auto;display:block;border-radius:18px 18px 0 0}
.news-detail-card{padding:0;overflow:hidden}
.news-detail-meta{display:flex;align-items:center;gap:12px;flex-wrap:wrap;padding:24px 28px 0;color:#64748b;font-size:14px}
.news-detail-title{padding:6px 28px 0;margin:0;font-size:34px;line-height:1.3;font-weight:800;color:#0f172a}
.news-detail-summary{padding:14px 28px 0;color:#334155;font-size:18px;line-height:1.8;font-weight:600}
.news-detail-content{padding:18px 28px 30px;color:#1f2937;font-size:16px;line-height:1.9}
.news-latest-sidebar{display:flex;flex-direction:column;gap:14px}
.news-latest-sidebar-item{display:grid;grid-template-columns:86px minmax(0,1fr);gap:12px;align-items:center;color:#0f172a;font-weight:700}
.news-latest-sidebar-item img{width:86px;height:68px;object-fit:cover;border-radius:10px;background:#f3f3f3}

/* =========================================
   ADMIN NEWS
========================================= */
.news-admin-thumb{width:56px!important;height:56px!important;border-radius:8px;object-fit:cover!important;background:#f3f4f6}
.news-admin-thumb--empty{display:flex;align-items:center;justify-content:center;color:#94a3b8;border:1px dashed #cbd5e1}
.news-admin-image-preview{max-width:240px;border-radius:12px}
.news-admin-excerpt{margin-top:6px;color:#64748b;line-height:1.55;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;max-width:420px}
.news-admin-category-inline{display:flex;flex-wrap:wrap;gap:6px;min-height:40px;align-items:center}

@media (max-width: 1199px){
    .home-news-layout{grid-template-columns:1fr;gap:16px}
}

@media (max-width: 991px){
    .news-list-card{grid-template-columns:1fr}
    .news-list-thumb{min-height:260px}
    .news-list-content h3{font-size:24px}
}

@media (max-width: 767px){
    .home-news-section,.news-page-section{padding:24px 0 34px}
    .home-news-card--side{grid-template-columns:1fr}
    .home-news-card--featured .home-news-thumb,.home-news-card--side .home-news-thumb,.news-list-thumb{height:220px;min-height:220px}
    .home-news-content{padding:14px 14px 16px}
    .home-news-content h3{font-size:16px!important}
    .home-news-content p{font-size:14px;line-height:1.65}
    .news-list-content{padding:16px}
    .news-list-content h3{font-size:20px}
    .news-list-content p,.news-detail-content,.news-detail-summary{font-size:15px}
    .news-detail-title{font-size:25px;padding-left:16px;padding-right:16px}
    .news-detail-meta,.news-detail-summary,.news-detail-content{padding-left:16px;padding-right:16px}
}
