:root {
            --font: 'Albert Sans', sans-serif;
            --clr-dark: #0D0D0D;
            --clr-bg: #ffffff;
            --clr-gray: #848484;
            --clr-border: #E6E6E6;
            --clr-accent: #C26B23;
            --clr-red: #BB0925;
            --clr-sale-bg: #C26B23;
            --ft-bg: #0D0D0D;
            --ft-text: rgba(255, 255, 255, .60);
            --ft-border: rgba(255, 255, 255, .10);
            --ft-input-bg: rgba(255, 255, 255, .08);
            --ft-accent: #BB0925;
            --bg-light:#F2F1EF;
            --ft-link-hover: #C26B23;
            --ease: cubic-bezier(.4, 0, .2, 1);
            --t: .22s;
        }


                /* ═══════════════════════════════════════════
   ROOT — your exact variables
═══════════════════════════════════════════ */
        :root {
            --ts-logo-width: 190px;
            --ts-body-padding: 0px;
            --ts-content-padding: 40px;

            --ts-font-family: Albert Sans;
            --ts-font-style: normal;
            --ts-font-weight: 400;
            --ts-letter-spacing: 0px;
            --ts-body-font-size: 15px;
            --ts-line-height: 22px;

            --ts-heading-font-family: Albert Sans;
            --ts-heading-font-style: normal;
            --ts-heading-font-weight: 600;
            --ts-heading-letter-spacing: 0px;
            --ts-h1-font-size: 50px;
            --ts-h1-line-height: 56px;
            --ts-h2-font-size: 40px;
            --ts-h2-line-height: 46px;
            --ts-h3-font-size: 30px;
            --ts-h3-line-height: 36px;
            --ts-h4-font-size: 25px;
            --ts-h4-line-height: 30px;
            --ts-h5-font-size: 20px;
            --ts-h5-line-height: 26px;
            --ts-h6-font-size: 18px;
            --ts-h6-line-height: 22px;

            --ts-btn-font-family: Albert Sans;
            --ts-btn-font-weight: 500;
            --ts-btn-font-size: 16px;
            --ts-btn-line-height: 22px;
            --ts-btn-letter-spacing: 0px;

            --ts-body-bg: #ffffff;
            --ts-primary-color: #0D0D0D;
            --ts-text-in-primary-color: #ffffff;
            --ts-text-color: #0D0D0D;
            --ts-heading-color: #0D0D0D;
            --ts-gray-color: #848484;
            --ts-highlight: #BB0925;
            --ts-border: #E6E6E6;
            --ts-rated-color: #C26B23;
            --ts-link-color: #DE1010;
            --ts-link-hover-color: #C26B23;

            --ts-btn-color: #ffffff;
            --ts-btn-bg: #0D0D0D;
            --ts-btn-border: #0D0D0D;
            --ts-btn-hover-color: #0D0D0D;
            --ts-btn-hover-bg: rgba(255, 255, 255, 0);
            --ts-btn-hover-border: #0D0D0D;

            --ts-btn-addtocart-hover-bg: #C26B23;
            --ts-btn-addtocart-hover-border: #C26B23;
            --ts-product-border: #E6E6E6;


              --ts-input-border: #d9d9d9;
            --ts-input-background-color: #ffffff;
            --ts-input-color: #0D0D0D;
        }

        /* ═══════════════════════════════════════════
   GLOBAL RESET & BASE
═══════════════════════════════════════════ */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background: var(--ts-body-bg);
            font-family: var(--ts-font-family), sans-serif;
            font-size: var(--ts-body-font-size);
            line-height: var(--ts-line-height);
            color: var(--ts-text-color);
            font-weight: var(--ts-font-weight);
        }

        /* shared section padding */
        .section-wrap {
            max-width: 1440px;
            margin: 0 auto;
            padding: 90px var(--ts-content-padding);
        }

        /* shared section heading */
        .section-label {
            font-family: var(--ts-font-family), sans-serif;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--ts-rated-color);
            margin-bottom: 14px;
        }

        .section-title {
            font-family: var(--ts-heading-font-family), sans-serif;
            font-weight: var(--ts-heading-font-weight);
            font-size: var(--ts-h2-font-size);
            line-height: var(--ts-h2-line-height);
            color: var(--ts-heading-color);
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .section-title-center {
            text-align: center;
        }

        .section-sub {
            font-size: var(--ts-body-font-size);
            color: var(--ts-gray-color);
            line-height: var(--ts-line-height);
            margin-top: 18px;
            max-width: 560px;
        }

        .section-sub-center {
            text-align: center;
            margin: 18px auto 0;
        }

        /* btn */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: var(--ts-btn-font-family), sans-serif;
            font-weight: var(--ts-btn-font-weight);
            font-size: var(--ts-btn-font-size);
            line-height: var(--ts-btn-line-height);
            letter-spacing: var(--ts-btn-letter-spacing);
            color: var(--ts-btn-color);
            background: var(--ts-btn-bg);
            border: 1px solid var(--ts-btn-border);
            padding: 13px 28px;
            cursor: pointer;
            text-decoration: none;
            transition: background 0.25s, color 0.25s, border-color 0.25s;
        }

        .btn:hover {
            color: var(--ts-btn-hover-color);
            background: var(--ts-btn-hover-bg);
            border-color: var(--ts-btn-hover-border);
        }

        .btn-outline {
            color: var(--ts-primary-color);
            background: transparent;
            border-color: var(--ts-primary-color);
        }

        .btn-outline:hover {
            background: var(--ts-primary-color);
            color: #fff;
        }

        /* divider */
        hr.sec-divider {
            border: none;
            border-top: 1px solid var(--ts-border);
            margin: 0;
        }

        /* animation */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(24px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .anim {
            animation: fadeUp 0.6s ease both;
        }

        .d1 {
            animation-delay: 0.05s;
        }

        .d2 {
            animation-delay: 0.15s;
        }

        .d3 {
            animation-delay: 0.25s;
        }

        .d4 {
            animation-delay: 0.35s;
        }

        .d5 {
            animation-delay: 0.45s;
        }

        .d6 {
            animation-delay: 0.55s;
        }


        /* ═══════════════════════════════════════════
       BASE
    ═══════════════════════════════════════════ */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

       
        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font);
            font-size: 15px;
            line-height: 22px;
            color: var(--clr-dark);
            background: var(--clr-bg);
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        img {
            display: block;
            max-width: 100%;
        }

        /* ═══════════════════════════════════════════
       TOP BAR
    ═══════════════════════════════════════════ */
        .top-bar {
            background: transparent;
            border-bottom: 1px solid rgba(255, 255, 255, .12);
            padding: 8px 0;
            font-size: .75rem;
            font-weight: 500;
            letter-spacing: .05em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .80);
            transition: background var(--t) var(--ease), border-color var(--t) var(--ease), color var(--t) var(--ease);
            position: relative;
            z-index: 1001;
        }

        .top-bar a {
            color: inherit;
            transition: color var(--t);
        }

        .top-bar a:hover {
            color: var(--clr-accent);
        }

        .top-bar .social-icons {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .top-bar .social-icons i {
            font-size: .95rem;
            opacity: .75;
            transition: opacity var(--t);
        }

        .top-bar .social-icons a:hover i {
            opacity: 1;
        }

        .divider-v {
            width: 1px;
            height: 12px;
            background: currentColor;
            opacity: .25;
        }


        header.scrolled .top-bar {
            background: var(--clr-dark);
            border-bottom-color: rgba(255, 255, 255, .08);
            color: rgba(255, 255, 255, .75);
        }

        /* ═══════════════════════════════════════════
       STICKY HEADER
    ═══════════════════════════════════════════ */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }

        /* ═══════════════════════════════════════════
       MAIN NAVBAR
    ═══════════════════════════════════════════ */
        .main-navbar {
            background: transparent;
            border-bottom: 1px solid rgba(255, 255, 255, .10);
            position: relative;
            z-index: 1000;
            transition: background var(--t) var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
        }

        header.scrolled .main-navbar {
            background: rgba(13, 13, 13, .96);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom-color: rgba(255, 255, 255, .07);
            box-shadow: 0 6px 32px rgba(0, 0, 0, .28);
        }

        .navbar-inner {
            display: grid;
            grid-template-columns: 200px 1fr 220px 180px;
            align-items: stretch;
            min-height: 70px;
        }

        .brand-cell {
            display: flex;
            align-items: center;

            justify-content: center;
            gap: 12px;
      
            padding-right: 24px;
            border-right: 1px solid rgba(255, 255, 255, .12);
            transition: border-color var(--t);
        }

        .brand-cell img{
            max-height: 70px;
        }

        header.scrolled .brand-cell {
            border-right-color: rgba(255, 255, 255, .08);
        }

        .brand-circle {
            width: 42px;
            height: 42px;
            border: 1.5px solid rgba(255, 255, 255, .7);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            color: rgba(255, 255, 255, .85);
            flex-shrink: 0;
            transition: border-color var(--t), color var(--t);
        }

        header.scrolled .brand-circle {
            border-color: rgba(255, 255, 255, .4);
        }

        .brand-text {
            font-weight: 700;
            font-size: 1rem;
            line-height: 1.2;
            letter-spacing: .05em;
            color: #fff;
        }

        .brand-text a {
            color: inherit;
        }

        .brand-tagline {
            font-size: .62rem;
            font-weight: 400;
            color: rgba(255, 255, 255, .5);
            letter-spacing: .07em;
            text-transform: uppercase;
        }

        .nav-links-cell {
            display: flex;
            align-items: stretch;
            justify-content: center;
            padding-left: 4px;
        }

        .nav-mega-item {
            position: static;
        }

        .nav-item-link {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 0 14px;
            font-size: .78rem;
            font-weight: 600;
            letter-spacing: .06em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .82);
            border-bottom: 2px solid transparent;
            white-space: nowrap;
            transition: color var(--t), border-color var(--t);
            cursor: pointer;
            background: none;
            border-top: none;
            border-left: none;
            border-right: none;
            height: 100%;
        }

        .nav-item-link:hover,
        .nav-mega-item:hover .nav-item-link {
            color: #fff;
            border-bottom-color: var(--clr-accent);
        }

        .nav-item-link i {
            font-size: .55rem;
            transition: transform var(--t);
        }

        .nav-mega-item:hover .nav-item-link i {
            transform: rotate(180deg);
        }

        .search-box {
            border: 1px solid rgba(255, 255, 255, .2);
            border-radius: 50px;
            padding: 7px 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            width: 100%;
            background: rgba(255, 255, 255, .08);
            backdrop-filter: blur(8px);
            transition: border-color var(--t), background var(--t);
        }

        .search-box:focus-within {
            border-color: var(--clr-accent);
            background: rgba(255, 255, 255, .12);
        }

        .search-box input {
            border: none;
            background: transparent;
            outline: none;
            font-size: .82rem;
            color: #fff;
            width: 100%;
            font-family: var(--font);
        }

        .search-box input::placeholder {
            color: rgba(255, 255, 255, .4);
        }

        .search-box i {
            color: var(--clr-accent);
            font-size: .9rem;
            flex-shrink: 0;
        }

        .locale-cell {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            border-left: 1px solid rgba(255, 255, 255, .10);
            padding: 0 18px;
            transition: border-color var(--t);
        }


        /* Header Animation */
#siteHeader{
    transition: transform .4s ease, background .3s ease;
}

