.hlw-topbar {
    width: 100%;
    background: #fcfaf5;
    /* light beige similar to your reference */
    padding: 6px 0;
    border-bottom: 1px solid #e8e1d7;
    position: sticky;
    top: 0;
    z-index: 1500;
    font-size: 14px;
}

.hlw-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hlw-top-links-left,
.hlw-top-links-right {
    display: flex;
    gap: 18px;
    align-items: center;
}

.hlw-top-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: .2s;
}

.hlw-top-link:hover {
    color: var(--hlw-rich-brown);
}

/* Separator "|" */
.hlw-sep {
    color: #c7b9a4;
    margin: 0 4px;
}

/* Icons */
.hlw-top-icon {
    font-size: 16px;
    color: #333;
}

/* mobile: hide some items */
@media(max-width: 768px) {
    .hlw-top-links-left {
        display: none;
    }
}

.home-slider-2 {
    background-size: cover;
    background-position: center;
}

/* Certifications Section */
.certifications-section {
    color: #fff;
    padding: 80px 0;
}

.certifications-section .container {
    background: var(--charcoal);
    padding-top: 60px;
    padding-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: #fff;
}

.section-title span {
    color: #6BBE23;
}

.section-subtitle {
    color: #ccc;
    max-width: 650px;
    margin: 0 auto 50px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.certifications-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    justify-items: center;
    align-items: center;
    padding: 20px 0;
}

.certificate-item {
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #353535;
    padding: 25px 20px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    max-width: 220px;
}

.certificate-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(107, 190, 35, 0.35);
}

.certificate-item img {
    width: 100px;
    height: auto;
    margin-bottom: 12px;
    filter: brightness(0.95);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.certificate-item:hover img {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.certificate-item p {
    color: #ddd;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

.certifications-footer p {
    color: #aaa;
    max-width: 750px;
    margin: 50px auto 0;
    font-size: 1rem;
    line-height: 1.7;
}

/* Gallery Masonry */
.gallery {
    column-gap: 0;
}

@media (min-width: 480px) {
    .gallery {
        column-count: 2;
    }
}

@media (min-width: 1260px) {
    .gallery {
        column-count: 3;
    }
}

.gallery-image {
    position: relative;
    margin: 0;
    padding: 0;
}

.gallery-image img,
.gallery-image video {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Zoom Hover for Video */
.gallery-image video {
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: grayscale(20%) brightness(0.95);
}

.gallery-image:hover video {
    transform: scale(1.07);
    filter: grayscale(0%) brightness(1.05);
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
}

.category-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    transition: box-shadow 0.2s;
    text-align: center;
}

.category-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.category-img {
    width: 100%;
    height: 150px;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid #eee;
}

.category-title {
    margin: 18px 0;
    font-size: 1.08rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #232323;
}

@media (max-width: 900px) {
    .category-img {
        height: 110px;
    }
}

@media (max-width: 600px) {
    .category-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .category-img {
        height: 75px;
    }

    .category-title {
        font-size: 0.93rem;
        margin: 12px 0 14px 0;
    }
}

/* Bottom Mobile Toolbar */
.mobile-bottom-toolbar {
    background: #fff;
    border-top: 1px solid #ddd;
}

.toolbar-nav {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
}

.toolbar-nav a {
    text-align: center;
    color: #333;
}

.toolbar-nav a.active {
    color: #6BBE23;
}

.badge {
    background: #6BBE23;
    color: #fff;
    padding: 2px 6px;
    border-radius: 50%;
    font-size: 10px;
    margin-left: 4px;
}

.hlw2-hero {
    width: 100%;
    height: 90vh;
    position: relative;
    overflow: hidden;
    background: #111;
}

.hlw2-swiper {
    width: 100%;
    height: 100%;
}

.hlw2-slide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6%;
    height: 100%;
    position: relative;
    color: #fff;
}

.hlw2-left {
    width: 45%;
    z-index: 5;
}

.hlw2-title {
    font-size: 60px;
    line-height: 1.1;
    font-weight: 800;
    /* opacity: 0; */
    transform: translateY(40px);
    transition: .9s ease;
    color: #fff;
}

.hlw2-desc {
    margin-top: 20px;
    font-size: 20px;
    opacity: 0;
    transform: translateY(40px);
    transition: 1.1s;
}

.hlw2-btn-row {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateY(40px);
    transition: 1.3s;
}

.hlw2-btn {
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 16px;
    text-decoration: none;
    font-weight: 600;
}

.hlw2-btn-primary {
    background: #5C4033;
    color: #fff;
}

.hlw2-btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

.hlw2-right {
    width: 50%;
    display: flex;
    justify-content: center;
}

.hlw2-img {
    width: 80%;
    height: auto;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.4));
    transform: scale(1.2);
    opacity: 0;
    transition: 1s ease;
}

