:root {
    --cream: #F2EDE1;
    --ink-soft: #4B4E3E;
    --ink: #625951;
    --lime-dark: #4aaf5a;
    --lime: #ffaf4a;
    --line: #DBD3BC;
    --olive-dark: #ffaf4a;
    --olive-pale: #b7715b45;
    --olive: #707A45;
    --white: #FFFFFF;
    --near-black: #14150F;
    --panel: #1B1D14;
    --radius-lg: 26px;
    --radius-md: 16px;
    --ease: cubic-bezier(.16,.8,.24,1);
}

* {
    box-sizing: border-box;
}

body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'Inter',sans-serif;
    overflow-x: hidden;
}

.tr-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--olive-dark);
}

.tr-eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 3px rgba(211,235,85,.35);
}

/* ============ NAVBAR OVERRIDE ============ */
.navbar {
    background: var(--near-black) !important;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1200;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.navbar.tr-scrolled {
    padding: 10px 0;
    box-shadow: 0 12px 30px rgba(0,0,0,.35);
}

.navbar .navbar-brand img {
    height: 49px;
}

.tr-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.tr-nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 38px;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.tr-nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    position: relative;
    padding: 4px 0;
}

.tr-nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--lime);
    transition: width .3s var(--ease);
}

.tr-nav-links a:hover {
    color: var(--lime);
}

.tr-nav-links a:hover::after {
    width: 100%;
}

.tr-hamburger {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.18);
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

.tr-hamburger span {
    width: 18px;
    height: 2px;
    background: var(--lime);
    display: block;
    transition: .3s var(--ease);
}

.tr-hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.tr-hamburger.is-open span:nth-child(2) {
    opacity: 0;
}

.tr-hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.navbar .collapse {
    display: none !important;
}

/* replaced by drawer */
.tr-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tr-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.18);
    background: #ffaf4a;
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
    cursor: pointer;
}

.tr-icon-btn:hover {
    background: #ffaf4a;
    border-color: #ffaf4a;
    color: var(--near-black);
}

.tr-icon-btn .cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #000000;
    color: #fdfdfd;
    font-size: 10px;
    font-weight: 800;
    min-width: 18px;
    /* height:18px; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
}

.tr-shop-btn {
    background: var(--lime);
    color: var(--near-black) !important;
    font-weight: 700;
    padding: 11px 22px;
    border-radius: 50px;
    font-size: 13.5px;
    text-decoration: none !important;
    border: 1px solid var(--lime);
    align-items: center;
    gap: 8px;
}

.tr-shop-btn:hover {
    background: transparent;
    color: var(--lime) !important;
}

@media (max-width: 991px) {
    .tr-nav-links {
        display:none !important;
    }
}

/* ============ OVERLAY ============ */
.tr-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,11,7,.55);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s var(--ease);
    z-index: 1300;
}

.tr-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

/* ============ MENU DRAWER (opens LEFT -> RIGHT) ============ */
.tr-menu-drawer {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: min(360px,86vw);
    background: var(--near-black);
    z-index: 1400;
    transform: translateX(-100%);
    transition: transform .45s var(--ease);
    display: flex;
    flex-direction: column;
    padding: 28px 26px;
    border-right: 1px solid rgba(255,255,255,.08);
}

.tr-menu-drawer.is-active {
    transform: translateX(0);
}

.tr-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tr-drawer-head img {
    height: 30px;
}

.tr-drawer-close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.18);
    background: none;
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.tr-drawer-close:hover {
    background: var(--lime);
    color: var(--near-black);
    border-color: var(--lime);
}

.tr-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.tr-menu-links li {
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.tr-menu-links a {
    display: flex;
    align-items: center;
    color: var(--cream);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    padding: 16px 2px;
    transition: .25s;
}

.tr-menu-links a:hover {
    color: var(--lime);
    padding-left: 8px;
}

.tr-drawer-foot {
    margin-top: auto;
    padding-top: 20px;
    color: var(--olive-pale);
    font-size: 13px;
}

.tr-drawer-foot a {
    color: var(--lime);
    text-decoration: none;
}

/* ============ CART DRAWER (opens RIGHT -> LEFT) ============ */
.tr-cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: min(420px,90vw);
    background: var(--white);
    z-index: 1400;
    transform: translateX(100%);
    transition: transform .45s var(--ease);
    display: flex;
    flex-direction: column;
    box-shadow: -30px 0 60px rgba(0,0,0,.2);
}

