/* ================================================================
   TEMPLATE-7: HarvestRoot Nutrition
   Earthy Wellness Theme - Poppins Font
   CSS Prefix: t7-
   ================================================================ */

/* ── CSS Custom Properties ── */
:root {
    --t7-primary: #BB6B4C;
    --t7-primary-dark: #A25A3D;
    --t7-primary-light: #D08A6F;
    --t7-secondary: #D1ABA1;
    --t7-secondary-light: #E4CEC7;
    --t7-accent: #F08078;
    --t7-accent-dark: #D96A62;
    --t7-bg: #F5F0EB;
    --t7-bg-alt: #EDE6DF;
    --t7-text: #3D2E28;
    --t7-text-light: #6B5B54;
    --t7-text-muted: #8A7A73;
    --t7-white: #FFFFFF;
    --t7-border: #E0D5CE;
    --t7-shadow: rgba(61, 46, 40, 0.08);
    --t7-shadow-md: rgba(61, 46, 40, 0.12);
    --t7-shadow-lg: rgba(61, 46, 40, 0.18);
    --t7-font: 'Poppins', sans-serif;
    --t7-radius: 12px;
    --t7-radius-sm: 8px;
    --t7-radius-lg: 20px;
    --t7-transition: all 0.3s ease;
    --t7-container: 1172px;
    --t7-header-height: 75px;
}


/* ── Reset / Base Overrides ── */
body {
    font-family: var(--t7-font) !important;
    color: var(--t7-text);
    background-color: var(--t7-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* ── Container ── */
.t7-container {
    width: 100%;
    max-width: var(--t7-container);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}


/* ── Page Wrapper ── */
.t7-page-wrap {
    overflow: hidden;
    min-height: 100vh;
}


/* ================================================================
   HEADER
   ================================================================ */
.t7-header-wrap {
    width: 100%;
    margin-bottom: var(--t7-header-height);
}

.t7-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--t7-header-height);
    background: var(--t7-white);
    border-bottom: 1px solid var(--t7-border);
    z-index: 1000;
    transition: var(--t7-transition);
}

.t7-header-scrolled {
    box-shadow: 0 2px 20px var(--t7-shadow-md);
    height: 65px;
}

.t7-header .t7-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}


/* ── Logo ── */
.t7-logo {
    display: flex;
    align-items: baseline;
    gap: 2px;
    text-decoration: none;
    flex-shrink: 0;
}

.t7-logo-terra {
    font-family: var(--t7-font);
    font-size: 26px;
    font-weight: 700;
    color: var(--t7-primary);
    letter-spacing: -0.5px;
}

.t7-logo-bloom {
    font-family: var(--t7-font);
    font-size: 26px;
    font-weight: 700;
    color: var(--t7-text);
    letter-spacing: -0.5px;
}

.t7-logo-tagline {
    font-family: var(--t7-font);
    font-size: 11px;
    font-weight: 500;
    color: var(--t7-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-left: 8px;
}


/* ── Navigation ── */
.t7-nav {
    display: flex;
    align-items: center;
}

.t7-nav-list {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.t7-nav-list li a {
    font-family: var(--t7-font);
    font-size: 15px;
    font-weight: 500;
    color: var(--t7-text);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: var(--t7-radius-sm);
    transition: var(--t7-transition);
    position: relative;
}

.t7-nav-list li a:hover {
    color: var(--t7-primary);
    background: rgba(187, 107, 76, 0.06);
}

.t7-nav-list li a.t7-nav-active {
    color: var(--t7-primary);
    font-weight: 600;
}

.t7-nav-list li a.t7-nav-active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--t7-primary);
    border-radius: 2px;
}


/* ── Cart Link ── */
.t7-cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--t7-text);
    font-size: 18px;
    text-decoration: none;
    padding: 8px 12px;
    transition: var(--t7-transition);
}

.t7-cart-link:hover {
    color: var(--t7-primary);
}

.t7-cart-count {
    position: absolute;
    top: 0;
    right: 2px;
    background: var(--t7-accent);
    color: var(--t7-white);
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.t7-nav-cart-item {
    margin-left: 5px;
}


/* ── Mobile Controls ── */
.t7-mobile-controls {
    display: none;
    align-items: center;
    gap: 8px;
}

.t7-mobile-cart {
    display: inline-flex;
}


/* ── Hamburger ── */
.t7-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--t7-radius-sm);
    transition: var(--t7-transition);
}