/* Reveal Animation for Active Slide */
.swiper-slide-active .hlw2-title,
.swiper-slide-active .hlw2-desc,
.swiper-slide-active .hlw2-btn-row {
    opacity: 1;
    transform: translateY(0);
}

.swiper-slide-active .hlw2-img {
    opacity: 1;
    transform: scale(1);
}

/* Swiper Controls */
.hlw2-swiper .swiper-button-next,
.hlw2-swiper .swiper-button-prev {
    color: #fff;
}

/* Banner here */
.hlw-min-banners {
    padding: 70px 0;
}

.hlw-min-banner {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    height: 260px;
    background: #000;
}

.hlw-min-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    transition: transform 1.2s ease, opacity 0.8s ease;
    opacity: 0.85;
}

.hlw-min-banner:hover .hlw-min-img {
    transform: scale(1);
    opacity: 0.75;
}

/* Subtle gradient overlay */
.hlw-min-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right,
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.05));
    pointer-events: none;
}

/* Content */
.hlw-min-content {
    position: absolute;
    left: 30px;
    bottom: 30px;
    color: #fff;
    opacity: 0;
    transform: translateY(15px);
    transition: 0.5s ease;
}

.hlw-min-banner:hover .hlw-min-content {
    opacity: 1;
    transform: translateY(0);
}

.hlw-min-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 6px;
    letter-spacing: 0.3px;
    color: #fff;
}

.hlw-min-btn {
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    opacity: 0.9;
    transition: 0.3s ease;
}

.hlw-min-btn:hover {
    color: #C19A6B;
}

/* Minimal arrow animation */
.hlw-min-btn i {
    transition: transform .3s ease;
}

.hlw-min-btn:hover i {
    transform: translateX(4px);
}

.hlw-cat7-section {
    padding: 80px 0;
}

.hlw-cat7-heading {
    text-align: center;
    margin-bottom: 40px;
}

.hlw-cat7-title {
    font-size: 36px;
    font-weight: 800;
    color: #2B2B2B;
    margin-bottom: 10px;
}

.hlw-cat7-subtitle {
    font-size: 18px;
    color: #777;
    max-width: 700px;
    margin: 0 auto;
}

/* Grid */
.hlw-cat7-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    justify-items: center;
    margin-top: 20px;
}

/* Circular Card */
.hlw-cat7-card {
    text-align: center;
    cursor: pointer;
    transition: .4s ease;
}

.hlw-cat7-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    background: #eee;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    transition: .35s ease;
}

/* Hover Lift Effect */
.hlw-cat7-card:hover .hlw-cat7-circle {
    transform: translateY(-7px) scale(1.06);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

/* Circular Border Glow */
.hlw-cat7-circle::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid transparent;
    transition: .4s ease;
}

.hlw-cat7-card:hover .hlw-cat7-circle::after {
    border-color: #C19A6B;
    /* Gold-Tan glow */
}

/* Image */
.hlw-cat7-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
}

/* Slight Zoom on Hover */
.hlw-cat7-card:hover .hlw-cat7-img {
    transform: scale(1.08);
    filter: brightness(90%);
}

/* Category Name */
.hlw-cat7-name {
    margin-top: 14px;
    font-size: 18px;
    font-weight: 700;
    color: #2B2B2B;
    transition: .3s ease;
}

.hlw-cat7-card:hover .hlw-cat7-name {
    color: #5C4033;
}

/* New Arrival  */

.hlw-prod11-section {
    padding: 90px 0;
}

.hlw-prod11-heading {
    text-align: center;
    margin-bottom: 40px;
}

.hlw-prod11-title {
    font-size: 40px;
    font-weight: 800;
    color: #222;
}

.hlw-prod11-subtitle {
    font-size: 16px;
    color: #777;
    max-width: 650px;
    margin: 12px auto 0;
}

/* GRID */
.hlw-prod11-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 40px;
}

/* CARD */
.hlw-prod11-card {
    text-decoration: none;
    display: block;
    transition: .35s ease;
}

.hlw-prod11-card:hover {
    transform: translateY(-4px);
}

/* IMAGE */
.hlw-prod11-imgbox {
    width: 100%;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
}

.hlw-prod11-imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s ease;
    filter: brightness(95%);
}

.hlw-prod11-card:hover img {
    transform: scale(1.06);
    filter: brightness(90%);
}

/* SKU TAG */
.hlw-prod11-sku {
    font-size: 12px;
    font-weight: 600;
    color: #6B8E23;
    text-transform: uppercase;
    margin-top: 14px;
    letter-spacing: .5px;
}

/* Product Name */
.hlw-prod11-name {
    font-size: 18px;
    font-weight: 700;
    color: #2B2B2B;
    margin-top: 4px;
    line-height: 1.4;
    height: 44px;
    overflow: hidden;
}

/* Price */
.hlw-prod11-price {
    font-size: 15px;
    margin-top: 8px;
    color: #5C4033;
    font-weight: 600;
}

