@charset "utf-8";
/* ================================================================
   PeakStride Health — Template-10 Bold Teal Dynamic Theme
   ================================================================ */

/* ── Design Tokens ── */
:root {
    --t10-primary: #2A8A7A;
    --t10-primary-dark: #228070;
    --t10-primary-light: #33A08E;
    --t10-light: #E0F5F2;
    --t10-dark: #1A3A35;
    --t10-dark-mid: #243E3A;
    --t10-white: #FFFFFF;
    --t10-muted: #F5F5F5;
    --t10-border: rgba(26, 58, 53, 0.10);
    --t10-muted-fg: #6B7B78;
    --t10-font: 'Poppins', sans-serif;
    --t10-radius: 16px;
    --t10-radius-xl: 24px;
    --t10-shadow-sm: 0 2px 12px rgba(26, 58, 53, 0.06);
    --t10-shadow-md: 0 4px 24px rgba(26, 58, 53, 0.10);
    --t10-shadow-lg: 0 8px 40px rgba(26, 58, 53, 0.14);
    --t10-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Base Overrides ── */
body {
    background-color: var(--t10-white);
    color: var(--t10-dark);
    font-family: var(--t10-font);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--t10-font);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--t10-dark);
}

a {
    color: var(--t10-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--t10-primary);
}

/* ── Container ── */
.t10-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Eyebrow Label ── */
.t10-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--t10-muted-fg);
    margin-bottom: 8px;
}

/* ── Section Header ── */
.t10-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.t10-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--t10-dark);
    line-height: 1.15;
}

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

.t10-section-subtitle {
    max-width: 680px;
    margin: 16px auto 0;
    font-size: 1rem;
    color: var(--t10-muted-fg);
    line-height: 1.7;
}

/* ── Divider ── */
.t10-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 16px auto;
    max-width: 120px;
}

.t10-div-line {
    height: 1px;
    flex: 1;
    background: rgba(42, 138, 122, 0.35);
}

.t10-div-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--t10-primary);
}

/* ── Primary Button ── */
.t10-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--t10-primary);
    color: var(--t10-white);
    font-family: var(--t10-font);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--t10-transition);
    box-shadow: 0 4px 16px rgba(42, 138, 122, 0.30);
    text-decoration: none;
    line-height: 1;
}

.t10-btn-primary:hover {
    background: var(--t10-dark);
    color: var(--t10-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(26, 58, 53, 0.25);
    text-decoration: none;
}

.t10-btn-primary i {
    font-size: 12px;
}


/* ================================================================
   HEADER
   ================================================================ */
.t10-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--t10-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.t10-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* Logo */
.t10-logo {
    display: flex;
    align-items: baseline;
    gap: 6px;
    text-decoration: none;
}

.t10-logo-peak {
    font-family: var(--t10-font);
    font-size: 26px;
    font-weight: 800;
    color: var(--t10-white);
    letter-spacing: -0.5px;
}

.t10-logo-health {
    font-family: var(--t10-font);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--t10-primary);
}

/* Desktop Nav */
.t10-nav {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.t10-nav li a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.80);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.2s;
}

.t10-nav li a:hover,
.t10-nav li a.active {
    color: var(--t10-primary);
}

/* Header Actions */
.t10-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.t10-cart-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.80);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

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

.t10-cart-link .fa {
    font-size: 18px;
}

.t10-cart-label {
    display: inline;
}

/* Mobile Toggle */
.t10-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.t10-mobile-toggle .bar1,
.t10-mobile-toggle .bar2,
.t10-mobile-toggle .bar3 {
    width: 24px;
    height: 2px;
    background: var(--t10-white);
    border-radius: 2px;
    transition: var(--t10-transition);
}

.t10-mobile-toggle.active .bar1 {
    transform: rotate(45deg) translate(5px, 5px);
}

.t10-mobile-toggle.active .bar2 {
    opacity: 0;
}

.t10-mobile-toggle.active .bar3 {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.t10-mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--t10-dark);
    padding: 0 24px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.t10-mobile-nav.open {
    display: flex;
}

