:root {
    --green: #00BF63;
    --red: #E7133D;
    --grey: #6B6B6B;
    --dark: #202522;
    --dark-2: #29302c;
    --ink: #202522;
    --muted: #69736d;
    --light: #f4f7f5;
    --white: #fff;
    --border: rgba(32, 37, 34, .11);
    --shadow: 0 24px 70px rgba(20, 30, 25, .12);
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    color: var(--ink);
    overflow-x: hidden;
    background: #fff
}

a {
    text-decoration: none
}

img {
    max-width: 100%
}

body.is-loading {
    overflow: hidden
}

/* LOADER */
.site-loader {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 9999;
    display: grid;
    place-items: center;
    transition: opacity .7s ease, visibility .7s ease
}

.site-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

.loader-stage {
    width: min(430px, 80vw);
    text-align: center;
    position: relative
}

.loader-logo-wrap {
    width: 230px;
    height: 120px;
    margin: 0 auto 24px;
    position: relative;
    display: grid;
    place-items: center
}

.loader-logo-wrap img {
    width: 220px;
    height: auto;
    position: relative;
    z-index: 3;
    animation: loaderLogo 1.8s ease-in-out infinite
}

.loader-orbit {
    position: absolute;
    border: 1px solid rgba(0, 191, 99, .18);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none
}

.orbit-one {
    width: 290px;
    height: 105px;
    animation: orbit 3.2s linear infinite
}

.orbit-two {
    width: 260px;
    height: 88px;
    border-color: rgba(231, 19, 61, .13);
    transform: translate(-50%, -50%) rotate(18deg);
    animation: orbitReverse 4.2s linear infinite
}

.loader-leaf {
    position: absolute;
    width: 12px;
    height: 27px;
    border-radius: 100% 0 100% 0;
    z-index: 2
}

.loader-leaf-green {
    background: var(--green);
    left: 17px;
    top: 18px;
    transform: rotate(35deg);
    animation: leafPulse 1.4s ease-in-out infinite
}

.loader-leaf-red {
    background: var(--red);
    right: 15px;
    bottom: 17px;
    transform: rotate(215deg);
    animation: leafPulse 1.4s .3s ease-in-out infinite
}

.loader-line {
    height: 3px;
    background: #e8ece9;
    border-radius: 9px;
    overflow: hidden;
    width: 210px;
    margin: 0 auto 15px
}

.loader-line span {
    display: block;
    width: 35%;
    height: 100%;
    background: linear-gradient(90deg, var(--green), var(--red));
    border-radius: 9px;
    animation: loadingBar 1.45s ease-in-out infinite
}

.loader-status span,
.loader-status small {
    display: block
}

.loader-status span {
    font-weight: 900;
    letter-spacing: .2em;
    font-size: .78rem;
    color: var(--dark)
}

.loader-status small {
    font-size: .58rem;
    letter-spacing: .16em;
    color: #929b96;
    margin-top: 5px
}

@keyframes loaderLogo {

    0%,
    100% {
        transform: translateY(0);
        filter: drop-shadow(0 0 0 rgba(0, 191, 99, 0))
    }

    50% {
        transform: translateY(-5px);
        filter: drop-shadow(0 12px 20px rgba(0, 191, 99, .12))
    }
}

@keyframes loadingBar {
    0% {
        transform: translateX(-120%)
    }

    50% {
        transform: translateX(140%)
    }

    100% {
        transform: translateX(330%)
    }
}

@keyframes orbit {
    to {
        transform: translate(-50%, -50%) rotate(360deg)
    }
}

@keyframes orbitReverse {
    to {
        transform: translate(-50%, -50%) rotate(-360deg)
    }
}

@keyframes leafPulse {
    50% {
        transform: rotate(35deg) scale(1.18)
    }
}

/* NAV */
.navbar {
    padding: 10px 0;
    min-height: 72px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(32, 37, 34, 0.06);
    transition: all 0.35s ease;
}


/* Logo */
.gs-header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.gs-header-logo img {
    width: 190px;
    height: auto;
    max-height: 70px;
    object-fit: contain;
}

/* Navigation */
.nav-link {
    font-size: 0.88rem;
    font-weight: 700;
    color: #3f4743 !important;
    padding: 8px 12px !important;
    position: relative;
}

/* Active underline */
.nav-link::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 0;
    left: 12px;
    bottom: 1px;
    background: var(--green);
    transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--green) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 24px);
}

/* Request Rental button */
.navbar .nav-cta {
    padding: 11px 20px;
    border-radius: 11px;
    font-size: 0.88rem;
    white-space: nowrap;
}

/* Scrolled navbar */
.navbar.scrolled {
    padding: 6px 0;
    min-height: 62px;
    box-shadow: 0 10px 35px rgba(20, 30, 25, 0.09);
}

.navbar.scrolled .gs-header-logo img {
    width: 165px;
    max-height: 62px;
}

.btn {
    border-radius: 12px;
    font-weight: 800;
    padding: 12px 21px;
    transition: .3s ease;
    letter-spacing: -.01em
}

.btn-brand {
    background: var(--green);
    border: 1px solid var(--green);
    color: #fff;
    box-shadow: 0 8px 22px rgba(0, 191, 99, .18)
}

.btn-brand:hover {
    background: #00a957;
    border-color: #00a957;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 191, 99, .24)
}

.btn-dark-outline {
    border: 1px solid rgba(32, 37, 34, .22);
    color: var(--dark);
    background: #fff
}

.btn-dark-outline:hover {
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-3px)
}

/* HERO */
.hero-section {
    min-height: 820px;
    padding: 115px 0 100px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #f7faf8
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(107, 107, 107, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(107, 107, 107, .055) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, #000, transparent 90%);
    opacity: .55
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    pointer-events: none
}

.hero-glow-green {
    width: 560px;
    height: 560px;
    right: -230px;
    top: 40px;
    background: radial-gradient(circle, rgba(0, 191, 99, .15), transparent 67%)
}

.hero-glow-red {
    width: 220px;
    height: 220px;
    left: -90px;
    bottom: 30px;
    background: radial-gradient(circle, rgba(231, 19, 61, .12), transparent 67%)
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(0, 191, 99, .18);
    background: rgba(255, 255, 255, .75);
    padding: 9px 13px;
    border-radius: 100px;
    color: var(--green);
    font-size: .7rem;
    letter-spacing: .14em;
    font-weight: 900;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(20, 30, 25, .04)
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 191, 99, .45);
    animation: pulse 1.8s infinite
}

@keyframes pulse {
    70% {
        box-shadow: 0 0 0 8px rgba(0, 191, 99, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 191, 99, 0)
    }
}

.hero-section h1 {
    font-size: clamp(3.2rem, 6.5vw, 6rem);
    font-weight: 900;
    letter-spacing: -.065em;
    line-height: .91;
    margin: 0 0 25px;
    color: var(--dark)
}

.hero-section h1 span,
h2 span {
    color: var(--green)
}

