/* Zero To Ten storefront — design system + homepage + inner-page overrides */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap");

:root {
    --ztt-navy: #1b4f8c;
    --ztt-navy-deep: #163a70;
    --ztt-navy-rgb: 27, 79, 140;
    --ztt-green: #43a047;
    --ztt-green-bright: #4caf50;
    --ztt-lime: #8bc34a;
    --ztt-lime-handle: #7cb342;
    --ztt-orange: #f5a623;
    --ztt-red: #e53935;
    --ztt-teal: #1a9b8e;
    --ztt-age-2: #5bae3a;
    --ztt-age-3: #efa222;
    --ztt-age-4: #e53935;
    --ztt-age-5: #1a3a6b;
    --ztt-age-6: #9ccc32;
    --ztt-newsletter: #e8f3fb;
    --ztt-text: #1c1c1c;
    --ztt-muted: #5c5c5c;
    --ztt-border: #e6e6e6;
    --ztt-bg: #f5f5f3;
    --ztt-white: #ffffff;
    --ztt-max: 1320px;
    --ztt-radius: 12px;
    --ztt-radius-sm: 8px;
    --ztt-font: "Montserrat", "Helvetica Neue", Arial, sans-serif;
    --ztt-header: 108px;
    --ztt-announce: 40px;
}

body.ztt-storefront {
    font-family: var(--ztt-font);
    color: var(--ztt-text);
    background-color: var(--ztt-bg) !important;
    background-image: radial-gradient(rgba(0, 0, 0, 0.03) 0.7px, transparent 0.7px) !important;
    background-size: 3px 3px !important;
    overflow-x: clip;
    width: 100%;
    max-width: 100%;
}
html:has(body.ztt-storefront) {
    background-color: var(--ztt-bg);
    background-image: radial-gradient(rgba(0, 0, 0, 0.03) 0.7px, transparent 0.7px);
    background-size: 3px 3px;
    overflow-x: clip;
    width: 100%;
    max-width: 100%;
}
/* Kill Bootstrap row side-bleed that creates white gutters on mobile */
body.ztt-storefront > .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100%;
}

body.ztt-storefront h1,
body.ztt-storefront h2,
body.ztt-storefront h3,
body.ztt-storefront h4,
body.ztt-storefront h5,
body.ztt-storefront h6 {
    font-family: var(--ztt-font);
    font-weight: 800;
    letter-spacing: 0;
}

.ztt-wrap {
    width: min(100% - 32px, var(--ztt-max));
    margin-inline: auto;
}

@media (min-width: 1920px) {
    :root { --ztt-max: 1440px; }
}
@media (min-width: 2560px) {
    :root { --ztt-max: 1560px; }
}
@media (min-width: 3840px) {
    :root { --ztt-max: 1680px; }
}