/* Scroll Down → Hide */
#siteHeader.hide{
    transform: translateY(-100%);
}

        /* ═══════════════════════════════════════════
       MEGA DROPDOWN
    ═══════════════════════════════════════════ */
        .mega-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: #fff;
            border-top: 2px solid var(--clr-accent);
            border-bottom: 1px solid var(--clr-border);
            box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
            display: none;
            z-index: 999;
            padding: 36px 0 40px;
            animation: dropIn .18s var(--ease) both;
        }

        @keyframes dropIn {
            from {
                opacity: 0;
                transform: translateY(-6px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .nav-mega-item:hover .mega-dropdown {
            display: block;
        }

        .mega-col-head {
            font-size: .68rem;
            font-weight: 700;
            letter-spacing: .15em;
            text-transform: uppercase;
            color: var(--clr-gray);
            margin-bottom: 16px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--clr-border);
        }

        .mega-col ul li {
            margin-bottom: 9px;
        }

        .mega-col ul li a {
            font-size: .82rem;
            font-weight: 600;
            letter-spacing: .06em;
            text-transform: uppercase;
            color: var(--clr-dark);
            display: block;
            transition: color var(--t), padding-left var(--t);
        }

        .mega-col ul li a:hover {
            color: var(--clr-accent);
            padding-left: 4px;
        }

        .mega-col+.mega-col {
            border-left: 1px solid var(--clr-border);
        }

        /* ═══════════════════════════════════════════
       BUTTONS
    ═══════════════════════════════════════════ */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--clr-dark);
            color: #fff;
            border: 2px solid var(--clr-dark);
            border-radius: 50px;
            padding: 11px 28px;
            font-family: var(--font);
            font-size: .82rem;
            font-weight: 600;
            letter-spacing: .04em;
            text-transform: uppercase;
            cursor: pointer;
            transition: background var(--t), color var(--t), border-color var(--t), transform var(--t), box-shadow var(--t);
        }

        .btn:hover {
            background: var(--clr-accent);
            border-color: var(--clr-accent);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(194, 107, 35, .35);
        }

        .btn i {
            font-size: .65rem;
            transition: transform var(--t);
        }

        .btn:hover i {
            transform: translateX(3px);
        }

        .btn-outline-light {
            display: inline-flex;
            align-items: center;
            border: 1.5px solid rgba(255, 255, 255, .8);
            color: #fff;
            background: transparent;
            border-radius: 50px;
            padding: 9px 24px;
            font-size: .8rem;
            font-weight: 600;
            letter-spacing: .04em;
            text-transform: uppercase;
            transition: background var(--t), color var(--t), border-color var(--t);
        }

        .btn-outline-light:hover {
            background: #fff;
            color: var(--clr-dark);
            border-color: #fff;
        }

        /* ═══════════════════════════════════════════
       HERO
    ═══════════════════════════════════════════ */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 560px;
            overflow: hidden;
            background: #1a1410;
        }

        .hero-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: .82;
            transition: transform 8s ease;
            will-change: transform;
        }

        .hero:hover .hero-img {
            transform: scale(1.04);
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(110deg, rgba(13, 13, 13, .78) 32%, rgba(13, 13, 13, .2) 65%, transparent 85%);
        }

        .hero-content {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 64px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 32px;
            color: #fff;
            padding: 120px 0 80px;
        }

        .hero-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 1px solid rgba(255, 255, 255, .35);
            border-radius: 50px;
            padding: 6px 18px;
            font-size: .68rem;
            font-weight: 700;
            letter-spacing: .14em;
            text-transform: uppercase;
            backdrop-filter: blur(8px);
            color: #fff;
            width: fit-content;
        }

        .hero-pill .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--clr-red);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(187, 9, 37, .5);
            }

            50% {
                box-shadow: 0 0 0 6px rgba(187, 9, 37, 0);
            }
        }

        .hero-title {
            font-size: clamp(42px, 6vw, 68px);
            line-height: 1.04;
            font-weight: 700;
            color: #fff;
            letter-spacing: -.02em;
        }

        .hero-sub {
            font-size: .95rem;
            font-weight: 300;
            color: rgba(255, 255, 255, .72);
            font-style: italic;
            padding: 80px 0 20px 0;
            margin-top: -16px;
        }

        .hero-arrow {
            position: absolute;
            top: 50% !important;
            transform: translateY(-50%) !important;
            width: 48px !important;
            height: 48px !important;
            border-radius: 50% !important;
            border: 1px solid rgba(255, 255, 255, .35);
            background: rgba(255, 255, 255, .08);
            color: #fff !important;
            font-size: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            backdrop-filter: blur(8px);
            z-index: 10;
            transition: background var(--t), border-color var(--t);
            -webkit-transform: translateY(-50%) !important;
            -moz-transform: translateY(-50%) !important;
            -ms-transform: translateY(-50%) !important;
            -o-transform: translateY(-50%) !important;
            -webkit-transition: background var(--t), border-color var(--t);
            -moz-transition: background var(--t), border-color var(--t);
            -ms-transition: background var(--t), border-color var(--t);
            -o-transition: background var(--t), border-color var(--t);
            -webkit-border-radius: 50% !important;
            -moz-border-radius: 50% !important;
            -ms-border-radius: 50% !important;
            -o-border-radius: 50% !important;
}

        .hero-arrow:hover {
            background: rgba(255, 255, 255, .22);
            border-color: rgba(255, 255, 255, .6);
        }

        .hero-arrow.prev {
            left: 24px;
        }

        .hero-arrow.next {
            right: 24px;
        }

        .hero-dots {
            position: absolute;
            bottom: 32px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }

        .hero-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .3);
            cursor: pointer;
            transition: background var(--t), transform var(--t);
        }

        .hero-dot.active {
            background: var(--clr-red);
            transform: scale(1.4);
        }


        .hero .swiper-slide{
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero .swiper-button-prev::after,
.hero .swiper-button-next::after{
    display:none;
}

.hero .swiper-pagination{
    bottom:30px !important;
}

.hero .swiper-pagination-bullet{
    width:8px;
    height:8px;
    background:rgba(255,255,255,.4);
    opacity:1;
    transition:.3s;
}

.hero .swiper-pagination-bullet-active{
    background:var(--clr-red);
    transform:scale(1.4);
}
/* ═══════════════════════════════════════════
   HANDCRAFTED SECTION
═══════════════════════════════════════════ */

.handcrafted-section {
    background: var(--clr-bg);
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
    overflow: hidden;
}

.product-showcase-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    align-items: stretch;
}

.showcase-content {
    padding: 60px 50px;
    border-right: 1px solid var(--clr-border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.showcase-content h2 {
    font-size: 38px;
    line-height: 46px;
    font-weight: 700;
    color: var(--clr-dark);
    letter-spacing: -1.5px;
    text-transform: uppercase;
}

.showcase-arrows {
    display: flex;
    gap: 12px;
}

.showcase-arrows button {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid var(--clr-dark);
    background: transparent;
    color: var(--clr-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.showcase-arrows button:hover {
    background: var(--clr-dark);
    color: #fff;
    transform: scale(1.05);
}

/* Swiper */

.furnitureSwiper {
    width: 100%;
    overflow: hidden;
}

.furnitureSwiper .swiper-slide {
    height: auto;
}

/* Product Card */

.product-card {
    position: relative;
    background: #f9f8f6;
    border-right: 1px solid var(--clr-border);
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all .3s ease;
}

.product-card:hover {
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(194, 107, 35, .15);
}

.product-image {
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform .5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.product-info {
    margin-top: 20px;
}

.product-brand {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--clr-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.product-info h3 {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    color: var(--clr-dark);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.product-info p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--clr-gray);
    margin: 0;
}

/* Badges */

.sale-badge,
.sold-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.sale-badge {
    background: var(--clr-sale-bg);
}

.sold-badge {
    background: #9a9a9a;
}

/* Responsive */

@media (max-width: 991px) {

    .product-showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-content {
        min-height: auto;
        padding: 40px 25px;
        border-right: 0;
        border-bottom: 1px solid var(--clr-border);
    }

    .showcase-content h2 {
        font-size: 30px;
        line-height: 38px;
        margin-bottom: 20px;
    }

    .product-card {
        min-height: auto;
    }

    .product-image {
        height: 260px;
    }
}

@media (max-width: 576px) {

    .showcase-content {
        padding: 30px 20px;
    }

    .showcase-content h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .product-image {
        height: 220px;
    }

    .product-card {
        padding: 20px;
    }
}
        /* ═══════════════════════════════════════════
       CATEGORY SECTION
    ═══════════════════════════════════════════ */
        .mac-category-section {
            background: var(--clr-bg);
        }

        .mac-category-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            border-top: 1px solid var(--clr-border);
        }

        .mac-category-card {
            position: relative;
            overflow: hidden;
            min-height: 540px;
            border-right: 1px solid rgba(255, 255, 255, .08);
            background: var(--clr-dark);
        }

        .mac-category-card:last-child {
            border-right: 0;
        }

        .mac-category-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: .75;
            transition: transform 1s var(--ease), opacity .4s;
        }

        .mac-category-card:hover img {
            transform: scale(1.07);
            opacity: .65;
        }

        .mac-category-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(0, 0, 0, .08), rgba(0, 0, 0, .62));
            transition: background .4s;
        }

        .mac-category-card:hover .mac-category-overlay {
            background: linear-gradient(to bottom, rgba(0, 0, 0, .12), rgba(0, 0, 0, .72));
        }

        .mac-category-content {
            position: absolute;
            inset: 0;
            z-index: 2;
            padding: 55px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .mac-category-content h2 {
            font-size: 38px;
            line-height: 44px;
            font-weight: 700;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: -1.5px;
        }

        .mac-category-btn {
            width: 140px;
            height: 52px;
            border-radius: 60px;
            border: 1px solid rgba(255, 255, 255, .75);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .8rem;
            font-weight: 700;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: #fff;
            background: transparent;
            text-decoration: none;
            backdrop-filter: blur(6px);
            transition: background var(--t), border-color var(--t), transform var(--t);
        }

        .mac-category-btn:hover {
            background: rgba(255, 255, 255, .15);
            border-color: #fff;
            transform: translateY(-2px);
        }

        /* ═══════════════════════════════════════════
       BUSINESS SOLUTIONS
    ═══════════════════════════════════════════ */
        .business-solutions-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }

        .business-solutions-row:nth-child(even) .business-solutions-image {
            order: 2;
        }

        .business-solutions-row:nth-child(even) .business-solutions-content {
            order: 1;
        }

        .business-solutions-image {
            position: relative;
            height: 100%;
            overflow: hidden;
        }

        .business-solutions-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .7s var(--ease);
        }

        .business-solutions-row:hover .business-solutions-image img {
            transform: scale(1.04);
        }

        .image-shape {
            height: 540px;
            overflow: hidden;
            border-radius: 0 90px 90px 0;
        }

        .business-solutions-row:nth-child(2) .image-shape {
            border-radius: 90px 0 0 90px;
        }

        .business-solutions-content {
            padding: 0 0 0 64px;
            position: relative;
        }

        .small-label {
            font-size: .68rem;
            text-transform: uppercase;
            letter-spacing: .16em;
            font-weight: 700;
            color: var(--clr-accent);
            margin-bottom: 16px;
            display: inline-block;
        }

        .business-solutions-content h2 {
            font-size: 38px;
            line-height: 46px;
            color: var(--clr-dark);
            font-weight: 700;
            margin-bottom: 24px;
            letter-spacing: -.5px;
        }

        .business-solutions-content{
            max-width: 600px;

        }
        p {
            color: var(--clr-gray);
            font-size: .9rem;
            line-height: 1.7;
            margin-bottom: 18px;
        }

