/** Shopify CDN: Minification failed

Line 40:0 All "@import" rules must come first

**/
/*
  Gen-Tec Nutrition – Custom Typography & Brand CSS
  File: assets/gentec-custom.css.liquid
  -----------------------------------------------
  Purpose: Override heading typography to Univers 59 Ultra Condensed
           (falls back to Roboto Condensed until font files are uploaded).
           Body / paragraph text uses Roboto, which is already active
           via the Shopify font picker (regular__font: roboto_n4).

  To activate Univers 59:
    1. Upload Univers59-UltraCondensed.woff2 and .woff to assets/
    2. Uncomment the @font-face src lines below
    3. Save and re-upload this file

  DO NOT MODIFY base styles.css — all overrides are isolated here.
*/

/* ============================================================
   1. FONT DECLARATIONS
   ============================================================ */

/* Univers 59 Ultra Condensed — self-hosted stub
   Uncomment and replace paths once font files are available in assets/ */
@font-face {
  font-family: 'Univers59UltraCondensed';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('//gen-tec.com.au/cdn/shop/t/33/assets/Univers%20LT%20Std%2059%20Ultra%20Condensed.woff2?v=6317466784817719651773378802') format('woff2'),
  url('//gen-tec.com.au/cdn/shop/t/33/assets/Univers%20LT%20Std%2059%20Ultra%20Condensed.woff?v=47561461261863041721773378802') format('woff');
}

/* Roboto Condensed — loaded via Google Fonts as heading fallback
   Only imported here if not already served by the font picker */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&family=Roboto:wght@400;500;700&display=swap');


/* ============================================================
   2. HEADING TYPOGRAPHY — Univers 59 / Roboto Condensed
   ============================================================
   Applied to all semantic headings plus Turbo theme heading classes.
   Uppercase + tight letter-spacing gives a strong, athletic feel.
   ============================================================ */

h1,
h2,
h3,
h4,
.headline,
.product_name,
.collection_title,
.section-header .title,
.section-header__title,
.featured_collections h2,
.caption .headline,
.page-header h1 {
  font-family: 'Univers59UltraCondensed', 'Roboto Condensed', 'Arial Narrow', sans-serif !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
}

/* Slightly relax letter-spacing on smaller headings */
h3,
h4 {
  letter-spacing: 0.02em;
}

/* Slideshow / hero headline – already uppercase via theme,
   reinforce the font stack */
.js-homepage-slideshow .headline,
.homepage-fullscreen-slideshow .headline {
  font-family: 'Univers59UltraCondensed', 'Roboto Condensed', 'Arial Narrow', sans-serif !important;
  font-weight: 700;
  letter-spacing: 0.06em;
}


/* ============================================================
   2b. HERO CAPTION — 9-position grid + dynamic typography
   ============================================================
   Vertical position classes: gt-vpos-top / center / bottom
   Mobile vertical: gt-mvpos-top / center / bottom
   Font sizes via CSS custom properties set inline per slide.
   ============================================================ */

/* ── Vertical positioning (desktop) ── */
.homepage-slideshow .caption.gt-vpos-top {
  top: 12%;
  bottom: auto;
  transform: translate(0, 0);
}
.homepage-slideshow .caption.gt-vpos-center {
  top: 50%;
  bottom: auto;
  transform: translate(0, -50%);
}
.homepage-slideshow .caption.gt-vpos-bottom {
  top: auto;
  bottom: 12%;
  transform: translate(0, 0);
}

/* ── Mobile vertical positioning — always centered horizontally ── */
@media only screen and (max-width: 798px) {
  .homepage-slideshow .caption.gt-mvpos-top,
  .homepage-slideshow .caption.gt-mvpos-center,
  .homepage-slideshow .caption.gt-mvpos-bottom {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    margin: var(--gt-text-margin-m, 0 auto) !important;
    text-align: center;
    padding: 0 5%;
  }
  .homepage-slideshow .caption.gt-mvpos-top {
    top: 8% !important;
    bottom: auto !important;
    transform: translate(0, 0) !important;
  }
  .homepage-slideshow .caption.gt-mvpos-center {
    top: 50% !important;
    bottom: auto !important;
    transform: translate(0, -50%) !important;
  }
  .homepage-slideshow .caption.gt-mvpos-bottom {
    top: auto !important;
    bottom: 8% !important;
    transform: translate(0, 0) !important;
  }
}