.t7-hamburger:hover {
    background: rgba(187, 107, 76, 0.06);
}

.t7-hamburger-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--t7-text);
    border-radius: 2px;
    transition: var(--t7-transition);
}

.t7-hamburger-active .t7-hamburger-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.t7-hamburger-active .t7-hamburger-bar:nth-child(2) {
    opacity: 0;
}

.t7-hamburger-active .t7-hamburger-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* ── Mobile Menu ── */
.t7-mobile-menu {
    position: fixed;
    top: var(--t7-header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--t7-header-height));
    background: var(--t7-white);
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
    display: none;
}

.t7-mobile-menu-open {
    transform: translateX(0);
}

.t7-mobile-nav-list {
    list-style: none;
    padding: 20px 25px;
    margin: 0;
}

.t7-mobile-nav-list li {
    border-bottom: 1px solid var(--t7-border);
}

.t7-mobile-nav-list li a {
    display: block;
    padding: 14px 0;
    font-family: var(--t7-font);
    font-size: 16px;
    font-weight: 500;
    color: var(--t7-text);
    text-decoration: none;
    transition: var(--t7-transition);
}

.t7-mobile-nav-list li a:hover {
    color: var(--t7-primary);
    padding-left: 8px;
}

.t7-mobile-divider {
    height: 1px;
    background: var(--t7-secondary);
    margin: 10px 0;
    border-bottom: none !important;
}

.t7-menu-body-lock {
    overflow: hidden;
}


/* ================================================================
   BUTTONS
   ================================================================ */
.t7-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--t7-font);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: var(--t7-radius);
    transition: var(--t7-transition);
    cursor: pointer;
    border: 2px solid transparent;
    line-height: 1.2;
}

.t7-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

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

.t7-btn-primary {
    background: var(--t7-primary);
    color: var(--t7-white);
    border-color: var(--t7-primary);
}

.t7-btn-primary:hover {
    background: var(--t7-primary-dark);
    border-color: var(--t7-primary-dark);
    color: var(--t7-white);
    box-shadow: 0 8px 25px rgba(187, 107, 76, 0.3);
    transform: translateY(-2px);
}

.t7-btn-outline {
    background: transparent;
    color: var(--t7-primary);
    border-color: var(--t7-primary);
}

.t7-btn-outline:hover {
    background: var(--t7-primary);
    color: var(--t7-white);
    transform: translateY(-2px);
}

.t7-btn-sm {
    font-size: 13px;
    font-weight: 600;
    padding: 10px 20px;
    background: var(--t7-primary);
    color: var(--t7-white);
    border-radius: var(--t7-radius-sm);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--t7-transition);
    white-space: nowrap;
}

.t7-btn-sm:hover {
    background: var(--t7-primary-dark);
    color: var(--t7-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(187, 107, 76, 0.25);
}

.t7-btn-sm i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.t7-btn-sm:hover i {
    transform: translateX(3px);
}

.t7-center-wrap {
    text-align: center;
    margin-top: 40px;
}


/* ── Section Headers ── */
.t7-section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}

