/** Shopify CDN: Minification failed

Line 386:19 Unexpected ".5"
Line 414:22 Expected identifier but found "60vh\\\\"
Line 420:21 Unexpected "/"
Line 423:29 Unexpected "/"
Line 424:29 Unexpected "/"
Line 469:24 Unexpected "/"

**/
/* Arrow Product Page Styles - Fixed Version */

/* CSS Variables - properly scoped */
:root {
  --arrow-primary: #8DC63F;
  --arrow-secondary: #1A365D;
  --arrow-accent: #FF8C00;
  --arrow-accent-dark: #E67A00;
  --arrow-secondary-lighter: #e6eaf0;
  --arrow-off-white: #F9F9F9;
  --arrow-white: #FFFFFF;
  --arrow-dark-gray: #444444;
  --arrow-light-gray: #E8E8E8;
  --arrow-heading-font: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --arrow-body-font: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Reset and base styles for arrow page */
.arrow-page {
  font-family: var(--arrow-body-font);
  background-color: var(--arrow-off-white);
  color: var(--arrow-dark-gray);
  scroll-behavior: smooth;
  line-height: 1.5;
}

/* Typography overrides */
.arrow-page h1, 
.arrow-page h2, 
.arrow-page h3, 
.arrow-page h4, 
.arrow-page h5, 
.arrow-page h6 {
  font-family: var(--arrow-heading-font);
  color: var(--arrow-secondary);
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
}

.arrow-page p {
  font-family: var(--arrow-body-font);
  color: var(--arrow-dark-gray);
  margin: 0;
}

.arrow-page a {
  color: var(--arrow-secondary);
  text-decoration: none;
}

.arrow-page a:hover {
  color: var(--arrow-primary);
}

/* CTA Buttons */
.arrow-page .cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-family: var(--arrow-heading-font);
  font-weight: 700;
  text-align: center;
  color: var(--arrow-white);
  background: var(--arrow-secondary);
  transition: all 0.3s ease;
  transform: translateY(0);
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.2;
  box-shadow: none;
}

.arrow-page .cta-button:hover {
  transform: translateY(-3px);
  background: #142949;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  color: var(--arrow-white);
  text-decoration: none;
}

.arrow-page .cta-button.accent {
  background: var(--arrow-accent);
}

.arrow-page .cta-button.accent:hover {
  background: var(--arrow-accent-dark);
}

/* Section Titles */
.arrow-page .section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  text-align: center;
  font-family: var(--arrow-heading-font);
  color: var(--arrow-secondary);
  font-weight: 800;
  margin: 0;
}