.hero-copy {
    font-size: 1.08rem;
    line-height: 1.8;
    color: var(--muted);
    max-width: 610px;
    margin-bottom: 28px
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.hero-micro {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 24px;
    color: #6d7671;
    font-size: .78rem;
    font-weight: 700
}

.hero-micro i {
    color: var(--green);
    margin-right: 5px
}

.hero-product-stage {
    position: relative;
    min-height: 560px;
    display: grid;
    place-items: center
}

.stage-ring {
    position: absolute;
    border: 1px solid rgba(0, 191, 99, .18);
    border-radius: 50%;
    animation: slowSpin 18s linear infinite
}

.ring-a {
    width: 530px;
    height: 530px
}

.ring-b {
    width: 430px;
    height: 430px;
    border-color: rgba(231, 19, 61, .12);
    animation-direction: reverse;
    animation-duration: 12s
}

@keyframes slowSpin {
    to {
        transform: rotate(360deg)
    }
}

.hero-image-frame {
    width: min(470px, 82vw);
    height: 520px;
    background: #e9efeb;
    border: 10px solid rgba(255, 255, 255, .8);
    border-radius: 38px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    z-index: 2;
    transform: rotate(1.5deg);
    transition: .5s ease
}

.hero-image-frame:hover {
    transform: rotate(0) translateY(-7px);
    box-shadow: 0 32px 80px rgba(20, 30, 25, .16)
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-image-frame img[src$=".jpg"] {
    display: block
}

.image-label {
    position: absolute;
    z-index: 4;
    left: 18px;
    top: 18px;
    background: rgba(32, 37, 34, .9);
    color: #fff;
    border-radius: 10px;
    padding: 8px 11px;
    font-size: .62rem;
    letter-spacing: .12em;
    font-weight: 900
}

.image-label i {
    color: #63e2a1;
    margin-right: 4px
}

.placeholder-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 25px;
    color: #6c7670
}

.placeholder-content i {
    font-size: 3rem;
    color: var(--green);
    margin-bottom: 10px
}

.placeholder-content strong {
    font-size: 1rem
}

.placeholder-content small {
    font-size: .7rem;
    line-height: 1.5;
    max-width: 280px;
    margin-top: 6px
}

.floating-rental-card {
    position: absolute;
    z-index: 5;
    background: #fff;
    border: 1px solid rgba(32, 37, 34, .08);
    border-radius: 16px;
    padding: 13px 16px;
    display: flex;
    gap: 10px;
    align-items: center;
    box-shadow: 0 18px 40px rgba(20, 30, 25, .12);
    animation: floatCard 4s ease-in-out infinite
}

.card-top {
    right: -8px;
    top: 95px
}

.card-bottom {
    left: -15px;
    bottom: 75px;
    animation-delay: -1.2s
}

@keyframes floatCard {
    50% {
        transform: translateY(-9px)
    }
}

.mini-icon {
    width: 39px;
    height: 39px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1rem
}

.mini-icon.green {
    background: #eaf9f1;
    color: var(--green)
}

.mini-icon.red {
    background: #fff0f2;
    color: var(--red)
}

.floating-rental-card small,
.floating-rental-card strong {
    display: block
}

.floating-rental-card small {
    font-size: .55rem;
    letter-spacing: .1em;
    color: #919994;
    font-weight: 800
}

.floating-rental-card strong {
    font-size: .8rem;
    color: var(--dark)
}

.hero-mark {
    position: absolute;
    right: 18px;
    bottom: 20px;
    z-index: 5;
    font-weight: 900;
    color: rgba(107, 107, 107, .45);
    font-size: 1.2rem;
    letter-spacing: .15em
}

.hero-mark span {
    color: var(--red)
}

.scroll-cue {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    color: #7b847f;
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: .62rem;
    letter-spacing: .16em;
    font-weight: 800
}

.scroll-cue i {
    color: var(--green);
    animation: bounce 1.4s infinite
}

@keyframes bounce {
    50% {
        transform: translateY(5px)
    }
}

/* COMMON */
.section-padding {
    padding: 110px 0
}

.section-kicker {
    display: inline-block;
    color: var(--green);
    font-size: .72rem;
    letter-spacing: .17em;
    font-weight: 900;
    margin-bottom: 13px
}

.section-kicker.light {
    color: #62e3a0
}

h2 {
    font-size: clamp(2.4rem, 4.5vw, 4.2rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.055em;
    color: var(--dark);
    margin-bottom: 20px
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 50px;
    margin-bottom: 48px
}

.section-heading>div {
    max-width: 700px
}

.section-heading>p {
    max-width: 440px;
    color: var(--muted);
    line-height: 1.75;
    margin: 0
}

.lead-copy {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.85;
    max-width: 650px
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dark);
    font-weight: 900;
    margin-top: 16px
}

.text-link:hover {
    color: var(--green)
}

/* RENTAL INTRO */
.rental-intro {
    padding: 120px 0 100px;
    background: #fff
}

.rental-process {
    background: #f4f7f5;
    border-radius: 28px;
    padding: 34px 35px;
    position: relative;
    overflow: hidden
}

.process-line {
    position: absolute;
    left: 62px;
    top: 72px;
    bottom: 72px;
    width: 1px;
    background: linear-gradient(var(--green), rgba(0, 191, 99, .08));
}

.process-item {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 18px;
    position: relative;
    padding: 18px 0
}

.process-item>span {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(0, 191, 99, .2);
    display: grid;
    place-items: center;
    color: var(--green);
    font-size: .75rem;
    font-weight: 900;
    z-index: 2
}

.process-item i {
    color: var(--green);
    margin-right: 7px
}

.process-item h3 {
    display: inline;
    font-size: 1rem;
    font-weight: 900;
    color: var(--dark)
}

.process-item p {
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.65;
    margin: 8px 0 0
}

/* HIGHLIGHTS */
.rental-highlights {
    background: var(--dark);
    padding: 24px 0;
    color: #fff
}

.highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 8px
}

.highlight>i {
    font-size: 1.4rem;
    color: #5de09c
}

.highlight strong,
.highlight small {
    display: block
}

.highlight strong {
    font-size: .83rem
}

.highlight small {
    font-size: .68rem;
    color: #9da7a2;
    margin-top: 3px
}


/* WHY */
.why-section {
    background: #fff
}

.why-card {
    height: 100%;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 22px;
    position: relative;
    overflow: hidden;
    background: #fff;
    transition: .35s ease
}

.why-card:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--red));
    transition: .4s ease
}

.why-card:hover:before {
    width: 100%
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow)
}

.why-number {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #d5dbd7;
    font-size: .7rem;
    font-weight: 900
}

.why-card>i {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    background: #edf9f2;
    color: var(--green);
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    margin-bottom: 38px
}

.why-card h3 {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--dark)
}

.why-card p {
    font-size: .83rem;
    line-height: 1.7;
    color: var(--muted);
    margin: 0
}

/* FEATURED */
.featured-section {
    padding: 0 0 110px;
    background: #fff
}

.featured-rental {
    background: linear-gradient(125deg, var(--dark), #2a322e);
    color: #fff;
    border-radius: 32px;
    padding: 70px;
    position: relative;
    overflow: hidden
}

.featured-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 50px 50px
}

.featured-rental h2 {
    color: #fff
}

.featured-rental h2 span {
    color: #63e3a0
}

.featured-rental p {
    color: #bdc7c1;
    line-height: 1.75;
    max-width: 650px;
    margin-bottom: 28px
}