.t10-mobile-nav a {
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.80);
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.2s;
}

.t10-mobile-nav a:last-child {
    border-bottom: none;
}

.t10-mobile-nav a:hover {
    color: var(--t10-primary);
}


/* ================================================================
   HERO
   ================================================================ */
.t10-hero {
    position: relative;
    background: url('../images/s1-img.png') center center / cover no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.t10-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 58, 53, 0.92) 0%,
        rgba(26, 58, 53, 0.75) 50%,
        rgba(42, 138, 122, 0.40) 100%
    );
}

.t10-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    padding-top: 60px;
    padding-bottom: 60px;
}

.t10-hero-text {
    color: var(--t10-white);
}

.t10-hero-h1 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--t10-white);
    margin-bottom: 0;
}

.t10-hero-h1 span {
    color: var(--t10-primary-light);
}

.t10-hero-bar {
    width: 80px;
    height: 4px;
    background: var(--t10-primary);
    border-radius: 2px;
    margin: 20px 0;
}

.t10-hero-sub {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.80);
    max-width: 520px;
    margin-bottom: 32px;
}

.t10-hero .t10-btn-primary {
    font-size: 0.9rem;
    padding: 16px 40px;
}

.t10-hero-bottles {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0;
    position: relative;
}

.t10-hero-bottle {
    max-height: 380px;
    width: auto;
    margin: 0 -55px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
    transition: transform 0.4s ease;
}

.t10-hero-bottle:nth-child(2) {
    transform: scale(1.1) translateY(-10px);
    z-index: 2;
}

.t10-hero-bottle:hover {
    transform: scale(1.05);
}

.t10-hero-bottle:nth-child(2):hover {
    transform: scale(1.15) translateY(-10px);
}


/* ================================================================
   PROMISE SECTION
   ================================================================ */
.t10-promise {
    padding: 80px 0;
    background: var(--t10-white);
}

.t10-promise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.t10-promise-image {
    border-radius: var(--t10-radius-xl);
    overflow: hidden;
}

.t10-promise-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--t10-radius-xl);
}

.t10-promise-intro {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--t10-muted-fg);
    margin-bottom: 32px;
}

.t10-promise-intro strong {
    color: var(--t10-dark);
}

.t10-promise-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.t10-promise-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.t10-promise-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--t10-light);
    color: var(--t10-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-top: 2px;
}

.t10-promise-item-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--t10-dark);
    margin-bottom: 4px;
}

.t10-promise-item-desc {
    font-size: 0.9rem;
    color: var(--t10-muted-fg);
    line-height: 1.6;
}


/* ================================================================
   PRODUCTS SECTION
   ================================================================ */
.t10-products {
    padding: 80px 0;
    background: var(--t10-light);
}

.t10-products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.t10-product-card {
    background: var(--t10-white);
    border-radius: var(--t10-radius);
    overflow: hidden;
    box-shadow: var(--t10-shadow-sm);
    border: 1px solid var(--t10-border);
    transition: var(--t10-transition);
    display: flex;
    flex-direction: column;
    text-align: center;
}

.t10-product-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--t10-shadow-lg);
    border-color: rgba(42, 138, 122, 0.25);
}

.t10-product-img {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    min-height: 220px;
    background: linear-gradient(180deg, var(--t10-muted) 0%, var(--t10-white) 100%);
}

.t10-product-img img {
    max-height: 180px;
    width: auto;
    transition: transform 0.4s ease;
}

.t10-product-card:hover .t10-product-img img {
    transform: scale(1.10);
}

.t10-product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.t10-product-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--t10-dark);
    margin-bottom: 6px;
}

.t10-product-price {
    font-size: 0.9rem;
    color: var(--t10-muted-fg);
    margin-bottom: 16px;
}

.t10-btn-shop {
    display: inline-block;
    padding: 10px 28px;
    background: var(--t10-primary);
    color: var(--t10-white);
    font-family: var(--t10-font);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 6px;
    text-decoration: none;
    transition: var(--t10-transition);
    margin-top: auto;
}