/* ---------- Announcement ---------- */
.ztt-announce {
    background: var(--ztt-navy);
    color: #fff;
    min-height: var(--ztt-announce);
    display: none;
    align-items: center;
}
@media (min-width: 992px) {
    .ztt-announce { display: flex; }
}
.ztt-announce-inner {
    width: min(100% - 32px, var(--ztt-max));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
}
.ztt-announce-left {
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}
.ztt-announce-right {
    display: flex;
    align-items: center;
    gap: 14px;
}
.ztt-announce-right a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.ztt-announce-right a:hover { opacity: 0.85; color: #fff; }
.ztt-announce-sep { opacity: 0.45; }
.ztt-announce-social {
    display: flex;
    gap: 10px;
    margin-left: 6px;
}
.ztt-announce-social a {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    color: #fff;
}

/* ---------- Header ---------- */
.ztt-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1050;
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.ztt-header-inner {
    min-height: var(--ztt-header);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}
.ztt-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}
.ztt-logo img,
.ztt-logo svg {
    height: 88px;
    width: auto;
    display: block;
}
.ztt-nav {
    display: none;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 1.6vw, 28px);
    list-style: none;
    margin: 0;
    padding: 0;
}
@media (min-width: 1100px) {
    .ztt-nav { display: flex; }
}
.ztt-nav > li { position: relative; }
.ztt-nav > li > a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #3a3a3a;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
}
.ztt-nav > li > a:hover,
.ztt-nav > li.is-active > a {
    color: var(--ztt-navy);
    border-bottom-color: var(--ztt-navy);
}
.ztt-nav .ztt-caret {
    width: 10px;
    height: 10px;
    opacity: 0.7;
}
.ztt-drop {
    position: absolute;
    top: calc(100% - 2px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 240px;
    background: #fff;
    border: 1px solid var(--ztt-border);
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(16, 24, 40, 0.12);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.18s ease;
    z-index: 20;
}
.ztt-nav > li:hover > .ztt-drop,
.ztt-nav > li:focus-within > .ztt-drop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.ztt-drop a {
    display: block;
    padding: 8px 18px;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}
.ztt-drop a:hover { background: #f6f8fb; color: var(--ztt-navy); }

.ztt-tools {
    display: flex;
    align-items: center;
    gap: 6px;
}
.ztt-icon-btn {
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    color: #222;
    display: grid;
    place-items: center;
    position: relative;
    border-radius: 50%;
    text-decoration: none;
}
.ztt-icon-btn:hover { color: var(--ztt-navy); background: #f4f6f9; }
.ztt-icon-btn svg { width: 22px; height: 22px; }
.ztt-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 99px;
    background: var(--ztt-green);
    color: #fff !important;
    font-size: 10px;
    font-weight: 700;
    display: grid;
    place-items: center;
    line-height: 1;
}

/* Preserve 6Valley cart/wishlist markup, restyle to match */
.ztt-header .navbar-tool-text,
.ztt-header .navbar-tool-tooltip { display: none !important; }
.ztt-header .navbar-tool,
.ztt-header .navbar-tool-icon-box {
    background: transparent !important;
    box-shadow: none !important;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    margin: 0 !important;
}
.ztt-header .navbar-tool-icon {
    font-size: 20px;
    color: #222;
}
.ztt-header .navbar-tool-label,
.ztt-header .countWishlist {
    background: var(--ztt-green) !important;
    color: #fff !important;
    min-width: 16px;
    height: 16px;
    font-size: 10px;
    font-weight: 700;
    border-radius: 99px;
    top: 2px;
    right: 2px;
}
.ztt-header #cart_items .dropdown-menu { margin-top: 8px; }
.ztt-wishlist-btn { display: none; }
@media (min-width: 768px) {
    .ztt-wishlist-btn { display: grid; }
}
.ztt-header #cart_items {
    display: flex;
    align-items: center;
}
.ztt-header #cart_items .navbar-tool {
    width: 40px;
    min-width: 40px;
}
.ztt-header .__auth-dropdown,
.ztt-header .dropdown-menu { z-index: 1060; }

.ztt-burger {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    color: #222;
}
@media (min-width: 1100px) {
    .ztt-burger { display: none; }
}

.ztt-search-panel {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-top: 1px solid var(--ztt-border);
    box-shadow: 0 16px 30px rgba(0,0,0,0.08);
    padding: 16px 0 20px;
    z-index: 1040;
}
.ztt-search-panel.is-open { display: block; }
.ztt-search-panel .search_form { position: relative; }
.ztt-search-panel .search-bar-input {
    height: 48px;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    padding: 0 52px 0 16px;
    font-size: 15px;
}
.ztt-search-panel .search_button {
    position: absolute;
    right: 4px;
    top: 4px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 8px;
    background: var(--ztt-navy);
    color: #fff;
}
.ztt-search-panel .search-card {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    z-index: 30;
}

.ztt-drawer {
    position: fixed;
    inset: 0;
    z-index: 1200;
    pointer-events: none;
}
.ztt-drawer.is-open { pointer-events: auto; }
.ztt-drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    transition: 0.2s;
}
.ztt-drawer.is-open .ztt-drawer-backdrop { opacity: 1; }
.ztt-drawer-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: min(86vw, 360px);
    height: 100%;
    background: #fff;
    transform: translateX(-100%);
    transition: 0.25s ease;
    padding: 20px 18px 32px;
    overflow: auto;
}
.ztt-drawer.is-open .ztt-drawer-panel { transform: none; }
.ztt-drawer-panel a {
    display: block;
    padding: 12px 4px;
    color: #222;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
}