.featured-image {
    height: 300px;
    border-radius: 23px;
    background: #3b4540;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08)
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

/* CONTACT */
.contact-section {
    background: #f4f7f5
}

.contact-panel {
    background: var(--dark);
    border-radius: 28px;
    color: #fff;
    overflow: hidden;
    box-shadow: var(--shadow)
}

.contact-panel-top {
    padding: 34px 34px 25px;
    background: linear-gradient(135deg, #202522, #303934)
}

.contact-tag {
    color: #63e3a0;
    font-size: .62rem;
    font-weight: 900;
    letter-spacing: .15em
}

.contact-panel h3 {
    font-size: 1.8rem;
    line-height: 1.1;
    margin: 14px 0 12px;
    font-weight: 900
}

.contact-panel p {
    color: #aeb8b2;
    line-height: 1.7;
    font-size: .84rem;
    margin: 0
}

.contact-list {
    padding: 10px 34px 30px
}

.contact-list>div {
    display: flex;
    gap: 13px;
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.contact-list>div:last-child {
    border-bottom: 0
}

.contact-list i {
    color: #63e3a0;
    margin-top: 3px
}

.contact-list small,
.contact-list strong,
.contact-list a {
    display: block
}

.contact-list small {
    color: #7e8b84;
    font-size: .58rem;
    font-weight: 900;
    letter-spacing: .13em;
    margin-bottom: 3px
}

.contact-list strong,
.contact-list a {
    color: #fff;
    font-size: .83rem;
    font-weight: 700
}

.contact-panel-action {
    padding: 0 34px 34px
}

.contact-panel-action .btn {
    width: 100%;
    border-radius: 11px;
    font-weight: 800
}

.rental-form {
    background: #fff;
    border-radius: 28px;
    padding: 34px;
    box-shadow: var(--shadow)
}

.form-header {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: end;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid #edf0ee
}

.form-header span {
    font-size: .75rem;
    letter-spacing: .15em;
    font-weight: 900;
    color: var(--dark)
}

.form-header small {
    font-size: .65rem;
    color: #939c97
}

.form-label {
    font-size: .72rem;
    font-weight: 900;
    color: #4d5752
}

.form-control,
.form-select {
    border-radius: 11px;
    border: 1px solid #dce3df;
    padding: 12px 14px;
    font-size: .85rem
}

.form-control:focus,
.form-select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 .2rem rgba(0, 191, 99, .1)
}

.product-multiselect {
    position: relative;
}

.product-multiselect-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #6f7973;
    background: #fff;
    text-align: left;
}

.product-multiselect-toggle i {
    color: var(--green);
    transition: transform .2s ease;
}

.product-multiselect.open .product-multiselect-toggle i {
    transform: rotate(180deg);
}

.product-multiselect-menu {
    position: absolute;
    top: calc(100% + 7px);
    left: 0;
    right: 0;
    z-index: 20;
    display: none;
    max-height: 310px;
    overflow-y: auto;
    padding: 12px;
    border: 1px solid #dce3df;
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 16px 35px rgba(20, 30, 25, .14);
}

.product-multiselect.open .product-multiselect-menu {
    display: block;
}

.product-multiselect-menu fieldset {
    border: 0;
    padding: 0;
    margin: 0;
}

.product-multiselect-menu fieldset + fieldset {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #edf0ee;
}

.product-multiselect-menu legend {
    float: none;
    width: auto;
    padding: 0;
    margin: 0 0 5px;
    color: var(--green);
    font-size: .62rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product-multiselect-menu label {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 7px 5px;
    border-radius: 7px;
    color: #4d5752;
    font-size: .78rem;
    cursor: pointer;
}

.product-multiselect-menu label:hover {
    background: #f4f9f6;
}

.product-multiselect-menu input {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    accent-color: var(--green);
}

@media (max-width: 575px) {
    .product-multiselect-menu {
        position: fixed;
        top: auto;
        left: 15px;
        right: 15px;
        bottom: 15px;
        max-height: 65vh;
    }
}

/* =========================================================
   GREENSTREAM PRODUCT CATEGORY TABS
========================================================= */

.product-tabs-wrap {
    margin: 42px 0 35px;
}

.product-tabs {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 14px;
    max-width: 850px;
    margin: 0 auto;
}

.product-tab {
    position: relative;
    flex: 1;
    min-height: 88px;

    display: flex;
    align-items: center;
    gap: 15px;

    padding: 15px 20px;

    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 18px;

    background: rgba(255, 255, 255, .75);
    color: #202622;

    text-align: left;
    cursor: pointer;

    overflow: hidden;

    transition:
        transform .35s ease,
        border-color .35s ease,
        background .35s ease,
        box-shadow .35s ease;
}

.product-tab::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 3px;

    background: linear-gradient(90deg,
            #00BF63,
            #00A957);

    transform: scaleX(0);
    transform-origin: left;

    transition: transform .4s ease;
}

.product-tab:hover {
    transform: translateY(-4px);

    border-color: rgba(0, 191, 99, .35);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, .08);
}

.product-tab.active {
    background:
        linear-gradient(135deg,
            rgba(0, 191, 99, .10),
            rgba(255, 255, 255, .95));

    border-color: rgba(0, 191, 99, .45);

    box-shadow:
        0 15px 40px rgba(0, 191, 99, .10);
}

.product-tab.active::before {
    transform: scaleX(1);
}


/* TAB ICON */

.product-tab .tab-icon {
    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    display: grid;
    place-items: center;

    border-radius: 15px;

    color: #00BF63;

    background: rgba(0, 191, 99, .09);
    border: 1px solid rgba(0, 191, 99, .15);

    font-size: 21px;

    transition:
        transform .35s ease,
        background .35s ease,
        color .35s ease;
}

.product-tab:hover .tab-icon {
    transform: rotate(-5deg) scale(1.05);
}

.product-tab.active .tab-icon {
    color: #fff;
    background: #00BF63;
}


/* TAB TEXT */

.product-tab .tab-content {
    display: flex;
    flex-direction: column;
    gap: 4px;

    min-width: 0;
}

.product-tab .tab-content strong {
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
}

.product-tab .tab-content small {
    color: #7A827D;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .3px;
}


/* ARROW */

.product-tab .tab-arrow {
    margin-left: auto;

    color: #A2AAA5;
    font-size: 15px;

    transition:
        transform .35s ease,
        color .35s ease;
}

.product-tab:hover .tab-arrow,
.product-tab.active .tab-arrow {
    color: #00BF63;
    transform: translate(3px, -3px);
}


/* =========================================================
   PRODUCT CATEGORY TRANSITION
========================================================= */

.product-carousel {
    transition:
        opacity .25s ease,
        transform .35s ease;
}

.product-carousel.category-changing {
    opacity: 0;
    transform: translateY(12px);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .product-tabs-wrap {
        margin: 30px 0 25px;
    }

    .product-tabs {
        flex-direction: column;
        gap: 10px;
    }

    .product-tab {
        width: 100%;
        min-height: 76px;
        padding: 12px 14px;
    }

    .product-tab .tab-icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        border-radius: 13px;
        font-size: 18px;
    }

    .product-tab .tab-content strong {
        font-size: 13px;
    }

    .product-tab .tab-content small {
        font-size: 9px;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .product-tab,
    .product-tab *,
    .product-carousel {
        transition: none !important;
    }

}

/* =========================================================
   GREENSTREAM PREMIUM FOOTER
========================================================= */

.gs-footer {
    --gs-green: #00BD5F;
    --gs-red: #E7123C;
    --gs-dark: #666666;
    --gs-black: #111513;
    --gs-border: rgba(255, 255, 255, 0.10);

    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 15%,
            rgba(0, 189, 95, 0.10),
            transparent 30%),
        radial-gradient(circle at 85% 75%,
            rgba(231, 18, 60, 0.07),
            transparent 28%),
        #111513;

    color: #fff;
    padding: 90px 0 25px;
}