.t10-btn-shop:hover {
    background: var(--t10-dark);
    color: var(--t10-white);
    text-decoration: none;
}

.t10-products-cta {
    text-align: center;
    margin-top: 48px;
}


/* ================================================================
   LIFESTYLE SECTION
   ================================================================ */
.t10-lifestyle {
    padding: 80px 0;
    background: var(--t10-white);
}

.t10-lifestyle-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.t10-lifestyle-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--t10-muted-fg);
    margin-bottom: 32px;
}

.t10-lifestyle-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.t10-lifestyle-checklist li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.95rem;
    color: var(--t10-muted-fg);
    line-height: 1.65;
}

.t10-check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--t10-primary);
    color: var(--t10-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    margin-top: 3px;
}


/* ================================================================
   TRUST BADGES SECTION
   ================================================================ */
.t10-trust {
    padding: 64px 0;
    background: var(--t10-light);
    border-top: 1px solid var(--t10-border);
    border-bottom: 1px solid var(--t10-border);
}

.t10-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.t10-trust-badge {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.t10-badge-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--t10-primary);
    color: var(--t10-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.t10-badge-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--t10-dark);
    margin-bottom: 4px;
}

.t10-badge-desc {
    font-size: 0.85rem;
    color: var(--t10-muted-fg);
    line-height: 1.55;
}


/* ================================================================
   FOOTER
   ================================================================ */
.t10-footer {
    background: var(--t10-dark);
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}

.t10-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding: 64px 0 48px;
}

.t10-footer-logo {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 16px;
}

.t10-footer-tagline {
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.60);
}

.t10-footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--t10-white);
    margin-bottom: 20px;
    letter-spacing: 0.03em;
}

.t10-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.t10-footer-links li a,
.t10-footer-links li span {
    color: rgba(255, 255, 255, 0.60);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.t10-footer-links li a:hover {
    color: var(--t10-primary);
}

/* Contact list with icons */
.t10-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.t10-contact-list li .fa {
    color: var(--t10-primary);
    margin-top: 3px;
    font-size: 14px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

/* Footer Trust Row */
.t10-footer-trust {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
}

.t10-trust-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.t10-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.70);
}

.t10-trust-item .fa {
    color: var(--t10-primary);
    font-size: 16px;
}

/* Footer Disclaimer */
.t10-footer-disclaimer {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.t10-footer-disclaimer p {
    font-size: 0.75rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.40);
    margin-bottom: 12px;
}

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

/* Footer Bottom / Copyright */
.t10-footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.t10-footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
}


/* ================================================================
   OLD CSS HIDE ELEMENTS (REFERENCE classes from style.css)
   ================================================================ */

/* Hide old template decorative elements */
.top-sec {
    display: none !important;
}

.sec-line {
    display: none !important;
}


/* ================================================================
   PRODUCT PAGE OVERRIDES
   (Override REFERENCE classes from style.css / inner.css)
   ================================================================ */

.prodBreadcrm {
    background: var(--t10-muted);
    border-bottom: 1px solid var(--t10-border);
}

.prodBreadcrm p,
.prodBreadcrm a {
    color: var(--t10-dark);
    font-family: var(--t10-font);
}

.prodBreadcrm span {
    color: var(--t10-primary);
}

.section-2 {
    background: var(--t10-white);
}

.s1-p1 {
    font-family: var(--t10-font);
    color: var(--t10-dark);
    font-weight: 700;
}

.s1-p1 span {
    color: var(--t10-primary);
}

.sec-line-2 {
    display: none;
}

.s1-p2 {
    font-family: var(--t10-font);
    color: var(--t10-muted-fg);
}

.s2-prd-box {
    background: var(--t10-white);
    border-radius: var(--t10-radius);
    overflow: hidden;
    box-shadow: var(--t10-shadow-sm);
    border: 1px solid var(--t10-border);
    transition: var(--t10-transition);
}

