/** Shopify CDN: Minification failed

Line 520:0 Unexpected "}"

**/
.follow-instagram {
  width: 100%;
  overflow: hidden;
}

.follow-instagram__header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media screen and (min-width: 990px) {
  .follow-instagram__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;  /* Align bottoms */
    gap: 3rem;
  }
}

/* Text Group (Left Side) */
.follow-instagram__text-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;  /* Push content to bottom */
}

.follow-instagram__subheading {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: rgba(var(--color-foreground), 0.7);
  margin: 0 0 1rem 0;
}

.follow-instagram__heading {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  color: rgb(var(--color-foreground));
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* CTA Group (Right Side) */
.follow-instagram__cta-group {
  flex-shrink: 0;
  align-self: flex-start;
}

@media screen and (min-width: 990px) {
  .follow-instagram__cta-group {
    align-self: flex-end;
  }
}

/* Button Styles */
.follow-instagram__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.9rem 3rem;
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 4.5rem;
  max-width: 300px;
  white-space: nowrap;
}

/* Solid Button */
.follow-instagram__button--solid {
  background-color: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
  border: 0.1rem solid rgb(var(--color-foreground));
}

.follow-instagram__button--solid:hover {
  background-color: rgba(var(--color-foreground), 0.9);
  transform: translateY(-2px);
}

/* Outline Button */
.follow-instagram__button--outline {
  background-color: transparent;
  color: rgb(var(--color-foreground));
  border: 0.1rem solid rgb(var(--color-foreground));
}

.follow-instagram__button--outline:hover {
  background-color: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
  transform: translateY(-2px);
}

/* Button Icon */
.follow-instagram__icon {
  width: 1.8rem;
  height: 1.8rem;
  flex-shrink: 0;
}

/* Mobile: Full width button */
@media screen and (max-width: 989px) {
  .follow-instagram__button {
    width: 100%;
    max-width: none;
  }
}

/* ============================================
   IMAGE GALLERY
   ============================================ */

.follow-instagram__gallery {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.follow-instagram__track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--gap, 0);
}

@media screen and (min-width: 990px) {
  .follow-instagram__track {
    grid-template-columns: repeat(var(--columns, 6), 1fr);
  }
}

/* Autoplay: Convert to flex for scrolling animation */
.follow-instagram__gallery--autoplay .follow-instagram__track {
  display: flex;
  gap: var(--gap, 0);
  width: fit-content;
}

/* Scroll Animation - Left */
.follow-instagram__track--left {
  animation: scrollLeft var(--animation-duration, 50s) linear infinite;
}

@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Scroll Animation - Right */
.follow-instagram__track--right {
  animation: scrollRight var(--animation-duration, 50s) linear infinite;
}

@keyframes scrollRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/* Pause on hover */
.follow-instagram__gallery--autoplay:hover .follow-instagram__track {
  animation-play-state: paused;
}

/* ============================================
   IMAGE ITEMS
   ============================================ */

.follow-instagram__item {
  position: relative;
  width: 100%;
  flex-shrink: 0;
}

/* Desktop: Fixed width for autoplay */
@media screen and (min-width: 990px) {
  .follow-instagram__gallery--autoplay .follow-instagram__item {
    width: calc((100vw - 10rem) / var(--columns, 6));
  }
}

/* Mobile: Single column, full width */
@media screen and (max-width: 989px) {
  .follow-instagram__gallery--autoplay .follow-instagram__item {
    width: 100vw;
  }
  
  .follow-instagram__track {
    grid-template-columns: 1fr;
  }
}

/* Media Container */
.follow-instagram__media {
  position: relative;
  width: 100%;
  padding-bottom: 100%; /* 1:1 Aspect Ratio */
  overflow: hidden;
  background-color: rgba(var(--color-foreground), 0.04);
}

.follow-instagram__image,
.follow-instagram__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
}

/* Hover Effect */
.follow-instagram__media:hover .follow-instagram__image,
.follow-instagram__media:hover .follow-instagram__video {
  transform: scale(1.05);
}

/* Link Overlay */
.follow-instagram__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  cursor: pointer;
}

/* Placeholder */
.follow-instagram__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.follow-instagram__placeholder svg {
  width: 100%;
  height: 100%;
  opacity: 0.9;
}

/* ============================================
   MOBILE OPTIMIZATIONS
   ============================================ */