.section{padding: 60px 90px;}


        .business-solutions-content .btn {
            margin-top: 12px;
        }

        .watermark-number {
            position: absolute;
            left: 40px;
            top: -60px;
            font-size: 200px;
            font-weight: 800;
            color: rgba(0, 0, 0, .035);
            line-height: 1;
            pointer-events: none;
            user-select: none;
        }

        /* ═══════════════════════════════════════════
       PROCESS SECTION
    ═══════════════════════════════════════════ */
        .mac-process-section {
            background: #f7f5f2;
            padding: 90px 60px 0;
            text-align: center;
            overflow: hidden;
        }

        .process-label {
            font-size: .68rem;
            font-weight: 700;
            letter-spacing: .2em;
            text-transform: uppercase;
            color: var(--clr-gray);
            margin-bottom: 28px;
            display: block;
        }

        .process-headline {
            font-weight: 500;
            font-size: clamp(32px, 4.5vw, 62px);
            line-height: 1.1;
            color: #2a2218;
            letter-spacing: -.3px;
        }

        .process-description{
            font-size: 1rem;
            max-width: 1200px;
            margin-bottom: 60px !important;
            margin:  auto ;
        }

        .pill-img {
            display: inline-block;
            width: clamp(58px, 7vw, 108px);
            height: clamp(36px, 4.2vw, 64px);
            border-radius: 50px;
            vertical-align: middle;
            margin: 0 8px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0, 0, 0, .14);
            background: #ddd;
        }

        .pill-img-1 {
            background: linear-gradient(rgba(0, 0, 0, .35), rgba(0, 0, 0, .35)), url("https://images.unsplash.com/photo-1506744038136-46273834b3fb?q=80&w=1200&auto=format&fit=crop") center/cover;
        }

        .pill-img-2 {
            background: linear-gradient(rgba(0, 0, 0, .35), rgba(0, 0, 0, .35)), url("https://images.unsplash.com/photo-1494526585095-c41746248156?q=80&w=1200&auto=format&fit=crop") center/cover;
        }

        .stats-row {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            flex-wrap: wrap;
            margin-bottom: 64px;
        }

        .stat-item {
            flex: 1;
            min-width: 160px;
            max-width: 240px;
            padding: 0 24px;
            position: relative;
            opacity: 0;
            transform: translateY(28px);
            transition: opacity .6s var(--ease), transform .6s var(--ease);
        }

        .stat-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .stat-item:nth-child(1) {
            transition-delay: .0s;
        }

        .stat-item:nth-child(2) {
            transition-delay: .1s;
        }

        .stat-item:nth-child(3) {
            transition-delay: .2s;
        }

        .stat-item:nth-child(4) {
            transition-delay: .3s;
        }

        .stat-item:nth-child(5) {
            transition-delay: .4s;
        }

        .stat-item+.stat-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 16px;
            height: calc(100% - 32px);
            width: 1px;
            background: #d6d0c8;
        }

        .stat-icon {
            width: 50px;
            height: 50px;
            margin: 0 auto 16px;
        }

        .stat-icon svg {
            width: 100%;
            height: 100%;
            stroke: #2a2218;
            fill: none;
            stroke-width: 1.4;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .stat-number {
            font-weight: 700;
            font-size: clamp(32px, 4vw, 50px);
            line-height: 1;
            color: #2a2218;
            margin-bottom: 10px;
            letter-spacing: -1.5px;
        }

        .stat-text {
            font-size: .8rem;
            color: var(--clr-gray);
            line-height: 1.5;
        }

        .features-row {
            background: var(--clr-bg);
            border-top: 1px solid var(--clr-border);
            border-bottom: 1px solid var(--clr-border);
            padding: 28px 0;
        }

        .feature-item {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 14px;
        }

        .feature-icon {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: #f4ede4;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--clr-accent);
            font-size: 1.1rem;
            flex-shrink: 0;
            transition: background var(--t), transform var(--t);
        }

        .feature-item:hover .feature-icon {
            background: var(--clr-accent);
            color: #fff;
            transform: scale(1.08);
        }

        .feature-text strong {
            display: block;
            font-size: .82rem;
            font-weight: 700;
            color: var(--clr-dark);
        }

        .feature-text span {
            font-size: .75rem;
            color: var(--clr-gray);
        }

        .guarantee-bar {
            background: #ede8e1;
            padding: 20px 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 32px;
            flex-wrap: wrap;
        }

        .guarantee-bar .bar-label {
            font-size: .82rem;
            font-weight: 700;
            color: #2a2218;
            white-space: nowrap;
        }

        .guarantee-bar .bar-item {
            font-size: .82rem;
            color: #5a5040;
            display: flex;
            align-items: center;
            gap: 7px;
            white-space: nowrap;
        }

        .guarantee-bar .bar-item svg {
            width: 15px;
            height: 15px;
            stroke: var(--clr-accent);
            fill: none;
            stroke-width: 2.2;
            flex-shrink: 0;
        }

        /* ═══════════════════════════════════════════
       SECTION HEADER
    ═══════════════════════════════════════════ */
        .section-header .eyebrow {
            font-size: .68rem;
            font-weight: 700;
            letter-spacing: .16em;
            text-transform: uppercase;
            color: var(--clr-accent);
            margin-bottom: 6px;
        }

        .section-header h2 {
            font-size: 34px;
            font-weight: 700;
            color: var(--clr-dark);
            letter-spacing: -.5px;
        }

        /* ═══════════════════════════════════════════
       FEATURED PRODUCTS
    ═══════════════════════════════════════════ */
        .featured-products-section {
            padding: 80px 0;
            background: var(--clr-bg);
        }

        .featured-topbar {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: 30px;
            margin-bottom: 48px;
        }

        .product-tabs {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .tab-btn {
            border: 1.5px solid var(--clr-border);
            background: #fff;
            padding: 9px 20px;
            border-radius: 50px;
            font-size: .78rem;
            font-weight: 600;
            letter-spacing: .04em;
            color: var(--clr-dark);
            transition: background var(--t), color var(--t), border-color var(--t), box-shadow var(--t);
            font-family: var(--font);
        }

        .tab-btn:hover,
        .tab-btn.active {
            background: var(--clr-dark);
            color: #fff;
            border-color: var(--clr-dark);
            box-shadow: 0 4px 14px rgba(13, 13, 13, .18);
        }

        .featured-products-section .product-card {

            border-right: none;
            background: none;
            padding: 0px;


            transition: box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s;
        }

        .featured-products-section .product-card:hover {

            transform: translateY(-5px);
            border-color: transparent;
        }

        .featured-products-section .product-image {
            overflow: hidden;
        }

        .featured-products-section .product-image img {
            width: 100%;
            object-fit: cover;
            transition: transform .5s var(--ease);
        }

        .featured-products-section .product-card:hover .product-image img {
            transform: scale(1.07);
        }

        .product-info {
            padding: 18px 20px 0px 20px;
        }

        /* ═══════════════════════════════════════════
       PROMO BANNERS
    ═══════════════════════════════════════════ */
        .promo-banner {
            border-radius: 14px;
            overflow: hidden;
            position: relative;
            min-height: 260px;
            display: flex;
            align-items: center;
        }

        .promo-banner img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .6s var(--ease);
        }

        .promo-banner:hover img {
            transform: scale(1.04);
        }

        .promo-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(13, 13, 13, .78) 40%, transparent 90%);
        }

        .promo-content {
            position: relative;
            z-index: 1;
            padding: 40px 44px;
            color: #fff;
        }

        .promo-content h3 {
            font-size: 28px;
            font-weight: 700;
            letter-spacing: -.3px;
            margin-bottom: 8px;
        }

        .promo-content p {
            font-size: .85rem;
            color: rgba(255, 255, 255, .78);
            margin-bottom: 22px;
            line-height: 1.6;
        }

        /* ═══════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════ */
        .mac-footer {
            background: var(--ft-bg);
            font-size: 15px;
            line-height: 22px;
            color: var(--ft-text);
            font-family: var(--font);
        }

        .footer-main {
            display: grid;
              grid-template-columns: 1.8fr 1px 1fr 1px 1fr 1px 1fr;
            border-bottom: 1px solid var(--ft-border);
        }

        .footer-divider {
            background: var(--ft-border);
            width: 1px;
        }

        .footer-col,
        .footer-col-brand {
            padding: 52px 44px;
        }

        .footer-logo-text {
            font-weight: 700;
            font-size: 20px;
            letter-spacing: 1px;
            color: #fff;
        }

        .footer-logo-text span {
            color: var(--ft-accent);
        }

        .footer-tagline {
            font-weight: 900;
            font-size: clamp(36px, 4vw, 56px);
            line-height: 1.0;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: -1px;
            margin: 12px 0 20px;
        }

        .footer-tagline span {
            color: var(--ft-accent);
        }

        .footer-brand-desc {
            font-size: 13px;
            line-height: 1.65;
            color: var(--ft-text);
            max-width: 230px;
        }

        .footer-col-title {
            font-weight: 600;
            font-size: .62rem;
            letter-spacing: .22em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .32);
            margin-bottom: 20px;
        }

        .footer-nav li {
            margin-bottom: 12px;
        }

        .footer-nav li a {
            font-size: .88rem;
            font-weight: 500;
            color: var(--ft-text);
            display: inline-flex;
            position: relative;
            align-items: center;
            gap: 8px;
            transition: color var(--t), padding-left var(--t);
        }

        .footer-nav li a::before {
            content: '';
            display: inline-block;
            width: 12px;
            position: absolute;
            left: -10px;
            height: 1px;
            background: var(--ft-accent);
            flex-shrink: 0;
            opacity: 0;
            transition: opacity var(--t);
        }

        .footer-nav li a:hover {
            color: var(--ft-link-hover);
            padding-left: 4px;
        }

        .footer-nav li a:hover::before {
            opacity: 1;
        }

        .footer-contact-row {
            display: grid;
            grid-template-columns: 1fr 1px 1fr 1px 1.4fr 1px 1fr;
            border-bottom: 1px solid var(--ft-border);
        }

        .contact-cell {
            padding: 22px 32px;
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .contact-cell .ci {
            font-size: 17px;
            color: var(--ft-accent);
            flex-shrink: 0;
        }

        .contact-cell .ct {
            font-size: .68rem;
            color: rgba(255, 255, 255, .4);
            display: block;
            margin-bottom: 2px;
            text-transform: uppercase;
            letter-spacing: .1em;
            font-weight: 600;
        }

        .contact-cell .cv {
            font-size: .85rem;
            font-weight: 600;
            color: #fff;
            line-height: 1.4;
        }

        .contact-cell a.cv:hover {
            color: var(--ft-link-hover);
        }

        .socials-cell {
            padding: 22px 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .social-btn {
            width: 37px;
            height: 37px;
            border: 1px solid var(--ft-border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .9rem;
            color: var(--ft-text);
            transition: background var(--t), border-color var(--t), color var(--t), transform var(--t);
            cursor: pointer;
        }

        .social-btn:hover {
            background: var(--ft-accent);
            border-color: var(--ft-accent);
            color: #fff;
            transform: translateY(-2px);
        }

        .footer-newsletter-row {
            display: flex;
            align-items: center;
            gap: 28px;
            padding: 26px 44px;
            border-bottom: 1px solid var(--ft-border);
            flex-wrap: wrap;
        }

        .nl-label {
            font-weight: 700;
            font-size: .9rem;
            color: #fff;
            white-space: nowrap;
            text-transform: uppercase;
            letter-spacing: .05em;
        }

        .nl-sub {
            font-size: .78rem;
            color: var(--ft-text);
            white-space: nowrap;
        }

        .nl-form {
            display: flex;
            margin-left: auto;
        }

        .nl-input {
            background: var(--ft-input-bg);
            border: 1px solid var(--ft-border);
            border-right: none;
            color: #fff;
            font-family: var(--font);
            font-size: .82rem;
            padding: 12px 20px;
            width: 280px;
            outline: none;
            transition: border-color var(--t), background var(--t);
        }

        .nl-input::placeholder {
            color: rgba(255, 255, 255, .28);
        }

        .nl-input:focus {
            border-color: var(--ft-accent);
            background: rgba(255, 255, 255, .11);
        }

        .nl-btn {
            background: #fff;
            color: var(--ft-bg);
            border: 1px solid #fff;
            font-family: var(--font);
            font-weight: 700;
            font-size: .72rem;
            letter-spacing: .08em;
            text-transform: uppercase;
            padding: 12px 26px;
            cursor: pointer;
            transition: background var(--t), border-color var(--t), color var(--t);
            white-space: nowrap;
        }

        .nl-btn:hover {
            background: var(--ft-link-hover);
            border-color: var(--ft-link-hover);
            color: #fff;
        }

        .footer-bottom {
            padding: 18px 44px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }

        .footer-copy {
            font-size: .72rem;
            color: rgba(255, 255, 255, .28);
            letter-spacing: .02em;
        }

        .footer-copy a {
            color: var(--ft-link-hover);
            font-weight: 600;
        }

        .footer-bottom-links {
            display: flex;
            gap: 22px;
        }

        .footer-bottom-links a {
            font-size: .72rem;
            color: rgba(255, 255, 255, .32);
            transition: color var(--t);
        }

        .footer-bottom-links a:hover {
            color: var(--ft-link-hover);
        }

        .payment-icons {
            display: flex;
            align-items: center;
            gap: 7px;
            flex-wrap: wrap;
        }

        .pay-icon {
            background: rgba(255, 255, 255, .09);
            border: 1px solid rgba(255, 255, 255, .11);
            border-radius: 4px;
            padding: 4px 9px;
            font-size: .65rem;
            font-weight: 700;
            color: rgba(255, 255, 255, .5);
            letter-spacing: .04em;
        }

        /* ═══════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════ */
        @media (max-width: 1400px) {
            .navbar-inner {
                grid-template-columns: 180px 1fr 200px 160px;
            }
        }

        @media (max-width: 1200px) {
            .navbar-inner {
                grid-template-columns: 160px 1fr 180px 140px;
            }

            .product-showcase-grid {
                grid-template-columns: 300px repeat(2, 1fr);
            }

            .mac-category-card {
                min-height: 440px;
            }

            .mac-category-content {
                padding: 40px;
            }
        }

        @media (max-width: 991px) {
            .navbar-inner {
                grid-template-columns: 1fr auto auto;
            }

            .nav-links-cell {
                display: none;
            }

            .product-showcase-grid {
                grid-template-columns: 1fr 1fr;
            }

            .showcase-content {
                grid-column: span 2;
                min-height: auto;
                gap: 36px;
                padding: 40px 32px;
            }

            .mac-category-grid {
                grid-template-columns: 1fr;
            }

            .mac-category-card {
                min-height: 420px;
                border-right: 0;
                border-bottom: 1px solid rgba(255, 255, 255, .08);
            }

            .business-solutions-row {
                grid-template-columns: 1fr;
                padding: 48px 0;
            }

            .business-solutions-row:nth-child(even) .business-solutions-image {
                order: 0;
            }
            

            .business-solutions-content {
                padding: 44px 28px;
            }

            .image-shape {
                width: 92%;
                height: 400px;
                margin: 0 auto;
                border-radius: 50px !important;
            }

            .watermark-number {
                display: none;
            }

            .mac-process-section {
                padding: 70px 24px 0;
            }

            .featured-topbar {
                flex-direction: column;
                align-items: flex-start;
            }

            .product-tabs {
                width: 100%;
                overflow-x: auto;
                padding-bottom: 4px;
                flex-wrap: nowrap;
            }

            .product-tabs::-webkit-scrollbar {
                display: none;
            }

            .footer-main {
                grid-template-columns: 1fr 1fr;
            }

            .footer-divider {
                display: none;
            }

            .footer-col,
            .footer-col-brand {
                padding: 36px 24px;
            }

            .footer-contact-row {
                grid-template-columns: 1fr 1fr;
            }

            .socials-cell {
                justify-content: flex-start;
            }
        }

        @media (max-width: 767px) {
            .hero-content {
                left: 28px;
                right: 28px;
            }

            .product-showcase-grid {
                grid-template-columns: 1fr;
            }

            .showcase-content {
                grid-column: span 1;
                padding: 36px 24px;
            }

            .mac-category-card {
                min-height: 320px;
            }

            .mac-category-content {
                padding: 28px;
            }

            .mac-category-btn {
                width: 118px;
                height: 46px;
            }

            .mac-process-section {
                padding: 56px 20px 0;
            }

            .stats-row {
                gap: 24px;
            }

            .stat-item+.stat-item::before {
                display: none;
            }

            .stat-item {
                min-width: 140px;
            }

            .guarantee-bar {
                gap: 18px;
                padding: 18px 24px;
            }

            .footer-main {
                grid-template-columns: 1fr;
            }

            .footer-contact-row {
                grid-template-columns: 1fr;
            }

            .footer-newsletter-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 14px;
            }

            .nl-form {
                width: 100%;
            }

            .nl-input {
                width: 100%;
                flex: 1;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                padding: 18px 20px;
            }

            .footer-col,
            .footer-col-brand {
                padding: 28px 18px;
            }

            .business-solutions-content h2 {
                font-size: 28px;
                line-height: 34px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 36px;
            }

            .showcase-content h2 {
                font-size: 28px;
            }
        }










        /* ===================================
CATEGORY SECTION
=================================== */

.Category-section {
    padding: 110px 0;
    background: #f7f7f7;
    overflow: hidden;
}

/* ===================================
TOP
=================================== */

.Category-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 60px;
}

 .highlight {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--clr-accent);
    text-transform: uppercase;
    margin-bottom: 18px;
}

 .highlight i {
    font-size: 10px;
}