.t7-section-label {
    display: inline-block;
    font-family: var(--t7-font);
    font-size: 13px;
    font-weight: 600;
    color: var(--t7-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    background: rgba(187, 107, 76, 0.08);
    padding: 6px 18px;
    border-radius: 20px;
}

.t7-section-title {
    font-family: var(--t7-font);
    font-size: 38px;
    font-weight: 700;
    color: var(--t7-text);
    line-height: 1.25;
    margin-bottom: 18px;
}

.t7-section-title span {
    color: var(--t7-primary);
}

.t7-section-subtitle {
    font-family: var(--t7-font);
    font-size: 16px;
    font-weight: 400;
    color: var(--t7-text-light);
    line-height: 1.7;
}


/* ================================================================
   HERO SECTION
   ================================================================ */
.t7-hero {
    background: var(--t7-bg);
    padding: 80px 0 90px;
    position: relative;
    overflow: hidden;
}

.t7-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(187, 107, 76, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.t7-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(209, 171, 161, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.t7-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.t7-hero-content {
    position: relative;
    z-index: 2;
}

.t7-hero-badge {
    display: inline-block;
    font-family: var(--t7-font);
    font-size: 13px;
    font-weight: 600;
    color: var(--t7-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    background: rgba(187, 107, 76, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid rgba(187, 107, 76, 0.15);
}

.t7-hero-heading {
    font-family: var(--t7-font);
    font-size: 50px;
    font-weight: 700;
    color: var(--t7-text);
    line-height: 1.15;
    margin-bottom: 22px;
}

.t7-hero-heading span {
    color: var(--t7-primary);
    display: block;
}

.t7-hero-desc {
    font-family: var(--t7-font);
    font-size: 17px;
    font-weight: 400;
    color: var(--t7-text-light);
    line-height: 1.75;
    margin-bottom: 35px;
    max-width: 500px;
}

.t7-hero-desc strong {
    color: var(--t7-text);
    font-weight: 600;
}

.t7-hero-btns {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}


/* ── Hero Image ── */
.t7-hero-image {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.t7-hero-img-wrapper {
    position: relative;
    max-width: 480px;
    width: 100%;
}

.t7-hero-img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(61, 46, 40, 0.15));
}

.t7-hero-img-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 85%;
    height: 85%;
    background: var(--t7-secondary-light);
    border-radius: var(--t7-radius-lg);
    z-index: 1;
    opacity: 0.5;
}


/* ================================================================
   FEATURE STRIP
   ================================================================ */
.t7-features {
    background: var(--t7-white);
    padding: 60px 0;
    border-top: 1px solid var(--t7-border);
    border-bottom: 1px solid var(--t7-border);
}

.t7-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.t7-feature-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--t7-radius);
    transition: var(--t7-transition);
    position: relative;
}

.t7-feature-box:hover {
    background: var(--t7-bg);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px var(--t7-shadow);
}

.t7-feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(187, 107, 76, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: var(--t7-transition);
}

.t7-feature-box:hover .t7-feature-icon {
    background: var(--t7-primary);
}

.t7-feature-icon i {
    font-size: 24px;
    color: var(--t7-primary);
    transition: var(--t7-transition);
}

.t7-feature-box:hover .t7-feature-icon i {
    color: var(--t7-white);
}

.t7-feature-title {
    font-family: var(--t7-font);
    font-size: 16px;
    font-weight: 600;
    color: var(--t7-text);
    margin-bottom: 8px;
}

.t7-feature-desc {
    font-family: var(--t7-font);
    font-size: 14px;
    font-weight: 400;
    color: var(--t7-text-muted);
    line-height: 1.6;
}


/* ================================================================
   ABOUT SECTION
   ================================================================ */
.t7-about {
    background: var(--t7-bg);
    padding: 90px 0;
}

.t7-about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.t7-about-card {
    background: var(--t7-white);
    padding: 40px 30px;
    border-radius: var(--t7-radius);
    text-align: center;
    transition: var(--t7-transition);
    border: 1px solid var(--t7-border);
    position: relative;
    overflow: hidden;
}

.t7-about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--t7-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.t7-about-card:hover::before {
    transform: scaleX(1);
}

.t7-about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px var(--t7-shadow-md);
    border-color: transparent;
}

.t7-about-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(187, 107, 76, 0.12), rgba(240, 128, 120, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--t7-transition);
}

.t7-about-card:hover .t7-about-icon {
    background: var(--t7-primary);
}

.t7-about-icon i {
    font-size: 26px;
    color: var(--t7-primary);
    transition: var(--t7-transition);
}

.t7-about-card:hover .t7-about-icon i {
    color: var(--t7-white);
}

.t7-about-card-title {
    font-family: var(--t7-font);
    font-size: 19px;
    font-weight: 600;
    color: var(--t7-text);
    margin-bottom: 12px;
}

.t7-about-card-desc {
    font-family: var(--t7-font);
    font-size: 15px;
    font-weight: 400;
    color: var(--t7-text-light);
    line-height: 1.7;
}


/* ================================================================
   PRODUCTS SECTION
   ================================================================ */
.t7-products {
    background: var(--t7-white);
    padding: 90px 0;
}

.t7-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.t7-product-card {
    background: var(--t7-white);
    border: 1px solid var(--t7-border);
    border-radius: var(--t7-radius);
    overflow: hidden;
    transition: var(--t7-transition);
    display: flex;
    flex-direction: column;
}

.t7-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px var(--t7-shadow-md);
    border-color: var(--t7-secondary);
}

.t7-product-img-wrap {
    background: var(--t7-bg);
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    position: relative;
    overflow: hidden;
}

.t7-product-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(245, 240, 235, 0.5), transparent);
    pointer-events: none;
}