@media screen and (max-width: 989px) {
  .follow-instagram__header {
    margin-bottom: 2rem;
  }
  
  .follow-instagram__heading {
    font-size: clamp(2.4rem, 8vw, 4rem) !important;
  }
  
  .follow-instagram__subheading {
    font-size: 1rem;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .follow-instagram__track {
    animation: none !important;
  }
  
  .follow-instagram__image,
  .follow-instagram__video,
  .follow-instagram__button {
    transition: none;
  }
}

/* Focus states */
.follow-instagram__button:focus-visible,
.follow-instagram__link:focus-visible {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: 0.3rem;
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .follow-instagram__button--outline {
    border-width: 0.2rem;
  }
}

/* ============================================
   VIDEO SPECIFIC STYLES
   ============================================ */

.follow-instagram__video {
  pointer-events: none;
}

/* Play icon overlay for videos */
.follow-instagram__media:has(.follow-instagram__video)::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6rem;
  height: 6rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.follow-instagram__media:has(.follow-instagram__video):hover::after {
  opacity: 1;
}

/* Play icon triangle */
.follow-instagram__media:has(.follow-instagram__video)::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1rem 0 1rem 1.8rem;
  border-color: transparent transparent transparent rgba(0, 0, 0, 0.8);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.follow-instagram__media:has(.follow-instagram__video):hover::before {
  opacity: 1;
}

/* ============================================
   LOADING STATES
   ============================================ */

.follow-instagram__image,
.follow-instagram__video {
  background-color: rgba(var(--color-foreground), 0.04);
}

.follow-instagram__image:not([src]),
.follow-instagram__video:not([src]) {
  opacity: 0;
}

/* ============================================
   VIDEO REEL BLOCKS (CIRCULAR)
   ============================================ */

.follow-instagram__item--reel {
  position: relative;
}

.follow-instagram__reel {
  position: relative;
  width: 100%;
  padding-bottom: 100%; /* 1:1 initially */
  overflow: hidden;
  background-color: rgba(var(--color-foreground), 0.04);
  border-radius: 50%; /* Circular */
  cursor: pointer;
}

.follow-instagram__reel-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 50%; /* Circular */
  pointer-events: none;
}

/* Play button overlay */
.follow-instagram__reel-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  background: transparent;
  border: none;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
  transition: transform 0.2s ease, opacity 0.2s ease;
  padding: 0;
  opacity: 0;
}

.follow-instagram__reel:hover .follow-instagram__reel-button {
  opacity: 1;
}

.follow-instagram__reel-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.follow-instagram__reel-button svg {
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* Circular placeholder for video reels */
.follow-instagram__placeholder--circle {
  border-radius: 50%;
}

/* ============================================
   VIDEO REEL MODAL (FULL-SCREEN)
   ============================================ */

.follow-instagram__modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Close button */
.follow-instagram__modal-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  z-index: 10001;
  padding: 1rem;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.8;
}

.follow-instagram__modal-close:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Modal content container */
.follow-instagram__modal-content {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 500px;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 989px) {
  .follow-instagram__modal-content {
    max-width: 100vw;
    max-height: 100vh;
  }
}

  .follow-instagram__modal-video {
    max-height: 100vh;
    object-fit: cover;
  }
}

/* Mute button - matching video reels style */
.follow-instagram__modal-mute {
  position: absolute;
  top: 2rem;
  left: 2rem;
  width: 4rem;
  height: 4rem;
  background: rgba(var(--color-foreground), 0.3);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10001;
  transition: background-color 0.3s ease;
  padding: 0;
}

.follow-instagram__modal-mute:hover {
  background: rgba(var(--color-foreground), 0.4);
}

.follow-instagram__modal-mute:focus-visible {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: 0.3rem;
}

.follow-instagram__modal-mute svg {
  width: 24px;
  height: 24px;
  color: #ffffff;
}

/* Mute icon states */
.follow-instagram__mute-icon-unmuted {
  display: none;
}

@media screen and (max-width: 989px) {
  
}

/* ============================================
   UPDATED VIDEO REEL STYLES
   ============================================ */

/* Reel container - clickable */
.follow-instagram__reel {
  cursor: pointer;
}

.follow-instagram__reel:focus-visible {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: 0.3rem;
}

/* Play overlay - 44x44px */
.follow-instagram__reel-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: rgba(0, 0, 0, 0.8);
}

.follow-instagram__reel:hover .follow-instagram__reel-play-overlay {
  opacity: 1;
}

.follow-instagram__reel-play-overlay svg {
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* ============================================
   UPDATED MODAL STYLES
   ============================================ */

/* Modal overlay - lighter (70% opacity instead of 95%) */
.follow-instagram__modal {
  background-color: rgba(0, 0, 0, 0.7);
}

/* Modal content wrapper with corner radius */
.follow-instagram__modal-content {
  border-radius: 8px;
  overflow: hidden;
}

/* Video wrapper for proper sizing */
.follow-instagram__modal-video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 500px;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
}

@media screen and (max-width: 989px) {
  .follow-instagram__modal-video-wrapper {
    max-width: 100vw;
    max-height: 100vh;
    border-radius: 0;
  }
}

/* Modal video - cover fit, crop from center */
.follow-instagram__modal-video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Changed from contain to cover */
  object-position: center; /* Crop from center */
  background-color: #000000;
}

