/** Shopify CDN: Minification failed

Line 21:17 Expected identifier but found whitespace
Line 21:19 Unexpected "{"
Line 21:28 Expected ":"
Line 22:18 Expected identifier but found whitespace
Line 22:20 Unexpected "{"
Line 22:29 Expected ":"
Line 23:23 Expected identifier but found whitespace
Line 23:25 Unexpected "{"
Line 23:34 Expected ":"

**/
/* ==========================================================================
   TrendBuy Shoppable Reels - CSS Styles
   Instagram/TikTok-like vertical video shopping experience
   ========================================================================== */

/* CSS Custom Properties - Theming */
:root {
  --reels-accent: {{ section.settings.accent_color | default: '#FF3B5C' }};
  --reels-buy-btn: {{ section.settings.buy_button_color | default: '#FF3B5C' }};
  --reels-buy-btn-text: {{ section.settings.buy_button_text_color | default: '#FFFFFF' }};
  --reels-bg: #000000;
  --reels-overlay: rgba(0, 0, 0, 0.5);
  --reels-card-bg: rgba(0, 0, 0, 0.7);
  --reels-text: #FFFFFF;
  --reels-text-secondary: rgba(255, 255, 255, 0.7);
  --reels-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  --reels-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --reels-drawer-height: 400px;
}

/* ==========================================================================
   Main Container
   ========================================================================== */

.reels-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh; /* Dynamic viewport height for mobile */
  background: var(--reels-bg);
  overflow: hidden;
  z-index: 9999;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

/* Hide header/footer when reels is active */
.section-reels-feed ~ *,
* ~ .section-reels-feed {
  display: none !important;
}

/* ==========================================================================
   Loading State
   ========================================================================== */

.reels-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--reels-text);
  z-index: 100;
  transition: opacity var(--reels-transition);
}

.reels-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.reels-loader__spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--reels-accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.reels-loader__text {
  font-size: 14px;
  color: var(--reels-text-secondary);
}

/* ==========================================================================
   Reels Feed - Snap Scroll Container
   ========================================================================== */

.reels-feed {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  -webkit-overflow-scrolling: touch;
}

.reels-feed::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

/* ==========================================================================
   Individual Reel Item
   ========================================================================== */

.reel-item {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--reels-bg);
}

/* ==========================================================================
   Video Player
   ========================================================================== */

.reel-video-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--reels-bg);
}

/* Desktop: Limit video width for better viewing */
@media (min-width: 768px) {
  .reel-video {
    max-width: 480px;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
  }
}

/* ==========================================================================
   Video Controls
   ========================================================================== */

.reel-video-controls {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.reel-control {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--reels-overlay);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--reels-text);
  transition: all var(--reels-transition);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.reel-control:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.reel-control svg {
  width: 20px;
  height: 20px;
}

/* Play/Pause States */
.reel-control--play-pause .icon-pause,
.reel-control--play-pause.paused .icon-play {
  display: block;
}

.reel-control--play-pause .icon-play,
.reel-control--play-pause.paused .icon-pause {
  display: none;
}

/* Mute States */
.reel-control--mute .icon-unmuted,
.reel-control--mute.muted .icon-muted {
  display: block;
}

.reel-control--mute .icon-muted,
.reel-control--mute.muted .icon-unmuted {
  display: none;
}

/* Tap Overlay for Play/Pause */
.reel-tap-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  cursor: pointer;
}

/* ==========================================================================
   Progress Bar
   ========================================================================== */

.reel-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  z-index: 25;
}

.reel-progress__bar {
  height: 100%;
  background: var(--reels-accent);
  width: 0%;
  transition: width 0.1s linear;
}

/* ==========================================================================
   Right Side Actions
   ========================================================================== */

.reel-actions {
  position: absolute;
  right: 16px;
  bottom: 200px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 30;
}

@media (min-width: 768px) {
  .reel-actions {
    right: calc(50% - 280px);
  }
}

.reel-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--reels-text);
  text-decoration: none;
  transition: transform var(--reels-transition);
}

.reel-action:hover {
  transform: scale(1.1);
}

.reel-action:active {
  transform: scale(0.95);
}

.reel-action svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.reel-action__label {
  font-size: 11px;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Like Button Animation */
.reel-action--like.liked svg {
  fill: var(--reels-accent);
  stroke: var(--reels-accent);
  animation: heartBeat 0.4s ease-in-out;
}

@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.3); }
  50% { transform: scale(1.1); }
  75% { transform: scale(1.25); }
}

/* ==========================================================================
   Bottom Product Card
   ========================================================================== */

.reel-product-card {
  position: absolute;
  bottom: 100px;
  left: 16px;
  right: 90px;
  background: var(--reels-card-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 30;
  box-shadow: var(--reels-shadow);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .reel-product-card {
    left: calc(50% - 220px);
    right: calc(50% - 220px);
    max-width: 440px;
    margin: 0 auto;
  }
}

.reel-product-card__info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.reel-product-card__image {
  flex-shrink: 0;
}

.reel-product-card__image img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
}

