/* =========================================================
   PINGGANG GUNUNG
   Rental Camping & Outdoor
   ========================================================= */

/* ---------- VARIABLES ---------- */
:root {
    --forest-green: #2F4F3E;
    --dark-green: #1F352A;
    --sage: #718C78;
    --cream: #F5F1E8;
    --warm-white: #FCFBF7;
    --brown: #8B6F47;
    --dark-text: #26332B;
    --muted-text: #6B756E;

    --white: #FFFFFF;
    --line: rgba(47, 79, 62, 0.12);
    --line-dark: rgba(255, 255, 255, 0.14);

    --shadow-sm: 0 8px 24px rgba(31, 53, 42, 0.07);
    --shadow-md: 0 18px 45px rgba(31, 53, 42, 0.10);
    --shadow-lg: 0 28px 70px rgba(31, 53, 42, 0.14);

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --container: 1200px;

    --font-body: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-heading: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- RESET ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--warm-white);
    color: var(--dark-text);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

::selection {
    background: var(--forest-green);
    color: var(--white);
}

/* ---------- UTILITIES ---------- */
.container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--sage);
    font-family: var(--font-heading);
    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    line-height: 1.2;
}

.section-kicker.light {
    color: rgba(255, 255, 255, 0.62);
}

.section-intro h2,
.section-heading-row h2 {
    margin: 0;
    color: var(--dark-green);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 1.08;
}

.section-intro h2 span,
.section-heading-row h2 span {
    color: var(--sage);
}

.section-intro p {
    max-width: 620px;
    margin: 18px auto 0;
    color: var(--muted-text);
}

.centered {
    margin-inline: auto;
    text-align: center;
}

.centered p {
    max-width: 620px;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition:
        transform 0.25s var(--ease),
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease;
}

/* ---------- CATALOG ORDER CONTROL ---------- */
.catalog-order-control {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.catalog-quantity {
    display: inline-flex;
    align-items: center;
    gap: 0;
    height: 32px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--warm-white);
    overflow: hidden;
    margin: 0;
}