/* =========================================================
   ANIMATED BACKGROUND
========================================================= */

.gs-footer-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.gs-footer-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, .025) 1px,
            transparent 1px);

    background-size: 55px 55px;

    mask-image: linear-gradient(to bottom,
            transparent,
            black 20%,
            black 80%,
            transparent);

    animation: footerGridMove 18s linear infinite;
}

@keyframes footerGridMove {

    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(55px);
    }
}


.gs-footer-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(3px);
    opacity: .15;
}

.gs-orb-green {
    width: 300px;
    height: 300px;

    background: var(--gs-green);

    left: -180px;
    top: 280px;

    animation: footerOrbGreen 9s ease-in-out infinite;
}

.gs-orb-red {
    width: 220px;
    height: 220px;

    background: var(--gs-red);

    right: -120px;
    top: 100px;

    animation: footerOrbRed 11s ease-in-out infinite;
}

@keyframes footerOrbGreen {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(80px, -35px);
    }
}

@keyframes footerOrbRed {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-70px, 50px);
    }
}


/* =========================================================
   CTA
========================================================= */

.gs-footer-cta {
    position: relative;
    overflow: hidden;

    min-height: 310px;

    display: flex;
    align-items: center;

    padding: 55px 65px;

    margin-bottom: 90px;

    border: 1px solid rgba(255, 255, 255, .12);

    border-radius: 30px;

    background:
        linear-gradient(120deg,
            rgba(255, 255, 255, .08),
            rgba(255, 255, 255, .025));

    backdrop-filter: blur(15px);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, .30);
}


.gs-footer-cta::before {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    background: var(--gs-green);

    filter: blur(100px);

    opacity: .12;

    right: 30%;
    top: -160px;
}


.gs-footer-label {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #67e7a4;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 18px;
}


.label-line {
    width: 35px;
    height: 2px;

    background: var(--gs-red);

    display: inline-block;
}


.gs-cta-content {
    position: relative;
    z-index: 3;

    max-width: 700px;
}


.gs-cta-content h2 {
    color: #fff;

    font-size: clamp(2.2rem,
            4vw,
            4rem);

    font-weight: 800;

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 18px;
}


.gs-cta-content h2 span {
    color: var(--gs-green);
}


.gs-cta-content p {
    max-width: 600px;

    color: #aeb7b2;

    font-size: 16px;

    line-height: 1.7;

    margin-bottom: 28px;
}


.gs-footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    padding: 7px 8px 7px 22px;

    color: #fff;

    background: var(--gs-green);

    border-radius: 50px;

    font-weight: 700;

    transition: .35s ease;
}


.gs-footer-cta-btn:hover {
    color: #fff;

    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(0, 189, 95, .25);
}


.cta-arrow {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #fff;

    color: var(--gs-green);

    transition: .35s ease;
}


.gs-footer-cta-btn:hover .cta-arrow {
    transform: rotate(45deg);
}


/* =========================================================
   CTA DECORATION
========================================================= */

.gs-cta-decoration {
    position: absolute;

    width: 430px;
    height: 430px;

    right: -20px;
    top: -60px;
}


.gs-ring {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, .10);

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);
}


.ring-one {
    width: 220px;
    height: 220px;

    border-color: rgba(0, 189, 95, .35);

    animation: ringRotate 14s linear infinite;
}


.ring-two {
    width: 310px;
    height: 310px;

    border-color: rgba(231, 18, 60, .18);

    animation: ringRotateReverse 18s linear infinite;
}


.ring-three {
    width: 400px;
    height: 400px;

    animation: ringRotate 25s linear infinite;
}


@keyframes ringRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


@keyframes ringRotateReverse {
    from {
        transform: translate(-50%, -50%) rotate(360deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}


.gs-floating-icon {
    position: absolute;

    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    border-radius: 16px;

    background: rgba(255, 255, 255, .08);

    border: 1px solid rgba(255, 255, 255, .15);

    backdrop-filter: blur(12px);

    color: var(--gs-green);

    font-size: 20px;

    box-shadow: 0 15px 30px rgba(0, 0, 0, .2);
}


.icon-one {
    right: 55px;
    top: 65px;

    animation: floatOne 4s ease-in-out infinite;
}


.icon-two {
    right: 280px;
    top: 170px;

    color: var(--gs-red);

    animation: floatTwo 5s ease-in-out infinite;
}


.icon-three {
    right: 80px;
    bottom: 55px;

    animation: floatThree 4.5s ease-in-out infinite;
}


@keyframes floatOne {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}


@keyframes floatTwo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(12px);
    }
}


@keyframes floatThree {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-12px) rotate(8deg);
    }
}


/* =========================================================
   MAIN FOOTER
========================================================= */

.gs-footer-main {
    display: grid;

    grid-template-columns:
        1.7fr .8fr 1.5fr 1fr;

    gap: 55px;

    padding-bottom: 65px;

    border-bottom: 1px solid var(--gs-border);
}


/* =========================================================
   BRAND
========================================================= */

.gs-footer-logo {
    display: inline-block;

    margin-bottom: 22px;

    transition: .35s ease;
}


.gs-footer-logo img {
    width: 205px;
    height: auto;

    transition: .35s ease;
}


.gs-footer-logo:hover img {
    transform: scale(1.03);
}


.gs-footer-brand p {
    max-width: 390px;

    color: #919b95;

    line-height: 1.75;

    font-size: 14px;

    margin-bottom: 22px;
}


.gs-footer-tagline {
    display: flex;
    align-items: center;
    gap: 9px;

    color: #68736d;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.gs-footer-tagline span {
    width: 22px;
    height: 2px;

    background: var(--gs-red);
}


/* =========================================================
   SOCIAL
========================================================= */

.gs-socials {
    display: flex;

    gap: 10px;

    margin-top: 25px;
}


.gs-socials a {
    position: relative;

    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: #aab3ae;

    border: 1px solid rgba(255, 255, 255, .10);

    background: rgba(255, 255, 255, .025);

    transition: .35s ease;

    overflow: hidden;
}


.gs-socials a::before {
    content: "";

    position: absolute;

    width: 0;
    height: 0;

    border-radius: 50%;

    background: var(--gs-green);

    transition: .35s ease;

    z-index: 0;
}


.gs-socials a i {
    position: relative;
    z-index: 2;
}


.gs-socials a:hover {
    color: #fff;

    border-color: var(--gs-green);

    transform:
        translateY(-6px) rotate(5deg);

    box-shadow:
        0 10px 25px rgba(0, 189, 95, .18);
}