/* ── Dynamic heading size via CSS custom properties ── */
.homepage-slideshow .caption .headline {
  font-size: var(--gt-h-size, 40px) !important;
  line-height: var(--gt-h-lh, 1.4) !important;
}
.homepage-slideshow .caption .subtitle {
  font-size: var(--gt-s-size, 18px) !important;
  line-height: var(--gt-s-lh, 1.4) !important;
}

@media only screen and (max-width: 798px) {
  .homepage-slideshow .caption .headline {
    font-size: var(--gt-h-size-m, 24px) !important;
    line-height: var(--gt-h-lh-m, 1.4) !important;
  }
  .homepage-slideshow .caption .subtitle {
    font-size: var(--gt-s-size-m, 14px) !important;
    line-height: var(--gt-s-lh-m, 1.4) !important;
  }
}

/* ── Background video — covers slide, sits below overlay + captions ── */
.gt-hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.gt-hero-video--iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.gt-hero-video--iframe iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh; /* 16:9 aspect ratio cover */
  height: 100vh;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}
/* Hide video on mobile when disabled */
@media only screen and (max-width: 798px) {
  .gt-hero-video--hide-mobile {
    display: none !important;
  }
}

/* ── Button entrance animation — fade-in + slide-up, delayed after text ── */
@keyframes gt-btnFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Independent button container — position + styling ── */
.homepage-slideshow .gt-btn-wrap {
  position: absolute;
  z-index: 4;
  padding: 0 5%;
  display: flex;
  gap: 10px;
  pointer-events: none;
}
/* Animate each button individually to avoid transform conflicts on the wrapper */
.homepage-slideshow .gt-btn-wrap .action_button {
  opacity: 0;
}
.homepage-slideshow .gallery-cell.is-selected .gt-btn-wrap .action_button {
  animation: gt-btnFadeIn 0.6s ease-out 0.35s forwards;
}
.homepage-slideshow .gallery-cell.is-selected .gt-btn-wrap .action_button.second_button {
  animation-delay: 0.5s;
}
.homepage-slideshow .gt-btn-wrap .action_button {
  pointer-events: auto;
}

/* Button horizontal positioning */
.gt-btn-wrap.gt-btn-h-left   { left: 0; right: auto; justify-content: flex-start; }
.gt-btn-wrap.gt-btn-h-center { left: 0; right: 0; justify-content: center; }
.gt-btn-wrap.gt-btn-h-right  { left: auto; right: 0; justify-content: flex-end; }

/* Button vertical positioning */
.gt-btn-wrap.gt-btn-v-top    { top: 12%; bottom: auto; }
.gt-btn-wrap.gt-btn-v-center { top: 50%; bottom: auto; transform: translateY(-50%); }
.gt-btn-wrap.gt-btn-v-bottom { top: auto; bottom: 12%; }

/* Button mobile — always center horizontal */
@media only screen and (max-width: 798px) {
  .homepage-slideshow .gt-btn-wrap {
    left: 0 !important;
    right: 0 !important;
    justify-content: center !important;
    position: absolute !important;
    padding: 0 5%;
  }
  .gt-btn-wrap.gt-btn-mv-top    { top: 8% !important; bottom: auto !important; transform: none !important; }
  .gt-btn-wrap.gt-btn-mv-center { top: 50% !important; bottom: auto !important; transform: translateY(-50%) !important; }
  .gt-btn-wrap.gt-btn-mv-bottom { top: auto !important; bottom: 8% !important; transform: none !important; }
}

