/** Shopify CDN: Minification failed

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

**/
/* ==============================================
   PR Tech — Header & Footer Overrides
   Truflation Design Language
   (Frosted glass nav, dark navy footer, pill buttons)
   ============================================== */

/* === VARIABLES === */
:root {
  --prtech-blue: #4169E1;
  --prtech-dark: #0D1B2A;
  --prtech-offwhite: #FAFAFA;
  --prtech-text-primary: #1a1a2e;
  --prtech-text-muted: #6B7280;
  --prtech-text-light: #9CA3AF;
  --prtech-border: rgba(0, 0, 0, 0.06);
  --prtech-transition: 0.2s ease;
  --prtech-nav-height: 72px;
}

/* ==========================================
   HEADER — Frosted Glass Style
   ========================================== */

/* Remove Dawn's default border and color scheme background */
.section-header {
  z-index: 100 !important;
}

.header-wrapper {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
  color: var(--prtech-text-primary) !important;
}

/* Add subtle shadow on scroll */
.shopify-section-header-sticky .header-wrapper {
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08) !important;
  border-bottom-color: transparent !important;
}

/* Remove Dawn's default color scheme forcing */
.header-wrapper.color-scheme-1,
.header-wrapper.color-scheme-2,
.header-wrapper.color-scheme-3,
.header-wrapper[class*="color-"] {
  background: rgba(255, 255, 255, 0.85) !important;
}

.shopify-section-header-sticky .header-wrapper.color-scheme-1,
.shopify-section-header-sticky .header-wrapper.color-scheme-2,
.shopify-section-header-sticky .header-wrapper.color-scheme-3,
.shopify-section-header-sticky .header-wrapper[class*="color-"] {
  background: rgba(255, 255, 255, 0.95) !important;
}

/* Remove gradient class interference */
.header-wrapper.gradient {
  background-image: none !important;
}

/* Header inner container */
.header {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  max-width: 1320px !important;
  margin: 0 auto !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  min-height: var(--prtech-nav-height) !important;
  display: flex !important;
  align-items: center !important;
}

/* Logo */
.header__heading-link {
  color: var(--prtech-text-primary) !important;
  text-decoration: none !important;
}

.header__heading-logo {
  transition: opacity var(--prtech-transition) !important;
}

.header__heading-logo:hover {
  opacity: 0.8 !important;
}

/* Fallback text logo */
.header__heading-link .h2 {
  font-family: 'Inter', sans-serif !important;
  font-weight: 800 !important;
  font-size: 20px !important;
  color: var(--prtech-text-primary) !important;
  letter-spacing: -0.02em !important;
}

/* Navigation links — Desktop */
.header__inline-menu .list-menu--inline {
  gap: 8px !important;
}

.header__inline-menu .list-menu__item--link,
.header__inline-menu .header__menu-item {
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: var(--prtech-text-primary) !important;
  text-decoration: none !important;
  padding: 8px 16px !important;
  border-radius: 9999px !important;
  transition: color var(--prtech-transition), background var(--prtech-transition) !important;
  letter-spacing: -0.01em !important;
  line-height: 1.4 !important;
}

.header__inline-menu .list-menu__item--link:hover,
.header__inline-menu .header__menu-item:hover {
  color: var(--prtech-blue) !important;
  background: rgba(65, 105, 225, 0.06) !important;
}

/* Active nav item */
.header__inline-menu .list-menu__item--link[aria-current="page"],
.header__inline-menu .header__menu-item.list-menu__item--active {
  color: var(--prtech-blue) !important;
}

/* Dropdown menus */
.header__submenu {
  background: rgba(255, 255, 255, 0.97) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12) !important;
  padding: 8px !important;
  min-width: 200px !important;
}

.header__submenu .header__menu-item {
  border-radius: 8px !important;
  padding: 10px 16px !important;
  font-size: 14px !important;
}

.header__submenu .header__menu-item:hover {
  background: rgba(65, 105, 225, 0.06) !important;
}

/* Header icons (search, account, cart) */
.header__icon,
.header__icon--account,
.header__icon--cart {
  color: var(--prtech-text-primary) !important;
  transition: color var(--prtech-transition) !important;
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
}

.header__icon:hover,
.header__icon--account:hover,
.header__icon--cart:hover {
  color: var(--prtech-blue) !important;
  background: rgba(65, 105, 225, 0.06) !important;
}

/* Cart count bubble */
.cart-count-bubble {
  background: var(--prtech-blue) !important;
  color: white !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  border-radius: 50% !important;
  min-width: 18px !important;
  height: 18px !important;
  line-height: 18px !important;
}

/* Search modal */
details-modal .modal__content {
  font-family: 'Inter', sans-serif !important;
}

/* Mega menu */
.mega-menu {
  background: rgba(255, 255, 255, 0.97) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-top: 1px solid rgba(0, 0, 0, 0.04) !important;
}

.mega-menu__link {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  color: var(--prtech-text-primary) !important;
  transition: color var(--prtech-transition) !important;
}

.mega-menu__link:hover {
  color: var(--prtech-blue) !important;
}

/* Localization selectors in header */
.header-localization .localization-form__select,
.desktop-localization-wrapper .localization-form__select {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--prtech-text-primary) !important;
  border-radius: 9999px !important;
  padding: 6px 12px !important;
}

/* Remove Dawn border-bottom separators */
.header-wrapper--border-bottom {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
}

