* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #f5f5f5;
  color: #000;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  z-index: 1000;
  border-bottom: 1px solid #e0e0e0;
  height: 80px;
}

.header-content {
  width: 1440px;
  max-width: 100%;
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.logo-container {
  flex-shrink: 0;
}
.logo-container img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.search-container {
  flex-grow: 1;
  max-width: 600px;
  height: 48px;
  background-color: transparent;
  border: 1px solid #8d8d8d;
  border-radius: 24px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: border-color 0.2s;
}

.search-container:focus-within {
  border-color: #000;
}

.search-icon {
  width: 24px;
  height: 24px;
  opacity: 0.5;
}

.search-input {
  width: 100%;
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  color: #000;
}

.login-container {
  white-space: nowrap;
}
.login-link {
  font-size: 14px;
  color: #e35d25;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.btn-container {
  flex-shrink: 0;
}

.btn {
  height: 40px;
  padding: 0 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: 0.2s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-selling {
  background: white;
  border: 1px solid #f57c00;
  color: #f57c00;
}
.btn-selling:hover {
  background: #fff5f0;
}

.btn-shopping {
  background: #f57c00;
  color: white;
}
.btn-shopping:hover {
  background: #d6521e;
}

.region-selector-container,
.lang-selector-container {
  position: relative !important;
  height: 48px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.region-btn,
.lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.2s;
  border: 1px solid transparent;
}

.region-btn:hover,
.lang-btn:hover {
  background-color: #f4f4f4;
}

.region-text,
.lang-text {
  font-weight: 600;
  font-size: 14px;
  color: #000;
}

.region-flag,
.lang-icon {
  width: 24px;
  height: auto;
  border-radius: 2px;
  display: block;
}

.region-arrow {
  color: #777;
  font-size: 18px;
}

.region-dropdown,
.lang-dropdown {
  display: none;
  position: absolute;
  top: 110%;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid #eee;
  z-index: 9999;
  overflow: hidden;
}

.region-dropdown {
  left: 0;
  min-width: 220px;
  max-height: 300px;
  overflow-y: auto;
}

.lang-dropdown {
  right: 0;
  min-width: 120px;
}

.region-dropdown.show,
.lang-dropdown.show {
  display: block;
  animation: fadeInUp 0.2s ease;
}

.region-option,
.lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  transition: background 0.2s;
}

.region-option:hover,
.lang-option:hover {
  background: #fff3e0;
  color: #e35d25;
}

.region-title {
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  background: #fafafa;
  border-bottom: 1px solid #f0f0f0;
}

.dropdown-divider {
  height: 1px;
  background: #eee;
  margin: 4px 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-content {
  margin-top: 100px;
  padding-bottom: 40px;
  min-height: 80vh;
}

.categories-section {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.categories-container {
  max-width: 1440px;
  padding: 0 20px;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}
.categories-container::-webkit-scrollbar {
  display: none;
}

.category-btn {
  height: 36px;
  border-radius: 18px;
  background-color: transparent;
  border: 1px solid #ccc;
  padding: 0 16px;
  flex-shrink: 0;
  cursor: pointer;
  font-size: 14px;
  color: #555;
  transition: 0.2s;
  white-space: nowrap;
}
.category-btn:hover {
  border-color: #000;
  color: #000;
  background: #fff;
}

.live-section {
  max-width: 1440px;
  margin: 0 auto 40px auto;
  padding: 0 20px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  color: #e35d25;
}

.show-more {
  font-size: 14px;
  width: 80px;
  text-decoration: underline;
  color: #e35d25;
}

.slider-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 20px;
  padding-top: 16px;
  scrollbar-width: none;
}
.slider-container::-webkit-scrollbar {
  display: none;
}

.stream-card {
  min-width: 280px;
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-user {
  display: flex;
  align-items: center;
  gap: 10px;
}
.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  background: #ddd;
}
.username {
  font-size: 14px;
  font-weight: 600;
}

.stream-thumbnail {
  width: 260px;
  height: 160px;
  aspect-ratio: 16/9;
  background: #eee;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  display: block;
}
.stream-thumbnail img {
  width: 260px;
  height: 160px;
  object-fit: cover;
}

.live-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff0033;
  color: white;
  padding: 4px 8px;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 700;
}

.stream-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 42px;
}

.stream-category {
  font-size: 13px;
  color: #666;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
.category-main {
  color: #e35d25;
  font-weight: 600;
  margin-right: 5px;
}

.stream-page-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px;
}

.stream-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
}

.video-player-container {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.products-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 10px;
  margin-top: 20px;
}