.s2-bx-arw {
    display: none;
}

.s2-p1 {
    background: var(--t10-dark);
    font-family: var(--t10-font);
    font-size: 18px;
    line-height: 26px;
    padding: 16px 20px;
    letter-spacing: 0;
    font-weight: 700;
    color: var(--t10-white);
}

.s2-p2 {
    background: var(--t10-light);
    color: var(--t10-dark);
    font-family: var(--t10-font);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    letter-spacing: 0.5px;
}

.marg-1 .s2-p2,
.s2-3rd-box .s2-p2 {
    background: var(--t10-light);
}

.s2-prd-div {
    padding: 28px 20px;
}

.s2-price-div {
    background: var(--t10-white);
    border: none;
    border-top: 1px solid var(--t10-border);
    padding: 24px 20px;
}

.s2-prc-arw {
    display: none;
}

.s2-p3 {
    font-family: var(--t10-font);
    color: var(--t10-dark);
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 16px;
    font-weight: 700;
}

.s2-p3 span {
    font-size: 14px;
    color: var(--t10-primary);
    font-family: var(--t10-font);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.shop-btn {
    font-family: var(--t10-font);
    border: 2px solid var(--t10-primary);
    color: var(--t10-white);
    background: var(--t10-primary);
    border-radius: 8px;
    font-size: 14px;
    line-height: 46px;
    width: 220px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--t10-transition);
}

.shop-btn:hover {
    background: var(--t10-dark);
    color: var(--t10-white);
    border-color: var(--t10-dark);
}

.shop-btn i {
    color: inherit;
}

.s2-prd-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--t10-shadow-md);
}

/* Inner page headings */
.inner-banner {
    background: var(--t10-dark);
}

.inner-banner h1,
.inner-banner h2 {
    font-family: var(--t10-font);
    color: var(--t10-white);
}

/* Shop page overrides */
.order-btn.picked,
.order-btn.picked .prd-bx-prc {
    border-color: var(--t10-primary);
}

.order-btn .prd-bx-btn {
    background: var(--t10-primary);
    color: var(--t10-white);
    font-family: var(--t10-font);
    border-radius: 8px;
    font-weight: 700;
}

.order-btn .prd-bx-btn:hover {
    background: var(--t10-dark);
}

.prd-bx-prc {
    font-family: var(--t10-font);
}

/* Contact / policy page overrides */
.inner-page h2,
.inner-page h3,
.inner-page h4 {
    font-family: var(--t10-font);
    color: var(--t10-dark);
}

.inner-page p,
.inner-page li {
    font-family: var(--t10-font);
    color: var(--t10-muted-fg);
}

/* Cart page overrides */
.cart-hd {
    font-family: var(--t10-font);
    color: var(--t10-dark);
}

.cart-btn,
.cart-checkout-btn {
    background: var(--t10-primary);
    color: var(--t10-white);
    font-family: var(--t10-font);
    border-radius: 8px;
    font-weight: 700;
    border: none;
    transition: var(--t10-transition);
}

.cart-btn:hover,
.cart-checkout-btn:hover {
    background: var(--t10-dark);
}

/* Checkout / form overrides */
.step-hd.actv {
    background: var(--t10-primary);
}

.step1Btn,
.btn-place-order {
    background: var(--t10-primary);
    color: var(--t10-white);
    font-family: var(--t10-font);
    border-radius: 8px;
    font-weight: 700;
    border: none;
}

.step1Btn:hover,
.btn-place-order:hover {
    background: var(--t10-dark);
}

/* FAQ Accordion overrides */
.accordion.acdn-heading {
    font-family: var(--t10-font);
    font-weight: 600;
    color: var(--t10-dark);
}

.acdn-para {
    font-family: var(--t10-font);
    color: var(--t10-muted-fg);
}

/* Promise bar overrides (old layout) */
.bnr-btm-sec {
    background: var(--t10-light);
}