.t7-product-img {
    max-height: 180px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.t7-product-card:hover .t7-product-img {
    transform: scale(1.08);
}

.t7-product-info {
    padding: 25px 24px 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.t7-product-brand {
    font-family: var(--t7-font);
    font-size: 11px;
    font-weight: 600;
    color: var(--t7-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.t7-product-name {
    font-family: var(--t7-font);
    font-size: 19px;
    font-weight: 600;
    color: var(--t7-text);
    margin-bottom: 8px;
    line-height: 1.3;
}

.t7-product-desc-short {
    font-family: var(--t7-font);
    font-size: 13px;
    font-weight: 400;
    color: var(--t7-text-muted);
    line-height: 1.6;
    margin-bottom: 18px;
    flex-grow: 1;
}

.t7-product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--t7-border);
    gap: 10px;
}

.t7-product-price {
    font-family: var(--t7-font);
    font-size: 20px;
    font-weight: 700;
    color: var(--t7-primary);
}

.t7-price-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--t7-text-muted);
    display: block;
    line-height: 1;
    margin-bottom: 2px;
}


/* ================================================================
   WELLNESS TIPS SECTION
   ================================================================ */
.t7-tips {
    background: var(--t7-bg);
    padding: 90px 0;
}

.t7-tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.t7-tip-card {
    background: var(--t7-white);
    padding: 40px 30px;
    border-radius: var(--t7-radius);
    text-align: center;
    transition: var(--t7-transition);
    border: 1px solid var(--t7-border);
    position: relative;
}

.t7-tip-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px var(--t7-shadow-md);
    border-color: transparent;
}

.t7-tip-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    transition: var(--t7-transition);
}

.t7-tip-icon-wrap i {
    font-size: 28px;
    color: var(--t7-white);
}

.t7-tip-icon-1 {
    background: var(--t7-primary);
}

.t7-tip-card:hover .t7-tip-icon-1 {
    background: var(--t7-primary-dark);
    box-shadow: 0 8px 20px rgba(187, 107, 76, 0.3);
}

.t7-tip-icon-2 {
    background: var(--t7-accent);
}

.t7-tip-card:hover .t7-tip-icon-2 {
    background: var(--t7-accent-dark);
    box-shadow: 0 8px 20px rgba(240, 128, 120, 0.3);
}

.t7-tip-icon-3 {
    background: var(--t7-secondary);
}

.t7-tip-card:hover .t7-tip-icon-3 {
    background: #C09B90;
    box-shadow: 0 8px 20px rgba(209, 171, 161, 0.4);
}

.t7-tip-title {
    font-family: var(--t7-font);
    font-size: 19px;
    font-weight: 600;
    color: var(--t7-text);
    margin-bottom: 12px;
}

.t7-tip-desc {
    font-family: var(--t7-font);
    font-size: 15px;
    font-weight: 400;
    color: var(--t7-text-light);
    line-height: 1.7;
}


/* ================================================================
   FOOTER
   ================================================================ */
.t7-footer {
    background: var(--t7-text);
    padding: 70px 0 0;
    color: var(--t7-white);
    float: left;
    width: 100%;
}

.t7-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.t7-footer-col {
    text-align: left;
}


/* ── Footer Logo ── */
.t7-footer-logo {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    text-decoration: none;
    margin-bottom: 16px;
}

.t7-footer-logo .t7-logo-terra {
    color: var(--t7-primary-light);
    font-size: 24px;
}

.t7-footer-logo .t7-logo-bloom {
    color: var(--t7-white);
    font-size: 24px;
}

.t7-footer-logo .t7-logo-tagline {
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
}

.t7-footer-tagline {
    font-family: var(--t7-font);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 22px;
    text-align: left;
}

.t7-footer-contact-info p {
    font-family: var(--t7-font);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.t7-footer-contact-info p i {
    color: var(--t7-primary-light);
    font-size: 15px;
    width: 16px;
    text-align: center;
}

.t7-footer-contact-info p a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--t7-transition);
}

.t7-footer-contact-info p a:hover {
    color: var(--t7-primary-light);
}


/* ── Footer Headings & Links ── */
.t7-footer-heading {
    font-family: var(--t7-font);
    font-size: 17px;
    font-weight: 600;
    color: var(--t7-white);
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.t7-footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--t7-primary);
    border-radius: 2px;
}

.t7-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.t7-footer-links li {
    margin-bottom: 10px;
}

.t7-footer-links li a {
    font-family: var(--t7-font);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: var(--t7-transition);
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.t7-footer-links li a::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--t7-primary-light);
    transition: width 0.3s ease;
}