.product-card {
  min-width: 220px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-card.auction-active {
  border: 2px solid #ff0033;
}
.card-content {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.current-price {
  font-size: 18px;
  font-weight: 800;
}
.btn-bid-red {
  background: #ff0033;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
}

.chat-container {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #ddd;
  height: 600px;
  display: flex;
  flex-direction: column;
  padding: 16px;
}
.chat-messages {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chat-input-wrapper {
  margin-top: 12px;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 8px 12px;
  display: flex;
}
.chat-input {
  border: none;
  outline: none;
  flex: 1;
}

.product-page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  gap: 40px;
}
.main-image-wrapper {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.main-img-display {
  max-width: 100%;
  max-height: 100%;
}
.product-info {
  flex: 1;
}
.product-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}
.btn-buy-now {
  background: #e35d25;
  color: white;
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}

.contact-page-wrapper,
.investor-page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}
.contact-card {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  display: flex;
  gap: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.input-line {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  outline: none;
}
.btn-submit {
  background: #e35d25;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.site-footer {
  background-color: #f5f5f5;
  border-top: 1px solid #e0e0e0;
  padding: 20px 0 20px;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}

.footer-logo {
  font-weight: 800;
  font-size: 20px;
  line-height: 1.1;
}

.footer-nav {
  display: flex;
  gap: 30px;
}
.footer-nav a:hover {
  color: #e35d25;
}

.footer-divider {
  height: 1px;
  background: #e0e0e0;
  margin-bottom: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-icons {
  display: flex;
  gap: 20px;
}

.seller-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f4f4f4;
}
.seller-page .frame-wrapper {
  width: 100%;
  max-width: 1440px;
  padding: 20px;
}
.seller-page .container {
  display: flex;
  gap: 20px;
}
.seller-page .frame-8 {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid #ff0033;
  overflow: hidden;
}
.seller-page .rectangle {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.seller-page .text-wrapper-2 {
  font-size: 32px;
  font-weight: 700;
}

.header-right-section {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.btn-orange-pill {
  background-color: #e85d26;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.btn-orange-pill:hover {
  background-color: #d14d1b;
}

.seller-cta-link {
  text-decoration: none;
}

.header-icons-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-link {
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.2s;
}

.icon-link:hover {
  opacity: 0.7;
}

.icon-link svg,
.lang-selector-minimal svg {
  stroke-width: 1.8px;
}

.lang-selector-minimal {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: #000;
}

.lang-text-bold {
  font-weight: 700;
  font-size: 15px;
  color: #000;
}

.user-profile-mini {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
}

.user-profile-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .header-right-section {
    gap: 12px;
  }
  .header-icons-group {
    gap: 12px;
  }
  .btn-orange-pill {
    padding: 8px 16px;
    font-size: 13px;
  }
}

/* ==================== ITEM PAGE CONTENT ==================== */
.item-page-content {
  padding: 100px 20px;
}
.product-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 20px;
  display: flex;
  gap: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

/* --- GALLERY --- */
.product-image-section {
  flex: 1;
  min-width: 0;
}

.main-image-frame {
  height: 432px;
  width: 432px;
  border: 1px solid #eee;
  border-radius: 12px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #fff;
  overflow: hidden;
}

#currentImage {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: #333;
  transition: all 0.2s;
  z-index: 10;
}
.gallery-arrow:hover {
  background: #fff;
  color: #e85d26;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.gallery-arrow.prev {
  left: 10px;
}
.gallery-arrow.next {
  right: 10px;
}

.thumbnails-list {
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
}
.thumb-item {
  width: 80px;
  height: 80px;
  border: 1px solid #eee;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color 0.2s;
}
.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumb-item:hover,
.thumb-item.active {
  border-color: #e85d26;
}
.thumb-item.more-images {
  background: #333;
  color: white;
  font-weight: bold;
}
.thumb-item.video-thumb {
  background: #f0f0f0;
  color: #333;
  font-size: 20px;
}

.trust-badge {
  background: #fbfbfb;
  border: 1px solid #f0f0f0;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
}
.payment-logos {
  font-size: 24px;
  color: #555;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

/* --- INFO --- */
.product-info-section {
  flex: 1.2;
}
.seller-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.seller-pic {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.seller-title {
  font-weight: 700;
  font-size: 14px;
}
.rating {
  color: orange;
}
.reviews {
  color: #888;
  font-weight: 400;
  font-size: 13px;
}

.product-header {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.4;
}

.pricing-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.price-current {
  font-size: 28px;
  font-weight: 800;
  color: #e85d26;
}
.price-old {
  font-size: 18px;
  color: #999;
  text-decoration: line-through;
}
.discount-tag {
  background: #e85d26;
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.description-text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

.purchase-controls {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.qty-wrapper {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  height: 48px;
}
.qty-wrapper button {
  width: 40px;
  border: none;
  background: white;
  font-size: 18px;
  cursor: pointer;
}
.qty-wrapper button:hover {
  background: #f9f9f9;
}
.qty-wrapper input {
  width: 40px;
  border: none;
  text-align: center;
  font-weight: bold;
  font-size: 15px;
  outline: none;
}

.btn-buy-now {
  flex: 2;
  background: #e85d26;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
}
.btn-buy-now:hover {
  background: #cf501f;
}

.btn-add-cart {
  flex: 1.5;
  background: white;
  color: #e85d26;
  border: 1px solid #e85d26;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
}
.btn-add-cart:hover {
  background: #fff5f2;
}

.divider {
  height: 1px;
  background: #eee;
  margin: 30px 0;
}
.specs-table {
  font-size: 14px;
}
.spec-row {
  margin-bottom: 12px;
  display: flex;
}
.spec-row .label {
  width: 100px;
  color: #666;
  flex-shrink: 0;
}
.spec-row .value {
  color: #333;
  font-weight: 500;
}
.in-stock {
  color: #27ae60;
}
.color-options .dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-right: 5px;
  border: 1px solid #ddd;
  display: inline-block;
  cursor: pointer;
}
.color-options .dot.orange {
  background: #e85d26;
}
.color-options .dot.gray {
  background: #ddd;
}
.color-options .dot.selected {
  border: 2px solid #333;
}

.favorite-sellers-section {
  border-bottom: 1px solid #eee;
  max-width: 1440px;
  margin: 0 auto 40px auto;
  padding: 0 20px;
}

.section-title-orange {
  font-size: 24px;
  font-weight: 700;
  color: #e85d26;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.sellers-scroll-wrapper {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  padding-top: 15px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.sellers-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.seller-avatar-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-width: 80px;
  cursor: pointer;
}

.avatar-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}

.avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid transparent;
  transition: border-color 0.3s;
}

.seller-avatar-card.live .avatar-img {
  border-color: #f60053;
}

.live-play-icon {
  position: absolute;
  bottom: -10px;
  right: 28px;
  background: #f60053;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  z-index: 2;
}

.seller-avatar-card.live .live-play-icon {
  display: flex;
}

.live-play-icon img {
  width: 10px;
  height: 10px;
  padding-left: 2px;
  display: block;
}

.bell-btn {
  position: absolute;
  top: -5px;
  right: 24px;
  width: 28px;
  height: 28px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s;
  z-index: 3;
}

.bell-btn img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.bell-btn .bell-icon-active {
  display: none;
}
.bell-btn .bell-icon-default {
  display: block;
}

.bell-btn.active {
  background: white;
}

.bell-btn.active .bell-icon-default {
  display: none;
}
.bell-btn.active .bell-icon-active {
  display: block;
}

.seller-name {
  font-size: 13px;
  font-weight: 500;
  color: #333;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100px;
}

.time-badge {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background: #eee;
  color: #333;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  border: 2px solid white;
  z-index: 2;
}
.time-badge.orange {
  background: #e85d26;
  color: white;
}
.card-thumb-container {
  position: relative;
}

.card-bell-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.2s;
}

.card-bell-btn:hover {
  background: white;
  transform: scale(1.1);
}

.card-bell-btn img {
  width: 18px;
  height: 18px;
  display: block;
}

.card-bell-btn .bell-active {
  display: none;
}
.card-bell-btn .bell-default {
  display: block;
}

.card-bell-btn.active {
  background: white;
}

.card-bell-btn.active .bell-default {
  display: none;
}
.card-bell-btn.active .bell-active {
  display: block;
}

.card-thumb-container {
  position: relative;
}

.card-bell-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.2s;
}

.card-bell-btn:hover {
  transform: scale(1.1);
  background: #fff;
}

.card-bell-btn img {
  width: 18px;
  height: 18px;
  display: block;
  pointer-events: none;
}

.card-bell-btn .bell-active {
  display: block;
}
.card-bell-btn .bell-default {
  display: block;
}

.card-bell-btn.active {
  background: white;
}

.card-bell-btn.active .bell-default {
  display: none;
}
.card-bell-btn.active .bell-active {
  display: block;
}

.cta-group {
  display: flex;
  gap: 10px;
}
.btn-cta {
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}
.btn-outline {
  border: 1px solid #e85d26;
  background: white;
  color: #e85d26;
}
.btn-fill {
  border: 1px solid #e85d26;
  background: #e85d26;
  color: white;
}
.btn-outline:hover {
  background: #fff5f0;
}
.btn-fill:hover {
  background: #d14d1b;
}

.card-thumb-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
}
.stream-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.badge-overlay {
  position: absolute;
  padding: 4px 10px;
  border-radius: 4px;
  color: white;
  font-weight: 700;
  font-size: 11px;
  z-index: 10;
}
.badge-overlay.left-top {
  top: 10px;
  left: 10px;
}
.badge-overlay.orange-bg {
  background-color: #e85d26;
}