.gs-socials a:hover::before {
    width: 100%;
    height: 100%;
}


/* =========================================================
   COLUMNS
========================================================= */

.gs-footer-heading {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #fff;

    font-size: 14px;

    font-weight: 800;

    margin-bottom: 22px;
}


.gs-footer-heading span {
    color: var(--gs-green);

    font-size: 10px;

    font-weight: 900;
}


.gs-footer-column ul {
    list-style: none;

    padding: 0;
    margin: 0;
}


.gs-footer-column li {
    margin-bottom: 11px;
}


.gs-footer-column li a {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 10px;

    color: #858f89;

    font-size: 13px;

    line-height: 1.5;

    transition: .3s ease;
}


.gs-footer-column li a i {
    opacity: 0;

    color: var(--gs-green);

    font-size: 11px;

    transform:
        translate(-8px, 8px);

    transition: .3s ease;
}


.gs-footer-column li a:hover {
    color: #fff;

    transform: translateX(5px);
}


.gs-footer-column li a:hover i {
    opacity: 1;

    transform:
        translate(0, 0);
}


/* =========================================================
   CONTACT
========================================================= */

.gs-contact-list {
    display: grid;

    gap: 14px;
}


.gs-contact-item {
    display: flex;

    align-items: center;

    gap: 12px;

    color: #858f89;

    transition: .3s ease;
}


.gs-contact-item:hover {
    color: #fff;

    transform: translateX(5px);
}


.contact-icon {
    width: 39px;
    height: 39px;

    flex: 0 0 auto;

    display: grid;
    place-items: center;

    border-radius: 11px;

    background: rgba(0, 189, 95, .08);

    border: 1px solid rgba(0, 189, 95, .15);

    color: var(--gs-green);

    transition: .3s ease;
}


.gs-contact-item:hover .contact-icon {
    color: #fff;

    background: var(--gs-green);

    transform: rotate(-8deg);
}


.gs-contact-item small {
    display: block;

    color: #5f6963;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 3px;
}


.gs-contact-item strong {
    display: block;

    color: #aab2ad;

    font-size: 12px;

    font-weight: 600;
}


/* =========================================================
   BOTTOM
========================================================= */

.gs-footer-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding-top: 22px;

    color: #5f6963;

    font-size: 10px;
}


.gs-copyright {
    display: flex;

    align-items: center;

    gap: 8px;
}


.copyright-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--gs-green);

    box-shadow:
        0 0 0 5px rgba(0, 189, 95, .08);

    animation: copyrightPulse 2s infinite;
}


@keyframes copyrightPulse {

    0%,
    100% {
        box-shadow:
            0 0 0 4px rgba(0, 189, 95, .08);
    }

    50% {
        box-shadow:
            0 0 0 8px rgba(0, 189, 95, .02);
    }
}


.gs-bottom-links {
    display: flex;

    gap: 20px;
}


.gs-bottom-links a {
    color: #5f6963;

    transition: .3s ease;
}


.gs-bottom-links a:hover {
    color: var(--gs-green);
}


.gs-footer-credit {
    color: #6c766f;

    text-align: right;
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.gs-footer-cta,
.gs-footer-main,
.gs-footer-bottom {
    opacity: 0;
    transform: translateY(35px);

    animation: footerReveal .9s ease forwards;
}


.gs-footer-cta {
    animation-delay: .1s;
}


.gs-footer-main {
    animation-delay: .25s;
}


.gs-footer-bottom {
    animation-delay: .4s;
}


@keyframes footerReveal {

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .gs-footer-main {
        grid-template-columns:
            1.5fr 1fr 1.4fr;

        gap: 40px;
    }

    .gs-footer-brand {
        grid-column: span 3;
    }

}


@media (max-width: 991px) {

    .gs-footer {
        padding-top: 70px;
    }

    .gs-footer-cta {
        padding: 45px;
    }

    .gs-cta-decoration {
        opacity: .45;
        right: -120px;
    }

    .gs-footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .gs-footer-brand {
        grid-column: span 2;
    }

    .gs-products-column {
        grid-column: span 1;
    }

}


@media (max-width: 767px) {

    .gs-footer {
        padding-top: 55px;
    }

    .gs-footer-cta {
        padding: 38px 25px;
        min-height: 350px;
        border-radius: 24px;
    }

    .gs-cta-content h2 {
        font-size: 2.3rem;

        letter-spacing: -1px;
    }

    .gs-cta-decoration {
        width: 300px;
        height: 300px;

        right: -140px;
        bottom: -60px;

        top: auto;

        opacity: .25;
    }

    .gs-footer-main {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .gs-footer-brand,
    .gs-products-column {
        grid-column: span 1;
    }

    .gs-footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 12px;
    }

    .gs-footer-credit {
        text-align: left;
    }

}


@media (max-width: 480px) {

    .gs-footer-cta {
        padding: 32px 20px;
    }

    .gs-cta-content h2 {
        font-size: 2rem;
    }

    .gs-footer-logo img {
        width: 175px;
    }

    .gs-footer-bottom {
        font-size: 9px;
    }

    .gs-bottom-links {
        flex-wrap: wrap;

        gap: 12px;
    }


}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .75s ease, transform .75s cubic-bezier(.2, .7, .2, 1)
}

.reveal.is-visible {
    opacity: 1;
    transform: none
}

.reveal-delay {
    transition-delay: .12s
}

.reveal-delay-2 {
    transition-delay: .22s
}

.reveal-delay-3 {
    transition-delay: .32s
}

/* RESPONSIVE */
@media(max-width:1199px) {
    .hero-section h1 {
        font-size: 4.7rem
    }

    .product-carousel {
        padding: 0 45px
    }

    .hero-product-stage {
        min-height: 520px
    }

    .hero-image-frame {
        height: 490px;
        width: min(430px, 80vw)
    }
}

@media(max-width:991px) {
    .navbar .nav-cta {
        margin: 10px 0 8px
    }

    .navbar-collapse {
        padding-top: 12px
    }

    .hero-section {
        padding-top: 140px;
        min-height: auto
    }

    .hero-section h1 {
        font-size: 4rem
    }

    .hero-product-stage {
        min-height: 500px
    }

    .section-heading {
        display: block
    }

    .section-heading>p {
        margin-top: 18px
    }

    .featured-rental {
        padding: 55px 35px
    }
}

