/* ============================================
   SHOP PAGE STYLES - WITH THEME
   ============================================ */

/* ================================
   LUXURY SHOP LAYOUT & STYLING
   ================================ */

/* Premium Hero Section with Blue Accents */
.shop-top-hero {
  background: linear-gradient(135deg, #f8faff 0%, #f5f7ff 50%, #f2f5ff 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.shop-top-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(170, 230, 235, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(170, 230, 235, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.shop-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero-left {
  flex: 1 1 420px;
}

.hero-right {
  flex: 0 0 420px;
}

.breadcrumb {
  font-size: 14px;
  color: #667B99;
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.breadcrumb::before {
  content: '✨';
  margin-right: 8px;
}

.shop-hero-title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #1A365D;
  margin-bottom: 20px;
  line-height: 1.1;
  position: relative;
  display: inline-block;
}

.shop-hero-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #aae6eb, #90d9e0, #aae6eb);
  border-radius: 2px;
}

.shop-hero-subtitle {
  font-size: 1.3rem;
  color: #667B99;
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 40px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.shop-hero-img {
  height: 240px;
  border-radius: 24px;
  box-shadow: 
    0 25px 70px rgba(170, 230, 235, 0.2),
    0 0 0 1px rgba(255,255,255,0.8);
  position: relative;
  transition: all 0.4s ease;
  background: linear-gradient(45deg, #f8faff, #eef4ff);
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-color: #FFFFFF !important;
}

.shop-hero-img:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 35px 90px rgba(170, 230, 235, 0.3),
    0 0 0 1px rgba(255,255,255,0.9);
}

/* Hero Slide Fade Effect */
.hero-slide-fade {
  transition: background-image 1s ease-in-out;
}

/* Luxury Main Container */
.shop-main {
  padding: 80px 0;
  background: 
    radial-gradient(circle at 0% 50%, rgba(170, 230, 235, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 100% 50%, rgba(170, 230, 235, 0.02) 0%, transparent 50%),
    linear-gradient(180deg, #f8faff 0%, #f6f9ff 100%);
  position: relative;
}

.shop-container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
}

/* Luxury Sidebar */
.shop-sidebar {
  background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
  padding: 35px 30px;
  border-radius: 24px;
  box-shadow: 
    0 15px 50px rgba(0,0,0,0.08),
    0 0 0 1px rgba(170, 230, 235, 0.1);
  border: 1px solid #e0f7fa;
  position: sticky;
  top: 120px;
  height: fit-content;
  backdrop-filter: blur(10px);
}

.shop-sidebar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #aae6eb, #90d9e0, #aae6eb);
  border-radius: 24px 24px 0 0;
}

.shop-sidebar h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #1A365D;
  margin: 35px 0 22px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #e0f7fa;
  position: relative;
  letter-spacing: 0.5px;
}

.shop-sidebar h3:first-child {
  margin-top: 0;
}

.shop-sidebar h3::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #aae6eb, #90d9e0);
  border-radius: 1px;
}

/* Luxury Filter Lists */
.filter-list, .size-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.filter-list li, .size-list li {
  padding: 14px 18px;
  margin: 8px 0;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid transparent;
  font-weight: 500;
  color: #667B99;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.filter-list li::before, .size-list li::before {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(170, 230, 235, 0.1), transparent);
  transition: left 0.6s ease;
}

.filter-list li:hover::before, .size-list li:hover::before {
  left: 100%;
}

.filter-list li:hover, .size-list li:hover {
  border-color: #aae6eb;
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(170, 230, 235, 0.15);
}

.filter-list li.active, .size-list li.active,
.filter-list li.active-filter, .size-list li.active-size {
  background: linear-gradient(135deg, #edfafc, #e6f7fa);
  border-color: #aae6eb;
  color: #1A365D;
  font-weight: 700;
  transform: translateX(8px);
  box-shadow: 
    0 8px 25px rgba(170, 230, 235, 0.2),
    inset 0 1px 0 rgba(255,255,255,0.8);
}

.filter-list li.active::after, .size-list li.active::after,
.filter-list li.active-filter::after, .size-list li.active-size::after {
  content: '✓';
  position: absolute;
  right: 18px;
  color: #aae6eb;
  font-weight: bold;
  font-size: 1.1em;
}

/* Luxury Price Range */
.price-range {
  padding: 15px 0;
}

.price-range input[type="range"] {
  width: 100%;
  height: 8px;
  border-radius: 12px;
  background: linear-gradient(90deg, #e0f7fa, #aae6eb, #e0f7fa);
  outline: none;
  -webkit-appearance: none;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.price-range input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  box-shadow: 
    0 4px 15px rgba(170, 230, 235, 0.4),
    0 0 0 2px #aae6eb;
  border: 3px solid #fff;
  transition: all 0.3s ease;
}

.price-range input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 
    0 6px 20px rgba(170, 230, 235, 0.5),
    0 0 0 2px #aae6eb;
}

.price-values {
  text-align: center;
  font-weight: 700;
  color: #667B99;
  margin-top: 15px;
  font-size: 15px;
  letter-spacing: 0.5px;
}

/* Luxury Clear Filters Button */
.filter-clear {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #fff, #f8faff);
  border: 2px solid #aae6eb;
  border-radius: 14px;
  color: #667B99;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-top: 30px;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

.filter-clear::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(170, 230, 235, 0.1), transparent);
  transition: left 0.6s ease;
}