.t7-footer-links li a:hover {
    color: var(--t7-primary-light);
    padding-left: 6px;
}

.t7-footer-links li a:hover::before {
    width: 100%;
}


/* ── Footer Disclaimer ── */
.t7-footer-disclaimer {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.t7-footer-disclaimer p {
    font-family: var(--t7-font);
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    text-align: center;
    margin-bottom: 10px;
}

.t7-footer-disclaimer p:last-child {
    margin-bottom: 0;
}


/* ── Footer Bottom / Copyright ── */
.t7-footer-bottom {
    padding: 18px 0;
}

.t7-footer-bottom .t7-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.t7-footer-bottom p {
    font-family: var(--t7-font);
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.t7-footer-address {
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.35) !important;
}


/* ================================================================
   PRODUCT PAGE OVERRIDES
   Style existing class names from product.php, shop.php, etc.
   with HarvestRoot colors so the product/shop/cart pages match
   ================================================================ */

/* Breadcrumb */
.prodBreadcrm {
    background: var(--t7-bg) !important;
    border-bottom: 1px solid var(--t7-border);
    padding: 12px 0 !important;
}

.prodBreadcrm p,
.prodBreadcrm a {
    font-family: var(--t7-font) !important;
    color: var(--t7-text-light) !important;
    font-size: 14px !important;
}

.prodBreadcrm span {
    color: var(--t7-primary) !important;
    font-weight: 600;
}

/* Section titles on product/shop pages */
.s1-p1 {
    font-family: var(--t7-font) !important;
    color: var(--t7-text) !important;
}

.s1-p1 span {
    color: var(--t7-primary) !important;
}

.s1-p2 {
    font-family: var(--t7-font) !important;
    color: var(--t7-text-light) !important;
}

.s1-p2 span {
    color: var(--t7-text) !important;
    font-weight: 600;
}

/* Section line decoration */
.sec-line-2 {
    display: none !important;
}

/* Product section background */
.section-2 {
    background: var(--t7-white) !important;
}

/* Product card box */
.s2-prd-box {
    background: var(--t7-white) !important;
    border: 1px solid var(--t7-border) !important;
    border-radius: var(--t7-radius) !important;
    transition: var(--t7-transition);
    overflow: hidden;
}

.s2-prd-box:hover {
    border-color: var(--t7-secondary) !important;
    box-shadow: 0 12px 35px var(--t7-shadow-md) !important;
    transform: translateY(-4px);
}

/* Product card decorative arrow */
.s2-bx-arw {
    display: none !important;
}

/* Product card brand text */
.s2-p1 {
    font-family: var(--t7-font) !important;
    color: var(--t7-primary) !important;
    font-size: 11px !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600 !important;
}

/* Product card variant name */
.s2-p2 {
    font-family: var(--t7-font) !important;
    color: var(--t7-text) !important;
    font-weight: 600 !important;
    font-size: 17px !important;
}

/* Product card price area */
.s2-price-div {
    background: var(--t7-bg) !important;
    border-top: 1px solid var(--t7-border) !important;
    padding: 18px 20px !important;
}

/* Product price arrow decoration */
.s2-prc-arw {
    display: none !important;
}

/* Price text */
.s2-p3 {
    font-family: var(--t7-font) !important;
    color: var(--t7-primary) !important;
    font-weight: 700 !important;
}

.s2-p3 span {
    color: var(--t7-text-muted) !important;
    font-weight: 500 !important;
}

/* Shop button (used across old pages) */
.shop-btn {
    font-family: var(--t7-font) !important;
    background: var(--t7-primary) !important;
    color: var(--t7-white) !important;
    border-radius: var(--t7-radius-sm) !important;
    font-weight: 600 !important;
    transition: var(--t7-transition) !important;
    border: none !important;
}

.shop-btn:hover {
    background: var(--t7-primary-dark) !important;
    box-shadow: 0 6px 20px rgba(187, 107, 76, 0.3) !important;
    transform: translateY(-2px);
}

.shop-btn i {
    color: var(--t7-white) !important;
}

/* Product page specific sections */
.prd-sec1 {
    background: var(--t7-white) !important;
    border-bottom-color: var(--t7-border) !important;
}

.prod-desc {
    font-family: var(--t7-font) !important;
    color: var(--t7-text-light) !important;
    border-top-color: var(--t7-border) !important;
}

/* Option headings on shop page */
.option-hed {
    font-family: var(--t7-font) !important;
    color: var(--t7-text) !important;
    font-weight: 600 !important;
}

/* Purchase type selectors */
.purchase-container .onetime.checked,
.purchase-container .subscribe.checked {
    border-color: var(--t7-primary) !important;
    background: rgba(187, 107, 76, 0.06) !important;
}

.purchase-container .onetime.checked span::after,
.purchase-container .subscribe.checked span::after {
    background: var(--t7-primary) !important;
}

/* Supplement quantity controls */
.supp-qty-btn {
    border-color: var(--t7-border) !important;
    color: var(--t7-text) !important;
    font-family: var(--t7-font) !important;
    transition: var(--t7-transition) !important;
}

.supp-qty-btn:hover {
    background: var(--t7-primary) !important;
    color: var(--t7-white) !important;
    border-color: var(--t7-primary) !important;
}

.supp-qty-display {
    font-family: var(--t7-font) !important;
    color: var(--t7-text) !important;
    font-weight: 600 !important;
}

.supp-total-val {
    color: var(--t7-primary) !important;
    font-family: var(--t7-font) !important;
    font-weight: 700 !important;
}

.supp-perbtl-val {
    color: var(--t7-text-light) !important;
    font-family: var(--t7-font) !important;
}

.supp-price-label {
    font-family: var(--t7-font) !important;
    color: var(--t7-text-muted) !important;
}

/* Package selection (tier products) */
.package-type {
    border-color: var(--t7-border) !important;
    font-family: var(--t7-font) !important;
    transition: var(--t7-transition) !important;
}

.add-cart-pid:checked + .package-type {
    border-color: var(--t7-primary) !important;
    background: rgba(187, 107, 76, 0.04) !important;
}

.btl-qnty {
    font-family: var(--t7-font) !important;
    color: var(--t7-text) !important;
}

.price_tag {
    color: var(--t7-primary) !important;
    font-weight: 700 !important;
    font-family: var(--t7-font) !important;
}

/* Legacy header overrides (for non-index pages that still use .top-bar) */
.top-bar {
    border-bottom-color: var(--t7-border) !important;
}

a.logo {
    font-family: var(--t7-font) !important;
}

.logo-health {
    color: var(--t7-primary) !important;
}

.logo-life {
    color: var(--t7-text) !important;
}

.menu-bar li a {
    font-family: var(--t7-font) !important;
    color: var(--t7-text) !important;
    transition: var(--t7-transition) !important;
}

.menu-bar li a:hover,
.menu-bar li a.active {
    color: var(--t7-primary) !important;
}

.hdrbtn {
    background: var(--t7-primary) !important;
    color: var(--t7-white) !important;
    font-family: var(--t7-font) !important;
    border-radius: var(--t7-radius-sm) !important;
    transition: var(--t7-transition) !important;
}

.hdrbtn:hover {
    background: var(--t7-primary-dark) !important;
}

/* Legacy footer overrides */
footer {
    background: var(--t7-text) !important;
}

.ftr-nav li {
    font-family: var(--t7-font) !important;
}

.foo-btm {
    background: rgba(0, 0, 0, 0.15) !important;
}

.foo-btm p {
    font-family: var(--t7-font) !important;
}

.other-links li a {
    font-family: var(--t7-font) !important;
    transition: var(--t7-transition) !important;
}

.other-links li a:hover {
    color: var(--t7-primary-light) !important;
}

/* FAQ section overrides (index) */
.section-4 {
    background: var(--t7-white) !important;
}

.acdn-heading {
    font-family: var(--t7-font) !important;
    color: var(--t7-text) !important;
}

.accordion-open {
    color: var(--t7-primary) !important;
}

.acdn-para {
    font-family: var(--t7-font) !important;
    color: var(--t7-text-light) !important;
}

/* Inner page backgrounds */
.in-pg-cont {
    font-family: var(--t7-font) !important;
}

.in-pg-cont .s1-p1 {
    color: var(--t7-text) !important;
}

/* Cart page form overrides */
.cart-form-box {
    font-family: var(--t7-font) !important;
}

.step-hd.actv {
    background: var(--t7-primary) !important;
}

/* Contact page */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    font-family: var(--t7-font) !important;
    border-color: var(--t7-border) !important;
    border-radius: var(--t7-radius-sm) !important;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--t7-primary) !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(187, 107, 76, 0.12) !important;
}


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

