/* Carousel reels */
.reels-carousel { max-width: 100%; display: flex; justify-content: center; }
.reels-carousel .swiper-slide { display: flex; justify-content: center; cursor: pointer; }
.reel-wrapper { position: relative; width: 200px; height: 355px; background: #000; border-radius: 12px; overflow: hidden; }
.reel-wrapper video { width: 100%; height: 100%; object-fit: cover; }

/* Fullscreen reels */
#reels-modal { position: fixed; inset: 0; background: rgba(0,0,0,0.95); display: flex; justify-content: center; align-items: center; z-index: 9999; }
#reels-modal.reels-hidden { display: none; }
.reels-swiper { width: 100%; height: 100%; }
.reel-fullscreen { position: relative; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; }
.reel-fullscreen video { aspect-ratio: 9/16; max-height: 100%; max-width: 100%; object-fit: contain; background: #000; margin: auto; }
.shop-now { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); background: #ff4081; color: #fff; padding: 12px 20px; border-radius: 30px; text-decoration: none; font-weight: bold; }
#close-reels { position: fixed; top: 20px; right: 20px; background: #fff; color: #000; border: none; font-size: 22px; padding: 8px 12px; border-radius: 50%; cursor: pointer; z-index: 10000; }
.mute-toggle { position: absolute; bottom: 80px; right: 20px; background: rgba(0,0,0,0.6); color: #fff; border: none; font-size: 20px; padding: 8px 12px; border-radius: 50%; cursor: pointer; }