/* ── Dynamic button styling via CSS custom properties ── */
.homepage-slideshow .gt-btn-wrap .action_button {
  background-color: var(--gt-btn-bg, #e31b23) !important;
  color: var(--gt-btn-text, #ffffff) !important;
  font-size: var(--gt-btn-size, 16px) !important;
  line-height: var(--gt-btn-lh, 1.4) !important;
  border-radius: var(--gt-btn-radius, 0) !important;
  padding: var(--gt-btn-padding-v, 14px) var(--gt-btn-padding-h, 32px) !important;
  font-family: 'Roboto Condensed', 'Arial Narrow', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s linear;
  display: inline-block;
}
.homepage-slideshow .gt-btn-wrap .action_button:hover {
  background-color: #1b1f23 !important;
  transform: translateY(-1px);
  color: var(--gt-btn-text, #ffffff) !important;
  text-decoration: none;
}

@media only screen and (max-width: 798px) {
  .homepage-slideshow .gt-btn-wrap .action_button {
    font-size: var(--gt-btn-size-m, 14px) !important;
    line-height: var(--gt-btn-lh-m, var(--gt-btn-lh, 1.4)) !important;
    padding: var(--gt-btn-padding-v-m, var(--gt-btn-padding-v, 10px)) var(--gt-btn-padding-h-m, var(--gt-btn-padding-h, 24px)) !important;
  }
  .homepage-slideshow .gt-btn-wrap[style*='--gt-btn-margin-m'] {
    margin: var(--gt-btn-margin-m) !important;
  }
}


/* ============================================================
   3. BODY / PARAGRAPH TYPOGRAPHY — Roboto
   ============================================================
   Roboto is already loaded as the theme's regular font.
   These rules reinforce it on key elements and ensure
   it is never accidentally overridden by Gothic A1.
   ============================================================ */

body,
p,
.description,
.subtitle,
.product__description,
.product-description-tabs p,
li,
td,
th,
label,
input,
select,
textarea,
.nav__font {
  font-family: 'Roboto', 'Gothic A1', sans-serif;
}


/* ============================================================
   4. HERO CTA BUTTON — fallback style
   ============================================================
   Applied to the default CTA button added by the
   slideshow-fullscreen.liquid fallback logic.
   Matches existing .action_button styling with a Gen-Tec red.
   ============================================================ */

.gt-hero-cta {
  display: inline-block;
  margin-top: 16px;
  padding: 14px 32px;
  background-color: #e31b23;
  color: #ffffff !important;
  font-family: 'Roboto Condensed', 'Arial Narrow', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.gt-hero-cta:hover,
.gt-hero-cta:focus {
  background-color: #b03a3a;
  color: #ffffff !important;
  text-decoration: none;
}


/* ============================================================
   5. TRUST BAR — base styles
   ============================================================
   Used by sections/trust-bar.liquid
   ============================================================ */

.gt-trust-bar {
  background-color: #1b1f23;
  color: #ffffff;
  padding: 28px 20px;
  width: 100%;
}

.gt-trust-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 0;
}

.gt-trust-bar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 25%;
  min-width: 200px;
  padding: 12px 16px;
  text-align: left;
  justify-content: center;
}

.gt-trust-bar__item a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  text-decoration: none;
}

.gt-trust-bar__item a:hover {
  color: #e31b23;
}

.gt-trust-bar__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  fill: #e31b23;
}

.gt-trust-bar__text {
  display: flex;
  flex-direction: column;
}

.gt-trust-bar__label {
  font-family: 'Univers59UltraCondensed', 'Roboto Condensed', 'Arial Narrow', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.2;
  color: #ffffff;
}

.gt-trust-bar__sublabel {
  font-family: 'Roboto', 'Gothic A1', sans-serif;
  font-size: 12px;
  color: #aaaaaa;
  margin-top: 2px;
}

/* ── Entrance: subtle fade-in + slide-up via pure CSS keyframes ──
   animation-fill-mode: backwards holds the 0% state before start,
   preventing any flash. No JavaScript required. */
@keyframes gt-fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.gt-trust-bar__item {
  animation: gt-fadeUp 0.5s ease-out backwards;
}
.gt-trust-bar__item:nth-child(2) { animation-delay: 0.08s; }
.gt-trust-bar__item:nth-child(3) { animation-delay: 0.16s; }
.gt-trust-bar__item:nth-child(4) { animation-delay: 0.24s; }