.Category-title {
    font-size: var(--ts-h2-font-size);
    line-height: 1.1;
    font-weight: 600;
    color: var(--ts-heading-color);
    margin-bottom: 22px;
    font-family: var(--font);
}

.Category-text {
    max-width: 620px;
    font-size: 18px;
    line-height: 34px;
    color: var(--ts-gray-color);
    margin: 0;
}

/* ===================================
NAVIGATION
=================================== */

.Category-navigation {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}

.Category-prev,
.Category-next {
    width: 50px;
    height: 50px;
    border: 1px solid var(--ts-heading-color);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .35s var(--ease);
    -webkit-transition: all .35s var(--ease);
    -moz-transition: all .35s var(--ease);
    -ms-transition: all .35s var(--ease);
    -o-transition: all .35s var(--ease);
}

.Category-prev i,
.Category-next i {
    transform: rotate(-45deg);
    font-size: 28px;
    color: var(--ts-heading-color);
    transition: all .35s var(--ease);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -webkit-transition: all .35s var(--ease);
    -moz-transition: all .35s var(--ease);
    -ms-transition: all .35s var(--ease);
    -o-transition: all .35s var(--ease);
}

.Category-prev:hover,
.Category-next:hover {
    background: var(--clr-accent);
    border-color: var(--clr-accent);
}

.Category-prev:hover i,
.Category-next:hover i {
    color: #fff;
}

/* ===================================
CARD
=================================== */

.Category-card {
    text-align: center;
}

.Category-image {
    width: 100%;
    border-radius: 20em;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    overflow: hidden;
    transition: all .4s var(--ease);
    -webkit-border-radius: 20em;
    -moz-border-radius: 20em;
    -ms-border-radius: 20em;
    -o-border-radius: 20em;
    -webkit-transition: all .4s var(--ease);
    -moz-transition: all .4s var(--ease);
    -ms-transition: all .4s var(--ease);
    -o-transition: all .4s var(--ease);
}

.Category-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform .45s var(--ease);
    -webkit-transition: transform .45s var(--ease);
    -moz-transition: transform .45s var(--ease);
    -ms-transition: transform .45s var(--ease);
    -o-transition: transform .45s var(--ease);
}

.Category-card:hover .Category-image img {
    transform: scale(1.08);
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -ms-transform: scale(1.08);
    -o-transform: scale(1.08);
}

.Category-card:hover .Category-image {
    background: #ececec;
}

.Category-content h3 {
    font-size: 21px;
    font-style: italic;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--ts-heading-color);
}

.Category-content span {
    font-size: 15px;
    letter-spacing: 4px;
    color: var(--clr-accent);
    font-weight: 500;
}

/* ===================================
RESPONSIVE
=================================== */

@media (max-width: 1199px) {

    .Category-title {
        font-size: 58px;
    }

    .Category-content h3 {
        font-size: 34px;
    }
}

@media (max-width: 991px) {

    .Category-section {
        padding: 80px 0;
    }

    .Category-top {
        flex-direction: column;
        margin-bottom: 50px;
    }

    .Category-title {
        font-size: 46px;
    }

    .Category-text {
        font-size: 16px;
        line-height: 30px;
    }

    .Category-navigation {
        margin-top: 0;
    }

    .Category-prev,
    .Category-next {
        width: 58px;
        height: 58px;
    }

    .Category-prev i,
    .Category-next i {
        font-size: 22px;
    }

    .Category-content h3 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {

    .Category-title {
        font-size: 36px;
    }

    .Category-image {
        padding: 30px;
    }

    .Category-image img {
        height: 180px;
    }

    .Category-content h3 {
        font-size: 24px;
    }

    .Category-content span {
        font-size: 13px;
        letter-spacing: 2px;
    }
}



   /* =========================================
BRADCRAMP SECTION
========================================= */

        .bradcramp {
            position: relative;
            padding: 170px 0 40px;
            overflow: hidden;
            background-image: url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?q=80&w=1600&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .bradcramp-overlay {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(to right,
                    rgba(13, 13, 13, 0.82) 0%,
                    rgba(13, 13, 13, 0.60) 45%,
                    rgba(13, 13, 13, 0.30) 100%);
        }

        .bradcramp-content {
            position: relative;
            z-index: 2;
            max-width: 720px;
        }

        .bradcramp-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 18px;
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: var(--clr-accent);
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 24px;
        }

        .bradcramp-title {
            font-size: 72px;
            line-height: 82px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 24px;
            letter-spacing: -1px;
            font-family: var(--font);
        }

        .bradcramp-sub {
            max-width: 620px;
            font-size: 18px;
            line-height: 34px;
            display: none;
            color: rgba(255, 255, 255, 0.78);
            margin-bottom: 35px;
        }

        /* =========================================
BREADCRUMB LIST
========================================= */

        .bradcramp-list {
            display: none;
            align-items: center;
            gap: 14px;
            padding: 0;
            margin: 0;
            list-style: none;
        }

        .bradcramp-list li {
            color: rgba(255, 255, 255, 0.7);
            font-size: 16px;
            font-weight: 500;
        }

        .bradcramp-list li a {
            color: #fff;
            text-decoration: none;
            transition: all var(--t) var(--ease);
        }

        .bradcramp-list li a:hover {
            color: var(--clr-accent);
        }

        .bradcramp-list li.active {
            color: var(--clr-accent);
        }

        /* =========================================
RESPONSIVE
========================================= */

        @media (max-width: 1199px) {

            .bradcramp-title {
                font-size: 58px;
                line-height: 68px;
            }
        }

        @media (max-width: 991px) {

            .bradcramp {
                padding: 140px 0 110px;
            }

            .bradcramp-title {
                font-size: 48px;
                line-height: 58px;
            }

            .bradcramp-sub {
                font-size: 17px;
                line-height: 30px;
            }
        }

        @media (max-width: 767px) {

            .bradcramp {
                padding: 120px 0 90px;
            }

            .bradcramp-title {
                font-size: 36px;
                line-height: 46px;
            }

            .bradcramp-sub {
                font-size: 15px;
                line-height: 28px;
            }

            .bradcramp-list {
                flex-wrap: wrap;
                gap: 10px;
            }
        }







        /* contact */

                /* ══════════════════════════════════
       CONTACT INFO CARDS
    ══════════════════════════════════ */
        .info-cards-wrap {
            position: relative;
            z-index: 10;
            
        }

        .info-card {
            background: var(--ts-body-bg);
            border: 1px solid var(--ts-border);
            border-radius: 14px;
            padding: 32px 28px;
            height: 100%;
            box-shadow: 0 8px 32px rgba(0, 0, 0, .08);
            transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 14px;
        }

        .info-card:hover {
            box-shadow: 0 16px 48px rgba(0, 0, 0, .12);
            transform: translateY(-4px);
        }

        .info-icon {
            width: 54px;
            height: 54px;
            border-radius: 12px;
            background: #f5f0ea;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .info-icon i {
            font-size: 1.4rem;
            color: var(--clr-accent);
        }

        .info-label {
            font-size: .72rem;
            font-weight: 700;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: var(--ts-gray-color);
            margin-bottom: 4px;
        }

        .info-value {
            font-family: var(--ts-heading-font-family);
            font-size: 1rem;
            font-weight: 600;
            color: var(--ts-heading-color);
            line-height: 1.5;
        }

        .info-sub {
            font-size: .8rem;
            color: var(--ts-gray-color);
            margin-top: 2px;
        }

        .info-link {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: .78rem;
            font-weight: 600;
            color: var(--ts-accent);
            text-decoration: none;
            letter-spacing: .05em;
            text-transform: uppercase;
            margin-top: auto;
            transition: gap var(--transition);
        }

        .info-link:hover {
            gap: 8px;
            color: var(--ts-accent);
        }



        
        /* Form panel */
        .form-panel {
            background: var(--ts-body-bg);
            border: 1px solid var(--ts-border);
            border-radius: 16px;
            padding: 48px 44px;
        }

        .form-section-eyebrow {
            font-size: .72rem;
            font-weight: 700;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: var(--ts-accent);
            margin-bottom: 10px;
        }

        .form-section-title {
            font-family: var(--ts-heading-font-family);
            font-size: var(--ts-h3-font-size);
            line-height: var(--ts-h3-line-height);
            font-weight: var(--ts-heading-font-weight);
            color: var(--ts-heading-color);
            margin-bottom: 6px;
        }

        .form-section-sub {
            font-size: var(--ts-body-font-size);
            color: var(--ts-gray-color);
            margin-bottom: 36px;
            line-height: 1.7;
        }

        .accent-line {
            width: 44px;
            height: 3px;
            background: var(--ts-accent);
            border-radius: 2px;
            margin-bottom: 24px;
        }

        /* Form fields */
        .ts-label {
            font-size: .78rem;
            font-weight: 600;
            letter-spacing: .06em;
            text-transform: uppercase;
            color: var(--ts-text-color);
            margin-bottom: 8px;
            display: block;
        }

        .ts-input,
        .ts-select,
        .ts-textarea {
            width: 100%;
            background: var(--ts-input-background-color);
            border: 1.5px solid var(--ts-input-border);
            border-radius: 8px;
            padding: 13px 16px;
            font-family: var(--ts-font-family);
            font-size: var(--ts-body-font-size);
            color: var(--ts-input-color);
            outline: none;
            transition: border-color var(--transition), box-shadow var(--transition);
            appearance: none;
        }

        .ts-input:focus,
        .ts-select:focus,
        .ts-textarea:focus {
            border-color: var(--ts-accent);
            box-shadow: 0 0 0 3px rgba(194, 107, 35, .12);
        }

        .ts-input::placeholder,
        .ts-textarea::placeholder {
            color: #bbb;
        }

        .ts-textarea {
            resize: vertical;
            min-height: 130px;
        }

        /* Radio / checkbox topic selector */
        .topic-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .topic-chip input {
            display: none;
        }

        .topic-chip label {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 7px 16px;
            border: 1.5px solid var(--ts-border);
            border-radius: 50px;
            font-size: .8rem;
            font-weight: 500;
            color: var(--ts-gray-color);
            cursor: pointer;
            transition: all var(--transition);
            user-select: none;
        }

        .topic-chip input:checked+label {
            border-color: var(--ts-accent);
            background: #fdf5ee;
            color: var(--ts-accent);
            font-weight: 600;
        }

        .topic-chip label:hover {
            border-color: var(--ts-accent);
            color: var(--ts-accent);
        }

        /* Submit button */
        .btn-submit {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 15px 32px;
            background: var(--ts-btn-bg);
            color: var(--ts-btn-color);
            border: 2px solid var(--ts-btn-border);
            border-radius: 8px;
            font-family: var(--ts-btn-font-family);
            font-size: var(--ts-btn-font-size);
            font-weight: var(--ts-btn-font-weight);
            letter-spacing: .06em;
            text-transform: uppercase;
            cursor: pointer;
            transition: background var(--transition), border-color var(--transition), transform var(--transition);
            margin-top: 8px;
        }

        .btn-submit:hover {
            background: var(--ts-btn-addtocart-hover-bg);
            border-color: var(--ts-btn-addtocart-hover-border);
            transform: translateY(-2px);
        }

        /* ══════════════════════════════════
       SIDE INFO PANEL
    ══════════════════════════════════ */
        .side-panel {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        .hours-card {
            background: var(--clr-accent);
            border-radius: 14px;
            padding: 32px 28px;
            color: #fff;
        }

        .hours-title {
            font-family: var(--ts-heading-font-family);
            font-size: 1.1rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 20px;
            padding-bottom: 14px;
            border-bottom: 1px solid rgba(255, 255, 255, .1);
        }

        .hours-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, .06);
            font-size: .85rem;
        }

        .hours-row:last-child {
            border-bottom: none;
        }

        .hours-day {
            color: rgba(255, 255, 255, .6);
        }

        .hours-time {
            font-weight: 600;
            color: #fff;
        }

        .hours-closed {
            color: var(--ts-highlight);
            font-weight: 600;
        }

        .hours-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--clr-dark);
            color: var(--ts-accent);
            border-radius: 50px;
            padding: 4px 14px;
            font-size: .72rem;
            font-weight: 700;
            letter-spacing: .08em;
            text-transform: uppercase;
        }

        .hours-badge .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--ts-accent);
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1)
            }

            50% {
                opacity: .5;
                transform: scale(1.3)
            }
        }

        .social-card {
            background: #f8f6f3;
            border-radius: 14px;
            padding: 28px;
        }

        .social-card-title {
            font-size: .85rem;
            font-weight: 700;
            color: var(--ts-heading-color);
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: .08em;
        }

        .social-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .social-link-row {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 14px;
            border-radius: 8px;
            background: #fff;
            border: 1px solid var(--ts-border);
            text-decoration: none;
            color: var(--ts-text-color);
            font-size: .85rem;
            font-weight: 500;
            transition: all var(--transition);
        }

        .social-link-row:hover {
            border-color: var(--ts-accent);
            color: var(--ts-accent);
            transform: translateX(4px);
        }

        .social-link-row .si {
            width: 32px;
            height: 32px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: .95rem;
        }

        .si-ig {
            background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
            color: #fff;
        }

        .si-fb {
            background: #1877f2;
            color: #fff;
        }

        .si-tw {
            background: #000;
            color: #fff;
        }

        .si-ln {
            background: #0a66c2;
            color: #fff;
        }

        .si-yt {
            background: #ff0000;
            color: #fff;
        }

        .social-handle {
            font-size: .75rem;
            color: var(--ts-gray-color);
        }

        .social-link-row:hover .social-handle {
            color: var(--ts-accent);
        }
    html.lenis,
    html.lenis body {
        height: auto;
    }

    .lenis.lenis-smooth {
        scroll-behavior: auto !important;
    }

    .lenis.lenis-smooth [data-lenis-prevent] {
        overscroll-behavior: contain;
    }

    .lenis.lenis-stopped {
        overflow: hidden;
    }

    .lenis.lenis-scrolling iframe {
        pointer-events: none;
    }






       /* ═══════════════════════════════════════════
           STICKY NAVIGATION WITH PROGRESS
        ═══════════════════════════════════════════ */
        .sticky-nav {
            position: sticky;
            top: 0;
            background: var(--ts-body-bg);
            border-bottom: 1px solid var(--ts-border);
            padding: 0;
            z-index: 999;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            animation: slideDown 0.3s var(--ease);
        }

        .sticky-nav-wrapper {
            max-width: 1440px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            padding: 0 40px;
            height: 60px;
        }

        .sticky-nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .sticky-nav-link {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--ts-gray-color);
            text-decoration: none;
            transition: color 0.3s var(--ease), font-weight 0.3s var(--ease);
            position: relative;
            padding: 20px 0;
            cursor: pointer;
        }

        .sticky-nav-link:hover {
            color: var(--ts-heading-color);
        }

        .sticky-nav-link.active {
            color: var(--ts-rated-color);
            font-weight: 700;
        }

        .sticky-nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--ts-rated-color);
            border-radius: 2px 2px 0 0;
            animation: expandWidth 0.3s var(--ease);
        }

        @keyframes expandWidth {
            from {
                width: 0;
                left: 50%;
            }

            to {
                width: 100%;
                left: 0;
            }
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
            }

            to {
                transform: translateY(0);
            }
        }

        /* Progress Line */
        .sticky-nav-progress {
            position: absolute;
            top: 0;
            left: 0;
            height: 2px;
            background: var(--ts-rated-color);
            transition: width 0.3s var(--ease);
        }

        /* ═══════════════════════════════════════════
           UTILITIES & ANIMATIONS
        ═══════════════════════════════════════════ */
        .overflow-text {
            max-width: 100%;
            padding-left: 80px;
            margin-top: 20px;
            animation: fadeInUp 0.6s var(--ease);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }



        /* Additional smooth transitions for sticky nav */
        .sticky-nav {
            transition: visibility 0.3s var(--ease), opacity 0.3s var(--ease);
            opacity: 0;
            visibility: hidden;
        }

        .sticky-nav.show {
            opacity: 1;
            visibility: visible;
        }

        @media(max-width:768px) {
            .sticky-nav-wrapper {
                padding: 0 20px;
                height: 50px;
                overflow-x: auto;
            }

            .sticky-nav-links {
                gap: 24px;
                white-space: nowrap;
            }

            .sticky-nav-link {
                font-size: 12px;
                padding: 15px 0;
            }
        }