.bell-overlay {
  position: absolute;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.bell-overlay.right-top {
  top: 10px;
  right: 10px;
}
.bell-overlay img {
  width: 18px;
  pointer-events: none;
}

.bell-act {
  display: none;
}
.bell-overlay.active {
  background: white;
}
.bell-overlay.active .bell-def {
  display: none;
}
.bell-overlay.active .bell-act {
  display: block;
}

.favorite-sellers-section {
  padding: 0 20px;
  max-width: 1440px;
  margin: 0 auto;
}
.sellers-scroll-wrapper {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  padding: 10px 0;
}
.seller-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
  flex-shrink: 0;
  cursor: pointer;
}

.circle-img-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}
.circle-img-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid transparent;
}
.seller-circle.live .circle-img-wrapper img {
  border-color: #f60053;
}

.play-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #f60053;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}
.play-icon i {
  font-size: 14px;
}

.bell-overlay.top-right-circle {
  top: -5px;
  right: -5px;
  width: 28px;
  height: 28px;
}
.bell-overlay.top-right-circle img {
  width: 14px;
}

.time-pill {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
  color: white;
  white-space: nowrap;
  border: 2px solid white;
}
.time-pill.orange {
  background: #e85d26;
}
.time-pill.gray {
  background: #ddd;
  color: #333;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.modal-overlay.show {
  display: flex;
}