.tr-cart-drawer.is-active {
    transform: translateX(0);
}

.tr-cart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    border-bottom: 1px solid var(--line);
}

.tr-cart-head h5 {
    margin: 0;
    font-weight: 700;
}

.tr-cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 18px 24px;
}

.tr-cart-row {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.tr-cart-row img {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    object-fit: cover;
    background: var(--olive-pale);
}

.tr-cart-row .name {
    font-weight: 600;
    font-size: 14px;
}

.tr-cart-row .meta {
    font-size: 12.5px;
    color: var(--ink-soft);
}

.tr-cart-row .price {
    font-weight: 700;
    color: var(--olive-dark);
    font-size: 13.5px;
}

.tr-cart-empty {
    text-align: center;
    padding: 60px 10px;
    color: var(--ink-soft);
}

.tr-cart-empty i {
    font-size: 40px;
    color: var(--olive-pale);
    margin-bottom: 14px;
    display: block;
}

.tr-cart-foot {
    padding: 20px 24px 26px;
    border-top: 1px solid var(--line);
}

.tr-cart-foot .row-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 14px;
}

.tr-cart-foot a {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

.tr-btn-view {
    background: var(--near-black);
    color: var(--cream) !important;
    margin-bottom: 10px;
}

.tr-btn-view:hover {
    background: var(--olive-dark);
}

.tr-btn-checkout-mini {
    background: var(--lime);
    color: var(--near-black) !important;
}

.tr-btn-checkout-mini:hover {
    background: var(--olive-dark);
    color: var(--white) !important;
}

/* ============ HERO SLIDER ============ */
.tr-hero-slider {
    position: relative;
    overflow: hidden;
    background: var(--near-black);
}

.tr-slide {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    inset: 0;
    transition: opacity .9s var(--ease);
}

.tr-slide.is-active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.tr-hero-slider .tr-slide-track {
    position: relative;
    min-height: 640px;
}

.tr-slide-bg {
    position: absolute;
    inset: 0;
}

.tr-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .92;
}

.tr-slide-bg::after {
    content: "";
    position: absolute;
    inset: 0;
}

.tr-slide-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 100px 0;
}

.tr-slide-content .tr-eyebrow {
    color: var(--lime);
}

.tr-slide-content .tr-eyebrow::before {
    background: var(--lime);
}

.tr-slide-content h1 {
    font-size: clamp(2.4rem,5vw,4.2rem);
    color: var(--cream);
    font-weight: 800;
    line-height: 1.05;
    margin: 18px 0 20px;
}

.tr-slide-content h1 em {
    font-style: italic;
    color: var(--lime);
    font-weight: 500;
}

.tr-slide-content p {
    color: var(--olive-pale);
    font-size: 16px;
    max-width: 520px;
    margin-bottom: 30px;
}

.tr-slide-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.tr-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none !important;
    transition: .3s var(--ease);
}

.tr-btn-solid {
    background: var(--lime);
    color: var(--near-black) !important;
}

.tr-btn-solid:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(211,235,85,.25);
}

.tr-btn-ghost {
    border: 1px solid rgba(242,237,225,.4);
    color: var(--cream) !important;
}

.tr-btn-ghost:hover {
    background: rgba(242,237,225,.1);
}

.tr-slide-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.tr-slide-dots button {
    width: 34px;
    height: 4px;
    border: none;
    background: rgba(242,237,225,.3);
    border-radius: 4px;
    cursor: pointer;
    padding: 0;
    transition: .3s;
}

.tr-slide-dots button.is-active {
    background: var(--lime);
    width: 50px;
}

.tr-slide-arrows {
    position: absolute;
    z-index: 3;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 18px;
    pointer-events: none;
}

.tr-slide-arrows button {
    pointer-events: all;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(242,237,225,.3);
    background: rgba(20,21,15,.4);
    color: var(--cream);
    cursor: pointer;
}

.tr-slide-arrows button:hover {
    background: var(--lime);
    color: var(--near-black);
    border-color: var(--lime);
}

/* ============ SECTION SHELL ============ */
.tr-section {
    padding: 100px 0;
}