.reel-product-card__details {
  flex: 1;
  min-width: 0;
}

.reel-product-card__title {
  display: block;
  color: var(--reels-text);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}

.reel-product-card__title:hover {
  text-decoration: underline;
}

.reel-product-card__price {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.reel-price--regular,
.reel-price--sale {
  font-size: 16px;
  font-weight: 700;
  color: var(--reels-text);
}

.reel-price--sale {
  color: var(--reels-accent);
}

.reel-price--compare {
  font-size: 13px;
  color: var(--reels-text-secondary);
  text-decoration: line-through;
}

.reel-price--discount {
  font-size: 11px;
  font-weight: 600;
  color: var(--reels-buy-btn-text);
  background: var(--reels-accent);
  padding: 2px 6px;
  border-radius: 4px;
}

/* Buy Now Button */
.reel-product-card__buy {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  background: var(--reels-buy-btn);
  color: var(--reels-buy-btn-text);
  border: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--reels-transition);
  white-space: nowrap;
}

.reel-product-card__buy:hover:not(:disabled) {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(255, 59, 92, 0.4);
}

.reel-product-card__buy:active:not(:disabled) {
  transform: scale(0.98);
}

.reel-product-card__buy:disabled {
  background: #666;
  cursor: not-allowed;
  opacity: 0.7;
}

.reel-product-card__buy svg {
  flex-shrink: 0;
}

/* ==========================================================================
   Caption & Hashtags
   ========================================================================== */

.reel-caption {
  position: absolute;
  bottom: 24px;
  left: 16px;
  right: 90px;
  z-index: 30;
}

@media (min-width: 768px) {
  .reel-caption {
    left: calc(50% - 220px);
    right: calc(50% - 220px);
  }
}

.reel-caption__text {
  color: var(--reels-text);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 4px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.reel-caption__hashtags {
  color: var(--reels-text);
  font-size: 13px;
  margin: 0 0 8px;
  opacity: 0.8;
}

.reel-caption__shop {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reel-caption__shop-logo {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.reel-caption__shop-name {
  color: var(--reels-text);
  font-size: 13px;
  font-weight: 600;
}

/* ==========================================================================
   Navigation Indicators
   ========================================================================== */

.reels-nav {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 50;
}

@media (max-width: 767px) {
  .reels-nav {
    display: none;
  }
}

.reels-nav__btn {
  width: 44px;
  height: 44px;
  border: none;
  background: var(--reels-overlay);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--reels-text);
  transition: all var(--reels-transition);
}

.reels-nav__btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.reels-nav__btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.reels-nav__btn svg {
  width: 24px;
  height: 24px;
}

.reels-nav__indicator {
  color: var(--reels-text);
  font-size: 13px;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   Quick Add Drawer
   ========================================================================== */

.reel-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--reels-transition);
}

.reel-drawer[aria-hidden="false"] {
  pointer-events: auto;
  opacity: 1;
}

.reel-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.reel-drawer__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-height: 80vh;
  background: #1a1a1a;
  border-radius: 24px 24px 0 0;
  padding: 24px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.reel-drawer[aria-hidden="false"] .reel-drawer__content {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .reel-drawer__content {
    max-width: 480px;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
  }
  
  .reel-drawer[aria-hidden="false"] .reel-drawer__content {
    transform: translateX(-50%) translateY(0);
  }
}

.reel-drawer__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--reels-text);
  transition: all var(--reels-transition);
}

.reel-drawer__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.reel-drawer__close svg {
  width: 20px;
  height: 20px;
}

/* Drawer Product Info */
.reel-drawer__product {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-right: 40px;
}

.reel-drawer__image {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.reel-drawer__info {
  flex: 1;
}

.reel-drawer__title {
  color: var(--reels-text);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.3;
}

.reel-drawer__price {
  color: var(--reels-accent);
  font-size: 20px;
  font-weight: 700;
}

/* Variant Selector */
.reel-drawer__variants {
  margin-bottom: 20px;
}

.reel-drawer__variant-group {
  margin-bottom: 16px;
}

.reel-drawer__variant-label {
  display: block;
  color: var(--reels-text-secondary);
  font-size: 13px;
  margin-bottom: 8px;
}

.reel-drawer__variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.reel-drawer__variant-btn {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--reels-text);
  font-size: 14px;
  cursor: pointer;
  transition: all var(--reels-transition);
}

.reel-drawer__variant-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.reel-drawer__variant-btn.selected {
  background: var(--reels-accent);
  border-color: var(--reels-accent);
}

.reel-drawer__variant-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Quantity Selector */
.reel-drawer__quantity {
  margin-bottom: 20px;
}

.reel-drawer__quantity label {
  display: block;
  color: var(--reels-text-secondary);
  font-size: 13px;
  margin-bottom: 8px;
}

.reel-drawer__quantity-selector {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
}

.reel-drawer__qty-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: var(--reels-text);
  font-size: 20px;
  cursor: pointer;
  transition: background var(--reels-transition);
}

.reel-drawer__qty-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.reel-drawer__qty-input {
  width: 60px;
  height: 44px;
  border: none;
  background: transparent;
  color: var(--reels-text);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  -moz-appearance: textfield;
}