.catalog-qty-minus,
.catalog-qty-plus {
    display: grid;
    width: 28px;
    height: 28px;
    padding: 0;
    place-items: center;
    border: 0;
    background: transparent;
    color: var(--forest-green);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.catalog-qty-minus:hover,
.catalog-qty-plus:hover {
    background: var(--cream);
    color: var(--dark-green);
}

.catalog-qty-value {
    min-width: 24px;
    color: var(--dark-green);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    text-align: center;
    padding: 0 6px;
}

.catalog-order-btn {
    background: var(--forest-green);
    color: var(--white);
    border: 1px solid transparent;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    min-height: 32px;
    padding: 6px 12px;
    cursor: pointer;
    transition:
        transform 0.25s var(--ease),
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.catalog-order-btn:hover {
    background: var(--dark-green);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(47, 79, 62, 0.18);
}

.catalog-order-btn:active {
    transform: translateY(0);
}

/* Compact for desktop */
@media (min-width: 768px) {
    .catalog-order-control {
        gap: 8px;
    }

    .catalog-quantity {
        height: 32px;
    }

    .catalog-qty-minus,
    .catalog-qty-plus {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }

    .catalog-qty-value {
        min-width: 24px;
        font-size: 0.7rem;
    }

    .catalog-order-btn {
        font-size: 0.65rem;
        padding: 6px 12px;
        min-height: 32px;
    }
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .catalog-order-control {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }

    .catalog-quantity {
        height: 34px;
    }

    .catalog-qty-minus,
    .catalog-qty-plus {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .catalog-qty-value {
        min-width: 28px;
        font-size: 0.75rem;
    }

    .catalog-order-btn {
        font-size: 0.7rem;
        padding: 7px 14px;
        min-height: 34px;
        flex-grow: 1;
        text-align: center;
    }
}

.catalog-quantity {
    display: inline-flex;
    align-items: center;
    gap: 0;
    height: 36px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--warm-white);
    overflow: hidden;
}

.catalog-qty-minus,
.catalog-qty-plus {
    display: grid;
    width: 34px;
    height: 34px;
    padding: 0;
    place-items: center;
    border: 0;
    background: transparent;
    color: var(--forest-green);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.catalog-qty-minus:hover,
.catalog-qty-plus:hover {
    background: var(--cream);
    color: var(--dark-green);
}

.catalog-qty-value {
    min-width: 28px;
    color: var(--dark-green);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
}

.catalog-order-btn {
    background: var(--forest-green);
    color: var(--white);
    border: 1px solid transparent;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 700;
    min-height: 36px;
    padding: 9px 14px;
    cursor: pointer;
    transition:
        transform 0.25s var(--ease),
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.catalog-order-btn:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(47, 79, 62, 0.18);
}

.catalog-order-btn:active {
    transform: translateY(0);
}

/* ---------- FLOATING CART BAR ---------- */
.floating-cart-bar {
    position: fixed;
    left: 50%;
    bottom: 24px;
    z-index: 1000;
    width: min(calc(100% - 32px), 520px);
    transform: translateX(-50%);
    pointer-events: none;
    animation: slideUpCart 0.3s var(--ease) both;
}

.floating-cart-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 24px;
    background: var(--dark-green);
    color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    pointer-events: auto;
}

.floating-cart-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.floating-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.floating-cart-close {
    display: grid;
    width: 28px;
    height: 28px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: transparent;
    color: var(--white);
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.floating-cart-close:hover {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.12);
}

.floating-cart-icon {
    font-size: 1.2rem;
    line-height: 1;
}

.floating-cart-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.floating-cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    line-height: 1.3;
}

.floating-cart-item-name {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.floating-cart-item-qty {
    flex-shrink: 0;
    margin-left: 12px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 0.75rem;
}

.floating-cart-item-remove {
    display: grid;
    width: 22px;
    height: 22px;
    margin-left: 10px;
    padding: 0;
    flex-shrink: 0;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    background: transparent;
    color: var(--white);
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.floating-cart-item-remove:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.14);
}

.floating-cart-btn {
    align-self: flex-end;
    padding: 10px 16px;
    font-size: 0.8rem;
    min-height: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: var(--white);
    color: var(--dark-green);
    font-weight: 700;
}

.floating-cart-btn:hover {
    background: var(--cream);
}

@keyframes slideUpCart {
    from {
        transform: translateX(-50%) translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

/* Mobile floating cart */
@media (max-width: 767px) {
    .floating-cart-bar {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
        transform: none;
    }

    .floating-cart-inner {
        padding: 16px 18px;
    }

    .nav-actions {
        gap: 5px;
    }

    .cart-nav-btn {
        width: 38px;
        height: 38px;
    }

    .floating-cart-item {
        font-size: 0.72rem;
    }

    .floating-cart-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .floating-cart-bar {
        animation: none !important;
        opacity: 1 !important;
    }
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn:focus-visible,
.nav-link:focus-visible,
.category-link:focus-visible,
.footer-column a:focus-visible,
.brand:focus-visible,
.featured-content a:focus-visible {
    outline: 3px solid rgba(113, 140, 120, 0.45);
    outline-offset: 4px;
}

.btn-primary {
    background: var(--forest-green);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(47, 79, 62, 0.18);
}

.btn-primary:hover {
    background: var(--dark-green);
    box-shadow: 0 14px 30px rgba(47, 79, 62, 0.23);
}

.btn-outline {
    border-color: rgba(47, 79, 62, 0.2);
    background: rgba(255, 255, 255, 0.45);
    color: var(--forest-green);
}

.btn-outline:hover {
    border-color: var(--forest-green);
    background: var(--cream);
}

.btn-light {
    background: var(--white);
    color: var(--dark-green);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.btn-light:hover {
    background: var(--cream);
}

.btn-ghost-light {
    border-color: rgba(255, 255, 255, 0.22);
    color: var(--white);
}

.btn-ghost-light:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

/* ---------- NAVBAR ---------- */
.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid rgba(47, 79, 62, 0.08);
    background: rgba(252, 251, 247, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    gap: 9px;
    color: var(--dark-green);
}

.brand-mark {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 12px;
    background: var(--cream);
    font-size: 1.15rem;
    transition: transform 0.3s var(--ease);
}

.brand:hover .brand-mark {
    transform: rotate(-4deg) translateY(-2px);
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.main-nav {
    display: none;
    align-items: center;
    gap: 28px;
}

.nav-link {
    position: relative;
    padding: 25px 0;
    color: var(--muted-text);
    font-size: 0.78rem;
    font-weight: 600;
    transition: color 0.25s ease;
}

.nav-link::after {
    position: absolute;
    right: 0;
    bottom: 18px;
    left: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--forest-green);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s var(--ease);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    min-height: 42px;
    padding: 10px 16px;
    font-size: 0.73rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.cart-nav-btn {
    position: relative;
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(47, 79, 62, 0.16);
    border-radius: 50%;
    background: var(--white);
    color: var(--dark-green);
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}

.cart-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(47, 79, 62, 0.14);
}

.cart-nav-count {
    position: absolute;
    top: -5px;
    right: -5px;
    display: grid;
    min-width: 19px;
    height: 19px;
    padding: 0 4px;
    place-items: center;
    border: 2px solid var(--warm-white);
    border-radius: 999px;
    background: var(--forest-green);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.62rem;
    font-weight: 800;
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    isolation: isolate;
    display: flex;
    min-height: calc(100vh - 72px);
    align-items: center;
    overflow: hidden;
    padding: 72px 0 58px;
    background:
        radial-gradient(circle at 80% 20%, rgba(113, 140, 120, 0.12), transparent 27%),
        linear-gradient(135deg, var(--warm-white) 0%, var(--cream) 100%);
}

.hero::before {
    position: absolute;
    z-index: -2;
    top: -160px;
    right: -120px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(47, 79, 62, 0.09);
    border-radius: 50%;
    content: "";
}

.hero::after {
    position: absolute;
    z-index: -2;
    right: 8%;
    bottom: -200px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(47, 79, 62, 0.07);
    border-radius: 50%;
    content: "";
}

.hero-grid {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(40px, 5vw, 64px);
}

.hero-content {
    min-width: 0;
    width: 100%;
    max-width: 680px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    padding: 8px 13px;
    border: 1px solid rgba(47, 79, 62, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    color: var(--forest-green);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.hero h1 {
    width: 100%;
    max-width: 100%;
    margin: 0;
    color: var(--dark-green);
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5.6rem);
    font-weight: 800;
    letter-spacing: -0.075em;
    line-height: 0.98;
}

.hero h1 em {
    display: block;
    color: var(--sage);
    font-style: normal;
}

.hero-description {
    max-width: 570px;
    margin: 26px 0 0;
    color: var(--muted-text);
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    line-height: 1.85;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 32px;
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 24px;
    color: var(--muted-text);
    font-size: 0.7rem;
}

.hero-note-dot {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--sage);
    box-shadow: 0 0 0 5px rgba(113, 140, 120, 0.13);
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 590px;
    justify-self: end;
}

.hero-image-frame {
    position: relative;
    overflow: hidden;
    border: 7px solid rgba(255, 255, 255, 0.72);
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
    animation: gentleFloat 7s ease-in-out infinite;
}

.hero-image-frame::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(31, 53, 42, 0.32));
    content: "";
    pointer-events: none;
}

.hero-image-frame img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.hero-image-label {
    position: absolute;
    z-index: 2;
    right: 16px;
    bottom: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 15px;
    background: rgba(31, 53, 42, 0.7);
    color: var(--white);
    backdrop-filter: blur(12px);
}

.label-icon {
    display: grid;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.14);
}

.hero-image-label strong,
.hero-image-label small {
    display: block;
}

.hero-image-label strong {
    font-family: var(--font-heading);
    font-size: 0.7rem;
}

.hero-image-label small {
    margin-top: 1px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.58rem;
}

.hero-stamp {
    position: absolute;
    z-index: 3;
    top: -17px;
    right: -12px;
    display: grid;
    width: 84px;
    height: 84px;
    place-content: center;
    border: 1px solid rgba(47, 79, 62, 0.16);
    border-radius: 50%;
    background: var(--white);
    color: var(--forest-green);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transform: rotate(8deg);
    animation: stampFloat 5s ease-in-out infinite;
}

.hero-stamp span {
    font-size: 0.45rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.hero-stamp strong {
    font-family: var(--font-heading);
    font-size: 0.62rem;
    letter-spacing: 0.06em;
}

.hero-decor {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(113, 140, 120, 0.14);
    border-radius: 50%;
    pointer-events: none;
}

.hero-decor-one {
    top: 18%;
    left: -55px;
    width: 110px;
    height: 110px;
    animation: decorativeFloat 9s ease-in-out infinite;
}

.hero-decor-two {
    right: 45%;
    bottom: 9%;
    width: 28px;
    height: 28px;
    border-color: rgba(139, 111, 71, 0.22);
    animation: decorativeFloat 6s ease-in-out infinite reverse;
}

.hero-bottom {
    position: absolute;
    right: 16px;
    bottom: 18px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(47, 79, 62, 0.45);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.hero-line {
    width: 45px;
    height: 1px;
    background: rgba(47, 79, 62, 0.2);
}

/* ---------- TRUST ---------- */
.trust-section {
    padding: 78px 0;
    background: var(--warm-white);
}

.trust-intro {
    max-width: 720px;
}

.trust-intro h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.trust-intro p {
    margin-inline: 0;
}

.feature-grid {
    display: grid;
    gap: 12px;
    margin-top: 42px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 4px 16px rgba(31, 53, 42, 0.03);
    transition:
        transform 0.35s var(--ease),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.feature-card:hover {
    border-color: rgba(47, 79, 62, 0.2);
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.feature-icon {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 12px;
    background: var(--cream);
    color: var(--forest-green);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    transition: transform 0.3s var(--ease);
}

.feature-card:hover .feature-icon {
    transform: scale(1.08) rotate(-3deg);
}

.feature-card h3 {
    margin: 0;
    color: var(--dark-green);
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
}

.feature-card p {
    margin: 5px 0 0;
    color: var(--muted-text);
    font-size: 0.72rem;
    line-height: 1.65;
}

/* ---------- CATEGORIES ---------- */
.categories-section {
    padding: 82px 0;
    background: var(--cream);
}

.section-heading-row {
    display: grid;
    gap: 20px;
    align-items: end;
}

.section-side-text {
    max-width: 420px;
    margin: 0;
    color: var(--muted-text);
    font-size: 0.83rem;
    line-height: 1.8;
}

.category-grid {
    display: grid;
    gap: 14px;
    margin-top: 42px;
}

.category-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(47, 79, 62, 0.11);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: 0 6px 20px rgba(31, 53, 42, 0.04);
    transition:
        transform 0.4s var(--ease),
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.category-card:hover {
    border-color: rgba(47, 79, 62, 0.2);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.category-image {
    overflow: hidden;
    height: 190px;
    background: var(--warm-white);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s var(--ease);
}

.category-card:hover .category-image img {
    transform: scale(1.045);
}

.category-body {
    position: relative;
    padding: 21px;
}

.category-number {
    position: absolute;
    top: 21px;
    right: 21px;
    color: rgba(47, 79, 62, 0.28);
    font-family: var(--font-heading);
    font-size: 0.62rem;
    font-weight: 800;
}

.category-icon {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    margin-bottom: 17px;
    border-radius: 14px;
    background: var(--cream);
    font-size: 1.1rem;
    transition: transform 0.35s var(--ease);
}

.category-card:hover .category-icon {
    transform: translateY(-3px) rotate(-3deg);
}

.category-body h3 {
    margin: 0;
    color: var(--dark-green);
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.category-body p {
    min-height: 52px;
    margin: 8px 0 18px;
    color: var(--muted-text);
    font-size: 0.72rem;
    line-height: 1.7;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--forest-green);
    font-size: 0.68rem;
    font-weight: 700;
    transition: gap 0.3s var(--ease), color 0.25s ease;
}

.category-link:hover {
    gap: 12px;
    color: var(--brown);
}

/* ---------- PACKAGE SECTION ---------- */
.package-section {
    padding: 92px 0;
    background: var(--warm-white);
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 16px;
    margin-top: 38px;
    align-items: start;
}

.package-card {
    display: flex;
    flex-direction: column;
    height: auto;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 5px 18px rgba(31, 53, 42, 0.035);
    transition:
        transform 0.38s var(--ease),
        box-shadow 0.38s ease,
        border-color 0.38s ease;
}

.package-card:hover {
    border-color: rgba(47, 79, 62, 0.2);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.package-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 210px;
    overflow: hidden;
    background: var(--warm-white);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.package-image img {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 0;
    object-fit: cover;
}

.package-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border: 1px dashed rgba(47, 79, 62, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.35);
    color: var(--sage);
    text-align: center;
}

.package-placeholder span {
    font-size: 2.4rem;
    line-height: 1;
    opacity: 0.8;
}

.package-placeholder small {
    margin-top: 6px;
    color: var(--muted-text);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.package-info {
    display: flex;
    flex-direction: column;
    padding: 17px;
}

.package-info h4 {
    margin: 0;
    color: var(--dark-green);
    font-family: var(--font-heading);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.35;
}

.package-info p {
    min-height: 24px;
    margin: 4px 0 15px;
    color: var(--muted-text);
    font-size: 0.63rem;
    line-height: 1.55;
}

.package-items-group {
    padding-top: 12px;
    border-top: 1px solid rgba(47, 79, 62, 0.08);
}

.package-label {
    display: block;
    margin-bottom: 8px;
    color: var(--sage);
    font-size: 0.54rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.package-item-list {
    display: grid;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.package-item-list li {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 7px;
    padding-left: 0;
    color: var(--muted-text);
    font-size: 0.66rem;
    line-height: 1.5;
    word-break: break-word;
}

.package-item-list li::before {
    content: '•';
    position: static;
    color: var(--forest-green);
    font-weight: 700;
    flex: 0 0 auto;
    margin-top: 1px;
}

.package-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 14px;
    padding-top: 14px;
}

.package-order-control {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.package-order-control .package-quantity {
    flex-shrink: 0;
}

.package-order-control .package-order-btn {
    flex: 0 0 auto;
    min-width: 88px;
}

.package-qty-minus,
.package-qty-plus {
    display: grid;
    width: 34px;
    height: 34px;
    padding: 0;
    place-items: center;
    border: 0;
    background: transparent;
    color: var(--forest-green);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.package-qty-minus:hover,
.package-qty-plus:hover {
    background: var(--cream);
    color: var(--dark-green);
}

.package-qty-value {
    min-width: 28px;
    color: var(--dark-green);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
}

/* ---------- CATALOG ---------- */
.catalog-section {
    padding: 92px 0;
    background: var(--warm-white);
}

.catalog-group {
    margin-top: 68px;
}

.catalog-group + .catalog-group {
    margin-top: 82px;
}

.catalog-group-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 17px;
    border-bottom: 1px solid var(--line);
}

.catalog-title-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}

.catalog-icon {
    display: grid;
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 16px;
    background: var(--cream);
    font-size: 1.25rem;
}

.catalog-label {
    display: block;
    margin-bottom: 3px;
    color: var(--sage);
    font-size: 0.57rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.catalog-group-heading h3 {
    margin: 0;
    color: var(--dark-green);
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 3vw, 1.7rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.catalog-count {
    color: var(--muted-text);
    font-size: 0.63rem;
    font-weight: 600;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 13px;
    margin-top: 20px;
}

.product-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 5px 18px rgba(31, 53, 42, 0.035);
    transition:
        transform 0.38s var(--ease),
        box-shadow 0.38s ease,
        border-color 0.38s ease;
}

.product-card:hover {
    border-color: rgba(47, 79, 62, 0.2);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.product-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 205px;
    padding: 0;
    background: var(--warm-white);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.product-image img {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 0;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.product-card:hover .product-image img {
    transform: scale(1.055);
}

.product-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 9px;
    border-radius: 999px;
    background: var(--forest-green);
    color: var(--white);
    font-size: 0.54rem;
    font-weight: 700;
}

.product-placeholder {
    flex-direction: column;
    gap: 7px;
    border-bottom: 1px dashed rgba(47, 79, 62, 0.12);
    color: var(--sage);
}

.product-placeholder > span {
    font-size: 2.1rem;
    opacity: 0.75;
}

.product-placeholder small {
    color: var(--muted-text);
    font-size: 0.6rem;
}

.product-info {
    padding: 17px;
}

.product-info h4 {
    margin: 0;
    color: var(--dark-green);
    font-family: var(--font-heading);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.35;
}

.product-info p {
    min-height: 24px;
    margin: 4px 0 15px;
    color: var(--muted-text);
    font-size: 0.63rem;
    line-height: 1.55;
}

.product-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(47, 79, 62, 0.08);
}

.price {
    color: var(--forest-green);
    font-family: var(--font-heading);
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.price small {
    margin-right: 2px;
    font-size: 0.58rem;
    font-weight: 700;
}

.price span {
    margin-left: 2px;
    color: var(--muted-text);
    font-family: var(--font-body);
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0;
}

.new-badge {
    display: inline-flex;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(139, 111, 71, 0.11);
    color: var(--brown);
    font-size: 0.54rem;
    font-weight: 700;
}

/* ---------- FEATURED PRODUCTS ---------- */
.featured-section {
    padding: 90px 0;
    background: var(--cream);
}

.featured-grid {
    display: grid;
    gap: 15px;
    margin-top: 42px;
}

.featured-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: 0 7px 24px rgba(31, 53, 42, 0.05);
    transition:
        transform 0.4s var(--ease),
        box-shadow 0.4s ease;
}

.featured-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.featured-image {
    overflow: hidden;
    height: 250px;
    padding: 0;
    background: var(--warm-white);
}

.featured-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    transition: transform 0.6s var(--ease);
}

.featured-card:hover .featured-image img {
    transform: scale(1.05);
}

.featured-content {
    padding: 21px;
}

.featured-content > span {
    color: var(--sage);
    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.featured-content h3 {
    margin: 7px 0 5px;
    color: var(--dark-green);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.featured-content p {
    margin: 0;
    color: var(--muted-text);
    font-size: 0.69rem;
    line-height: 1.7;
}

.featured-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 17px;
    color: var(--forest-green);
    font-size: 0.65rem;
    font-weight: 700;
    transition: gap 0.3s var(--ease);
}

.featured-content a:hover {
    gap: 12px;
}

/* ---------- HOW TO RENT ---------- */
.steps-section {
    padding: 92px 0;
    background: var(--warm-white);
}

.steps-grid {
    display: grid;
    gap: 12px;
    margin-top: 44px;
}

.step-card {
    position: relative;
    padding: 27px 22px 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    transition:
        transform 0.35s var(--ease),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.step-card:hover {
    border-color: rgba(47, 79, 62, 0.2);
    box-shadow: var(--shadow-sm);
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: 19px;
    right: 20px;
    color: rgba(47, 79, 62, 0.22);
    font-family: var(--font-heading);
    font-size: 0.63rem;
    font-weight: 800;
}

.step-icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 14px;
    background: var(--cream);
    color: var(--forest-green);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    transition: transform 0.35s var(--ease);
}

.step-card:hover .step-icon {
    transform: scale(1.08) rotate(-4deg);
}

.step-card h3 {
    margin: 0;
    color: var(--dark-green);
    font-family: var(--font-heading);
    font-size: 0.93rem;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.step-card p {
    margin: 7px 0 0;
    color: var(--muted-text);
    font-size: 0.68rem;
    line-height: 1.7;
}

/* ---------- CTA ---------- */
.cta-section {
    position: relative;
    overflow: hidden;
    padding: 28px 0;
    background: var(--dark-green);
}

.cta-pattern {
    position: absolute;
    top: -170px;
    right: -80px;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.cta-pattern::before,
.cta-pattern::after {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    content: "";
}

.cta-pattern::before {
    inset: 45px;
}

.cta-pattern::after {
    inset: 95px;
}

.cta-card {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: center;
    gap: 30px;
    padding: 45px 0;
}

.cta-copy h2 {
    max-width: 650px;
    margin: 0;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 1.04;
}

.cta-copy h2 em {
    color: #B8C8BC;
    font-style: normal;
}

.cta-copy p {
    max-width: 570px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.8rem;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* ---------- FOOTER ---------- */
.site-footer {
    padding: 60px 0 25px;
    background: #17291F;
    color: var(--white);
}

.footer-grid {
    display: grid;
    gap: 42px;
}

.footer-brand {
    max-width: 390px;
}

.footer-brand-link {
    color: var(--white);
}

.footer-brand .brand-mark {
    background: rgba(255, 255, 255, 0.08);
}

.footer-brand p {
    margin: 17px 0 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.7rem;
    line-height: 1.8;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.footer-column h3 {
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.38);
    font-family: var(--font-heading);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.68rem;
    transition:
        color 0.25s ease,
        transform 0.25s var(--ease);
}

.footer-column a:hover {
    color: var(--white);
    transform: translateX(3px);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 55px;
    padding-top: 20px;
    border-top: 1px solid var(--line-dark);
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.57rem;
}

/* ---------- REVEAL / MICRO ANIMATION ---------- */
.reveal {
    animation: fadeUp 0.8s var(--ease) both;
}

.reveal-delay-1 {
    animation-delay: 0.1s;
}

.reveal-delay-2 {
    animation-delay: 0.2s;
}

.reveal-delay-3 {
    animation-delay: 0.3s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

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

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

@keyframes stampFloat {
    0%,
    100% {
        transform: rotate(8deg) translateY(0);
    }

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

@keyframes decorativeFloat {
    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-9px) translateX(4px);
    }
}

/* ---------- MOBILE / BASE HERO ---------- */
@media (max-width: 767px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        max-width: 100%;
        justify-self: stretch;
    }
}

/* ---------- TABLET ---------- */
@media (min-width: 768px) {
    .container {
        width: min(100% - 48px, var(--container));
    }

    .nav-wrap {
        min-height: 78px;
    }

    .main-nav {
        display: flex;
    }

    .hero {
        padding: 90px 0 80px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
        gap: 52px;
    }

    .hero-image img {
        aspect-ratio: 1.05 / 1;
    }

    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-heading-row {
        grid-template-columns: 1fr auto;
    }

    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .category-card-featured {
        grid-column: span 2;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .featured-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .featured-image {
        height: 230px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-card {
        grid-template-columns: 1fr auto;
    }

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

    .footer-bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

/* ---------- DESKTOP ---------- */
@media (min-width: 1024px) {
    .container {
        width: min(100% - 64px, var(--container));
    }

    body {
        font-size: 15px;
    }

    .nav-wrap {
        min-height: 82px;
    }

    .hero {
        min-height: calc(100vh - 82px);
        padding: 86px 0 78px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: clamp(48px, 4.5vw, 64px);
    }

    .hero h1 {
        font-size: clamp(4.2rem, 7vw, 5.6rem);
    }

    .hero-image-frame {
        border-radius: 38px;
    }

    .hero-image-frame img {
        aspect-ratio: 1.12 / 1;
    }

    .hero-stamp {
        top: -20px;
        right: -24px;
        width: 96px;
        height: 96px;
    }

    .hero-bottom {
        right: 32px;
        bottom: 25px;
        left: 32px;
    }

    .trust-section,
    .categories-section,
    .catalog-section,
    .featured-section,
    .steps-section {
        padding-top: 110px;
        padding-bottom: 110px;
    }

    .category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .category-card-featured {
        grid-column: auto;
    }

    .category-image {
        height: 220px;
    }

    .product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .product-image {
        height: 215px;
    }

    .steps-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .step-card {
        min-height: 245px;
    }

    .cta-section {
        padding: 36px 0;
    }

    .cta-card {
        padding: 60px 0;
    }

    .site-footer {
        padding-top: 76px;
    }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

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

/* ---------- SMALL MOBILE ---------- */
@media (max-width: 420px) {
    .nav-wrap {
        gap: 8px;
    }

    .brand-name {
        font-size: 0.8rem;
    }

    .nav-cta {
        padding-inline: 13px;
        font-size: 0.65rem;
    }

    .hero {
        padding-top: 55px;
    }

    .hero h1 {
        font-size: clamp(2.8rem, 15vw, 4rem);
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

    .hero-stamp {
        top: -10px;
        right: -4px;
        width: 70px;
        height: 70px;
    }

    .hero-stamp span {
        font-size: 0.38rem;
    }

    .hero-stamp strong {
        font-size: 0.52rem;
    }

    .catalog-group-heading {
        align-items: flex-start;
    }

    .catalog-count {
        padding-top: 7px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-actions .btn {
        width: 100%;
    }
}