.pr-0{
    padding-right: 0;

}












/*  */

══════════════════════════════════════ */

        .our-process-section {
            position: relative;
            overflow: hidden;
        }

        /* LIGHT TEXTURE */

        .our-process-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                repeating-linear-gradient(45deg,
                    rgba(0, 0, 0, 0.012) 0px,
                    rgba(0, 0, 0, 0.012) 2px,
                    transparent 2px,
                    transparent 12px);
            pointer-events: none;
        }

        /* GRID */

        .our-process-grid {
            display: grid;
            grid-template-columns: 42% 58%;
            min-height: 950px;
            position: relative;
            z-index: 2;
        }

        /* LEFT */

        .process-left {
            position: sticky;
            top: 0;
            height: 100vh;
            border-right: 1px solid var(--ts-border);
            position: sticky;
            top: 50px;
        }

        /* DOT */



        /* LABEL */

        .process-label {
            display: inline-block;
            margin-bottom: 24px;
            color: var(--ts-rated-color);
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-family: var(--ts-font-family);
        }

        /* TITLE */

        .process-title {
            margin: 0 0 30px;
            color: var(--ts-heading-color);
            line-height: var(--ts-h2-line-height);
            font-weight: 500;
            font-size: var(--ts-h2-font-size);
            letter-spacing: -3px;
            font-family: var(--ts-heading-font-family);
        }

        .process-title span {
            font-weight: 300;
            color: var(--ts-rated-color);
        }

        /* TEXT */

        .process-text {
            max-width: 520px;
            color: var(--ts-gray-color);
            font-size: 18px;
            line-height: 1.9;
            margin-bottom: 50px;
            font-family: var(--ts-font-family);
        }

        /* BUTTON */

        .process-btn {
            width: fit-content;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--ts-rated-color);
            color: #fff;
            text-decoration: none;
            padding: 18px 32px;
            border-radius: 100px;
            font-size: 15px;
            font-weight: 600;
            transition: all .35s var(--ease);
        }

        .process-btn:hover {
            background: var(--ts-heading-color);
            transform: translateY(-4px);
        }

        /* RIGHT */

        .process-right {
            display: flex;
            flex-direction: column;
        }

        /* ITEM */

        .process-item {
            min-height: 240px;
            padding: 40px 40px;
            border-bottom: 1px solid var(--ts-border);
            display: flex;
            gap: 50px;
            position: relative;
            background-color: white;
            align-items: flex-start;
            transition: background .3s ease;
        }

        .process-item:hover {
            background: rgba(255, 255, 255, .7);
        }

        /* NUMBER */

        .process-number {
            position: static;
            font-size: 90px;
        }

        /* CONTENT */

        .process-content h3 {
            margin: 0 0 22px;
            color: var(--ts-heading-color);
            font-size: clamp(21px, 2vw, 30px);
            line-height: 1;
            font-weight: 500;
            letter-spacing: -2px;
            font-family: var(--ts-heading-font-family);
        }

        .process-content p {
            max-width: 620px;
            margin: 0;
            color: var(--ts-gray-color);
            font-size: 20px;
            line-height: 1.9;
            font-family: var(--ts-font-family);
        }

        /* RESPONSIVE */

        @media(max-width:1200px) {

            .our-process-grid {
                grid-template-columns: 1fr;
            }

            .process-left {
                position: relative;
                height: auto;
                padding: 100px 50px 70px;
                border-right: 0;
                border-bottom: 1px solid var(--ts-border);
            }
        }

        @media(max-width:768px) {

            .process-left {
                padding: 80px 24px 60px;
            }

            .process-item {
                flex-direction: column;
                gap: 30px;
                padding: 50px 24px;
                min-height: auto;
            }

            .process-number {
                font-size: 28px;
            }

            .process-content h3 {
                font-size: 34px;
                letter-spacing: -1px;
            }

            .process-content p {
                font-size: 16px;
                line-height: 1.8;
            }

            .process-title {
                letter-spacing: -1px;
            }

            .process-text {
                font-size: 16px;
            }
        }