.tr-section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.tr-section-head h2 {
    font-size: clamp(1.9rem,3.4vw,2.8rem);
    font-weight: 800;
    color: var(--near-black);
    margin: 14px 0 0;
}

.tr-dark {
    background: var(--near-black);
    color: var(--cream);
}

.tr-dark .tr-section-head h2 {
    color: var(--cream);
}

.tr-dark .tr-eyebrow {
    color: var(--lime);
}

.tr-dark .tr-eyebrow::before {
    background: var(--lime);
}

/* ============ ABOUT US ============ */
.tr-about-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.tr-about-media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
}

.tr-about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tr-about-stat {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
}

.tr-about-stat b {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--olive-dark);
}

.tr-about-stat span {
    font-size: 12.5px;
    color: var(--ink-soft);
}

.tr-about-copy h2 {
    font-size: clamp(1.8rem,3.2vw,2.6rem);
    font-weight: 800;
    margin-bottom: 18px;
}

.tr-about-copy p {
    color: var(--ink-soft);
    margin-bottom: 26px;
}

.tr-about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.tr-about-point {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.tr-about-point i {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--lime);
    color: var(--near-black);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tr-about-point b {
    display: block;
    font-size: 14.5px;
}

.tr-about-point span {
    font-size: 13px;
    color: var(--ink-soft);
}

/* ============ HOW IT WORKS ============ */
.tr-steps {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
    position: relative;
}

.tr-step {
    position: relative;
    padding: 36px 24px;
    background: var(--lime);
    border-radius: var(--radius-md);
}

.tr-step .tr-step-num {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--near-black);
    color: var(--lime);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 22px;
}

.tr-step h5 {
    font-weight: 700;
    margin-bottom: 8px;
}

.tr-step p {
    color: var(--ink-soft);
    font-size: 13.5px;
    margin: 0;
}

.tr-step-line {
    position: absolute;
    top: 52px;
    right: -24px;
    width: 24px;
    height: 2px;
    background: var(--line);
    display: none;
}

/* ============ WHY CHOOSE US ============ */
.tr-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.tr-why-card {
    padding: 30px 26px;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--line);
    transition: .35s var(--ease);
}

.tr-why-card:hover {
    transform: translateY(-6px);
    border-color: var(--lime);
    box-shadow: 0 24px 40px rgba(20,21,15,.08);
}

.tr-why-card i {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--near-black);
    color: var(--lime);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 18px;
}

.tr-why-card h5 {
    font-weight: 700;
    margin-bottom: 8px;
}

.tr-why-card p {
    color: var(--ink-soft);
    font-size: 13.5px;
    margin: 0;
}

/* ============ PRODUCT LISTING (modern minimal cards) ============ */
.product-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--line);
    transition: .35s var(--ease);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 46px rgba(20,21,15,.1);
    border-color: transparent;
}

.product-card .pc-media {
    position: relative;
    aspect-ratio: 1/1;
    background: var(--olive-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 22px;
}

.product-card .pc-media img {
    width: 100%;
    border-radius: 15px;
    height: 100%;
    object-fit: contain;
    transition: transform .5s var(--ease);
}
.product-card:hover .pc-media img {
    transform: scale(1.06) rotate(-1deg);
}

.product-card .pc-body {
    padding: 20px 22px 24px;
}

.product-card .pc-cat {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--olive-dark);
    margin-bottom: 8px;
}

.product-card .pc-title {
    font-size: 16.5px;
    font-weight: 700;
    color: var(--near-black);
    margin-bottom: 14px;
    line-height: 1.3;
}

.product-card .pc-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-card .pc-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--near-black);
}

.product-card .pc-add {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--near-black);
    color: var(--lime);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    transition: .3s var(--ease);
}

.product-card:hover .pc-add {
    background: var(--lime);
    color: var(--near-black);
    transform: rotate(90deg);
}

.tr-product-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tr-product-tabs button {
    padding: 10px 22px;
    border-radius: 50px;
    border: 1px solid var(--line);
    background: var(--white);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    color: var(--ink);
}

.tr-product-tabs button.is-active {
    background: var(--near-black);
    color: var(--lime);
    border-color: var(--near-black);
}

/* ============ PRODUCT PROCESS ============ */
.tr-process {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 26px;
}

