/* Home — LINE SHOPPING / line-shopping.top clone */

.gm-home { background: #FFFFFF; }

.gm-home-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 48px 8px;
  background: #FFFFFF;
}
.gm-home-header .gm-logo-img--shop {
  height: 56px;
  max-height: 56px;
  max-width: min(220px, 72vw);
}
.gm-home-header h1 { margin: 0; line-height: 1; }
.gm-home-header .gm-cart {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #151515;
  font-size: 22px;
  text-decoration: none;
}

.gm-search-sticky {
  position: sticky;
  top: 0;
  z-index: 90;
  padding: 6px 16px 10px;
  background: #FFFFFF;
  transition: box-shadow .2s, background .2s;
}
.gm-search-sticky.is-scrolled {
  box-shadow: 0 1px 0 #ebedf0;
}
.gm-search-sticky form {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  padding: 10px 12px;
  gap: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.gm-search-sticky input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  color: #151515;
  font-family: inherit;
  min-width: 0;
}
.gm-search-sticky input::placeholder { color: #B5B5B5; }
.gm-search-sticky .gm-search-ic {
  color: #151515;
  font-size: 16px;
  flex-shrink: 0;
}

.gm-banner-section { padding: 0 12px 8px; background: #FFFFFF; }
.gm-banner {
  position: relative;
  width: 100%;
  height: 168px;
  border-radius: 12px;
  overflow: hidden;
  background: #010101;
}
.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity .45s ease;
  pointer-events: none;
  z-index: 0;
  cursor: pointer;
}
.banner-slide.active { 
  opacity: 1; 
  pointer-events: auto;
  z-index: 1;
}
.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #010101;
}
.banner-counter {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 4;
  background: rgba(0,0,0,.45);
  border-radius: 10px;
  font-size: 11px;
  color: #fff;
  padding: 3px 9px;
  font-weight: 600;
  letter-spacing: .3px;
  pointer-events: none;
  line-height: 1.2;
}

.gm-cats-section {
  padding: 8px 0 12px;
  background: #FFFFFF;
}
.gm-cats-viewport { overflow: hidden; }
.gm-cats-track {
  display: flex;
  transition: transform .35s ease;
}
.gm-cats-page {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 0 12px;
  box-sizing: border-box;
}
.gm-cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 4px 2px;
  font-family: inherit;
}
.gm-cat-item .gm-cat-ic {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: #010101;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gm-cat-item .gm-cat-ic--cyan {
  background: linear-gradient(145deg, #121212 55%, rgba(40, 217, 206, 0.35));
  box-shadow: 0 0 0 1px rgba(40, 217, 206, 0.45), 0 4px 12px rgba(40, 217, 206, 0.15);
}
.gm-cat-item .gm-cat-ic--pink {
  background: linear-gradient(145deg, #010101 55%, rgba(240, 53, 122, 0.35));
  box-shadow: 0 0 0 1px rgba(240, 53, 122, 0.45), 0 4px 12px rgba(240, 53, 122, 0.15);
}
.gm-cat-item .gm-cat-ic--mix {
  background: linear-gradient(135deg, #28D9CE 0%, #F0357A 100%);
  box-shadow: 0 4px 14px rgba(240, 53, 122, 0.25);
}
.gm-cat-item .gm-cat-ic i {
  font-size: 22px;
  line-height: 1;
  color: #28D9CE;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}
.gm-cat-item .gm-cat-ic--pink i { color: #F0357A; }
.gm-cat-item .gm-cat-ic--mix i { color: #ffffff; }
.gm-cat-item:hover .gm-cat-ic {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 6px 16px rgba(240, 53, 122, 0.22);
}
.gm-cat-item .gm-cat-ic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gm-cat-item .gm-cat-label {
  font-size: 10px;
  line-height: 1.25;
  color: #161823;
  text-align: center;
  max-width: 72px;
  font-weight: 600;
}
.gm-cat-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 10px;
}
.gm-cat-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d1d5db;
  transition: background .2s, transform .2s;
}
.gm-cat-dots span.active { background: #F0357A; }

.gm-section-white { background: #fff; }
.gm-gap { height: 6px; background: #FFFFFF; }

/* ===== Shop deals (2 cards) ===== */
.tiktok-deals-section {
  padding: 16px 0 12px;
  background: #fff;
}
.tiktok-deals-section .sec-hd h3::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 16px;
  margin-right: 4px;
  border-radius: 2px;
  background: linear-gradient(180deg, #28D9CE, #F0357A);
  vertical-align: middle;
}
.tiktok-deal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(240, 53, 122, 0.2);
}
.tiktok-deal-card:hover img {
  transform: scale(1.03);
}
.tiktok-deal-card img {
  transition: transform 0.35s ease;
}

/* ===== MEMBERSHIP LEVEL CARDS - WORLD CLASS ===== */
.level-cards {
  display: flex;
  gap: 12px;
  padding: 0 12px;
  overflow-x: auto;
}
.level-card {
  flex: 1;
  min-width: 160px;
  border-radius: 20px;
  padding: 18px 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255,255,255,0.3);
}
.level-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}
.level-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 50%);
  pointer-events: none;
}
.level-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
  border-radius: 50%;
}

/* Level 2 - Silver Premium */
.level-card.silver,
.level-card[data-level="2"],
.level-card:nth-child(1) {
  background: linear-gradient(145deg, #667eea 0%, #764ba2 50%, #6B8DD6 100%);
}

/* Level 3 - Bronze/Brown Premium */
.level-card.bronze,
.level-card[data-level="3"],
.level-card:nth-child(2) {
  background: linear-gradient(145deg, #d4a574 0%, #c17f4e 50%, #a67c52 100%);
}

/* Level Badge */
.level-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255,255,255,0.3);
  margin-bottom: 12px;
}
.level-badge i {
  font-size: 10px;
}

/* Level Title */
.level-title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Level Amount */
.level-amount {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.level-amount span {
  font-size: 14px;
  font-weight: 600;
}

/* Level Subtitle */
.level-subtitle {
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
}

/* Level Code */
.level-code {
  position: absolute;
  top: 18px;
  right: 16px;
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  letter-spacing: 1px;
}

/* Level Orders Badge */
.level-orders {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}

/* Chart/Graph decoration */
.level-chart {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 60px;
  height: 40px;
  opacity: 0.6;
}
.level-chart svg {
  width: 100%;
  height: 100%;
}

/* ===== WORLD-CLASS PROFESSIONAL EFFECTS ===== */

/* Logo Animation */
.gm-logo-img,
.gm-home-header img,
header img {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.gm-logo-img:hover,
.gm-home-header img:hover,
header img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 12px rgba(240, 53, 122, 0.25));
}

/* Search Bar Glow Effect */
.top-search-box, .home-search-bar, .search-box {
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.top-search-box:focus-within, .home-search-bar:focus-within, .search-box:focus-within {
  box-shadow: 0 8px 24px rgba(0,200,81,0.25);
  transform: translateY(-2px);
  border-color: #F0357A;
}

/* Banner pagination dots (below carousel) */
.banner-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 8px 0 2px;
}
.banner-dots .banner-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d1d1d1;
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}
.banner-dots .banner-dot.active {
  width: 18px;
  border-radius: 4px;
  background: #F0357A;
}