/* ---------- Hero ---------- */
.ztt-hero {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    min-height: clamp(520px, 72vh, 720px);
    background-color: #f5f5f3;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.ztt-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0,0,0,0.035) 0.6px, transparent 0.6px);
    background-size: 3px 3px;
    pointer-events: none;
    z-index: 2;
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 38%, transparent 62%);
    mask-image: linear-gradient(90deg, #000 0%, #000 38%, transparent 62%);
}
.ztt-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.ztt-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 85% center;
    display: block;
}
.ztt-hero-fade {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        #f5f5f3 0%,
        #f5f5f3 26%,
        rgba(245, 245, 243, 0.96) 34%,
        rgba(245, 245, 243, 0.78) 42%,
        rgba(245, 245, 243, 0.42) 52%,
        rgba(245, 245, 243, 0.12) 62%,
        rgba(245, 245, 243, 0) 74%
    );
}
.ztt-hero-copy {
    position: relative;
    z-index: 3;
    width: min(100% - 32px, var(--ztt-max));
    margin-inline: auto;
    padding: clamp(36px, 6vw, 80px) 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 560px;
    margin-left: max(16px, calc((100vw - var(--ztt-max)) / 2));
    margin-right: auto;
}
.ztt-hero-copy h1 {
    font-size: clamp(42px, 5.6vw, 76px);
    line-height: 0.96;
    margin: 0 0 16px;
    font-weight: 800;
}
.ztt-hero-copy h1 .line-navy { color: var(--ztt-navy); display: block; }
.ztt-hero-copy h1 .line-green { color: var(--ztt-green); display: block; }
.ztt-hero-copy p {
    max-width: 440px;
    font-size: clamp(15px, 1.15vw, 18px);
    line-height: 1.55;
    color: #555;
    margin: 0 0 26px;
    font-weight: 500;
}
.ztt-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}
.ztt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid transparent;
    transition: 0.18s ease;
}
.ztt-btn-navy {
    background: var(--ztt-navy);
    color: #fff;
    border-color: var(--ztt-navy);
}
.ztt-btn-navy:hover { background: var(--ztt-navy-deep); color: #fff; }
.ztt-btn-green-outline {
    background: transparent;
    color: var(--ztt-green);
    border-color: var(--ztt-green);
}
.ztt-btn-green-outline:hover { background: var(--ztt-green); color: #fff; }

.ztt-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 14px;
}
@media (min-width: 768px) {
    .ztt-benefits {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        max-width: 620px;
    }
}
.ztt-benefit {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
.ztt-benefit-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    flex-shrink: 0;
}
.ztt-benefit h3 {
    margin: 0;
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 800;
}
.ztt-benefit:nth-child(1) h3 { color: var(--ztt-navy); }
.ztt-benefit:nth-child(2) h3 { color: var(--ztt-green); }
.ztt-benefit:nth-child(3) h3 { color: var(--ztt-orange); }
.ztt-benefit:nth-child(4) h3 { color: var(--ztt-red); }
.ztt-benefit p {
    margin: 0;
    font-size: 12px;
    color: #666;
    font-weight: 500;
    max-width: none;
}
.ztt-hero-waves {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(42%, 360px);
    height: auto;
    pointer-events: none;
    z-index: 4;
}

/* ---------- Shared section chrome ---------- */
.ztt-section { padding: clamp(36px, 5vw, 72px) 0; }
.ztt-section-muted {
    background: var(--ztt-bg);
    background-image: radial-gradient(rgba(0,0,0,0.03) 0.7px, transparent 0.7px);
    background-size: 3px 3px;
}
.ztt-title {
    text-align: center;
    font-size: clamp(22px, 2.2vw, 32px);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 10px;
}
.ztt-title-rule {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 0 auto 28px;
    width: 72px;
    height: 4px;
    border-radius: 99px;
    overflow: hidden;
}
.ztt-title-rule span { flex: 1; }
.ztt-title-rule span:nth-child(1) { background: #1b4f8c; }
.ztt-title-rule span:nth-child(2) { background: #43a047; }
.ztt-title-rule span:nth-child(3) { background: #e53935; }

/* ---------- Shop by age ---------- */
.ztt-age-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
@media (min-width: 768px) {
    .ztt-age-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
    .ztt-age-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px; }
}
.ztt-age-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    min-height: 100%;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.ztt-age-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
    color: #fff;
}
.ztt-age-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}
.ztt-age-body {
    padding: 14px 14px 16px;
    min-height: 118px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.ztt-age-body strong {
    display: block;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 4px;
}
.ztt-age-body span {
    font-size: 12px;
    font-weight: 600;
    opacity: 0.95;
}
.ztt-age-card.c1 .ztt-age-body { background: var(--ztt-teal); }
.ztt-age-card.c2 .ztt-age-body { background: var(--ztt-age-2); }
.ztt-age-card.c3 .ztt-age-body { background: var(--ztt-age-3); }
.ztt-age-card.c4 .ztt-age-body { background: var(--ztt-age-4); }
.ztt-age-card.c5 .ztt-age-body { background: var(--ztt-age-5); }
.ztt-age-card.c6 .ztt-age-body { background: var(--ztt-age-6); color: #163a20; }
.ztt-age-card.c6:hover { color: #163a20; }

/* ---------- Categories ---------- */
.ztt-cat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
@media (min-width: 768px) {
    .ztt-cat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 1200px) {
    .ztt-cat-grid { grid-template-columns: repeat(8, minmax(0, 1fr)); gap: 16px; }
}
.ztt-cat-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 16px 10px 14px;
    text-align: center;
    text-decoration: none;
    color: #111;
    transition: 0.18s ease;
    min-height: 100%;
}
.ztt-cat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.08);
    color: #111;
}
.ztt-cat-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    margin-bottom: 10px;
}
.ztt-cat-card h3 {
    margin: 0;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
}