.tr-process-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/3.6;
}

.tr-process-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tr-process-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,transparent 40%,rgba(20,21,15,.9));
}

.tr-process-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px;
    z-index: 2;
    color: var(--cream);
}

.tr-process-body .step-tag {
    color: var(--lime);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .1em;
}

.tr-process-body h5 {
    font-weight: 700;
    margin: 6px 0 6px;
    color: var(--lime);
}

.tr-process-body p {
    font-size: 13px;
    color: var(--olive-pale);
    margin: 0;
}

/* ============ FAQ (restyle within existing markup) ============ */
.faq-item {
    background: var(--white);
    border: 1px solid var(--line) !important;
    border-radius: var(--radius-md);
    margin-bottom: 14px;
    padding: 6px 20px;
}

.faq-item:last-child {
    border-bottom: 1px solid var(--line) !important;
}

/* ============ PAGE HERO (inner pages) ============ */
.ab-page-hero {
    background: #f2ede1;
    min-height: 260px;
    position: relative;
    overflow: hidden;
    padding: 140px 0 100px;
}

.ab-page-hero .frame-bg {
    /* position:absolute; */
    inset: 0;
    /* background:radial-gradient(circle at 80% 20%, rgba(211,235,85,.12), transparent 60%); */
}

.ab-page-hero .ab-badge {
    color: var(--lime);
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ab-page-hero .ab-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lime);
}

.ab-page-hero p {
    color: #000000;
    font-size: clamp(1.6rem,3vw,2.4rem);
    font-weight: 800;
    margin: 12px 0 14px;
}

.ab-page-hero .ab-breadcrumb {
    color: var(--olive-pale);
    font-size: 13px;
}

.ab-page-hero .ab-breadcrumb a {
    color: #000000;
    text-decoration: none;
}

.ab-page-hero .ab-breadcrumb span {
    color: var(--lime);
}

/* ============ PRODUCT DETAIL (distinct modern layout) ============ */
.product-section {
    padding: 70px 0 90px;
}

.product-section .row {
    align-items: flex-start;
}

.gallery-wrap {
    position: sticky;
    top: 110px;
}

.gallery-wrap .main-img-wrap {
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(160deg,var(--olive-pale),var(--cream));
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border: 1px solid var(--line);
}

.gallery-wrap .main-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
}

.thumb-row {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.thumb {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid var(--line);
    cursor: pointer;
    background: var(--white);
    padding: 6px;
}

.thumb.active {
    border-color: var(--lime);
}

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

.product-info-wrap {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 34px 34px 30px;
}

.product-cat-tag {
    display: inline-block;
    background: var(--near-black);
    color: var(--lime);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.product-title {
    font-size: clamp(1.6rem,2.6vw,2.1rem);
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.2;
}

.rating-row {
    margin-bottom: 18px;
}

.rating-bar {
    background: var(--olive-pale);
    color: var(--olive-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 50px;
}

.price-row {
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px dashed var(--line);
}

.price-current {
    font-size: 34px;
    font-weight: 800;
    color: var(--near-black);
}

.quantity {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0 !important;
    border-radius: 50px !important;
    border: 1px solid var(--line) !important;
    width: 150px !important;
    padding: 5px !important;
    background: var(--cream) !important;
    margin-bottom: 26px !important;
}

.qty-minus, .qty-plus {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 50% !important;
    background: var(--white) !important;
    border: 1px solid var(--line) !important;
    font-size: 18px;
    font-weight: 700;
    color: var(--near-black);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: .25s;
}

.qty-minus:hover, .qty-plus:hover {
    background: var(--near-black) !important;
    color: var(--lime);
    border-color: var(--near-black) !important;
}

.qty-minus:disabled, .qty-plus:disabled {
    opacity: .35;
    cursor: not-allowed;
}

.quantity .qty {
    background: transparent !important;
    border: none !important;
    width: 12px;
    flex: 1;
    text-align: center;
    font-weight: 800;
    font-size: 15px;
    color: var(--near-black);
}

.divider {
    height: 1px;
    background: var(--line);
    margin: 22px 0;
}

.btn-add-cart {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--near-black);
    color: var(--lime) !important;
    padding: 17px 38px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    width: 100%;
    justify-content: center;
    transition: .3s var(--ease);
}

.btn-add-cart:hover {
    background: var(--lime);
    color: var(--near-black) !important;
    transform: translateY(-2px);
}

.add-row {
    margin-bottom: 8px;
}

.trust-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.trust-mini .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--ink-soft);
    font-weight: 600;
}