.promise-hdng {
    font-family: var(--t10-font);
    color: var(--t10-dark);
    font-weight: 700;
}

.promise-list li p {
    font-family: var(--t10-font);
    color: var(--t10-dark);
}

/* Section-1 overrides */
.section-1 {
    background: var(--t10-white);
}

.s1-p3 {
    font-family: var(--t10-font);
    color: var(--t10-dark);
    font-weight: 700;
}

/* Section-3 overrides */
.section-3 {
    background: var(--t10-muted);
}

.s3-p1 {
    font-family: var(--t10-font);
    font-weight: 700;
}

.s3-txt {
    font-family: var(--t10-font);
}

/* Section-4 overrides */
.section-4 {
    background: var(--t10-white);
}

/* Banner overrides */
.banner {
    background-color: var(--t10-dark);
}

.bnr-p1 {
    font-family: var(--t10-font);
    font-weight: 800;
}

.bnr-p1 span {
    color: var(--t10-primary);
}

.bnr-p2 {
    font-family: var(--t10-font);
}


/* ================================================================
   RESPONSIVE — TABLET (max-width: 768px)
   ================================================================ */
@media (max-width: 768px) {

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

    .t10-mobile-toggle {
        display: flex;
    }

    .t10-cart-label {
        display: none;
    }

    .t10-header-inner {
        height: 60px;
    }

    .t10-logo-peak {
        font-size: 22px;
    }

    /* Hero */
    .t10-hero {
        min-height: auto;
    }

    .t10-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
        padding-bottom: 40px;
        gap: 32px;
    }

    .t10-hero-h1 {
        font-size: 2.2rem;
    }

    .t10-hero-bar {
        margin: 16px auto;
    }

    .t10-hero-sub {
        margin: 0 auto 24px;
    }

    .t10-hero-bottles {
        justify-content: center;
    }

    .t10-hero-bottle {
        max-height: 220px;
    }

    /* Section Titles */
    .t10-section-title {
        font-size: 1.8rem;
    }

    /* Promise */
    .t10-promise {
        padding: 48px 0;
    }

    .t10-promise-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Products */
    .t10-products {
        padding: 48px 0;
    }

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

    .t10-product-img {
        min-height: 180px;
        padding: 24px 12px;
    }

    .t10-product-img img {
        max-height: 150px;
    }

    /* Lifestyle */
    .t10-lifestyle {
        padding: 48px 0;
    }

    /* Trust */
    .t10-trust {
        padding: 40px 0;
    }

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

    /* Footer */
    .t10-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        padding: 48px 0 32px;
    }

    .t10-trust-row {
        gap: 24px;
    }
}


/* ================================================================
   RESPONSIVE — MOBILE (max-width: 480px)
   ================================================================ */
@media (max-width: 480px) {

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

    /* Hero */
    .t10-hero-h1 {
        font-size: 1.75rem;
    }

    .t10-hero-sub {
        font-size: 0.95rem;
    }

    .t10-hero-bottle {
        max-height: 160px;
    }

    .t10-hero .t10-btn-primary {
        padding: 14px 28px;
        font-size: 0.8rem;
    }

    /* Section Titles */
    .t10-section-title {
        font-size: 1.5rem;
    }

    .t10-section-subtitle {
        font-size: 0.9rem;
    }

    /* Products */
    .t10-products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .t10-product-card {
        flex-direction: row;
        text-align: left;
    }

    .t10-product-img {
        min-height: auto;
        padding: 16px;
        width: 120px;
        flex-shrink: 0;
    }

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

    .t10-product-info {
        align-items: flex-start;
        padding: 16px;
    }

    .t10-btn-shop {
        padding: 8px 20px;
        font-size: 0.7rem;
    }

    /* Trust */
    .t10-trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .t10-badge-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    /* Footer */
    .t10-footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .t10-trust-row {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    /* Promise */
    .t10-promise-icon {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .t10-lifestyle-checklist li {
        font-size: 0.9rem;
    }

    .t10-check-icon {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
}