/* Category Icons Premium Hover */
/* Category Icons Premium Hover - FIXED SELECTORS */
.gm-cats-track .cat-item,
[class*="cat"] [class*="item"],
[class*="category"] > div {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: pointer;
}
.gm-cats-track .cat-item:hover,
[class*="cat"] [class*="item"]:hover,
[class*="category"] > div:hover {
  transform: translateY(-8px) scale(1.05);
}
.gm-cats-track .gm-cat-item:hover .gm-cat-ic i,
.gm-cats-track .cat-item:hover img,
[class*="cat"] [class*="item"]:hover img,
[class*="category"] > div:hover img {
  filter: drop-shadow(0 2px 8px rgba(240, 53, 122, 0.4));
}
.gm-cats-track .cat-item img,
[class*="cat"] [class*="item"] img,
[class*="category"] img,
.gm-cats-track .cat-item svg,
[class*="cat"] [class*="item"] svg {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Floating Animation for Icons - FIXED */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}
.gm-cats-track > div:nth-child(1) img,
.gm-cats-track > div:nth-child(1) svg { animation: float 3s ease-in-out infinite; }
.gm-cats-track > div:nth-child(2) img,
.gm-cats-track > div:nth-child(2) svg { animation: float 3s ease-in-out infinite 0.5s; }
.gm-cats-track > div:nth-child(3) img,
.gm-cats-track > div:nth-child(3) svg { animation: float 3s ease-in-out infinite 1s; }
.gm-cats-track > div:nth-child(4) img,
.gm-cats-track > div:nth-child(4) svg { animation: float 3s ease-in-out infinite 1.5s; }
.gm-cats-track > div:hover img,
.gm-cats-track > div:hover svg {
  animation: none;
}