.trust-mini .trust-item i {
    color: var(--olive-dark);
}

/* Supplement Overview block (from product_descriptions include) */
.overview-card {
    background: var(--cream);
    border-radius: 18px;
    padding: 24px 26px;
    margin: 20px 0;
    border: 1px solid var(--line);
}

.overview-header .icon-box {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--olive-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.overview-title {
    font-size: 16.5px;
    font-weight: 700;
    color: var(--near-black);
}

.overview-header .title-line {
    flex: 1;
    height: 1px;
    background: var(--line);
    margin-left: 14px;
}

.overview-content p {
    color: var(--ink-soft);
    font-size: 13.5px;
    line-height: 1.7;
}

.overview-content .center-divider {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 14px 0;
}

.overview-content .center-divider span {
    flex: 1;
    height: 1px;
    background: var(--line);
}

.overview-content .middle-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--lime);
}

.overview-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 0;
}

.overview-tags .tag {
    background: var(--white);
    border: 1px solid var(--line);
    color: var(--olive-dark);
    font-size: 11.5px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 50px;
}

@media (max-width: 991px) {
    .gallery-wrap {
        position:static;
        margin-bottom: 10px;
    }

    .product-info-wrap {
        padding: 26px;
    }
}

/* ============ CART PAGE ============ */
.cart-section {
    padding: 70px 0;
}

.cart-table-wrap {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(20,21,15,.06);
}

.cart-table thead {
    background: var(--near-black);
}

.cart-table thead th {
    font-size: 14.5px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 800;
    padding: 12px 19px;
    border: none;
}

.cart-table td {
    vertical-align: middle;
    padding: 18px;
    border-color: var(--line);
}

.product-thumb {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 14px;
    background: var(--olive-pale);
    padding: 8px;
}

.qty-control {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border-radius: 50px;
    background: var(--cream);
    border: 1px solid var(--line);
    font-weight: 700;
    font-size: 13.5px;
}

.mobile-cart-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 18px;
    margin-bottom: 14px;
    box-shadow: 0 12px 30px rgba(20,21,15,.05);
}

.product-info-name {
    font-weight: 700;
    font-size: 14.5px;
}

.product-info-cat {
    font-size: 12px;
    color: var(--ink-soft);
}

.item-price {
    font-weight: 700;
    color: var(--olive-dark);
}

.btn-remove {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: none;
    color: var(--ink-soft);
}

.btn-remove:hover {
    background: #fee2e2;
    border-color: #fca5a5;
    color: #ef4444;
}

.mobile-cart-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 18px;
    margin-bottom: 14px;
}

.empty-cart {
    text-align: center;
    padding: 70px 20px;
}

.empty-cart i {
    font-size: 44px;
    color: var(--olive-pale);
    margin-bottom: 16px;
    display: block;
}

.summary-card {
    background: #ffffff !important;
    color: var(--cream);
    border-radius: var(--radius-lg);
    padding: 30px;
    position: sticky;
    top: 100px;
    box-shadow: 0 24px 50px rgba(20,21,15,.18);
}

.summary-title {
    font-weight: 800;
    margin-bottom: 18px;
    color: #000000 !important;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.12) !important;
    font-size: 14px;
}

.summary-label {
    color: #000000ed !important;
}

.summary-value {
    color: #000000 !important;
    font-weight: 600;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 18px 0 20px;
    font-size: 19px;
    font-weight: 800;
    margin-top: -2px;
}

.summary-total .total-label {
    color: #3c3c3b !important;
}

.summary-total .total-value {
    color: var(--lime) !important;
}

.btn-checkout {
    display: block;
    text-align: center;
    background: var(--lime);
    color: var(--near-black) !important;
    padding: 15px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    margin-bottom: 10px;
    transition: .3s var(--ease);
}

.btn-checkout:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.btn-continue {
    display: block;
    text-align: center;
    border: 1px solid rgb(0 0 0 / 43%);
    color: #060606 !important;
    padding: 13px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 13.5px;
}