.hlw-prod13-section {
    padding: 90px 0;
}

.hlw-prod13-heading {
    text-align: center;
    margin-bottom: 50px;
}

.hlw-prod13-title {
    font-size: 42px;
    font-weight: 800;
    color: #222;
}

.hlw-prod13-subtitle {
    font-size: 16px;
    color: #777;
    max-width: 650px;
    margin: 12px auto 0;
}

/* GRID */
.hlw-prod13-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
}

/* CARD — LARGE & SMALL VARIANTS */
.hlw-prod13-card {
    text-decoration: none;
    display: block;
    position: relative;
    transition: .35s ease;
}

.hlw-prod13-card:hover {
    transform: translateY(-4px);
}

/* Large card spans 6 columns */
.hlw-prod13-large {
    grid-column: span 6;
    height: 550px;
}

/* Small card spans 3 columns */
.hlw-prod13-small {
    grid-column: span 3;
    height: 350px;
}

@media(max-width: 992px) {
    .hlw-prod13-large {
        grid-column: span 12;
        height: 420px;
    }

    .hlw-prod13-small {
        grid-column: span 6;
        height: 300px;
    }
}

@media(max-width: 600px) {

    .hlw-prod13-small,
    .hlw-prod13-large {
        grid-column: span 12;
        height: 320px;
    }
}

/* IMAGE */
.hlw-prod13-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    transition: .6s ease;
    filter: brightness(96%);
}

.hlw-prod13-card:hover .hlw-prod13-img {
    transform: scale(1.06);
    filter: brightness(90%);
}

/* SKU TAG */
.hlw-prod13-sku {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 700;
    color: #2B2B2B;
    border-radius: 4px;
    text-transform: uppercase;
}

/* TEXT CONTENT */
.hlw-prod13-info {
    margin-top: 14px;
}

.hlw-prod13-name {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
}

.hlw-prod13-price {
    font-size: 15px;
    font-weight: 600;
    color: #5C4033;
}

.hlw-gallery-section {
    padding: 80px 0;
}

.hlw-gallery-title {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #2B2B2B;
}

/* Masonry grid */
.hlw-gallery-grid {
    column-count: 3;
    column-gap: 25px;
}

@media (max-width: 992px) {
    .hlw-gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .hlw-gallery-grid {
        column-count: 1;
    }
}

/* Each tile */
.hlw-gallery-item {
    break-inside: avoid;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    display: block;
    cursor: zoom-in;
}

/* Images + video styling */
.hlw-gallery-img,
.hlw-gallery-video video {
    width: 100%;
    border-radius: 16px;
    display: block;
    transition: .6s ease;
    filter: brightness(96%);
}

.hlw-gallery-item:hover img,
.hlw-gallery-item:hover video {
    transform: scale(1.06);
    filter: brightness(85%);
}

/* Play icon overlay for video */
.hlw-gallery-video::after {
    content: '\f04b';
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    font-size: 40px;
    color: white;
    text-shadow: 0 4px 10px rgba(0, 0, 0, .4);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
/* WHY CHOOSE US */
.hlw-whyus {
    padding: 90px 0;
    background: #faf7f2;
}

.hlw-whyus-heading {
    text-align: center;
    margin-bottom: 50px;
}

.hlw-whyus-title {
    font-size: 36px;
    font-weight: 800;
    color: #2B2B2B;
}

.hlw-whyus-subtitle {
    font-size: 17px;
    color: #777;
    max-width: 650px;
    margin: 12px auto 0;
}

/* GRID */
.hlw-whyus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 35px;
}

/* CARD */
.hlw-whyus-card {
    background: #fff;
    padding: 28px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: .35s ease;
}

.hlw-whyus-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.10);
}

/* ICON */
.hlw-whyus-icon {
    font-size: 40px;
    color: #5C4033;
    margin-bottom: 15px;
}

.hlw-whyus-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hlw-whyus-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

/* PROCESS SECTION */
.hlw-process {
    padding: 100px 0;
}

.hlw-process-heading {
    text-align: center;
    margin-bottom: 50px;
}

.hlw-process-title {
    font-size: 38px;
    font-weight: 800;
    color: #2B2B2B;
}

.hlw-process-subtitle {
    font-size: 17px;
    color: #777;
    max-width: 680px;
    margin: 10px auto;
}

/* GRID */
.hlw-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 40px;
}

/* STEP CARD */
.hlw-process-step {
    text-align: center;
    padding: 25px;
    background: #fafafa;
    border-radius: 14px;
    transition: .3s ease;
}

.hlw-process-step:hover {
    transform: translateY(-6px);
    background: #fff;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

/* Step Number */
.hlw-step-number {
    font-size: 42px;
    font-weight: 800;
    color: #C19A6B;
    opacity: .7;
    display: block;
    margin-bottom: 10px;
}