/* ===== SECTION HEADERS - PROFESSIONAL ===== */
.section-title {
  position: relative;
  font-weight: 800;
  background: linear-gradient(135deg, #333 0%, #666 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 18px;
  margin-bottom: 16px;
  padding-left: 12px;
}
.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: linear-gradient(180deg, #F0357A 0%, #D42E66 100%);
  border-radius: 2px;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 12px;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #F0357A, #D42E66);
  border-radius: 2px;
}

/* ===== FILTER BUTTONS - PROFESSIONAL ===== */
.filter-bar {
  display: flex;
  gap: 8px;
  padding: 0 12px 16px;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-bar::-webkit-scrollbar {
  display: none;
}
.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1.5px solid transparent;
}
.filter-btn.active {
  background: #333;
  color: #fff;
}
.filter-btn:not(.active) {
  background: #fff;
  color: #666;
  border-color: #e5e7eb;
}
.filter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.filter-btn img {
  width: 16px;
  height: 16px;
}

/* ===== DAILY PICKS SECTION ===== */
.daily-picks-section {
  padding: 20px 12px;
  background: linear-gradient(180deg, #fff 0%, #f8fdf9 100%);
}
.daily-picks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.pick-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.pick-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.pick-card .store-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.95);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  color: #333;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 2;
}
.pick-card .store-badge img {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}
.pick-card .mall-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, #F0357A 0%, #D42E66 100%);
  color: #fff;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
  z-index: 2;
}
.pick-card .product-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.pick-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.pick-card:hover .product-image img {
  transform: scale(1.05);
}
.pick-card .product-info {
  padding: 12px;
}
.pick-card .product-name {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pick-card .product-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pick-card .price-current {
  font-size: 18px;
  font-weight: 800;
  color: #EF4444;
}
.pick-card .price-original {
  font-size: 12px;
  color: #9CA3AF;
  text-decoration: line-through;
}
.pick-card .sold-info {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 11px;
}
.pick-card .sold-badge {
  background: #FEE2E2;
  color: #EF4444;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 600;
}
.pick-card .sold-text {
  color: #6B7280;
}

/* ===== WOW ITEMS SECTION - PROFESSIONAL ===== */
.wow-section {
  padding: 20px 12px;
  background: linear-gradient(135deg, #f8f4ff 0%, #f0e6ff 100%);
  border-radius: 16px;
  margin: 0 12px 16px;
  position: relative;
  overflow: hidden;
}
.wow-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #8B5CF6 0%, #A78BFA 50%, #C4B5FD 100%);
}

.wow-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding: 0 4px;
}

.wow-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 800;
  color: #7C3AED;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wow-title::before {
  content: '✨';
  font-size: 20px;
}

.wow-countdown {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.countdown-box {
  background: rgba(255,255,255,0.2);
  padding: 4px 8px;
  border-radius: 6px;
  min-width: 24px;
  text-align: center;
  font-weight: 800;
}

.countdown-separator {
  font-weight: 700;
  opacity: 0.8;
}

/* WOW Product Grid */
.wow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

@media (max-width: 480px) {
  .wow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Product Cards Premium Effect */
.product-card, .prod-card2, .wow-card, .trending-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.product-card:hover, .prod-card2:hover, .wow-card:hover, .trending-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

/* WOW Card Specific */
.wow-card {
  border: 1px solid rgba(139, 92, 246, 0.1);
}

.wow-card .product-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.wow-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.wow-card:hover .product-image img {
  transform: scale(1.08);
}

/* Product Badge */
.product-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
}

.product-badge.bestseller {
  background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
  color: #fff;
}

.product-badge.hot {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #fff;
}

.product-badge.new {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #fff;
}

.product-badge.popular {
  background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
  color: #fff;
}

/* Product Info */
.product-info {
  padding: 12px;
}

.product-name {
  font-size: 13px;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 36px;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.price-current {
  font-size: 16px;
  font-weight: 800;
  color: #EF4444;
}

.price-original {
  font-size: 12px;
  color: #9CA3AF;
  text-decoration: line-through;
}

.price-discount {
  font-size: 11px;
  color: #10B981;
  font-weight: 600;
}

/* Sold Info */
.product-sold {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 11px;
  color: #6B7280;
}

.sold-bar {
  flex: 1;
  height: 4px;
  background: #E5E7EB;
  border-radius: 2px;
  overflow: hidden;
}

.sold-progress {
  height: 100%;
  background: linear-gradient(90deg, #EF4444 0%, #F87171 100%);
  border-radius: 2px;
}
.product-card::before, .prod-card2::before, .wow-card::before, .trending-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}
.product-card:hover::before, .prod-card2:hover::before, .wow-card:hover::before, .trending-card:hover::before {
  opacity: 1;
}

/* Image Zoom Effect on Hover */
.product-card img, .prod-card2 img, .wow-card img, .trending-card img {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover img, .prod-card2:hover img, .wow-card:hover img, .trending-card:hover img {
  transform: scale(1.08);
}

/* Badge Pulse Animation */
.wc-badge, .p2-badge, .trend-badge {
  position: relative;
  overflow: hidden;
}
.wc-badge::after, .p2-badge::after, .trend-badge::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.4) 0%, transparent 70%);
  opacity: 0;
  animation: pulse-glow 2s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0; transform: scale(0.8); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

/* Bottom nav — styles in clone.css (.bottom-nav--tiktok) */

/* Scroll Reveal Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.gm-section {
  animation: fadeInUp 0.6s ease-out;
}

/* Loading Skeleton Shimmer */
@keyframes skeleton-shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
}

/* Add to Cart Button Animation */
.btn-add-cart, .add-to-cart {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.btn-add-cart::after, .add-to-cart::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
.btn-add-cart:active::after, .add-to-cart:active::after {
  width: 200%;
  height: 200%;
}

/* Price Tag Glow */
.price-tag, .wc-price, .p2-price {
  position: relative;
  transition: all 0.3s ease;
}
.price-tag:hover, .wc-price:hover, .p2-price:hover {
  text-shadow: 0 0 10px rgba(0,200,81,0.3);
}

/* Cart Icon Bounce */
@keyframes cart-bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
.cart-icon.has-items {
  animation: cart-bounce 2s ease-in-out infinite;
}
.cart-icon.has-items::after {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  background: #ff4444;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.2); }
}