/* potable */

  /* ── SECTION WRAPPER ── */
        .cat-section {
            padding: 60px 20px 0;
            max-width: 1500px;
            margin: 0 auto;
        }

        /* ── SWIPER CONTAINER ── */
        .cat-swiper-wrap {
            position: relative;
        }

        .swiper {
            width: 100%;
            border-radius: 16px;
            overflow: hidden;
            -webkit-border-radius: 16px;
            -moz-border-radius: 16px;
            -ms-border-radius: 16px;
            -o-border-radius: 16px;
}

       .cat-section .swiper-slide {
            height: 540px;
        }



    

        /* ── SLIDE INNER: two panels side by side ── */
       .cat-section .slide-pair {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 10px;
            height: 100%;
        }

        /* ── SINGLE PANEL ── */
        .cat-section .panel {
            position: relative;
            border-radius: 14px;
            overflow: hidden;
            cursor: pointer;
        }

        .cat-section .panel img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.6s ease;
        }

       .cat-section .panel:hover img {
            transform: scale(1.04);
        }

        /* dark gradient overlay */
       .cat-section .panel-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top,                    rgba(0, 0, 0, 0.72) 0%,                    rgba(0, 0, 0, 0.18) 50%,                    rgba(0, 0, 0, 0.04) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 36px 36px 32px;
            transition: background 0.3s;
            -webkit-transition: background 0.3s;
            -moz-transition: background 0.3s;
            -ms-transition: background 0.3s;
            -o-transition: background 0.3s;
}

        .cat-section.panel:hover .panel-overlay {
            background: linear-gradient(to top,
                    rgba(0, 0, 0, 0.82) 0%,
                    rgba(0, 0, 0, 0.28) 55%,
                    rgba(0, 0, 0, 0.06) 100%);
        }

        .panel-title {
            font-family: var(--ts-heading-font-family), sans-serif;
            font-weight: var(--ts-heading-font-weight);
            font-size: var(--ts-h2-font-size);
            line-height: var(--ts-h2-line-height);
            color: #ffffff;
            margin-bottom: 22px;
            letter-spacing: -0.5px;
        }

        /* "More →" pill button */
        .panel-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: var(--ts-btn-font-family), sans-serif;
            font-weight: var(--ts-btn-font-weight);
            font-size: var(--ts-btn-font-size);
            line-height: var(--ts-btn-line-height);
            color: var(--ts-primary-color);
            background: #ffffff;
            border: none;
            border-radius: 50px;
            padding: 10px 24px;
            cursor: pointer;
            text-decoration: none;
            transition: background 0.25s, color 0.25s, gap 0.25s;
            width: fit-content;
            -webkit-transition: background 0.25s, color 0.25s, gap 0.25s;
            -moz-transition: background 0.25s, color 0.25s, gap 0.25s;
            -ms-transition: background 0.25s, color 0.25s, gap 0.25s;
            -o-transition: background 0.25s, color 0.25s, gap 0.25s;
}

        .panel-btn:hover {
            background: var(--ts-rated-color);
            color: #fff;
            gap: 14px;
        }

        /* ── CUSTOM NAV ARROWS ── */
      .cat-section  .swiper-btn-prev,
       .cat-section .swiper-btn-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: #ffffff;
            border: 1px solid var(--ts-border);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
            transition: background 0.2s, border-color 0.2s;
            -webkit-transition: background 0.2s, border-color 0.2s;
            -moz-transition: background 0.2s, border-color 0.2s;
            -ms-transition: background 0.2s, border-color 0.2s;
            -o-transition: background 0.2s, border-color 0.2s;
            -webkit-transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            -o-transform: translateY(-50%);
}

       .cat-section .swiper-btn-prev:hover,
        .cat-section.swiper-btn-next:hover {
            background: var(--ts-rated-color);
            border-color: var(--ts-rated-color);
        }

       .cat-section .swiper-btn-prev:hover svg,
       .cat-section .swiper-btn-next:hover svg {
            stroke: #fff;
        }

       .cat-section .swiper-btn-prev {
            left: -20px;
        }

       .cat-section .swiper-btn-next {
            right: -20px;
        }

       .cat-section .swiper-btn-prev svg,
       .cat-section .swiper-btn-next svg {
            width: 20px;
            height: 20px;
            stroke: var(--ts-primary-color);
            stroke-width: 2;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: stroke 0.2s;
        }

        /* ── PAGINATION ── */
     .cat-section   .swiper-pagination {
            position: relative !important;
            margin-top: 28px;
            bottom: unset !important;
        }

     .cat-section   .swiper-pagination-bullet {
            width: 8px;
            height: 8px;
            background: var(--ts-border);
            opacity: 1;
            transition: width 0.3s, background 0.3s;
            border-radius: 4px;
            -webkit-transition: width 0.3s, background 0.3s;
            -moz-transition: width 0.3s, background 0.3s;
            -ms-transition: width 0.3s, background 0.3s;
            -o-transition: width 0.3s, background 0.3s;
}

      .cat-section  .swiper-pagination-bullet-active {
            width: 28px;
            background: var(--ts-rated-color);
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 900px) {
           .cat-section .slide-pair {
                grid-template-columns: 1fr 1fr;
            }

           .cat-section .swiper-slide {
                height: 400px;
            }

           .cat-section .panel-title {
                font-size: 26px;
                line-height: 32px;
            }

          .cat-section  .swiper-btn-prev {
                left: 8px;
            }

           .cat-section .swiper-btn-next {
                right: 8px;
            }
        }

        @media (max-width: 600px) {
          .cat-section  .slide-pair {
                grid-template-columns: 1fr;
                grid-template-rows: 1fr 1fr;
            }

           .cat-section .swiper-slide {
                height: 680px;
            }

           .cat-section .swiper-btn-prev {
                left: 8px;
            }

           .cat-section .swiper-btn-next {
                right: 8px;
            }
        }




        
        /* Heading */

        .heading {
            text-align: center;
            margin-bottom: 60px;
            padding: 0 20px;
        }

        .heading span {
            display: inline-block;
            font-family: var(--ts-font-family);
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--ts-rated-color);
            margin-bottom: 14px;
        }



        .heading h2 {
            font-family: var(--ts-heading-font-family);
            font-size: var(--ts-h2-font-size);
            line-height: var(--ts-h2-line-height);
            font-weight: var(--ts-heading-font-weight);
            color: var(--ts-heading-color);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

    






        
        /* ═══════════════════════════════════════════
INDUSTRIES WE SERVE TWO
═══════════════════════════════════════════ */

        .industries-we-serve-two {
            background: #f8f8f8;
            position: relative;
        }

        .industries-we-serve-two .prod-top {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 30px;
            margin-bottom: 56px;
        }

        .industries-we-serve-two .prod-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            background: var(--ts-border);
            border: 1px solid var(--ts-border);
        }

        .industries-we-serve-two .prod-card {
            background: var(--ts-body-bg);
            overflow: hidden;
            position: relative;
            transition: all .35s var(--ease);
        }

        .industries-we-serve-two .prod-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 50px rgba(0, 0, 0, .08);
            z-index: 2;
        }

        .industries-we-serve-two .prod-img {
            height: 270px;
            overflow: hidden;
            position: relative;
        }

        .industries-we-serve-two .prod-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .7s ease;
        }

        .industries-we-serve-two .prod-card:hover .prod-img img {
            transform: scale(1.08);
        }

        .industries-we-serve-two .prod-tag {
            position: absolute;
            top: 18px;
            display: none;
            left: 18px;
            background: var(--ts-rated-color);
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 6px 14px;
            border-radius: 100px;
        }

        .industries-we-serve-two .prod-body {
            padding: 30px;
            border-top: 1px solid var(--ts-border);
        }
        .footer-logo{
            max-height: 150px;
        }

        .industries-we-serve-two .prod-cat {
            font-size: 11px;
            font-weight: 700;
            display: none;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--ts-rated-color);
            margin-bottom: 10px;
        }

        .industries-we-serve-two .prod-name {
            font-family: var(--ts-heading-font-family);
            font-size: 24px;
            line-height: 1.2;
            font-weight: 700;
            color: var(--ts-heading-color);
            margin-bottom: 14px;
            transition: color .3s ease;
        }

        .industries-we-serve-two .prod-card:hover .prod-name {
            color: var(--ts-rated-color);
        }

        .industries-we-serve-two .prod-desc {
            font-size: 15px;
            line-height: 28px;
            color: var(--ts-gray-color);
        }

        .industries-we-serve-two .prod-hover-bar {
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 4px;
            background: var(--ts-rated-color);
            transition: width .45s var(--ease);
        }

        .industries-we-serve-two .prod-card:hover .prod-hover-bar {
            width: 100%;
        }

        /* RESPONSIVE */

        @media(max-width:991px) {

            .industries-we-serve-two .prod-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media(max-width:600px) {

            .industries-we-serve-two .prod-grid {
                grid-template-columns: 1fr;
            }

            .industries-we-serve-two .prod-top {
                flex-direction: column;
                align-items: flex-start;
            }

            .industries-we-serve-two .prod-name {
                font-size: 21px;
            }

            .industries-we-serve-two .prod-body {
                padding: 24px;
            }
        }


/* ═══════════════════════════════════════════
   SECTION 5 — TRANSPORT & PACKING
═══════════════════════════════════════════ */

#transport {
    background: var(--ts-primary-color);
    overflow: hidden;
    position: relative;
}

#transport::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(194, 107, 35, .07);
    pointer-events: none;
}

#transport::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(187, 9, 37, .05);
    pointer-events: none;
}

.tp-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid rgba(255, 255, 255, .1);
    position: relative;
    z-index: 1;
}

.tp-left {
    padding: 80px 60px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.tp-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ts-rated-color);
    margin-bottom: 14px;
}

.tp-title {
    font-family: var(--ts-heading-font-family);
    font-size: var(--ts-h2-font-size);
    line-height: var(--ts-h2-line-height);
    font-weight: var(--ts-heading-font-weight);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.tp-sub {
    font-size: var(--ts-body-font-size);
    line-height: 28px;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 40px;
}

.tp-steps {
    display: flex;
    flex-direction: column;
}

.tp-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.tp-step:first-child {
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.tp-step-num {
    font-size: 36px;
    font-weight: 300;
    color: rgba(255, 255, 255, .12);
    line-height: 1;
    flex-shrink: 0;
    width: 48px;
    font-family: var(--ts-heading-font-family);
}

.tp-step-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 6px;
}

.tp-step-desc {
    font-size: 14px;
    line-height: 24px;
    color: rgba(255, 255, 255, .5);
}

.tp-right {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
}

.tp-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, .08);
    flex: 1;
}

.tp-info-cell {
    padding: 36px 28px;
    background: var(--ts-primary-color);
    transition: background .25s;
}

.tp-info-cell:hover {
    background: #181818;
}

.tp-info-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(194, 107, 35, .4);
    color: var(--ts-rated-color);
}

.tp-info-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 1.7;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tp-info-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 8px;
}

.tp-info-desc {
    font-size: 13px;
    line-height: 22px;
    color: rgba(255, 255, 255, .45);
}

.tp-cert-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, .08);
    margin-top: 1px;
}

.tp-cert {
    padding: 20px 24px;
    background: var(--ts-primary-color);
    text-align: center;
}

.tp-cert-val {
    font-size: 26px;
    font-weight: 700;
    color: var(--ts-rated-color);
    font-family: var(--ts-heading-font-family);
    line-height: 1;
}

.tp-cert-lbl {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    margin-top: 4px;
}