/* ── Tablet / Medium Screens ── */
@media only screen and (max-width: 1024px) {

    .t7-container {
        max-width: 960px;
    }

    .t7-hero-heading {
        font-size: 42px;
    }

    .t7-hero-grid {
        gap: 40px;
    }

    .t7-section-title {
        font-size: 32px;
    }

    .t7-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .t7-footer-grid {
        gap: 35px;
    }
}


/* ── Tablet Portrait / Small Tablets ── */
@media only screen and (max-width: 768px) {

    :root {
        --t7-header-height: 65px;
    }

    .t7-container {
        padding: 0 16px;
    }

    /* Header */
    .t7-nav {
        display: none;
    }

    .t7-mobile-controls {
        display: flex;
    }

    .t7-hamburger {
        display: flex;
    }

    .t7-mobile-menu {
        display: block;
    }

    .t7-logo-terra,
    .t7-logo-bloom {
        font-size: 22px;
    }

    .t7-logo-tagline {
        display: none;
    }

    /* Hero */
    .t7-hero {
        padding: 50px 0 60px;
    }

    .t7-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .t7-hero-content {
        order: 1;
    }

    .t7-hero-image {
        order: 2;
    }

    .t7-hero-heading {
        font-size: 36px;
    }

    .t7-hero-heading span {
        display: inline;
    }

    .t7-hero-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .t7-hero-btns {
        justify-content: center;
    }

    .t7-hero-img-wrapper {
        max-width: 350px;
    }

    /* Features */
    .t7-features {
        padding: 40px 0;
    }

    .t7-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .t7-feature-box {
        padding: 24px 16px;
    }

    /* About */
    .t7-about {
        padding: 60px 0;
    }

    .t7-about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .t7-about-card {
        padding: 30px 24px;
    }

    /* Products */
    .t7-products {
        padding: 60px 0;
    }

    .t7-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .t7-section-header {
        margin-bottom: 35px;
    }

    .t7-section-title {
        font-size: 28px;
    }

    .t7-section-subtitle {
        font-size: 15px;
    }

    /* Tips */
    .t7-tips {
        padding: 60px 0;
    }

    .t7-tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Footer */
    .t7-footer {
        padding: 50px 0 0;
    }

    .t7-footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-bottom: 35px;
    }

    .t7-footer-col {
        text-align: center;
    }

    .t7-footer-logo {
        justify-content: center;
    }

    .t7-footer-tagline {
        text-align: center;
    }

    .t7-footer-contact-info p {
        justify-content: center;
    }

    .t7-footer-heading {
        text-align: center;
    }

    .t7-footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .t7-footer-links li {
        text-align: center;
    }

    .t7-footer-bottom .t7-container {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}