.reel-drawer__qty-input::-webkit-outer-spin-button,
.reel-drawer__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Add to Cart Button */
.reel-drawer__add-btn {
  width: 100%;
  padding: 16px 24px;
  background: var(--reels-buy-btn);
  color: var(--reels-buy-btn-text);
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--reels-transition);
  margin-bottom: 16px;
}

.reel-drawer__add-btn:hover:not(:disabled) {
  transform: scale(1.02);
  box-shadow: 0 4px 20px rgba(255, 59, 92, 0.4);
}

.reel-drawer__add-btn:disabled {
  background: #666;
  cursor: not-allowed;
}

.reel-drawer__add-btn.loading {
  pointer-events: none;
}

.reel-drawer__add-btn.loading .reel-drawer__add-text::after {
  content: '...';
  animation: ellipsis 1.5s infinite;
}

@keyframes ellipsis {
  0%, 100% { content: '.'; }
  33% { content: '..'; }
  66% { content: '...'; }
}

.reel-drawer__add-price {
  opacity: 0.9;
}

/* View Details Link */
.reel-drawer__view-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--reels-text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--reels-transition);
}

.reel-drawer__view-link:hover {
  color: var(--reels-text);
}

/* ==========================================================================
   Share Modal
   ========================================================================== */

.reel-share-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--reels-transition);
}

.reel-share-modal[aria-hidden="false"] {
  pointer-events: auto;
  opacity: 1;
}

.reel-share-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.reel-share-modal__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  border-radius: 24px 24px 0 0;
  padding: 24px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.reel-share-modal[aria-hidden="false"] .reel-share-modal__content {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .reel-share-modal__content {
    max-width: 400px;
    left: 50%;
    bottom: 50%;
    transform: translateX(-50%) translateY(50%) scale(0.9);
    border-radius: 24px;
    opacity: 0;
  }
  
  .reel-share-modal[aria-hidden="false"] .reel-share-modal__content {
    transform: translateX(-50%) translateY(50%) scale(1);
    opacity: 1;
  }
}

.reel-share-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--reels-text);
}

.reel-share-modal__close svg {
  width: 18px;
  height: 18px;
}

.reel-share-modal__title {
  color: var(--reels-text);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 24px;
  text-align: center;
}

.reel-share-modal__options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.reel-share-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  color: var(--reels-text);
  transition: all var(--reels-transition);
}

.reel-share-option:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.reel-share-option svg {
  width: 28px;
  height: 28px;
}

.reel-share-option[data-share="whatsapp"] svg {
  color: #25D366;
}

.reel-share-option[data-share="facebook"] svg {
  color: #1877F2;
}

.reel-share-option[data-share="twitter"] svg {
  color: #FFFFFF;
}

.reel-share-option span {
  font-size: 12px;
  font-weight: 500;
}

.reel-share-modal__copied {
  text-align: center;
  color: #4CAF50;
  font-size: 14px;
  margin-top: 16px;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--reels-transition);
}

.reel-share-modal__copied.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Toast Notifications
   ========================================================================== */

.reel-toast {
  position: fixed;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--reels-card-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--reels-text);
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  z-index: 120;
  opacity: 0;
  pointer-events: none;
  transition: all var(--reels-transition);
  box-shadow: var(--reels-shadow);
}

.reel-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.reel-toast.success {
  background: rgba(76, 175, 80, 0.9);
}

.reel-toast.error {
  background: rgba(244, 67, 54, 0.9);
}

/* ==========================================================================
   Empty State
   ========================================================================== */

.reels-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--reels-text);
  text-align: center;
  padding: 40px;
}

.reels-empty svg {
  opacity: 0.5;
  margin-bottom: 24px;
}

.reels-empty h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 12px;
}

.reels-empty p {
  color: var(--reels-text-secondary);
  font-size: 16px;
  margin: 0;
}

/* ==========================================================================
   Safe Area Adjustments (iOS Notch)
   ========================================================================== */

@supports (padding-top: env(safe-area-inset-top)) {
  .reel-video-controls {
    top: calc(20px + env(safe-area-inset-top));
  }
  
  .reel-caption {
    bottom: calc(24px + env(safe-area-inset-bottom));
  }
  
  .reel-product-card {
    bottom: calc(100px + env(safe-area-inset-bottom));
  }
  
  .reel-drawer__content,
  .reel-share-modal__content {
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
  }
}

/* ==========================================================================
   Animations
   ========================================================================== */

/* Fade in animation for reels */
.reel-item {
  animation: fadeInReel 0.5s ease-out;
}

@keyframes fadeInReel {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Subtle pulse for action buttons */
.reel-action--cart {
  animation: subtlePulse 2s ease-in-out infinite;
}

@keyframes subtlePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ==========================================================================
   Reduced Motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .reels-feed {
    scroll-behavior: auto;
  }
}

/* ==========================================================================
   Print Styles (hide reels)
   ========================================================================== */

@media print {
  .reels-container {
    display: none !important;
  }
}