/* ── Hover: icon lifts + subtle red glow ── */
.gt-trust-bar__item .gt-trust-bar__icon {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.gt-trust-bar__item:hover .gt-trust-bar__icon {
  transform: translateY(-2px);
  filter: drop-shadow(0 0 6px rgba(213, 77, 77, 0.5));
}

/* Divider between items */
.gt-trust-bar__item+.gt-trust-bar__item {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

@media only screen and (max-width: 640px) {
  .gt-trust-bar__item {
    flex: 1 1 50%;
    min-width: 0;
    border-left: none !important;
    padding: 12px 10px;
  }

  .gt-trust-bar__item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .gt-trust-bar__item:nth-child(1),
  .gt-trust-bar__item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}


/* ============================================================
   5b. HERO HEIGHT CONSTRAINT — keep trust bar in first viewport
   ============================================================
   Flickity sets height as inline style on .flickity-viewport.
   max-height caps the rendered height regardless (different properties).
   183px = ticker (~36px) + header (~80px) + trust-bar top-edge (~67px).
   ============================================================ */
@media only screen and (min-width: 799px) {
  .homepage-slideshow .flickity-viewport {
    max-height: calc(100vh - 183px) !important;
  }
  .homepage-slideshow {
    overflow: hidden;
  }
  .homepage-slideshow .gallery-cell {
    max-height: calc(100vh - 183px);
    overflow: hidden;
  }
  .homepage-slideshow .gallery-cell .image-element__wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
}

@media only screen and (max-width: 798px) {
  .homepage-slideshow .flickity-viewport {
    max-height: 70vh !important;
  }
  .homepage-slideshow {
    overflow: hidden;
  }
  .homepage-slideshow .gallery-cell {
    max-height: 70vh;
    overflow: hidden;
  }
  .homepage-slideshow .gallery-cell .image-element__wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
}


/* ============================================================
   6. HEADER NAV — semi-transparent overlay background
   ============================================================
   When header_background is OFF the theme makes the nav fully
   transparent, which can hide the logo on light slider images.
   We add a dark-to-transparent gradient so the logo area stays
   readable while still letting the hero image show through.
   ============================================================ */

/* Gradient overlay on the main nav wrapper when over feature images */
.feature_image .header.is-absolute .main-nav__wrapper {
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.55) 50%,
      rgba(0, 0, 0, 0.15) 85%,
      transparent 100%);
}

/* Override the theme's fully-transparent rule on .main-nav */
.feature_image .header.is-absolute .main-nav {
  background: transparent !important;
}

/* Sticky nav should be fully opaque — no transparency needed */
.sticky_nav.main-nav__wrapper {
  background: #1b1f23 !important;
}

/* Mobile header bar — subtle dark background */
@media only screen and (max-width: 798px) {
  .mobile_nav-fixed--true header#header .top-bar {
    background: rgba(0, 0, 0, 0.70);
  }
}


/* ============================================================
   7. ANNOUNCEMENT TICKER — continuous horizontal marquee
   ============================================================
   Used by sections/announcement-bar.liquid
   Driven by CSS custom properties set inline from Theme Editor.
   ============================================================ */

/* ---- Keyframes ---- */
@keyframes gt-ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Container ---- */
.gt-ticker {
  position: relative;
  z-index: 5001;
  width: 100%;
  height: var(--gt-ticker-height, 36px);
  background: var(--gt-ticker-bg, #1b1f23);
  color: var(--gt-ticker-text, #ffffff);
  overflow: hidden;
}

/* ---- Inner — holds 2 identical tracks side-by-side ---- */
.gt-ticker__inner {
  display: flex;
  width: max-content;
  height: 100%;
  animation: gt-ticker-scroll var(--gt-ticker-speed, 28s) linear infinite;
}

/* Pause on hover (opt-in class) */
.gt-ticker--pause-hover:hover {
  animation-play-state: paused;
}

/* ---- Single track ---- */
.gt-ticker__track {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 100%;
}

/* ---- Message ---- */
.gt-ticker__msg {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 0 8px;
  color: var(--gt-ticker-text, #ffffff) !important;
  text-decoration: none !important;
  transition: opacity 0.2s ease;
}
a.gt-ticker__msg:hover {
  opacity: 0.75;
}

/* ---- Emoji ---- */
.gt-ticker__emoji {
  flex-shrink: 0;
  font-size: calc(var(--gt-ticker-size, 12px) + 2px);
  line-height: 1;
}

/* ---- Text ---- */
.gt-ticker__text {
  font-family: 'Roboto', 'Gothic A1', sans-serif;
  font-size: var(--gt-ticker-size, 12px);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

/* ---- Divider between messages ---- */
.gt-ticker__divider {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  color: var(--gt-ticker-divider, #e31b23);
  font-size: 10px;
  line-height: 1;
  opacity: 0.9;
}

/* ---- Mobile ---- */
@media only screen and (max-width: 798px) {
  .gt-ticker {
    height: calc(var(--gt-ticker-height, 36px) - 4px);
  }
  .gt-ticker__text {
    font-size: var(--gt-ticker-size-mobile, 10px);
    letter-spacing: 0.05em;
  }
  .gt-ticker__emoji {
    font-size: calc(var(--gt-ticker-size-mobile, 10px) + 1px);
  }
  .gt-ticker__divider {
    width: 22px;
    font-size: 8px;
  }
  .gt-ticker__msg {
    gap: 4px;
    padding: 0 5px;
  }
}