/* ---------- Product collections ---------- */
.ztt-collections {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    position: relative;
}
@media (min-width: 1100px) {
    .ztt-collections {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }
}
.ztt-col-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 14px;
}
.ztt-col-head h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.ztt-col-head a {
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}
.ztt-col.blue .ztt-col-head h2,
.ztt-col.blue .ztt-col-head a { color: var(--ztt-navy); }
.ztt-col.green .ztt-col-head h2,
.ztt-col.green .ztt-col-head a { color: var(--ztt-green); }
.ztt-col.red .ztt-col-head h2,
.ztt-col.red .ztt-col-head a { color: var(--ztt-red); }

.ztt-prod-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
@media (max-width: 767px) {
    .ztt-prod-row {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 12px;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }
    .ztt-prod-row > * {
        flex: 0 0 68%;
        scroll-snap-align: start;
    }
}
.ztt-pcard {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 12px 12px 14px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.ztt-pcard-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    border-radius: 6px;
    padding: 3px 8px;
    letter-spacing: 0.03em;
}
.ztt-col.blue .ztt-pcard-badge { background: var(--ztt-navy); }
.ztt-col.red .ztt-pcard-badge { background: var(--ztt-red); }
.ztt-pcard-img {
    display: block;
    aspect-ratio: 1 / 1;
    margin-bottom: 10px;
}
.ztt-pcard-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.ztt-pcard h3 {
    font-size: 13px;
    font-weight: 700;
    margin: 0 0 6px;
    line-height: 1.3;
    min-height: 34px;
}
.ztt-pcard h3 a { color: #111; text-decoration: none; }
.ztt-pcard-price {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 8px;
}
.ztt-pcard-price del {
    color: #999;
    font-weight: 500;
    font-size: 12px;
    margin-right: 6px;
}
.ztt-col.red .ztt-pcard-price { color: var(--ztt-red); }
.ztt-stars {
    color: #f5b400;
    font-size: 12px;
    margin-bottom: 8px;
}
.ztt-stars span { color: #666; font-weight: 600; }
.ztt-atc {
    margin-top: auto;
    width: 100%;
    min-height: 38px;
    border: 0;
    border-radius: 8px;
    color: #fff;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.ztt-col.blue .ztt-atc { background: var(--ztt-navy); }
.ztt-col.green .ztt-atc { background: var(--ztt-green); }
.ztt-col.red .ztt-atc { background: var(--ztt-red); }
.ztt-atc:hover { filter: brightness(0.92); color: #fff; }

/* ---------- Trust strip ---------- */
.ztt-trust-band {
    width: 100%;
    padding: 0;
}
.ztt-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    border-radius: 0;
    overflow: hidden;
}
@media (min-width: 900px) {
    .ztt-trust { grid-template-columns: repeat(4, 1fr); }
}
.ztt-trust-item {
    color: #fff;
    padding: 22px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 92px;
}
.ztt-trust-item.t1 { background: var(--ztt-navy); }
.ztt-trust-item.t2 { background: var(--ztt-green); }
.ztt-trust-item.t3 { background: var(--ztt-orange); }
.ztt-trust-item.t4 { background: var(--ztt-red); }
.ztt-trust-item svg { width: 34px; height: 34px; flex-shrink: 0; }
.ztt-trust-item h3 {
    margin: 0 0 2px;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.ztt-trust-item p {
    margin: 0;
    font-size: 12px;
    line-height: 1.35;
    opacity: 0.95;
    font-weight: 500;
}

/* ---------- Why choose ---------- */
#why-zero-to-ten.ztt-section {
    padding-bottom: clamp(12px, 1.6vw, 24px);
}
#why-zero-to-ten + .ztt-section,
#follow-us.ztt-section {
    padding-top: clamp(16px, 2vw, 28px);
}
.ztt-why-title { text-align: center; margin-bottom: 28px; }
.ztt-why-title .blue { color: var(--ztt-navy); }
.ztt-why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}
@media (min-width: 768px) {
    .ztt-why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
    .ztt-why-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
.ztt-why-card { text-align: left; }
.ztt-why-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
}
.ztt-why-card h3 {
    color: var(--ztt-navy);
    font-size: 16px;
    margin: 0 0 6px;
    font-weight: 800;
}
.ztt-why-card p {
    margin: 0;
    color: #444;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 500;
}

/* ---------- Social ---------- */
.ztt-follow-title {
    text-align: center;
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 22px;
}
.ztt-follow-title .handle { color: var(--ztt-lime-handle); }
.ztt-social-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
@media (min-width: 768px) {
    .ztt-social-row { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 1200px) {
    .ztt-social-row { grid-template-columns: repeat(8, minmax(0, 1fr)); }
}
.ztt-social-row img,
.ztt-social-cta {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}
.ztt-social-cta {
    background: #efefef;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px;
    color: #111;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.35;
}
.ztt-social-cta .icons {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}
.ztt-social-cta .icons a,
.ztt-social-cta .icons span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    color: #111;
}

/* ---------- Newsletter ---------- */
.ztt-news {
    background: var(--ztt-newsletter);
    border-top: 1px solid #d7e7f3;
    border-bottom: 1px solid #d7e7f3;
    padding: 22px 0;
}
.ztt-news-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: center;
}
@media (min-width: 900px) {
    .ztt-news-inner {
        grid-template-columns: 1.1fr 1.4fr auto;
        gap: 24px;
    }
}
.ztt-news-copy {
    display: flex;
    align-items: center;
    gap: 14px;
}
.ztt-news-copy h2 {
    margin: 0;
    font-size: 18px;
    color: var(--ztt-navy-deep);
    letter-spacing: 0.04em;
}
.ztt-news-copy p {
    margin: 2px 0 0;
    font-size: 13px;
    color: #555;
    font-weight: 500;
}
.ztt-news form {
    display: flex;
    gap: 0;
    width: 100%;
}
.ztt-news input[type="email"] {
    flex: 1;
    height: 48px;
    border: 1px solid #d0d5dd;
    border-right: 0;
    border-radius: 6px 0 0 6px;
    padding: 0 14px;
    font-size: 14px;
    background: #fff;
}
.ztt-news button {
    height: 48px;
    border: 0;
    background: var(--ztt-navy);
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 0 22px;
    border-radius: 0 6px 6px 0;
    text-transform: uppercase;
}
.ztt-dots {
    display: none;
    grid-template-columns: repeat(4, 10px);
    gap: 8px;
}
@media (min-width: 1100px) { .ztt-dots { display: grid; } }
.ztt-dots i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}
.ztt-dots i:nth-child(4n+1) { background: #1b4f8c; }
.ztt-dots i:nth-child(4n+2) { background: #43a047; }
.ztt-dots i:nth-child(4n+3) { background: #e53935; }
.ztt-dots i:nth-child(4n+4) { background: #f5a623; }

/* ---------- Footer ---------- */
.ztt-footer {
    background: #fff;
    padding: 48px 0 0;
    border-top: 1px solid #f0f0f0;
}
.ztt-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}
@media (min-width: 768px) {
    .ztt-footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
}
@media (min-width: 1100px) {
    .ztt-footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr; }
}
.ztt-footer-brand img { height: 120px; width: auto; margin-bottom: 12px; }
.ztt-footer-brand .tag {
    font-weight: 800;
    margin: 0 0 6px;
    font-size: 15px;
}
.ztt-footer-brand p {
    margin: 0 0 14px;
    color: #444;
    font-size: 13px;
    line-height: 1.5;
    max-width: 240px;
}
.ztt-footer-social { display: flex; gap: 12px; }
.ztt-footer-social a { color: #111; }
.ztt-footer h4 {
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 14px;
}
.ztt-footer ul { list-style: none; margin: 0; padding: 0; }
.ztt-footer li { margin: 0 0 8px; }
.ztt-footer li a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}
.ztt-footer li a:hover { color: var(--ztt-navy); }
.ztt-contact-line {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
}
.ztt-contact-line svg { flex-shrink: 0; margin-top: 2px; }
.ztt-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    border-top: 1px solid #eee;
    margin-top: 36px;
    padding: 16px 0 22px;
    font-size: 13px;
    color: #555;
}
.ztt-pay { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.ztt-pay img, .ztt-pay svg { height: 22px; width: auto; }

/* ---------- Inner pages ---------- */
body.ztt-storefront .btn--primary,
body.ztt-storefront .btn-primary,
body.ztt-storefront .product-add-to-cart-button {
    background: var(--ztt-navy) !important;
    border-color: var(--ztt-navy) !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
body.ztt-storefront .btn--secondary,
body.ztt-storefront .btn-outline-primary {
    border-radius: 8px !important;
}
body.ztt-storefront .web-text-primary,
body.ztt-storefront .text-primary {
    color: var(--ztt-navy) !important;
}
body.ztt-storefront a:focus-visible,
body.ztt-storefront button:focus-visible,
body.ztt-storefront input:focus-visible {
    outline: 2px solid var(--ztt-navy);
    outline-offset: 2px;
}
body.ztt-storefront .page-footer,
body.ztt-storefront .__inline-9 { display: none; } /* old footer replaced */

.ztt-empty {
    padding: 24px;
    text-align: center;
    color: #666;
    font-weight: 600;
}

body.ztt-storefront .feature-secton,
body.ztt-storefront .settings-sidebar {
    display: none !important;
}

body.ztt-storefront .breadcrumb-item + .breadcrumb-item::before { color: var(--ztt-navy); }
body.ztt-storefront .form-control:focus {
    border-color: var(--ztt-navy);
    box-shadow: 0 0 0 0.15rem rgba(var(--ztt-navy-rgb), 0.18);
}
body.ztt-storefront .pagination .page-item.active .page-link {
    background: var(--ztt-navy);
    border-color: var(--ztt-navy);
}
body.ztt-storefront .product-single-hover,
body.ztt-storefront .__product {
    border-radius: 12px;
}
body.ztt-storefront .navbar-stuck-menu,
body.ztt-storefront .topbar,
body.ztt-storefront .megamenu-wrap { display: none !important; }

body.ztt-storefront .card {
    border-radius: 12px;
}
body.ztt-storefront .__inline-62,
body.ztt-storefront .section-card-margin {
    border-radius: 12px;
}
body.ztt-storefront input.form-control,
body.ztt-storefront select.form-control,
body.ztt-storefront textarea.form-control {
    border-radius: 8px;
}
body.ztt-storefront .for-discount-value {
    background: var(--ztt-red) !important;
    border-radius: 6px;
}

@media (max-width: 767px) {
    .ztt-logo img, .ztt-logo svg { height: 64px; }
    :root { --ztt-header: 84px; }
    .ztt-header-inner { grid-template-columns: auto 1fr auto; gap: 8px; }
    .ztt-hero,
    .ztt-section-muted,
    .ztt-trust-band,
    .ztt-news {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }
    .ztt-hero {
        min-height: auto;
        align-items: flex-start;
    }
    .ztt-hero-copy {
        width: calc(100% - 32px);
        max-width: none;
        margin: 0 16px;
        padding: 28px 0 36px;
    }
    .ztt-hero-media img {
        object-position: 72% 20%;
        min-height: 100%;
    }
    .ztt-hero-fade {
        background: linear-gradient(
            180deg,
            #f5f5f3 0%,
            rgba(245, 245, 243, 0.96) 38%,
            rgba(245, 245, 243, 0.72) 55%,
            rgba(245, 245, 243, 0.28) 72%,
            rgba(245, 245, 243, 0) 100%
        );
    }
    .ztt-hero::before {
        -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 45%, transparent 75%);
        mask-image: linear-gradient(180deg, #000 0%, #000 45%, transparent 75%);
    }
    .ztt-hero-waves { width: min(70%, 280px); }
    .ztt-trust { grid-template-columns: 1fr; }
    .ztt-announce { display: none; }
}