/* ── Mobile Phones ── */
@media only screen and (max-width: 480px) {

    :root {
        --t7-header-height: 60px;
    }

    .t7-logo-terra,
    .t7-logo-bloom {
        font-size: 20px;
    }

    /* Hero */
    .t7-hero {
        padding: 35px 0 45px;
    }

    .t7-hero-badge {
        font-size: 11px;
        padding: 6px 14px;
    }

    .t7-hero-heading {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .t7-hero-desc {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .t7-hero-btns {
        flex-direction: column;
        gap: 12px;
    }

    .t7-btn {
        font-size: 14px;
        padding: 12px 28px;
        width: 100%;
        justify-content: center;
    }

    .t7-hero-img-wrapper {
        max-width: 280px;
    }

    .t7-hero-img-accent {
        display: none;
    }

    /* Features */
    .t7-features {
        padding: 30px 0;
    }

    .t7-features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .t7-feature-box {
        padding: 20px 12px;
    }

    .t7-feature-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 12px;
    }

    .t7-feature-icon i {
        font-size: 20px;
    }

    .t7-feature-title {
        font-size: 14px;
    }

    .t7-feature-desc {
        font-size: 12px;
        display: none;
    }

    /* Section headers */
    .t7-section-header {
        margin-bottom: 28px;
    }

    .t7-section-label {
        font-size: 11px;
        padding: 5px 14px;
    }

    .t7-section-title {
        font-size: 24px;
    }

    .t7-section-subtitle {
        font-size: 14px;
    }

    /* About */
    .t7-about {
        padding: 45px 0;
    }

    .t7-about-card {
        padding: 28px 20px;
    }

    .t7-about-card-title {
        font-size: 17px;
    }

    .t7-about-card-desc {
        font-size: 14px;
    }

    /* Products */
    .t7-products {
        padding: 45px 0;
    }

    .t7-products-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .t7-product-card {
        flex-direction: row;
        align-items: stretch;
    }

    .t7-product-img-wrap {
        width: 120px;
        min-width: 120px;
        min-height: auto;
        padding: 15px;
        flex-shrink: 0;
    }

    .t7-product-img {
        max-height: 100px;
    }

    .t7-product-info {
        padding: 16px;
    }

    .t7-product-brand {
        font-size: 10px;
    }

    .t7-product-name {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .t7-product-desc-short {
        display: none;
    }

    .t7-product-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding-top: 10px;
    }

    .t7-product-price {
        font-size: 18px;
    }

    .t7-btn-sm {
        font-size: 12px;
        padding: 8px 16px;
    }

    .t7-center-wrap {
        margin-top: 25px;
    }

    .t7-center-wrap .t7-btn {
        width: auto;
    }

    /* Tips */
    .t7-tips {
        padding: 45px 0;
    }

    .t7-tip-card {
        padding: 28px 20px;
    }

    .t7-tip-icon-wrap {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }

    .t7-tip-icon-wrap i {
        font-size: 24px;
    }

    .t7-tip-title {
        font-size: 17px;
    }

    .t7-tip-desc {
        font-size: 14px;
    }

    /* Footer */
    .t7-footer {
        padding: 40px 0 0;
    }

    .t7-footer-grid {
        gap: 30px;
        padding-bottom: 30px;
    }

    .t7-footer-logo .t7-logo-terra,
    .t7-footer-logo .t7-logo-bloom {
        font-size: 20px;
    }

    .t7-footer-tagline {
        font-size: 13px;
    }

    .t7-footer-heading {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .t7-footer-links li a {
        font-size: 13px;
    }

    .t7-footer-disclaimer p {
        font-size: 11px;
    }

    .t7-footer-bottom p {
        font-size: 12px;
    }

    .t7-footer-address {
        font-size: 11px !important;
    }
}


/* ── Extra Small Phones ── */
@media only screen and (max-width: 360px) {

    .t7-hero-heading {
        font-size: 24px;
    }

    .t7-hero-desc {
        font-size: 14px;
    }

    .t7-section-title {
        font-size: 22px;
    }

    .t7-features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .t7-feature-box {
        display: flex;
        align-items: center;
        gap: 14px;
        text-align: left;
        padding: 16px;
    }

    .t7-feature-icon {
        margin: 0;
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .t7-feature-title {
        margin-bottom: 2px;
    }

    .t7-product-img-wrap {
        width: 100px;
        min-width: 100px;
    }

    .t7-product-img {
        max-height: 80px;
    }
}


/* ================================================================
   UTILITY CLASSES
   ================================================================ */
.t7-hide-mob {
    display: block;
}

.t7-show-mob {
    display: none;
}

@media only screen and (max-width: 768px) {
    .t7-hide-mob {
        display: none !important;
    }
    .t7-show-mob {
        display: block !important;
    }
}


/* ================================================================
   ANIMATIONS & TRANSITIONS
   ================================================================ */

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Card entrance animation helper */
@keyframes t7-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.t7-animate-in {
    animation: t7-fadeInUp 0.5s ease forwards;
}

/* Subtle pulse for CTA */
@keyframes t7-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(187, 107, 76, 0.3);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(187, 107, 76, 0);
    }
}

.t7-btn-primary:focus {
    animation: t7-pulse 1.5s ease infinite;
}

/* Image shimmer loading effect */
@keyframes t7-shimmer {
    0% {
        background-position: -400px 0;
    }
    100% {
        background-position: 400px 0;
    }
}

.t7-product-img-wrap {
    background: linear-gradient(
        to right,
        var(--t7-bg) 0%,
        var(--t7-bg-alt) 50%,
        var(--t7-bg) 100%
    );
    background-size: 800px 100%;
}

/* Selection color */
::selection {
    background: rgba(187, 107, 76, 0.2);
    color: var(--t7-text);
}

::-moz-selection {
    background: rgba(187, 107, 76, 0.2);
    color: var(--t7-text);
}


/* ================================================================
   PRINT STYLES
   ================================================================ */
@media print {
    .t7-header,
    .t7-footer,
    .t7-mobile-menu,
    .t7-mobile-controls {
        display: none !important;
    }

    .t7-page-wrap {
        overflow: visible;
    }

    body {
        background: #fff !important;
        color: #000 !important;
    }
}