.modal-box {
  background: white;
  width: 900px;
  max-width: 90%;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
}
.modal-left {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.modal-right {
  flex: 1;
  background: #f0f0f0;
}
.modal-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.modal-left h2 {
  font-size: 28px;
  font-weight: 800;
  color: #e85d26;
  margin-bottom: 20px;
  line-height: 1.2;
}
.modal-left input,
.modal-left select {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  margin-bottom: 15px;
  outline: none;
  font-size: 16px;
}
.btn-submit-orange {
  background: #e85d26;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  width: fit-content;
}

.tags-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.tag-item {
  background: #eee;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  color: #555;
}
.tag-item.checked {
  background: #ff0033;
  color: white;
}
.tag-item input {
  display: none;
}

.stream-card.upcoming-layout {
  display: flex;
  flex-direction: column;
  width: 280px;
  flex-shrink: 0;
  gap: 10px;
}

.upcoming-header {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.u-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.u-username {
  font-weight: 700;
  font-size: 14px;
  color: #000;
}
.badge-new-seller {
  background: #e85d26;
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}

.upcoming-thumb-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  display: block;
}
.u-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.u-badge {
  position: absolute;
  top: 16px;
  left: 12px;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  z-index: 5;
}
.badge-orange {
  background: #e85d26;
  color: white;
}
.badge-gray {
  background: rgba(230, 230, 230, 0.9);
  color: #333;
}

.u-bell {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.u-bell img {
  width: 18px;
  pointer-events: none;
}
.u-bell.active {
  background: white;
}
.u-bell.active .bell-def {
  display: none;
}
.u-bell.active .bell-act {
  display: block;
}

.upcoming-footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.u-title {
  font-size: 15px;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.u-categories {
  font-size: 13px;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cat-main {
  color: #e85d26;
  font-weight: 600;
  margin-right: 5px;
}
.cat-sub {
  color: #888;
}

.fav-bell-btn {
  position: absolute;
  top: -5px;
  right: 24px;
  width: 28px;
  height: 28px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
}

.fav-bell-btn img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  pointer-events: none;
}

.fav-bell-btn .fav-icon-act {
  display: none;
}
.fav-bell-btn .fav-icon-def {
  display: block;
}

.fav-bell-btn.active {
  background: white;
}

.fav-bell-btn.active .fav-icon-def {
  display: none;
}
.fav-bell-btn.active .fav-icon-act {
  display: block;
}