.trust-badges {
    display: flex;
    justify-content: space-between;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: 11px;
    color: var(--olive-pale) !important;
    flex-wrap: wrap;
    gap: 8px;
}

/* ============ CHECKOUT PAGE ============ */
.checkout-sec {
    padding: 20px 0 70px !important;
}

.checkout-sec .form-control, .checkout-sec .form-select {
    border-radius: 12px;
    border: 1px solid var(--line);
    padding: 12px 16px;
    font-size: 14px;
}

.checkout-sec .form-control:focus, .checkout-sec .form-select:focus {
    border-color: var(--lime);
    box-shadow: 0 0 0 3px rgba(211,235,85,.25);
}

.checkout-sec .form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
}

.checkout-sec span.fs-26 {
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--line);
    width: 100%;
    display: block;
}

.checkout-sec .terms-condition-box {
    background: rgba(255,255,255,.06);
    /* padding:14px 16px; */
    border-radius: 12px;
}

.checkout-sec .summary-card .form-check-label {
    color: #0000009e !important;
    font-size: 13px;
}

.checkout-sec .summary-card .form-check-label a {
    color: var(--lime) !important;
}

.checkout-sec .summary-card p.form-check-label {
    color: rgb(0 0 0 / 75%) !important;
    font-size: 12px;
    /* margin-top:16px; */
    line-height: 1.7;
}

/* ============ FOOTER ============ */
.ab-footer {
    background: #ffffff !important;
    color: var(--olive-pale) !important;
    padding: 80px 0 26px;
}

.ab-footer .footer-brand img {
    height: 46px;
    margin-bottom: 14px;
}

.ab-footer p {
    font-size: 13.5px;
    color: rgb(200, 200, 200) !important;
}

.ab-footer .disc {
    margin-top: 10px;
}

.ab-footer .disc p {
    font-size: 12px;
    color: rgb(0 0 0 / 55%) !important;
    margin-top: 0 !important;
    line-height: 1.7;
}

.ab-footer-title {
    color: #000000 !important;
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 14px;
}

.ab-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ab-footer ul li {
    margin-bottom: 10px;
    font-size: 13.5px;
    color: #0000009e !important;
    padding: 0 !important;
}

.ab-footer ul li i {
    color: var(--lime) !important;
}

.ab-footer a {
    color: #000000a8 !important;
    text-decoration: none;
}

.ab-footer a:hover {
    color: var(--lime) !important;
}

.footer-divider {
    border-color: rgba(255,255,255,.1);
    margin: 40px 0 20px;
}

.footer-bottom {
    font-size: 12.5px;
    color: rgba(242,237,225,.5) !important;
}

@media (max-width: 991px) {
    .ab-footer .row > [class*="col-lg-7"] {
        margin-top:24px;
    }

    .ab-footer .row.g-4.mt-5 > div {
        margin-bottom: 28px;
    }
}

/* ============ GSAP REVEAL BASE ============ */
/* Elements start visible; JS (theme-redesign.js) hides+animates them in via GSAP,
   with a fallback that guarantees visibility even if GSAP/ScrollTrigger fails to load. */
.reveal-up, .stagger-item, .reveal-scale {
    opacity: 1;
}

html.js-ready .reveal-up, html.js-ready .stagger-item, html.js-ready .reveal-scale {
    opacity: 0;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 991px) {
    .tr-about-grid, .tr-why-grid {
        grid-template-columns:1fr;
    }

    .tr-steps, .tr-process {
        grid-template-columns: 1fr 1fr;
    }

    .tr-about-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .tr-steps, .tr-process {
        grid-template-columns:1fr;
    }

    .tr-slide-content {
        padding: 70px 0;
    }

    .tr-hero-slider .tr-slide-track {
        min-height: 520px;

    }

    .tr-section {
        padding: 64px 0;
    }

    .summary-card {
        position: static;
    }
}


.form-check-input {
    --bs-form-check-bg: var(--bs-body-bg);
    flex-shrink: 0;
    width: 1em;
    height: 1em;
    margin-top: 0.07em;
    vertical-align: top;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-form-check-bg);
    background-image: var(--bs-form-check-bg-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: var(--bs-border-width) solid #959595;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    print-color-adjust: exact;
}