/* Play/Pause icon overlay in modal */
.follow-instagram__modal-play-pause {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10002;
  color: rgba(0, 0, 0, 0.8);
}

.follow-instagram__modal-play-pause svg {
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

/* Show icon temporarily when toggling */
.follow-instagram__modal-play-pause.show {
  opacity: 1;
}

/* Show icon when paused */
.follow-instagram__modal-play-pause.paused {
  opacity: 1;
}

/* Updated close button with theme icon */
.follow-instagram__modal-close svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   MOBILE LAYOUT - COLUMNS AND SWIPE
   ============================================ */

/* Mobile grid - respects columns_mobile setting */
@media screen and (max-width: 989px) {
  .follow-instagram__gallery {
    --columns-mobile: 2; /* Default, overridden inline */
  }
  
  .follow-instagram__track {
    display: grid;
    grid-template-columns: repeat(var(--columns-mobile), 1fr);
    gap: var(--gap);
  }
  
  /* Swipe mode: horizontal slider */
  .follow-instagram__track--swipe-mobile {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    grid-template-columns: none;
  }
  
  .follow-instagram__track--swipe-mobile::-webkit-scrollbar {
    display: none;
  }
  
  .follow-instagram__track--swipe-mobile .follow-instagram__item {
    flex: 0 0 calc((100% - (var(--gap) * (var(--columns-mobile) - 1))) / var(--columns-mobile));
    scroll-snap-align: start;
  }
}

/* ============================================
   MODAL UPDATES
   ============================================ */

/* 1. Modal video container - 9:16 aspect ratio */
.follow-instagram__modal-video-container {
  position: relative;
  width: 100%;
  max-width: min(90vh * 9 / 16, 500px); /* 9:16 aspect ratio */
  aspect-ratio: 9 / 16;
  border-radius: 8px;
  overflow: hidden;
  background-color: #000000;
}

@media screen and (max-width: 989px) {
  .follow-instagram__modal-video-container {
    max-width: 100vw;
    max-height: 100vh;
    aspect-ratio: auto; /* Fill screen on mobile */
    border-radius: 0; /* 4. Remove corner radius on mobile */
  }
}



/* Updated: Remove old modal-video-wrapper styles, use modal-video-container instead */
.follow-instagram__modal-video-wrapper {
  /* Deprecated - using modal-video-container now */
}

/* ============================================
   MODAL FIXES
   ============================================ */

/* Remove old styles */
.follow-instagram__modal-video-wrapper {
  /* Deprecated */
}

/* 1 & 3. Modal video container - 9:16 with proper mobile scaling */
.follow-instagram__modal-video-container {
  position: relative;
  width: 100%;
  max-width: min(90vh * 9 / 16, 500px);
  aspect-ratio: 9 / 16;
  border-radius: 20px; /* 5. Increased to 20px */
  overflow: hidden;
  background-color: #000000;
}

@media screen and (max-width: 989px) {
  .follow-instagram__modal-video-container {
    max-width: 100vw;
    max-height: 100vh;
    width: 100vw;
    height: 100vh;
    aspect-ratio: auto;
    border-radius: 0;
  }
}

/* 3. Modal video - cover on mobile */
.follow-instagram__modal-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background-color: #000000;
}

/* 2. Larger close icon - actual SVG size */


/* 1. Mute button - position relative to video container */
.follow-instagram__modal-mute {
  position: absolute;
  top: 2rem;
  left: 2rem;
  width: 4rem;
  height: 4rem;
  background: rgba(var(--color-foreground), 0.3);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10001;
  transition: background-color 0.3s ease;
  padding: 0;
}

.follow-instagram__modal-mute:hover {
  background: rgba(var(--color-foreground), 0.4);
}

.follow-instagram__modal-mute:focus-visible {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: 0.3rem;
}

.follow-instagram__modal-mute svg {
  width: 24px;
  height: 24px;
  color: #ffffff;
}

.follow-instagram__mute-icon-unmuted {
  display: none;
}

@media screen and (max-width: 989px) {
  .follow-instagram__modal-close {
    top: 1rem;
    right: 1rem;
  }
  
  .follow-instagram__modal-mute {
    top: 1rem;
    left: 1rem;
  }
}

/* Close button with larger icon */
.follow-instagram__modal-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  z-index: 10001;
  padding: 0.5rem;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.9;
}

.follow-instagram__modal-close:hover {
  opacity: 1;
  transform: scale(1.1);
}

.follow-instagram__modal-close:focus-visible {
  outline: 0.2rem solid rgba(255, 255, 255, 0.5);
  outline-offset: 0.3rem;
}

.follow-instagram__modal-close svg {
  display: block;
  width: 28px;
  height: 28px;
}

@media screen and (max-width: 989px) {
  .follow-instagram__modal-close {
    top: 1rem;
    right: 1rem;
  }
  
  .follow-instagram__modal-close svg {
    width: 32px;
    height: 32px;
  }
}