.filter-clear:hover::before {
  left: 100%;
}

.filter-clear:hover {
  background: linear-gradient(135deg, #e6f7fa, #ddf3f7);
  border-color: #90d9e0;
  color: #1A365D;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(170, 230, 235, 0.2);
}

/* Luxury Products Section */
.shop-products {
  background: transparent;
}

/* Premium Controls Row */
.shop-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 45px;
  padding: 25px 0;
  border-bottom: 2px solid #e0f7fa;
  position: relative;
}

.shop-controls::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, #aae6eb, transparent);
}

.mobile-filter-btn {
  display: none;
}

.sort-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, #fff, #f8faff);
  padding: 12px 22px;
  border-radius: 14px;
  border: 1px solid #e0f7fa;
  box-shadow: 
    0 6px 20px rgba(0,0,0,0.08),
    0 0 0 1px rgba(255,255,255,0.8);
}

.sort-wrap label {
  font-weight: 700;
  color: #667B99;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

#sortSelect {
  border: none;
  background: transparent;
  font-weight: 600;
  color: #1A365D;
  cursor: pointer;
  outline: none;
  padding: 8px 0;
  min-width: 160px;
  font-size: 14px;
  letter-spacing: 0.3px;
}

/* Luxury Products Grid */
.products-grid {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

/* Ultra Premium Product Cards */
.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 
    0 12px 40px rgba(0,0,0,0.08),
    0 0 0 1px rgba(255,255,255,0.9);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid #e0f7fa;
  position: relative;
  opacity: 0;
  transform: translateY(25px) scale(0.95);
}

.product-card.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #aae6eb, transparent);
  z-index: 2;
}

.product-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 30px 70px rgba(0,0,0,0.15),
    0 0 40px rgba(170, 230, 235, 0.15),
    0 0 0 1px rgba(255,255,255,0.9);
  border-color: #aae6eb;
}

.product-media {
  position: relative;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 240px;
  background-size: cover;
  background-position: center;
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 16px 16px 0 0;
  position: relative;
  object-fit: cover;
}

.product-card:hover .product-img {
  transform: scale(1.12);
}

.wishlist-heart {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.95);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border: 1px solid #e0f7fa;
  color: #aae6eb;
}

.wishlist-heart:hover {
  background: #fff;
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.wishlist-heart.active {
  color: #e74c3c;
  animation: pulse 0.6s ease;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.badge-sale {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #aae6eb, #90d9e0);
  color: #1A365D;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  z-index: 2;
  box-shadow: 0 6px 20px rgba(170, 230, 235, 0.4);
  letter-spacing: 0.5px;
}

/* Luxury Product Body */
.product-body {
  padding: 20px;
  background: #fff;
  position: relative;
}

.product-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e0f7fa, transparent);
}

.product-title {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1A365D;
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: 0.3px;
}

.product-meta {
  font-size: 13px;
  color: #667B99;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: #aae6eb;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.5px;
}

.old {
  font-size: 1.1rem;
  color: #a8a8a8;
  text-decoration: line-through;
  font-weight: 600;
}

/* Luxury Product Count */
.product-count {
  text-align: center;
  color: #667B99;
  font-weight: 600;
  margin: 50px 0 30px;
  padding: 20px;
  background: linear-gradient(135deg, #f8faff, #f5f7ff);
  border-radius: 16px;
  border: 1px solid #e0f7fa;
  letter-spacing: 0.3px;
  position: relative;
}

.product-count::before {
  content: '💎';
  margin-right: 10px;
}

/* Luxury Pagination */
.shop-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.page-btn {
  padding: 12px 18px;
  border: 2px solid #aae6eb;
  background: #fff;
  color: #667B99;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-weight: 700;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.page-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(170, 230, 235, 0.1), transparent);
  transition: left 0.6s ease;
}

.page-btn:hover::before {
  left: 100%;
}

.page-btn:hover:not(:disabled) {
  background: #edfafc;
  border-color: #90d9e0;
  color: #1A365D;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(170, 230, 235, 0.2);
}

.page-btn.active {
  background: linear-gradient(135deg, #aae6eb, #90d9e0);
  color: #1A365D;
  border-color: transparent;
  box-shadow: 
    0 8px 25px rgba(170, 230, 235, 0.3),
    inset 0 1px 0 rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.page-btn.prev, .page-btn.next {
  background: #fff;
  color: #1A365D;
  border: 2px solid #aae6eb;
}

.page-btn.prev:hover, .page-btn.next:hover {
  background: #edfafc;
}

/* No Results */
.no-results {
  text-align: center;
  color: #667B99;
  padding: 60px 20px;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #f8faff, #f5f7ff);
  border-radius: 16px;
  border: 1px solid #e0f7fa;
}

/* Filter Backdrop */
.filter-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.28);
  opacity: 0;
  visibility: hidden;
  z-index: 1399;
  transition: all .24s ease;
}

.filter-backdrop.show {
  opacity: 1;
  visibility: visible;
}

/* Luxury Mobile Filter Panel */
.mobile-filter-panel {
  background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  box-shadow: 0 -20px 60px rgba(0,0,0,0.15);
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateY(110%);
  transition: transform .28s ease;
  z-index: 1400;
  max-height: 92vh;
  overflow: auto;
  border-top: 1px solid #e0f7fa;
}

.mobile-filter-panel.open {
  transform: translateY(0);
}

.mobile-filter-top {
  background: linear-gradient(135deg, #edfafc, #e6f7fa);
  padding: 25px 30px 20px;
  text-align: center;
  position: relative;
}

.mobile-filter-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #aae6eb, #90d9e0, #aae6eb);
  border-radius: 30px 30px 0 0;
}

.mobile-filter-top h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: #1A365D;
  margin: 15px 0 8px;
  letter-spacing: 0.5px;
}