/* ===============================
   TABLET
================================ */
@media (max-width: 991px) {

    .tp-inner {
        grid-template-columns: 1fr;
    }

    .tp-left,
    .tp-right {
        padding: 60px 32px;
    }

    .tp-left {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .tp-title {
        font-size: 42px;
        line-height: 1.2;
    }

    .tp-cert-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 767px) {

    #transport::before,
    #transport::after {
        display: none;
    }

    .tp-left,
    .tp-right {
        padding: 40px 20px;
    }

    .tp-title {
        font-size: 30px;
        line-height: 1.2;
        letter-spacing: 1px;
    }

    .tp-sub {
        font-size: 15px;
        line-height: 26px;
    }

    .tp-step {
        gap: 16px;
        padding: 22px 0;
    }

    .tp-step-num {
        font-size: 28px;
        width: 36px;
    }

    .tp-step-title {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .tp-step-desc {
        font-size: 13px;
        line-height: 22px;
    }

    .tp-info-grid {
        grid-template-columns: 1fr;
    }

    .tp-info-cell {
        padding: 28px 20px;
    }

    .tp-cert-row {
        grid-template-columns: 1fr 1fr;
    }

    .tp-cert {
        padding: 18px 14px;
    }

    .tp-cert-val {
        font-size: 22px;
    }

    .tp-cert-lbl {
        font-size: 9px;
        letter-spacing: 1px;
    }
}

/* ===============================
   SMALL MOBILE
================================ */
@media (max-width: 480px) {

    .tp-title {
        font-size: 26px;
    }

    .tp-label {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .tp-step {
        flex-direction: column;
        gap: 10px;
    }

    .tp-step-num {
        width: auto;
    }

    /* .tp-cert-row {
        grid-template-columns: 1fr;
    } */

    .tp-cert {
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .tp-cert:last-child {
        border-bottom: none;
    }
}






        
        /* ═══════════════════════════════════════════
       SECTION 6 — TESTIMONIALS
    ═══════════════════════════════════════════ */
        #testimonials {
            background: var(--ts-body-bg);
        }

        .testi-swiper-wrap {
            position: relative;
            margin-top: 60px;
        }

        .testi-swiper .swiper-slide {
            height: auto;
        }

        .testi-card {
            padding: 44px 40px;
            border: 1px solid var(--ts-border);
            background: var(--ts-body-bg);
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: border-color .25s, box-shadow .25s, transform .25s;
            position: relative;
        }

        .testi-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--ts-rated-color);
            transition: width .4s var(--ease);
        }

        .testi-card:hover::before {
            width: 100%;
        }

        .testi-card:hover {
            border-color: rgba(194, 107, 35, .3);
            box-shadow: 0 8px 40px rgba(0, 0, 0, .07);
            transform: translateY(-4px);
        }

        .testi-quote-mark {
            font-size: 80px;
            line-height: .7;
            font-family: Georgia, serif;
            color: var(--ts-border);
            margin-bottom: 16px;
        }

        .testi-stars {
            display: flex;
            gap: 3px;
            margin-bottom: 20px;
        }

        .testi-stars i {
            font-size: .85rem;
            color: var(--ts-rated-color);
        }

        .testi-text {
            font-size: 15px;
            line-height: 28px;
            color: var(--ts-text-color);
            flex: 1;
            font-style: italic;
            margin-bottom: 32px;
        }

        .testi-author {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-top: auto;
        }

        .testi-avatar {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            flex-shrink: 0;
            background: linear-gradient(135deg, var(--ts-rated-color), var(--ts-highlight));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            font-weight: 700;
            color: #fff;
        }

        .testi-name {
            font-size: 14px;
            font-weight: 700;
            color: var(--ts-heading-color);
            letter-spacing: .5px;
            text-transform: uppercase;
        }

        .testi-role {
            font-size: 12px;
            color: var(--ts-gray-color);
            margin-top: 3px;
        }

        .testi-company {
            font-size: 11px;
            color: var(--ts-rated-color);
            font-weight: 600;
            margin-top: 2px;
            letter-spacing: .5px;
        }

        .testi-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-top: 40px;
        }

        .testi-btn {
            width: 48px;
            height: 48px;
            border: 1px solid var(--ts-border);
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background .25s, border-color .25s;
        }

        .testi-btn:hover {
            background: var(--ts-rated-color);
            border-color: var(--ts-rated-color);
        }

        .testi-btn:hover svg {
            stroke: #fff;
        }

        .testi-btn svg {
            width: 18px;
            height: 18px;
            stroke: var(--ts-primary-color);
            stroke-width: 2;
            fill: none;
        }












            /* ═══════════════════════════════════════════
       SECTION 7 — FAQ
    ═══════════════════════════════════════════ */
        #faq {
            background: #f5f0eb;
        }

        .faq-inner {
            display: grid;
            grid-template-columns: 380px 1fr;
            gap: 80px;
            align-items: start;
        }

        .faq-left {}

        .faq-contact-block {
            margin-top: 40px;
            padding: 32px;
            background: var(--ts-body-bg);
            border: 1px solid var(--ts-border);
        }

        .faq-contact-title {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--ts-heading-color);
            margin-bottom: 20px;
            padding-bottom: 14px;
            border-bottom: 1px solid var(--ts-border);
        }

        .faq-contact-row {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 16px;
        }

        .faq-contact-row:last-child {
            margin-bottom: 0;
        }

        .faq-contact-icon {
            width: 38px;
            height: 38px;
            background: #f5f0ea;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .faq-contact-icon i {
            color: var(--ts-rated-color);
            font-size: 1rem;
        }

        .faq-contact-lbl {
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--ts-gray-color);
            display: block;
        }

        .faq-contact-val {
            font-size: 13px;
            font-weight: 600;
            color: var(--ts-heading-color);
        }

        .faq-contact-val a {
            color: inherit;
            text-decoration: none;
            transition: color .2s;
        }

        .faq-contact-val a:hover {
            color: var(--ts-rated-color);
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .faq-item {
            border-bottom: 1px solid var(--ts-border);
        }

        .faq-item:first-child {
            border-top: 1px solid var(--ts-border);
        }

        .faq-btn {
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            padding: 24px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-family: var(--ts-font-family);
            gap: 20px;
        }

        .faq-q {
            font-size: 15px;
            font-weight: 600;
            color: var(--ts-heading-color);
            transition: color .2s;
            line-height: 1.4;
        }

        .faq-btn:hover .faq-q,
        .faq-btn[aria-expanded="true"] .faq-q {
            color: var(--ts-rated-color);
        }

        .faq-icon-wrap {
            width: 32px;
            height: 32px;
            flex-shrink: 0;
            border: 1.5px solid var(--ts-border);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background .25s, border-color .25s;
        }

        .faq-icon-wrap svg {
            width: 14px;
            height: 14px;
            stroke: var(--ts-gray-color);
            stroke-width: 2;
            fill: none;
            transition: stroke .25s, transform .35s;
        }

        .faq-btn[aria-expanded="true"] .faq-icon-wrap {
            background: var(--ts-rated-color);
            border-color: var(--ts-rated-color);
        }

        .faq-btn[aria-expanded="true"] .faq-icon-wrap svg {
            stroke: #fff;
            transform: rotate(45deg);
        }

        .faq-answer {
            font-size: 14px;
            line-height: 26px;
            color: var(--ts-gray-color);
            padding-bottom: 24px;
        }

        @media(max-width:991px) {
            .faq-inner {
                grid-template-columns: 1fr;
                gap: 50px;
            }
        }




        
        .gallery {
            padding: 100px 0;
            overflow: hidden;
            background: #f8f5f1;
        }

        .gallery-container {
            width: 100%;
        }

        /* Heading */

        .heading {
            text-align: center;
            margin-bottom: 60px;
            padding: 0 20px;
        }

        .heading span {
            display: inline-block;
            font-family: var(--ts-font-family);
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--ts-rated-color);
            margin-bottom: 14px;
        }



        .heading h2 {
            font-family: var(--ts-heading-font-family);
            font-size: var(--ts-h2-font-size);
            line-height: var(--ts-h2-line-height);
            font-weight: var(--ts-heading-font-weight);
            color: var(--ts-heading-color);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* Swiper */

        .gallery .swiper {
            overflow: visible;
            margin-bottom: 24px;
        }

        .gallery .swiper:last-child {
            margin-bottom: 0;
        }



        .gallery .swiper-slide a {
            position: relative;
            display: block;
            overflow: hidden;
            border-radius: 28px;
        }

        .gallery .swiper-slide img {
            width: 100%;
            height: 320px;
            object-fit: cover;
            transition: .7s ease;
        }

        /* Hover */

        .gallery .swiper-slide a::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.2);
            opacity: 0;
            transition: var(--transition);
            z-index: 1;
        }

        .gallery .swiper-slide a::after {
            content: '+';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.95);
            color: var(--ts-heading-color);
            font-size: 40px;
            font-weight: 300;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
            z-index: 2;
        }

        .gallery .swiper-slide:hover a::before,
        .gallery .swiper-slide:hover a::after {
            opacity: 1;
        }

        .gallery .swiper-slide:hover img {
            transform: scale(1.08);
        }

        /* Responsive */

        @media(max-width:991px) {

            .gallery .swiper-slide {
                width: 320px;
            }

            .gallery .swiper-slide img {
                height: 260px;
            }
        }

        @media(max-width:768px) {

            .gallery {
                padding: 70px 0;
            }

            .heading {
                margin-bottom: 40px;
            }

            .gallery .swiper-slide {
                width: 260px;
            }

            .gallery .swiper-slide img {
                height: 220px;
            }

            .gallery .swiper-slide a {
                border-radius: 22px;
            }

            .gallery .swiper-slide a::after {
                width: 55px;
                height: 55px;
                font-size: 32px;
            }
        }





/* ═══════════════════════════════════════════════════════════════════
   ENHANCED RESPONSIVE & CSS IMPROVEMENTS — MAC FURNITURES
   Appended patch — overrides & additions only
═══════════════════════════════════════════════════════════════════ */

/* ── 1. SMOOTH SCROLL + SELECTION ─────────────────────────────── */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

::selection {
    background: var(--clr-accent);
    color: #fff;
}

/* ── 2. IMPROVED CSS VARIABLES (mobile-aware) ─────────────────── */
:root {
    --header-h: 110px;
    --mob-header-h: 68px;
    --px-outer: clamp(16px, 4vw, 64px);
    --section-py: clamp(56px, 8vw, 110px);
}

/* ── 3. MOBILE HAMBURGER ──────────────────────────────────────── */
.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1.5px solid rgba(255,255,255,.3);
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .2s, border-color .2s;
    margin-left: 12px;
}

.mobile-menu-btn:hover {
    background: rgba(255,255,255,.18);
    border-color: rgba(255,255,255,.55);
}

/* Mobile overlay nav */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity .3s;
}

.mobile-nav-overlay.open {
    opacity: 1;
}

.mobile-nav-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 88vw);
    background: #0d0d0d;
    padding: 0;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.4,0,.2,1);
}

.mobile-nav-overlay.open .mobile-nav-panel {
    transform: translateX(0);
}

.mob-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.mob-nav-brand {
    font-weight: 700;
    font-size: .95rem;
    color: #fff;
    letter-spacing: .06em;
}

.mob-nav-close {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: .85rem;
    transition: background .2s, border-color .2s;
}

.mob-nav-close:hover {
    background: var(--clr-accent);
    border-color: var(--clr-accent);
}

.mob-nav-links {
    list-style: none;
    padding: 12px 0;
    margin: 0;
}

.mob-nav-links li a,
.mob-nav-links li button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 24px;
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
    text-decoration: none;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,.05);
    transition: color .2s, background .2s;
    cursor: pointer;
    font-family: var(--font);
}

.mob-nav-links li a:hover,
.mob-nav-links li button:hover {
    color: #fff;
    background: rgba(255,255,255,.05);
}

.mob-nav-links li a.active-link {
    color: var(--clr-accent);
}

.mob-sub-links {
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(255,255,255,.03);
    display: none;
}

.mob-sub-links.open {
    display: block;
}

.mob-sub-links li a {
    padding: 10px 24px 10px 40px;
    font-size: .80rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    color: rgba(255,255,255,.55);
    border-bottom: 1px solid rgba(255,255,255,.03);
}

.mob-sub-links li a:hover {
    color: var(--clr-accent);
    background: transparent;
}

.mob-nav-footer {
    padding: 20px 24px 32px;
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 8px;
}

.mob-nav-footer .social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.mob-nav-footer .social-icons a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.6);
    font-size: .85rem;
    transition: background .2s, color .2s, border-color .2s;
}

.mob-nav-footer .social-icons a:hover {
    background: var(--clr-accent);
    border-color: var(--clr-accent);
    color: #fff;
}

.mob-nav-footer .btn {
    width: 100%;
    justify-content: center;
    border-radius: 50px;
}

/* ── 4. NAVBAR RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1100px) {
    .navbar-inner {
        grid-template-columns: 1fr auto auto auto;
    }

    .top-bar .social-icons {
        display: none;
    }
}

@media (max-width: 991px) {
    .mobile-menu-btn {
        display: flex;
    }

    .top-bar {
        display: none;
    }

    .navbar-inner {
        grid-template-columns: 1fr auto auto;
        min-height: 62px;
    }

    .nav-links-cell {
        display: none !important;
    }

    .locale-cell {
        display: none;
    }

    /* Show only the Contact btn on tablet+ */
    .locale-cell:last-child {
        display: none;
    }

    .brand-cell {
        border-right: none;
    }
}

@media (max-width: 600px) {
    .navbar-inner {
        min-height: 58px;
    }

    .brand-text {
        font-size: .88rem;
    }

    .brand-tagline {
        display: none;
    }

    .brand-circle {
        width: 36px;
        height: 36px;
        font-size: .85rem;
    }
}

/* ── 5. HERO RESPONSIVE ───────────────────────────────────────── */
.hero {
    min-height: 100svh;
}

.hero-content {
    left: var(--px-outer);
    right: var(--px-outer);
    gap: 24px;
    padding: 120px 0 80px;
    max-width: 700px;
}

.hero-title {
    font-size: clamp(32px, 5.5vw, 68px);
    line-height: 1.07;
}

.hero-sub {
    padding: 0;
    margin-top: 0;
    font-size: clamp(.85rem, 2vw, 1rem);
}

@media (max-width: 767px) {
    .hero-content {
        left: 20px;
        right: 20px;
        gap: 20px;
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: clamp(28px, 8vw, 46px);
    }

    .hero-arrow {
        width: 38px;
        height: 38px;
        font-size: .85rem;
    }

    .hero-arrow.prev { left: 14px; }
    .hero-arrow.next { right: 14px; }

    .hero-dots {
        bottom: 20px;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 26px;
    }
}

/* ── 6. HANDCRAFTED SECTION RESPONSIVE ───────────────────────── */
@media (max-width: 1199px) {

    .product-showcase-grid {
        grid-template-columns: 320px 1fr;
    }

    .showcase-content {
        padding: 40px 30px;
    }

    .showcase-content h2 {
        font-size: 32px;
        line-height: 1.2;
    }
}

@media (max-width: 991px) {

    .product-showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-content {
        min-height: auto;
        padding: 35px 25px;
        border-right: 0;
        border-bottom: 1px solid var(--clr-border);

        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

    .showcase-content h2 {
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: 0;
    }

    .product-card {
        min-height: auto;
    }

    .product-image {
        height: 260px;
    }
}

@media (max-width: 600px) {

    .showcase-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 25px 20px;
        gap: 20px;
    }

    .showcase-content h2 {
        font-size: 24px;
        line-height: 1.25;
    }

    .showcase-arrows {
        width: 100%;
    }

    .product-card {
        border-right: none;
        min-height: auto;
        padding: 20px;
    }

    .product-image {
        height: 220px;
    }

    .product-info h3 {
        font-size: 16px;
    }

    .product-info p {
        font-size: 13px;
    }
}
/* ── 7. CATEGORY SECTION ──────────────────────────────────────── */
@media (max-width: 991px) {
    .mac-category-grid {
        grid-template-columns: 1fr 1fr;
    }

    .mac-category-card {
        min-height: 380px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.06);
    }

    .mac-category-card:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .mac-category-grid {
        grid-template-columns: 1fr;
    }

    .mac-category-card {
        min-height: 300px;
    }

    .mac-category-card:last-child {
        grid-column: 1;
    }

    .mac-category-content {
        padding: 24px 20px;
    }

    .mac-category-content h2 {
        font-size: 26px;
        line-height: 32px;
    }

    .mac-category-btn {
        width: 110px;
        height: 42px;
        font-size: .72rem;
    }
}