.arrow-page .section-subtitle {
  margin-top: 1rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  text-align: center;
  color: var(--arrow-dark-gray);
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

/* Animation Classes */
.arrow-page .fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.arrow-page .fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Feature Cards */
.arrow-page .feature-card {
  background-color: var(--arrow-white);
  border: 1px solid var(--arrow-light-gray);
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.arrow-page .sticky-image-container {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 5rem;
}

/* FAQ Styles */
.arrow-page .faq-item {
  background-color: var(--arrow-white);
  border: 1px solid var(--arrow-light-gray);
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 1rem;
}

.arrow-page .faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 1.5rem;
  font-weight: 600;
  transition: background-color 0.2s ease;
  font-family: var(--arrow-heading-font);
  color: var(--arrow-secondary);
  list-style: none;
}

.arrow-page .faq-item summary::-webkit-details-marker { 
  display: none; 
}

.arrow-page .faq-item summary:hover { 
  background-color: var(--arrow-secondary-lighter); 
}

.arrow-page .faq-item .faq-content { 
  padding: 0 1.5rem 1.5rem; 
  color: var(--arrow-dark-gray);
  font-family: var(--arrow-body-font);
}

.arrow-page .faq-item .icon { 
  transition: transform 0.3s ease;
  color: var(--arrow-secondary);
  font-size: 1.5rem;
  line-height: 1;
}

.arrow-page .faq-item[open] .icon { 
  transform: rotate(45deg); 
}

/* Scroll indicator */
.arrow-page .scroll-indicator { 
  animation: arrow-bounce 2s infinite; 
}

@keyframes arrow-bounce { 
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 
  40% { transform: translateY(-10px); } 
  60% { transform: translateY(-5px); } 
}

/* Video Modal */
.arrow-page .video-modal {
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%;
  background-color: rgba(0,0,0,0.8); 
  display: flex; 
  align-items: center; 
  justify-content: center;
  z-index: 1000; 
  opacity: 0; 
  visibility: hidden; 
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.arrow-page .video-modal.is-open { 
  opacity: 1; 
  visibility: visible; 
}

.arrow-page .video-modal-content {
  position: relative; 
  width: 90%; 
  max-width: 900px; 
  aspect-ratio: 16 / 9;
  transform: scale(0.8); 
  transition: transform 0.3s ease;
}

.arrow-page .video-modal.is-open .video-modal-content { 
  transform: scale(1); 
}

.arrow-page .video-modal iframe { 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  border: 0; 
}

.arrow-page .close-modal { 
  position: absolute; 
  top: -40px; 
  right: 0; 
  width: 32px; 
  height: 32px; 
  color: white; 
  cursor: pointer; 
  background: none;
  border: none;
}

/* Layout Utilities */
.arrow-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.arrow-page .relative { position: relative; }
.arrow-page .absolute { position: absolute; }
.arrow-page .sticky { position: sticky; }
.arrow-page .fixed { position: fixed; }

/* Flexbox */
.arrow-page .flex { display: flex; }
.arrow-page .flex-col { flex-direction: column; }
.arrow-page .items-center { align-items: center; }
.arrow-page .items-start { align-items: flex-start; }
.arrow-page .justify-center { justify-content: center; }
.arrow-page .justify-between { justify-content: space-between; }

/* Grid */
.arrow-page .grid { display: grid; }
.arrow-page .gap-4 { gap: 1rem; }
.arrow-page .gap-8 { gap: 2rem; }
.arrow-page .gap-12 { gap: 3rem; }
.arrow-page .gap-16 { gap: 4rem; }

/* Text Alignment */
.arrow-page .text-left { text-align: left; }
.arrow-page .text-center { text-align: center; }
.arrow-page .text-right { text-align: right; }

/* Text Sizes */
.arrow-page .text-xs { font-size: 0.75rem; }
.arrow-page .text-sm { font-size: 0.875rem; }
.arrow-page .text-lg { font-size: 1.125rem; }
.arrow-page .text-xl { font-size: 1.25rem; }
.arrow-page .text-2xl { font-size: 1.5rem; }
.arrow-page .text-3xl { font-size: 1.875rem; }
.arrow-page .text-4xl { font-size: 2.25rem; }
.arrow-page .text-5xl { font-size: 3rem; }
.arrow-page .text-6xl { font-size: 3.75rem; }

/* Font Weights */
.arrow-page .font-medium { font-weight: 500; }
.arrow-page .font-semibold { font-weight: 600; }
.arrow-page .font-bold { font-weight: 700; }
.arrow-page .font-extrabold { font-weight: 800; }
.arrow-page .font-black { font-weight: 900; }

/* Colors */
.arrow-page .text-white { color: #ffffff; }
.arrow-page .text-gray-300 { color: #d1d5db; }
.arrow-page .text-gray-400 { color: #9ca3af; }
.arrow-page .text-gray-500 { color: #6b7280; }
.arrow-page .text-gray-600 { color: #4b5563; }
.arrow-page .text-gray-700 { color: #374151; }
.arrow-page .text-gray-800 { color: #1f2937; }
.arrow-page .text-gray-900 { color: #111827; }
.arrow-page .text-red-500 { color: #ef4444; }
.arrow-page .text-red-600 { color: #dc2626; }
.arrow-page .text-yellow-400 { color: #facc15; }

/* Backgrounds */
.arrow-page .bg-white { background-color: #ffffff; }
.arrow-page .bg-gray-50 { background-color: #f9fafb; }
.arrow-page .bg-gray-100 { background-color: #f3f4f6; }
.arrow-page .bg-gray-200 { background-color: #e5e7eb; }

/* Badge Colors */
.arrow-page .bg-green-100 { background-color: #dcfce7; }
.arrow-page .text-green-800 { color: #166534; }
.arrow-page .bg-blue-100 { background-color: #dbeafe; }
.arrow-page .text-blue-800 { color: #1e40af; }
.arrow-page .bg-yellow-100 { background-color: #fef3c7; }
.arrow-page .text-yellow-800 { color: #92400e; }
.arrow-page .bg-red-100 { background-color: #fee2e2; }
.arrow-page .text-red-800 { color: #991b1b; }

/* Borders */
.arrow-page .border { border-width: 1px; border-style: solid; }
.arrow-page .border-2 { border-width: 2px; }
.arrow-page .border-4 { border-width: 4px; }
.arrow-page .border-gray-200 { border-color: #e5e7eb; }
.arrow-page .border-t { border-top-width: 1px; border-top-style: solid; }
.arrow-page .border-y { border-top-width: 1px; border-bottom-width: 1px; border-style: solid; }

/* Border Radius */
.arrow-page .rounded { border-radius: 0.25rem; }
.arrow-page .rounded-lg { border-radius: 0.5rem; }
.arrow-page .rounded-xl { border-radius: 0.75rem; }
.arrow-page .rounded-2xl { border-radius: 1rem; }
.arrow-page .rounded-full { border-radius: 9999px; }

/* Shadows */
.arrow-page .shadow-sm { box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); }
.arrow-page .shadow-lg { box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); }
.arrow-page .shadow-xl { box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1); }
.arrow-page .shadow-2xl { box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25); }

/* Spacing */
.arrow-page .m-0 { margin: 0; }
.arrow-page .mt-1 { margin-top: 0.25rem; }
.arrow-page .mt-2 { margin-top: 0.5rem; }
.arrow-page .mt-4 { margin-top: 1rem; }
.arrow-page .mt-6 { margin-top: 1.5rem; }
.arrow-page .mt-8 { margin-top: 2rem; }
.arrow-page .mt-12 { margin-top: 3rem; }
.arrow-page .mt-16 { margin-top: 4rem; }
.arrow-page .mt-20 { margin-top: 5rem; }
.arrow-page .mb-1 { margin-bottom: 0.25rem; }
.arrow-page .mb-2 { margin-bottom: 0.5rem; }
.arrow-page .mb-4 { margin-bottom: 1rem; }
.arrow-page .mb-6 { margin-bottom: 1.5rem; }
.arrow-page .my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.arrow-page .my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.arrow-page .mx-auto { margin-left: auto; margin-right: auto; }
.arrow-page .ml-4 { margin-left: 1rem; }
.arrow-page .mr-1\\.5 { margin-right: 0.375rem; }
.arrow-page .mr-3 { margin-right: 0.75rem; }

.arrow-page .p-0 { padding: 0; }
.arrow-page .p-6 { padding: 1.5rem; }
.arrow-page .p-8 { padding: 2rem; }
.arrow-page .px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.arrow-page .px-4 { padding-left: 1rem; padding-right: 1rem; }
.arrow-page .px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.arrow-page .px-8 { padding-left: 2rem; padding-right: 2rem; }
.arrow-page .py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.arrow-page .py-20 { padding-top: 5rem; padding-bottom: 5rem; }

/* Width & Height */
.arrow-page .w-4 { width: 1rem; }
.arrow-page .w-6 { width: 1.5rem; }
.arrow-page .w-12 { width: 3rem; }
.arrow-page .w-16 { width: 4rem; }
.arrow-page .w-full { width: 100%; }
.arrow-page .h-4 { height: 1rem; }
.arrow-page .h-6 { height: 1.5rem; }
.arrow-page .h-7 { height: 1.75rem; }
.arrow-page .h-8 { height: 2rem; }
.arrow-page .h-9 { height: 2.25rem; }
.arrow-page .h-12 { height: 3rem; }
.arrow-page .h-16 { height: 4rem; }
.arrow-page .h-full { height: 100%; }
.arrow-page .min-h-screen { min-height: 80vh; }
.arrow-page .max-h-\\[60vh\\] { max-height: 60vh; }

/* Positioning */
.arrow-page .top-0 { top: 0; }
.arrow-page .top-20 { top: 5rem; }
.arrow-page .bottom-10 { bottom: 2.5rem; }
.arrow-page .left-1\\/2 { left: 50%; }
.arrow-page .right-0 { right: 0; }
.arrow-page .inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.arrow-page .-translate-x-1\\/2 { transform: translateX(-50%); }
.arrow-page .-translate-y-1\\/2 { transform: translateY(-50%); }

/* Z-index */
.arrow-page .z-0 { z-index: 0; }
.arrow-page .z-10 { z-index: 10; }
.arrow-page .z-20 { z-index: 20; }

/* Opacity */
.arrow-page .opacity-10 { opacity: 0.1; }

/* Object fit */
.arrow-page .object-cover { object-fit: cover; }
.arrow-page .object-contain { object-fit: contain; }

/* Misc */
.arrow-page .grayscale { filter: grayscale(100%); }
.arrow-page .line-through { text-decoration: line-through; }
.arrow-page .uppercase { text-transform: uppercase; }
.arrow-page .italic { font-style: italic; }
.arrow-page .tracking-wider { letter-spacing: 0.05em; }
.arrow-page .tracking-widest { letter-spacing: 0.1em; }
.arrow-page .overflow-hidden { overflow: hidden; }
.arrow-page .scale-75 { transform: scale(0.75); }
.arrow-page .scale-100 { transform: scale(1); }
.arrow-page .scale-105 { transform: scale(1.05); }

/* Space utilities */
.arrow-page .space-y-4 > * + * { margin-top: 1rem; }
.arrow-page .space-y-8 > * + * { margin-top: 2rem; }
.arrow-page .space-y-16 > * + * { margin-top: 4rem; }
.arrow-page .space-y-20 > * + * { margin-top: 5rem; }
.arrow-page .space-x-4 > * + * { margin-left: 1rem; }
.arrow-page .space-x-8 > * + * { margin-left: 2rem; }

/* Gradients */
.arrow-page .bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}

.arrow-page .from-white {
  --tw-gradient-from: #ffffff;
  --tw-gradient-to: rgba(255, 255, 255, 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.arrow-page .via-white\\/80 {
  --tw-gradient-to: rgba(255, 255, 255, 0);
  --tw-gradient-stops: var(--tw-gradient-from), rgba(255, 255, 255, 0.8), var(--tw-gradient-to);
}

.arrow-page .to-transparent {
  --tw-gradient-to: transparent;
}

/* Group hover effects */
.arrow-page .group { position: relative; }
.arrow-page .group:hover .group-hover\\:opacity-100 { opacity: 1; }
.arrow-page .group:hover .group-hover\\:scale-100 { transform: scale(1); }

.arrow-page .transition-opacity { transition: opacity 0.3s ease; }
.arrow-page .transition-transform { transition: transform 0.3s ease; }
.arrow-page .duration-300 { transition-duration: 300ms; }

/* Responsive Grid Classes */
@media (min-width: 768px) {
  .arrow-page .sm\\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }
  .arrow-page .md\\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .arrow-page .md\\:text-4xl { font-size: 2.25rem; }
  .arrow-page .md\\:text-5xl { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .arrow-page .lg\\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .arrow-page .lg\\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .arrow-page .lg\\:gap-16 { gap: 4rem; }
  .arrow-page .lg\\:order-1 { order: 1; }
  .arrow-page .lg\\:order-2 { order: 2; }
  .arrow-page .lg\\:sticky { position: sticky; }
  .arrow-page .lg\\:mt-0 { margin-top: 0; }
}

/* Responsive design */
@media (max-width: 768px) {
  .arrow-page .section-title {
    font-size: 2rem;
  }
  
  .arrow-page .cta-button {
    padding: 0.875rem 2rem;
    font-size: 0.9rem;
  }
  
  .arrow-page .container {
    padding: 0 1rem;
    padding-bottom: 1rem;
  }

  .arrow-page .py-20 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  
  .arrow-page .space-x-8 > * + * { 
    margin-left: 0; 
    margin-top: 1rem; 
  }
  
  .arrow-page .flex-wrap { flex-wrap: wrap; }
}

/* Additional hover states */
.arrow-page .hover\\:scale-105:hover { transform: scale(1.05); }
.arrow-page .hover\\:shadow-xl:hover { box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1); }

/* Form elements */
.arrow-page input[type="hidden"] { display: none; }
.arrow-page select.hidden { display: none; }

/* Video elements */
.arrow-page video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Ensure proper stacking */
.arrow-page section {
  position: relative;
  z-index: 1;
}