@media(max-width:767px) {
    .gs-header-logo img {
        width: 165px;
        max-height: 62px
    }

    .hero-section {
        padding: 125px 0 75px
    }

    .hero-section h1 {
        font-size: 3rem
    }

    .hero-copy {
        font-size: .98rem
    }

    .hero-micro {
        display: grid;
        gap: 7px
    }

    .hero-product-stage {
        min-height: 410px;
        margin-top: 10px
    }

    .hero-image-frame {
        height: 390px;
        border-width: 7px;
        border-radius: 27px
    }

    .ring-a {
        width: 390px;
        height: 390px
    }

    .ring-b {
        width: 320px;
        height: 320px
    }

    .floating-rental-card {
        padding: 10px 12px
    }

    .card-top {
        right: -2px;
        top: 45px
    }

    .card-bottom {
        left: -4px;
        bottom: 42px
    }

    .scroll-cue {
        display: none
    }

    .rental-intro {
        padding: 80px 0
    }

    .rental-process {
        padding: 25px
    }

    .process-line {
        left: 51px
    }

    .process-item {
        grid-template-columns: 42px 1fr
    }

    .process-item>span {
        width: 42px;
        height: 42px
    }

    .section-padding {
        padding: 78px 0
    }

    h2 {
        font-size: 2.5rem
    }

    .product-carousel {
        padding: 0 28px
    }

    .product-slide-row {
        gap: 0
    }

    .product-col {
        width: 100%
    }

    .product-image {
        height: 280px
    }

    .featured-rental {
        padding: 45px 24px
    }

    .featured-image {
        height: 230px
    }

    .rental-form {
        padding: 23px
    }

    .form-header {
        display: block
    }

    .form-header small {
        display: block;
        margin-top: 5px
    }
}

@media(max-width:575px) {
    .hero-section h1 {
        font-size: 2.6rem
    }

    .hero-actions .btn {
        width: 100%
    }

    .hero-product-stage {
        min-height: 360px
    }

    .hero-image-frame {
        height: 350px
    }

    .ring-a {
        width: 340px;
        height: 340px
    }

    .ring-b {
        width: 275px;
        height: 275px
    }

    .floating-rental-card {
        transform: scale(.9)
    }

    .product-carousel {
        padding: 0 10px
    }

    .product-control {
        width: 38px
    }

    .control-circle {
        width: 38px;
        height: 38px
    }

    .product-slide-row {
        padding: 0 18px
    }

    .footer-bottom {
        display: block
    }

    .footer-bottom span {
        display: block;
        margin-top: 6px
    }
}

@media(prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important
    }
}

.product-slide-row {
    display: flex;
    gap: 28px;
    padding: 0 10px;
}

.product-col {
    flex: 1;
    min-width: 0;
}

.product-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: .35s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.product-image {
    position: relative;
    height: 260px;
    background: #eef2ef;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-image.image-placeholder img {
    display: none;
}

.product-image .placeholder-content {
    display: none;
}

.product-image.image-placeholder .placeholder-content {
    display: flex;
}

.product-number {
    position: absolute;
    left: 16px;
    top: 16px;
    background: rgba(32, 37, 34, .85);
    color: #fff;
    font-size: .7rem;
    font-weight: 900;
    padding: 5px 10px;
    border-radius: 8px;
}

.rental-tag {
    position: absolute;
    right: 16px;
    top: 16px;
    background: var(--green);
    color: #fff;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .06em;
    padding: 6px 10px;
    border-radius: 100px;
}

.product-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.product-category {
    font-size: .62rem;
    letter-spacing: .12em;
    font-weight: 800;
    color: var(--green);
}

.product-body h3 {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--dark);
    margin: 0;
}

.product-body p {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-top: 14px;
    border-top: 1px solid #edf0ee;
}

.product-meta small {
    font-size: .6rem;
    letter-spacing: .1em;
    color: #9aa39e;
    font-weight: 800;
}

.product-link {
    color: var(--green);
    font-weight: 800;
    font-size: .8rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

@media (max-width: 767px) {
    .product-slide-row {
        flex-direction: column;
        gap: 20px;
    }
}


/* =========================================================
   PRODUCT CAROUSEL ARROWS
========================================================= */

.product-carousel {
    position: relative;
    padding: 0 70px;
}

.product-control {
    position: absolute;
    top: 42%;
    width: auto;
    opacity: 1;
    z-index: 5;
}

.product-control.carousel-control-prev {
    left: 0;
    justify-content: flex-start;
}

.product-control.carousel-control-next {
    right: 0;
    justify-content: flex-end;
}

.control-circle {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border);
    color: var(--dark);
    font-size: 1.1rem;
    box-shadow: 0 14px 34px rgba(20, 30, 25, .12);
    transition: .35s ease;
}

.product-control:hover .control-circle {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0, 191, 99, .28);
}

.product-control.carousel-control-prev:hover .control-circle {
    transform: translateY(-3px) translateX(-3px);
}

.product-control.carousel-control-next:hover .control-circle {
    transform: translateY(-3px) translateX(3px);
}

/* Carousel indicators (dots) themed */
#productIndicators {
    display: flex;
    justify-content: center;
    gap: 8px;
}

#productIndicators button {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #d5dbd7;
    border: none;
    opacity: 1;
    transition: .3s ease;
}

#productIndicators button.active {
    width: 26px;
    border-radius: 5px;
    background: var(--green);
}

@media (max-width: 767px) {
    .product-carousel {
        padding: 0 15px;
    }

    .product-control {
        position: static;
        display: inline-flex;
    }

    .control-circle {
        width: 42px;
        height: 42px;
        font-size: .95rem;
    }
}



/* =========================================================
   GREENSTREAM — PRODUCT SECTION ENHANCEMENTS
   Color-coded meta badges (liters / veg / non-veg)
   + staggered card entrance animations + richer hover states.
   Reuses --gs-green / --gs-red already defined in :root.
========================================================= */

/* ---------- Meta badges ---------- */
.product-meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .5px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.product-meta-badge:hover {
    transform: translateY(-2px);
}

.meta-liters {
    background: rgba(13, 148, 214, .1);
    color: #0d94d6;
    border: 1px solid rgba(13, 148, 214, .28);
}

.meta-veg {
    background: rgba(0, 191, 99, .1);
    color: #00a957;
    border: 1px solid rgba(0, 191, 99, .3);
    animation: metaVegPulse 2.4s ease-in-out infinite;
}

.meta-nonveg {
    background: rgba(231, 19, 61, .1);
    color: #e7133d;
    border: 1px solid rgba(231, 19, 61, .3);
    animation: metaNonVegPulse 2.4s ease-in-out infinite;
}

.meta-default {
    background: rgba(13, 148, 214, .1);
    color: #0d94d6;
    border: 1px solid rgba(13, 148, 214, .28);
}

.meta-mark-icon {
    font-size: 12px;
}

/* Classic Indian food-safety mark: a square outline with a colored dot (veg)
   or triangle (non-veg) inside, echoing real packaging symbols. */
.meta-mark {
    width: 13px;
    height: 13px;
    flex: 0 0 auto;
    border-radius: 3px;
    border: 1.6px solid currentColor;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.veg-mark::after {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.nonveg-mark::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 6.5px solid currentColor;
}

@keyframes metaVegPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 191, 99, .25);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(0, 191, 99, 0);
    }
}

@keyframes metaNonVegPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(231, 19, 61, .25);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(231, 19, 61, 0);
    }
}

/* ---------- Product card entrance animation ---------- */
.product-col {
    opacity: 0;
}

.product-col.animate-in {
    animation: productCardIn .65s cubic-bezier(.16, 1, .3, 1) forwards;
}

.product-col:nth-child(1).animate-in {
    animation-delay: .05s;
}

.product-col:nth-child(2).animate-in {
    animation-delay: .17s;
}

.product-col:nth-child(3).animate-in {
    animation-delay: .29s;
}