/* ── 8. BUSINESS SOLUTIONS RESPONSIVE ────────────────────────── */
.business-solutions {
    margin: 0 auto;
}

@media (max-width: 1100px) {
    .business-solutions-content {
        padding: 0 0 0 44px;
    }

    .business-solutions-content h2 {
        font-size: 30px;
        line-height: 38px;
    }
}

@media (max-width: 991px) {
    .business-solutions-row {
        grid-template-columns: 1fr;
        padding: 48px 0;
    }

    .business-solutions-row:nth-child(even) .business-solutions-image {
        order: 0;
    }

    .business-solutions-row:nth-child(even) .business-solutions-content {
        order: 1;
    }

    .business-solutions-content {
        padding: 36px var(--px-outer);
        max-width: 100%;
    }

    .image-shape {
        width: 90%;
        margin: 0 auto;
        height: 380px;
        border-radius: 40px !important;
    }

    .watermark-number {
        display: none;
    }
}

@media (max-width: 600px) {
    .business-solutions-content {
        padding: 28px 20px;
    }

    .business-solutions-content h2 {
        font-size: 26px;
        line-height: 34px;
    }

    .image-shape {
        width: 100%;
        height: 300px;
        border-radius: 24px !important;
    }
}

/* ── 9. PROCESS SECTION ───────────────────────────────────────── */
@media (max-width: 767px) {
    .mac-process-section {
        padding: 48px 16px 0;
    }

    .process-headline {
        font-size: clamp(26px, 6vw, 42px);
        margin-bottom: 48px;
    }

    .pill-img {
        width: 48px;
        height: 30px;
    }

    .stat-item {
        min-width: 120px;
        max-width: 180px;
    }
}

/* ── 10. GUARANTEE / FEATURE BAR ──────────────────────────────── */
@media (max-width: 767px) {
    .guarantee-bar {
        padding: 16px 16px;
        gap: 14px;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .guarantee-bar::-webkit-scrollbar { display: none; }

    .features-row {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .features-row::-webkit-scrollbar { display: none; }

    .feature-item {
        flex: 0 0 auto;
        min-width: 180px;
    }
}

/* ── 11. FEATURED PRODUCTS ────────────────────────────────────── */
@media (max-width: 991px) {
    .featured-topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 36px;
    }

    .product-tabs {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 6px;
        -webkit-overflow-scrolling: touch;
    }

    .product-tabs::-webkit-scrollbar { display: none; }

    .tab-btn {
        flex-shrink: 0;
    }
}

@media (max-width: 600px) {
    .featured-products-section {
        padding: 48px 0;
    }
}

/* ── 12. PROMO BANNERS ────────────────────────────────────────── */
@media (max-width: 767px) {
    .promo-banner {
        min-height: 220px;
    }

    .promo-content {
        padding: 28px 24px;
    }

    .promo-content h3 {
        font-size: 22px;
    }
}

/* ── 13. CATEGORY SECTION (Category-section) ─────────────────── */
@media (max-width: 991px) {
    .Category-top {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }

    .Category-navigation {
        margin-top: 0;
    }

    .Category-title {
        font-size: clamp(28px, 6vw, 40px);
    }
}

@media (max-width: 600px) {
    .Category-section {
        padding: 64px 0;
    }

    .Category-title {
        font-size: 28px;
    }

    .Category-text {
        font-size: 15px;
        line-height: 28px;
    }

    .Category-prev,
    .Category-next {
        width: 44px;
        height: 44px;
    }
}

/* ── 14. SECTION UTILITY RESPONSIVE ──────────────────────────── */
@media (max-width: 991px) {
    .section-wrap {
        padding: 64px var(--px-outer);
    }

    .section-title {
        font-size: clamp(24px, 5vw, 36px);
        line-height: 1.15;
    }

    .section { padding: 48px var(--px-outer); }
}

@media (max-width: 600px) {
    .section-wrap {
        padding: 48px 20px;
    }

    .section-title {
        font-size: clamp(22px, 6vw, 30px);
        letter-spacing: 1px;
    }

    .section-sub {
        font-size: .88rem;
    }

    .section { padding: 36px 20px; }
}

/* ── 15. BRADCRAMP (PAGE HEADER) RESPONSIVE ──────────────────── */
@media (max-width: 1199px) {
    .bradcramp-title {
        font-size: clamp(36px, 5vw, 58px);
        line-height: 1.15;
    }
}

@media (max-width: 767px) {
    .bradcramp {
        padding: 110px 20px 70px;
    }

    .bradcramp-title {
        font-size: clamp(28px, 7vw, 42px);
        line-height: 1.12;
    }

    .bradcramp-sub {
        font-size: 15px;
        line-height: 26px;
    }
}

@media (max-width: 480px) {
    .bradcramp-title {
        font-size: 26px;
    }
}

/* ── 16. TESTIMONIALS ─────────────────────────────────────────── */
@media (max-width: 767px) {
    .testi-card {
        padding: 30px 24px;
    }

    .testi-swiper-wrap {
        margin-top: 40px;
    }

    .testi-nav {
        margin-top: 28px;
    }
}

/* ── 17. FAQ ──────────────────────────────────────────────────── */
@media (max-width: 767px) {
    .faq-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-contact-block {
        padding: 24px 20px;
    }
}

/* ── 18. FOOTER RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1199px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-divider {
        display: none;
    }

    .footer-col,
    .footer-col-brand {
        padding: 40px 28px;
    }

    .footer-contact-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-col,
    .footer-col-brand {
        padding: 28px 20px;
        border-bottom: 1px solid var(--ft-border);
    }

    .footer-col:last-child {
        border-bottom: none;
    }

    .footer-contact-row {
        grid-template-columns: 1fr;
    }

    .contact-cell {
        padding: 18px 20px;
        border-bottom: 1px solid var(--ft-border);
    }

    .footer-newsletter-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 24px 20px;
    }

    .nl-form {
        width: 100%;
        margin-left: 0;
    }

    .nl-input {
        flex: 1;
        width: 0;
        min-width: 0;
    }

    .footer-bottom {
        padding: 16px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .footer-tagline {
        font-size: clamp(28px, 8vw, 48px);
    }

    .socials-cell {
        padding: 20px;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 10px;
    }
}

/* ── 19. OUR PROCESS (ABOUT / DETAIL PAGES) ──────────────────── */
@media (max-width: 991px) {
    .our-process-grid {
        grid-template-columns: 1fr;
    }

    .process-left {
        position: relative;
        height: auto;
        padding: 80px var(--px-outer) 60px;
        border-right: none;
        border-bottom: 1px solid var(--ts-border);
    }
}

@media (max-width: 600px) {
    .process-left {
        padding: 60px 20px 48px;
    }

    .process-item {
        flex-direction: column;
        gap: 20px;
        padding: 36px 20px;
        min-height: auto;
    }

    .process-number {
        font-size: 48px;
        line-height: 1;
    }

    .process-content h3 {
        font-size: clamp(20px, 5vw, 28px);
        letter-spacing: -.5px;
        margin-bottom: 12px;
    }

    .process-content p {
        font-size: 15px;
    }

    .process-title {
        font-size: clamp(24px, 6vw, 36px);
        letter-spacing: -.5px;
        line-height: 1.15;
    }

    .process-text {
        font-size: 15px;
    }
}

/* ── 20. INDUSTRIES WE SERVE (PRODUCT GRIDS) ─────────────────── */
@media (max-width: 991px) {
    .industries-we-serve-two .prod-grid {
        grid-template-columns: 1fr 1fr;
    }

    .industries-we-serve-two .prod-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 40px;
    }
}

@media (max-width: 600px) {
    .industries-we-serve-two .prod-grid {
        grid-template-columns: 1fr;
    }

    .industries-we-serve-two .prod-img {
        height: 240px;
    }

    .industries-we-serve-two .prod-body {
        padding: 22px 20px;
    }
}

/* ── 21. CONTACT SECTION ──────────────────────────────────────── */
@media (max-width: 991px) {
    .form-panel {
        padding: 36px 28px;
    }
}

@media (max-width: 600px) {
    .form-panel {
        padding: 28px 18px;
        border-radius: 10px;
    }

    .info-cards-wrap .row .col-md-4 {
        margin-bottom: 16px;
    }
}

/* ── 22. CAT-SECTION (PORTABLE CABIN SWIPER) ─────────────────── */
@media (max-width: 600px) {
    .cat-section .slide-pair {
        grid-template-columns: 1fr;
        grid-template-rows: 3fr 2fr;
    }

    .cat-section .swiper-slide {
        height: auto;
        min-height: 480px;
    }

    .panel-title {
        font-size: clamp(18px, 5vw, 28px);
        line-height: 1.2;
    }
}

/* ── 23. GENERAL CONTAINER ON MOBILE ──────────────────────────── */
@media (max-width: 600px) {
    .container-fluid {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* ── 24. HEADING SIZES RESPONSIVE ─────────────────────────────── */
@media (max-width: 767px) {
    .heading h2 {
        font-size: clamp(24px, 6vw, 36px);
        line-height: 1.15;
        letter-spacing: 1px;
    }

    .heading {
        margin-bottom: 36px;
    }
}

/* ── 25. GALLERY SECTION ──────────────────────────────────────── */
@media (max-width: 600px) {
    .gallery {
        padding: 56px 0;
    }

    .gallery .swiper-slide {
        width: 240px;
    }

    .gallery .swiper-slide img {
        height: 200px;
    }

    .gallery .swiper-slide a {
        border-radius: 16px;
    }
}

/* ── 26. IMPROVED HOVER & FOCUS STATES ────────────────────────── */
.btn:focus-visible,
.tab-btn:focus-visible,
.nav-item-link:focus-visible,
.mob-nav-close:focus-visible,
.mobile-menu-btn:focus-visible {
    outline: 2px solid var(--clr-accent);
    outline-offset: 3px;
}

/* ── 27. TOUCH DEVICE IMPROVEMENTS ───────────────────────────── */
@media (hover: none) {
    .mac-category-card:hover img { transform: none; }
    .handcrafted-section .product-card:hover .product-image img { transform: none; }
    .promo-banner:hover img { transform: none; }
    .business-solutions-row:hover .business-solutions-image img { transform: none; }
}

/* ── 28. ENHANCED SCROLL BAR (desktop) ────────────────────────── */
@media (min-width: 992px) {
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: #f0ece8; }
    ::-webkit-scrollbar-thumb {
        background: var(--clr-accent);
        border-radius: 3px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: var(--clr-dark);
    }
}

/* ── 29. IMPROVED CARD SHADOWS ────────────────────────────────── */
.info-card,
.testi-card,
.hours-card,
.social-card,
.form-panel {
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
    transition: box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s;
}

.info-card:hover {
    box-shadow: 0 14px 44px rgba(0,0,0,.11);
    transform: translateY(-3px);
}

/* ── 30. IMPROVED TYPOGRAPHY SPACING ─────────────────────────── */
@media (max-width: 600px) {
    .section-label {
        font-size: 10px;
        letter-spacing: 2px;
    }

    p {
        font-size: .88rem;
        line-height: 1.7;
    }

    .small-label {
        font-size: .62rem;
    }
}

/* ── 31. BRADCRAMP PADDING-TOP BODY OFFSET ───────────────────── */
body > header + * {
    /* Push content below fixed header on non-hero pages */
}

/* for pages without hero – add padding utility */
.page-padded-top {
    padding-top: var(--header-h, 110px);
}

@media (max-width: 991px) {
    .page-padded-top {
        padding-top: var(--mob-header-h, 68px);
    }
}

/* ── 32. STICKY NAV (product detail pages) ────────────────────── */
#stickyNav {
    visibility: hidden;
    opacity: 0;
    transition: opacity .3s, visibility .3s;
}

.sticky-nav-link.active {
    color: var(--clr-accent);
    font-weight: 700;
}

@media (max-width: 600px) {
    #stickyNav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }

    #stickyNav::-webkit-scrollbar { display: none; }
}

/* ── 33. BETTER MOBILE BUTTONS ────────────────────────────────── */
@media (max-width: 600px) {
    .btn {
        padding: 11px 22px;
        font-size: .78rem;
    }

    .mac-category-btn {
        height: 42px;
        font-size: .72rem;
        padding: 0 18px;
        width: auto;
    }

    .btn-submit {
        padding: 14px 24px;
        font-size: .88rem;
    }
}

/* ── 34. IMAGES — PREVENT LAYOUT BREAK ───────────────────────── */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ── 35. PRINT STYLES ─────────────────────────────────────────── */
@media print {
    header, .mobile-nav-overlay, .hero-arrow, .hero-dots,
    .mobile-menu-btn, #stickyNav { display: none !important; }
    body { color: #000; background: #fff; }
    a { color: #000; }
}