.filter-sub {
  color: #667B99;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.filter-handle {
  width: 60px;
  height: 5px;
  background: #aae6eb;
  border-radius: 3px;
  margin: 0 auto 20px;
  box-shadow: 0 2px 8px rgba(170, 230, 235, 0.2);
}

.filter-close {
  position: absolute;
  top: 25px;
  right: 25px;
  background: rgba(255,255,255,0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.3rem;
  color: #667B99;
  cursor: pointer;
  padding: 5px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0f7fa;
}

.filter-close:hover {
  background: #fff;
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.mobile-filter-body {
  padding: 30px;
  flex: 1;
  overflow-y: auto;
}

.mobile-filter-body h4 {
  font-family: "Playfair Display", serif;
  color: #1A365D;
  margin: 30px 0 20px;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  position: relative;
}

.mobile-filter-body h4:first-child {
  margin-top: 0;
}

.mobile-filter-body h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #aae6eb, transparent);
  border-radius: 1px;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 15px;
}

.chip {
  background: #fff;
  border: 2px solid #aae6eb;
  padding: 12px 20px;
  border-radius: 25px;
  color: #667B99;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  flex: 1;
  min-width: calc(50% - 12px);
  text-align: center;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.chip::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(170, 230, 235, 0.1), transparent);
  transition: left 0.6s ease;
}

.chip:hover::before {
  left: 100%;
}

.chip.active {
  background: linear-gradient(135deg, #aae6eb, #90d9e0);
  color: #1A365D;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(170, 230, 235, 0.3);
  transform: translateY(-2px);
}

.mobile-filter-footer {
  display: flex;
  gap: 18px;
  padding: 25px 30px;
  background: #fff;
  border-top: 2px solid #e0f7fa;
}

.btn-clear, .btn-apply {
  flex: 1;
  padding: 18px;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s ease;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn-clear {
  background: #fff;
  border: 2px solid #aae6eb;
  color: #667B99;
}

.btn-clear:hover {
  background: #edfafc;
  border-color: #90d9e0;
  color: #1A365D;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(170, 230, 235, 0.15);
}

.btn-apply {
  background: linear-gradient(135deg, #aae6eb, #90d9e0);
  border: none;
  color: #1A365D;
  box-shadow: 0 6px 20px rgba(170, 230, 235, 0.3);
}

.btn-apply:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(170, 230, 235, 0.4);
}

/* Cart Panel Styles */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.36);
  opacity: 0;
  visibility: hidden;
  transition: all .28s ease;
  z-index: 1299;
}

.cart-overlay.show {
  opacity: 1;
  visibility: visible;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: -380px;
  width: 360px;
  max-width: 92%;
  height: 100vh;
  background: #fff;
  z-index: 1300;
  box-shadow: -6px 0 40px rgba(0,0,0,0.12);
  transition: right .32s cubic-bezier(.2,.9,.2,1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid #e0f7fa;
}

.cart-panel.open {
  right: 0;
}

.cart-header {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e0f7fa;
  color: #1A365D;
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 12px;
}

.cart-row {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed #e0f7fa;
  align-items: center;
}

.cart-row-img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e0f7fa;
}

.cart-row-title {
  font-weight: 600;
  margin-bottom: 6px;
  color: #1A365D;
}

.cart-row-price {
  color: #aae6eb;
  font-weight: 600;
  margin-top: 6px;
}

.close-cart {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #aae6eb;
}

.checkout-btn {
  width: 100%;
  padding: 12px;
  background: #aae6eb;
  color: #1A365D;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.checkout-btn:hover {
  background: #90d9e0;
}

/* Notification */
.notification {
  position: fixed;
  top: 100px;
  right: 20px;
  background: #aae6eb;
  color: #1A365D;
  padding: 12px 20px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(170, 230, 235, 0.2);
  z-index: 10000;
  animation: slideIn 0.3s ease;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  max-width: 300px;
  text-align: left;
  font-size: 14px;
  border-left: 3px solid #90d9e0;
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOut {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(100%); opacity: 0; }
}