@keyframes productCardIn {
    from {
        opacity: 0;
        transform: translateY(28px) scale(.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ---------- Richer hover state on product cards ---------- */
.product-card {
    transition: transform .4s cubic-bezier(.16, 1, .3, 1), box-shadow .4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, .12);
}

.product-card .product-image .placeholder-content i,
.product-card .product-image .bi-box-seam {
    transition: transform .5s cubic-bezier(.16, 1, .3, 1);
}

.product-card:hover .product-image .placeholder-content i {
    transform: scale(1.12) rotate(-4deg);
}

.product-card .product-link i {
    display: inline-block;
    transition: transform .3s ease;
}

.product-card:hover .product-link i {
    transform: translate(3px, -3px);
}

/* ---------- Smoother category tab switch ---------- */
.product-carousel {
    transition: opacity .25s ease, transform .25s ease;
}

#productCarousel.category-changing {
    opacity: 0;
    transform: translateY(6px);
}

@media (prefers-reduced-motion: reduce) {

    .product-col,
    .product-col.animate-in,
    .meta-veg,
    .meta-nonveg,
    .product-card,
    .product-card:hover,
    #productCarousel.category-changing {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* =========================================================
   GREENSTREAM — PER-PRODUCT IMAGE CAROUSEL
   Append this block to css/style.css
   (works with the .product-image markup rendered by script.js)
========================================================= */

.product-image .pi-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.pi-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity .7s ease, transform 1.1s cubic-bezier(.16, 1, .3, 1);
    pointer-events: none;
}

.pi-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
    pointer-events: auto;
}

.pi-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Nav arrows — hidden until hover, like the main carousel controls */
.pi-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(32, 37, 34, .1);
    color: var(--dark);
    font-size: .85rem;
    opacity: 0;
    z-index: 6;
    transition: opacity .3s ease, transform .3s ease, background .3s ease, color .3s ease;
}

.product-card:hover .pi-nav {
    opacity: 1;
}

.pi-nav.pi-prev {
    left: 12px;
}

.pi-nav.pi-next {
    right: 12px;
}

.pi-nav:hover {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}

/* Dot indicators */
.pi-dots {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 6;
}

.pi-dots button {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .55);
    box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
    transition: width .3s ease, background .3s ease;
}

.pi-dots button.active {
    width: 18px;
    border-radius: 4px;
    background: #fff;
}

/* Keep number/tag above the fading slides */
.product-image .product-number,
.product-image .rental-tag {
    z-index: 7;
}

@media (max-width: 767px) {
    .pi-nav {
        opacity: .85;
        width: 30px;
        height: 30px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pi-slide {
        transition: opacity .2s linear !important;
        transform: none !important;
    }
}

/* =========================================================
   GREENSTREAM — PRODUCT SECTION ENHANCEMENTS
   Color-coded meta badges (liters / veg / non-veg)
   + staggered card entrance animations + richer hover states.
   Reuses --gs-green / --gs-red already defined in :root.
========================================================= */

/* ---------- Meta badges ---------- */
.product-meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .5px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.product-meta-badge:hover {
    transform: translateY(-2px);
}

.meta-liters {
    background: rgba(13, 148, 214, .1);
    color: #0d94d6;
    border: 1px solid rgba(13, 148, 214, .28);
}

.meta-veg {
    background: rgba(0, 191, 99, .1);
    color: #00a957;
    border: 1px solid rgba(0, 191, 99, .3);
    animation: metaVegPulse 2.4s ease-in-out infinite;
}

.meta-nonveg {
    background: rgba(231, 19, 61, .1);
    color: #e7133d;
    border: 1px solid rgba(231, 19, 61, .3);
    animation: metaNonVegPulse 2.4s ease-in-out infinite;
}

.meta-default {
    background: rgba(13, 148, 214, .1);
    color: #0d94d6;
    border: 1px solid rgba(13, 148, 214, .28);
}

.meta-mark-icon {
    font-size: 12px;
}

/* Classic Indian food-safety mark: a square outline with a colored dot (veg)
   or triangle (non-veg) inside, echoing real packaging symbols. */
.meta-mark {
    width: 13px;
    height: 13px;
    flex: 0 0 auto;
    border-radius: 3px;
    border: 1.6px solid currentColor;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.veg-mark::after {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.nonveg-mark::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 6.5px solid currentColor;
}

@keyframes metaVegPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 191, 99, .25);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(0, 191, 99, 0);
    }
}

@keyframes metaNonVegPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(231, 19, 61, .25);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(231, 19, 61, 0);
    }
}

/* ---------- Product card entrance animation ---------- */
.product-col {
    opacity: 0;
}

.product-col.animate-in {
    animation: productCardIn .65s cubic-bezier(.16, 1, .3, 1) forwards;
}

.product-col:nth-child(1).animate-in {
    animation-delay: .05s;
}

.product-col:nth-child(2).animate-in {
    animation-delay: .17s;
}

.product-col:nth-child(3).animate-in {
    animation-delay: .29s;
}

@keyframes productCardIn {
    from {
        opacity: 0;
        transform: translateY(28px) scale(.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ---------- Richer hover state on product cards ---------- */
.product-card {
    transition: transform .4s cubic-bezier(.16, 1, .3, 1), box-shadow .4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, .12);
}

.product-card .product-image .placeholder-content i,
.product-card .product-image .bi-box-seam {
    transition: transform .5s cubic-bezier(.16, 1, .3, 1);
}

.product-card:hover .product-image .placeholder-content i {
    transform: scale(1.12) rotate(-4deg);
}

.product-card .product-link i {
    display: inline-block;
    transition: transform .3s ease;
}

.product-card:hover .product-link i {
    transform: translate(3px, -3px);
}

/* ---------- Smoother category tab switch ---------- */
.product-carousel {
    transition: opacity .25s ease, transform .25s ease;
}

#productCarousel.category-changing {
    opacity: 0;
    transform: translateY(6px);
}

@media (prefers-reduced-motion: reduce) {

    .product-col,
    .product-col.animate-in,
    .meta-veg,
    .meta-nonveg,
    .product-card,
    .product-card:hover,
    #productCarousel.category-changing {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}


/* Prevent image selection */
.product-image img {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

/* Prevent selection on the complete product image area */
.product-image {
    user-select: none;
    -webkit-user-select: none;
}

.featured-image {
  width: 100%;
  height: 360px;
  border-radius: 24px;
  overflow: hidden;
  background: #f3f5f2;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ================================
   COMMERCIAL KITCHEN - 4 CARD SLIDER
================================ */

.products-slider {
    overflow: hidden;
    width: 100%;
}

.products-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    transition: transform 0.5s ease;
    width: 100%;
}

.products-track .product-card {
    flex: 0 0 calc((100% - 72px) / 4);
    width: calc((100% - 72px) / 4);
    min-width: calc((100% - 72px) / 4);
}

/* Tablet */
@media (max-width: 991px) {
    .products-track {
        gap: 20px;
    }

    .products-track .product-card {
        flex: 0 0 calc((100% - 20px) / 2);
        width: calc((100% - 20px) / 2);
        min-width: calc((100% - 20px) / 2);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .products-track {
        gap: 0;
    }

    .products-track .product-card {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
    }
}

/* =========================================================
   GREENSTREAM PROFESSIONAL TOP IMAGE CAROUSEL
   Replaces the old hero section
========================================================= */
.rental-visual-carousel {
    position: relative;
    margin-top: 72px;
    background: #101512;
    overflow: hidden;
}

.rental-visual-carousel .carousel,
.rental-visual-carousel .carousel-inner,
.rental-visual-carousel .carousel-item {
    height: min(680px, calc(100vh - 72px));
    min-height: 540px;
}

.rental-visual-carousel .carousel-item > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
}

.rental-visual-carousel .carousel-item.active > img {
    animation: rentalImageZoom 5.2s ease-out both;
}

@keyframes rentalImageZoom {
    from { transform: scale(1.06); }
    to { transform: scale(1); }
}

.rental-slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(12, 18, 15, .86) 0%, rgba(12, 18, 15, .56) 42%, rgba(12, 18, 15, .10) 76%),
        linear-gradient(0deg, rgba(12, 18, 15, .48), transparent 45%);
}

.rental-slide-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -46%);
    width: 100%;
    color: #fff;
    z-index: 3;
}