/* Announcement bar styling */
.announcement-bar {
  background: var(--prtech-dark) !important;
  color: white !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
}

.announcement-bar a,
.announcement-bar__link {
  color: white !important;
}

/* Mobile drawer */
.menu-drawer {
  font-family: 'Inter', sans-serif !important;
  background: white !important;
}

.menu-drawer__menu-item,
.menu-drawer__menu-item--link {
  font-family: 'Inter', sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  color: var(--prtech-text-primary) !important;
}

.menu-drawer__close-button,
.menu-drawer summary {
  color: var(--prtech-text-primary) !important;
}

/* ==========================================
   FOOTER — Dark Navy Style
   ========================================== */

.footer {
  background: var(--prtech-dark) !important;
  background-image: none !important;
  color: white !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  margin-top: 0 !important;
  border-top: none !important;
}

/* Override Dawn color scheme */
.footer.color-scheme-1,
.footer.color-scheme-2,
.footer.color-scheme-3,
.footer[class*="color-"] {
  background: var(--prtech-dark) !important;
  background-image: none !important;
  color: white !important;
}

.footer.gradient {
  background-image: none !important;
}

/* Footer content top area */
.footer__content-top {
  padding-bottom: 48px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Footer blocks (link lists, text, brand info) */
.footer-block__heading,
.footer-block__heading.inline-richtext {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: white !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 20px !important;
}

/* Footer links */
.footer-block__details-content a,
.footer-block__details-content .link,
.footer-block__details-content .list-menu__item--link {
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  color: #D1D5DB !important;
  transition: color var(--prtech-transition) !important;
  text-decoration: none !important;
  padding: 6px 0 !important;
}

.footer-block__details-content a:hover,
.footer-block__details-content .link:hover,
.footer-block__details-content .list-menu__item--link:hover {
  color: white !important;
}

/* Footer brand description */
.footer-block__brand-info .rte,
.footer-block__details-content.rte {
  font-size: 14px !important;
  color: var(--prtech-text-light) !important;
  line-height: 1.7 !important;
}

/* Social icons in footer */
.footer__list-social .list-social__link {
  color: var(--prtech-text-muted) !important;
  transition: color var(--prtech-transition), background var(--prtech-transition) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
}

.footer__list-social .list-social__link:hover {
  color: white !important;
  background: rgba(255, 255, 255, 0.12) !important;
}

.footer__list-social .list-social__link svg {
  fill: currentColor !important;
}

/* Footer bottom area */
.footer__content-bottom {
  padding-top: 0 !important;
}

.footer__content-bottom-wrapper {
  padding-top: 32px !important;
}

/* Copyright */
.footer__copyright,
.footer__copyright .copyright__content,
.footer__copyright a,
.footer__copyright small {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  color: var(--prtech-text-muted) !important;
}

.footer__copyright a:hover {
  color: white !important;
}

/* Policies */
.footer .policies a,
.footer .policies .copyright__content a {
  color: var(--prtech-text-muted) !important;
  transition: color var(--prtech-transition) !important;
}

.footer .policies a:hover {
  color: white !important;
}

/* Footer localization forms */
.footer__localization .localization-form__select {
  font-family: 'Inter', sans-serif !important;
  color: #D1D5DB !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  border-radius: 9999px !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

.footer__localization .localization-form__select:hover {
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.footer__localization .disclosure__button {
  color: #D1D5DB !important;
}

.footer__localization .disclosure__list {
  background: var(--prtech-dark) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 12px !important;
}

.footer__localization .disclosure__link {
  color: #D1D5DB !important;
}

.footer__localization .disclosure__link:hover {
  color: white !important;
}

.footer__localization h2,
.footer__localization .caption-large {
  color: var(--prtech-text-light) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

/* Follow on Shop button */
.footer__follow-on-shop {
  margin-top: 16px !important;
}

/* Newsletter in footer */
.footer-block__newsletter .footer-block__heading {
  color: white !important;
}

.footer .newsletter-form .field__input {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: white !important;
  border-radius: 9999px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
}

.footer .newsletter-form .field__input:focus {
  border-color: var(--prtech-blue) !important;
  box-shadow: 0 0 0 2px rgba(65, 105, 225, 0.2) !important;
}

.footer .newsletter-form .field__label {
  color: var(--prtech-text-light) !important;
}

.footer .newsletter-form .field__button {
  color: white !important;
}

.footer .newsletter-form .field__button:hover {
  color: var(--prtech-blue) !important;
}

/* Payment icons */
.footer__payment .list-payment .icon {
  opacity: 0.6 !important;
  transition: opacity var(--prtech-transition) !important;
}

.footer__payment .list-payment .icon:hover {
  opacity: 1 !important;
}

/* Powered by link (hide or restyle) */
.footer .copyright__content a[href*="shopify"] {
  color: var(--prtech-text-muted) !important;
  font-size: 12px !important;
}

/* ==========================================
   GLOBAL — Inter Font
   ========================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   MOBILE OVERRIDES
   ========================================== */
@media (max-width: 989px) {
  :root {
    --prtech-nav-height: 64px;
  }

  .header {
    min-height: var(--prtech-nav-height) !important;
  }

  .footer__content-top .footer__blocks-wrapper {
    gap: 32px !important;
  }
}

@media (max-width: 749px) {
  .footer__content-bottom-wrapper {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  
  .footer__copyright {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 8px !important;
  }

  .footer .policies {
    justify-content: center !important;
  }
}