.rental-slide-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #72e6ab;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .19em;
}

.rental-slide-kicker::before {
    content: "";
    width: 34px;
    height: 2px;
    border-radius: 4px;
    background: #E7133D;
}

.rental-slide-content h1 {
    max-width: 760px;
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(2.8rem, 6vw, 5.8rem);
    line-height: .96;
    font-weight: 900;
    letter-spacing: -.06em;
}

.rental-slide-content h1 span {
    color: #00BF63;
}

.rental-slide-content p {
    max-width: 610px;
    margin: 0 0 30px;
    color: rgba(255,255,255,.82);
    font-size: 1rem;
    line-height: 1.75;
}

.rental-visual-carousel .carousel-control-prev,
.rental-visual-carousel .carousel-control-next {
    width: 74px;
    z-index: 5;
}

.rental-visual-carousel .carousel-control-prev-icon,
.rental-visual-carousel .carousel-control-next-icon {
    width: 48px;
    height: 48px;
    padding: 13px;
    border-radius: 50%;
    background-color: rgba(255,255,255,.14);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.18);
}

.rental-visual-carousel .carousel-indicators {
    z-index: 6;
    justify-content: flex-start;
    margin: 0;
    left: max(24px, calc((100% - 1320px) / 2));
    bottom: 32px;
}

.rental-visual-carousel .carousel-indicators button {
    width: 38px;
    height: 3px;
    margin: 0 5px 0 0;
    border: 0;
    border-radius: 20px;
    opacity: .45;
}

.rental-visual-carousel .carousel-indicators button.active {
    width: 72px;
    opacity: 1;
    background: #00BF63;
}

@media (max-width: 767px) {
    .rental-visual-carousel {
        margin-top: 72px;
    }

    .rental-visual-carousel .carousel,
    .rental-visual-carousel .carousel-inner,
    .rental-visual-carousel .carousel-item {
        height: 590px;
        min-height: 590px;
    }

    .rental-slide-overlay {
        background:
            linear-gradient(90deg, rgba(12,18,15,.84), rgba(12,18,15,.34)),
            linear-gradient(0deg, rgba(12,18,15,.58), transparent 60%);
    }

    .rental-slide-content {
        top: 48%;
        padding: 0 22px;
    }

    .rental-slide-content h1 {
        font-size: clamp(2.45rem, 12vw, 4rem);
    }

    .rental-slide-content p {
        font-size: .9rem;
    }

    .rental-visual-carousel .carousel-control-prev,
    .rental-visual-carousel .carousel-control-next {
        width: 48px;
    }

    .rental-visual-carousel .carousel-indicators {
        left: 22px;
        bottom: 20px;
    }
}

/* Make Innovative Rental Products visually prominent */
.product-tab[data-product-category="innovative"] {
    border-color: rgba(0,191,99,.25);
}

.product-tab[data-product-category="innovative"] .tab-icon {
    background: linear-gradient(135deg, rgba(0,191,99,.11), rgba(231,19,61,.07));
}

.product-tab[data-product-category="innovative"].active .tab-icon {
    background: #00BF63;
    color: #fff;
}


/* =========================================================
   GREENSTREAM — FINAL UI POLISH
   Cleaner product tabs + standard larger header
   Product card carousel is manual; image carousels remain active.
========================================================= */

.navbar { min-height: 88px; padding: 14px 0; }
.gs-header-logo img { width: 220px; max-height: 78px; }
.nav-link { font-size: .92rem; padding: 10px 14px !important; }
.navbar .nav-cta { padding: 12px 22px; font-size: .9rem; border-radius: 12px; }
.navbar.scrolled { min-height: 76px; padding: 9px 0; }
.navbar.scrolled .gs-header-logo img { width: 195px; max-height: 70px; }

.product-tabs-wrap { margin: 34px 0 42px; }
.product-tabs {
    max-width: 1120px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 6px;
    margin: 0 auto;
    background: #f5f8f6;
    border: 1px solid rgba(32,37,34,.08);
    border-radius: 18px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}
.product-tab {
    min-height: 70px;
    padding: 12px 15px;
    gap: 11px;
    border: 1px solid transparent;
    border-radius: 13px;
    background: transparent;
    box-shadow: none;
    transform: none !important;
}
.product-tab::before { display: none; }
.product-tab:hover {
    background: rgba(255,255,255,.85);
    border-color: rgba(0,191,99,.16);
    box-shadow: none;
}
.product-tab.active {
    background: #fff;
    border-color: rgba(0,191,99,.28);
    box-shadow: 0 8px 24px rgba(20,30,25,.08);
}
.product-tab .tab-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    border-radius: 12px;
    font-size: 18px;
}
.product-tab .tab-content { gap: 2px; }
.product-tab .tab-content strong { font-size: 13px; line-height: 1.25; }
.product-tab .tab-content small { font-size: 9px; line-height: 1.35; }
.product-tab .tab-arrow { font-size: 13px; }

.product-carousel { padding: 0 62px; }
.product-slide-row { gap: 22px; padding: 0 4px; }
.product-card { border-radius: 20px; }
.product-image { height: 275px; }
#productCarousel .carousel-item { transition: transform .55s ease-in-out; }
#productIndicators { gap: 7px; }
#productIndicators button {
    width: 7px;
    height: 7px;
    margin: 0 2px;
    border: 0;
    border-radius: 50%;
    background: #cbd3ce;
    opacity: 1;
}
#productIndicators button.active {
    width: 24px;
    border-radius: 10px;
    background: var(--green);
}

@media (max-width: 991px) {
    .navbar { min-height: 82px; padding: 12px 0; }
    .gs-header-logo img { width: 205px; max-height: 72px; }
    .product-tabs { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .navbar { min-height: 74px; padding: 9px 0; }
    .gs-header-logo img,
    .navbar.scrolled .gs-header-logo img { width: 175px; max-height: 62px; }
    .product-tabs-wrap { margin: 28px 0 30px; }
    .product-tabs {
        grid-template-columns: 1fr;
        gap: 7px;
        padding: 5px;
        border-radius: 15px;
    }
    .product-tab { min-height: 64px; padding: 10px 12px; }
    .product-carousel { padding: 0 36px; }
    .product-slide-row { padding: 0; }
    .product-image { height: 280px; }
}
