body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
  background: radial-gradient(1200px 800px at 10% -10%, #14203e, transparent), radial-gradient(900px 600px at 110% 10%, #1a2a5a33, transparent), #0b0f19 !important;
  background-attachment: fixed !important
}

.left-side {
  display: flex;
  align-items: center;
  gap: 10px
}

.logo {
  height: 40px
}

.title {
  font-weight: 700
}

.official {
  color: #09f;
  font-size: 12px
}

.tagline {
  flex: 1 1 auto;
  text-align: center;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 16px;
  color: transparent;

  -webkit-background-clip: text;
  background-clip: text;
  background-size: 300% 100%;
  animation: 6s linear infinite shimmer;
  text-transform: uppercase;
  white-space: nowrap;
  margin: 0 12px
}

@keyframes shimmer {
  0% {
    background-position: 0 50%
  }

  100% {
    background-position: 100% 50%
  }
}

.login-btn {
  background: #09f;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer
}

.support-btn {

  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  transition: .4s;
  box-shadow: 0 6px 20px rgba(0, 200, 83, .4);
  position: relative;
  overflow: hidden
}

.support-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;

  transition: left .5s
}

.support-btn:hover::before {
  left: 100%
}

.support-btn:hover {

  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 200, 83, .6)
}

.support-btn:active {
  transform: translateY(-1px) scale(1.02);
  transform: translateY(0)
}

.tab-bar {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  overflow-x: auto;
  background: #23232b;
  z-index: 10
}

.tab {
  background-color: #2a2935;
  border: none;
  color: #8e8e93;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background .3s, color .3s
}

.tab .icon {
  font-size: 18px;
  color: #8e8e93;
  transition: color .3s
}

.tab.active {
  background-color: #38384a;
  color: #09f
}

.tab.active .icon {
  color: #09f
}

.tab:hover {
  background-color: #3a3a44;
  color: #fff
}

.tab:hover .icon {
  color: #fff
}

.sidebar {
  position: fixed;
  left: -300px;
  top: 0;
  height: 100vh;
  width: 250px;
  background: #1e1d26;
  color: #fff;
  transition: left .3s;
  padding: 20px;
  box-sizing: border-box;
  z-index: 1000
}

.sidebar.active {
  left: 0
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px
}

.sidebar-title {
  font-size: 18px;
  color: #aaa
}

.sidebar-item {
  margin: 10px 0;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 4px
}

.sidebar-item.active,
.sidebar-item:hover {
  background: #2c2b3a;
  color: #09f
}

.sidebar-buttons {
  margin-top: 20px
}

.sidebar-btn {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: 1px solid #aaa;
  background: 0 0;
  color: #aaa;
  border-radius: 4px;
  cursor: pointer
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, .8);
  justify-content: center;
  align-items: center;
  z-index: 2000
}

.popup.show {
  display: flex
}

.popup-content {
  background: #2c2b3a;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  color: #fff;
  width: 350px;
  max-width: 85vw;
  max-height: 70vh;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .6);
  position: relative;
  overflow-y: auto
}

.input-row {
  display: flex;
  margin-top: 20px;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .3);
  height: 44px
}

.input-row input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  outline: 0;
  border-radius: 8px 0 0 8px;
  font-size: 14px;
  background: #23222e;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  height: 44px;
  box-sizing: border-box;
  resize: none;
  overflow: hidden
}

.input-row input::placeholder {
  color: #888
}

.input-row input:focus {
  background: #2a2935;
  box-shadow: inset 0 0 0 2px #09f
}

.input-row button {
  padding: 12px 20px;
  border: none;
  background: #09f;
  color: #fff;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: .3s;
  font-family: 'Segoe UI', sans-serif;
  height: 44px;
  box-sizing: border-box;
  white-space: nowrap
}

.input-row button:hover {
  background: #07c;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 153, 255, .4)
}

.input-row button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 153, 255, .4)
}

.popup-content h2 {
  margin-bottom: 12px;
  font-size: 1.8em;
  letter-spacing: 1px;
  color: #fff;
  font-weight: 600
}

.popup-content p {
  margin-bottom: 6px;
  font-size: 1em;
  color: #ccc;
  line-height: 1.4
}

.popup-content .close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  color: #aaa;
  transition: .3s;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1)
}

.popup-content .close:hover {
  color: #fff;
  background: rgba(255, 255, 255, .2);
  transform: scale(1.1)
}

@media (max-width:768px) {
  .popup-content {
    width: 90vw;
    padding: 25px 20px;
    max-height: 75vh
  }

  .popup-content h2 {
    font-size: 1.6em
  }

  .input-row {
    height: 40px
  }

  .input-row input {
    padding: 10px 14px;
    font-size: 16px;
    height: 40px
  }

  .input-row button {
    padding: 10px 16px;
    font-size: 16px;
    height: 40px
  }
}

@media (max-width:480px) {
  .popup-content {
    width: 95vw;
    padding: 20px 15px
  }

  .popup-content h2 {
    font-size: 1.4em
  }

  .input-row {
    flex-direction: column;
    gap: 8px;
    height: auto
  }

  .input-row button,
  .input-row input {
    border-radius: 8px;
    width: 100%;
    height: 40px
  }
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: var(--muted);
  background: #050816;
  position: relative;
  overflow: hidden;
  margin-top: auto;
  box-shadow: inset 0 1px 0 rgba(25, 212, 202, .1);
  font-family: Poppins, Inter, sans-serif;
  min-height: 220px
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;

  margin: 0 auto;
  padding: 0 20px
}

.footer-main {
  padding: 20px 0 15px;
  position: relative
}

.footer-column:first-child {
  grid-column: 1;
  order: 3;
  text-align: center
}

.footer-column:nth-child(2) {
  order: 1
}

.footer-column:nth-child(4) {
  order: 4
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  align-items: start
}

.footer-column:nth-child(3) {
  order: 2
}

.footer-column:nth-child(4) {
  order: 4;
  grid-column: 1
}

.footer-brand {
  max-width: 100%
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 15px;
  letter-spacing: -.5px
}

.logo-icon {
  font-size: 32px
}

.logo-text {

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.footer-tagline {
  font-size: 16px;
  color: #94a3b8;
  margin: 0 0 25px;
  line-height: 1.6
}

.subscribe-btn {

  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
  box-shadow: 0 4px 15px rgba(139, 92, 246, .3)
}

.subscribe-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, .4)
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 25px
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #94a3b8;
  text-decoration: none;
  transition: .3s
}

.social-icon:hover {
  transform: scale(1.1)
}

.social-icon.arrow::before,
.social-icon.double-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff
}

.social-icon.double-arrow::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%) rotate(-45deg)
}

.social-icon.telegram:hover {
  transform: translateY(-3px);
  border-color: #8b5cf6;
  background: rgba(139, 92, 246, .1);
  color: #8b5cf6;
  box-shadow: 0 6px 15px rgba(139, 92, 246, .3)
}

.social-icon.discord:hover {
  border-color: #5865f2;
  background: rgba(88, 101, 242, .1);
  color: #5865f2;
  box-shadow: 0 6px 15px rgba(88, 101, 242, .3)
}

.social-icon.twitter:hover {
  border-color: #1da1f2;
  background: rgba(29, 161, 242, .1);
  color: #1da1f2;
  box-shadow: 0 6px 15px rgba(29, 161, 242, .3)
}

.social-icon.facebook:hover {
  border-color: #1877f2;
  background: rgba(24, 119, 242, .1);
  color: #1877f2;
  box-shadow: 0 6px 15px rgba(24, 119, 242, .3)
}

.social-icon.youtube:hover {
  border-color: red;
  background: rgba(255, 0, 0, .1);
  color: red;
  box-shadow: 0 6px 15px rgba(255, 0, 0, .3)
}

.social-icon.instagram:hover {
  border-color: #e1306c;
  background: rgba(225, 48, 108, .1);
  color: #e1306c;
  box-shadow: 0 6px 15px rgba(225, 48, 108, .3)
}

.footer-column {
  display: flex;
  flex-direction: column
}

.footer-heading {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
  letter-spacing: .5px;
  position: relative;
  text-transform: uppercase
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;

  border-radius: 1px
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.footer-links li {
  margin: 0
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 9px;
  transition: .3s;
  display: inline-block;
  position: relative;
  padding: 4px 0;
  line-height: 1.6
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;

  transition: width .3s;
  border-radius: 1px
}

.footer-links a:hover {
  color: #8b5cf6;
  transform: translateX(4px)
}

.footer-links a:hover::after {
  width: 100%
}

.subscribe-section {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.email-input {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .05);
  color: #fff;
  font-size: 14px;
  outline: 0;
  transition: .3s
}

.email-input:focus {
  border-color: #8b5cf6;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, .2)
}

.subscribe-button {

  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: .3s
}

.subscribe-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(139, 92, 246, .3)
}

.payment-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px
}

.payment-icon {
  font-size: 24px;
  color: #94a3b8;
  transition: .3s
}

.payment-icon:hover {
  color: #fff;
  transform: translateY(-2px)
}

.trust-text {
  font-size: 12px;
  color: #64748b;
  margin-top: 15px
}

.online-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #10b981;
  margin-left: 5px;
  vertical-align: middle;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, .7);
  animation: 1.5s infinite pulse
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, .7)
  }

  70% {
    box-shadow: 0 0 0 5px rgba(16, 185, 129, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0)
  }
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  background: rgba(11, 15, 25, .8);
  padding: 12px 0;
  position: relative
}

.footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;

  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 20px;
  font-size: 14px;
  text-align: center
}

.footer-copyright p {
  margin: 0;
  color: #94a3b8
}

.footer-copyright strong {
  color: #fff;
  font-weight: 700
}

.footer-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px
}

.footer-legal a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 9px;
  transition: color .3s;
  position: relative
}

.footer-legal a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;

  transition: width .3s
}

.footer-legal a:hover::after {
  width: 100%
}

.footer-legal a:hover {
  color: #8b5cf6
}

.separator {
  color: rgba(255, 255, 255, .2);
  font-size: 13px
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  font-size: 13px;
  cursor: pointer;
  transition: color .3s
}

.language-selector:hover {
  color: #fff
}

.flag-icon {
  font-size: 16px
}

@media (max-width:1024px) {
  .footer-column:first-child {
    grid-column: 1;
    order: 3;
    grid-column: 1/3;
    text-align: center
  }

  .footer-column:nth-child(2) {
    order: 1
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px
  }

  .footer-column:nth-child(3) {
    order: 2
  }

  .footer-column:nth-child(4) {
    order: 4
  }

  .footer-socials {
    justify-content: center
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center
  }

  .footer-legal {
    justify-content: center
  }
}

@media (max-width:768px) {
  .footer-column:nth-child(2) {
    order: 1
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .footer-column:nth-child(3) {
    order: 2
  }

  .footer-column:nth-child(4) {
    order: 4
  }

  .footer-column:first-child {
    grid-column: 1;
    order: 3;
    text-align: center
  }

  .footer-main {
    padding: 15px 0 10px
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 5px
  }

  .footer-legal {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px
  }

  .footer-legal a {
    font-size: 8px
  }

  .footer-links a {
    font-size: 7px
  }

  .footer-column .footer-links,
  .footer-column:nth-child(3) .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px
  }

  .footer-column:nth-child(3) .footer-links li {
    margin: 0
  }
}

@media (max-width:480px) {
  .footer-container {
    padding: 0 10px
  }

  .footer-main {
    padding: 12px 0 8px
  }

  .footer-logo {
    font-size: 24px;
    justify-content: center
  }

  .logo-icon {
    font-size: 28px
  }

  .footer-tagline {
    font-size: 14px;
    margin: 0 0 15px
  }

  .subscribe-btn {
    padding: 8px 16px;
    font-size: 13px
  }

  .footer-socials {
    gap: 10px
  }

  .social-icon {
    width: 36px;
    height: 36px
  }

  .footer-heading {
    font-size: 12px;
    margin: 0 0 12px
  }

  .footer-links a {
    font-size: 5px
  }

  .footer-bottom-content {
    gap: 4px;
    font-size: 11px
  }

  .footer-legal {
    gap: 6px;
    flex-wrap: nowrap
  }

  .footer-legal a {
    font-size: 6px
  }

  .footer-column:nth-child(3) .footer-links {
    grid-template-columns: 1fr 1fr
  }
}

.modern-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px 0
}

.modern-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, .16);
  overflow: hidden;
  position: relative;
  transition: transform .25s, box-shadow .25s
}

.modern-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, .25)
}

.featured-section .modern-card {
  border: 1px solid rgba(0, 0, 0, .06)
}

.featured-section .modern-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  padding: 2px;
  border-radius: inherit;

  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .55;
  pointer-events: none;
  transition: opacity .25s
}

.featured-section .modern-card:hover::before {
  opacity: 1
}

.discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #09f;
  color: #fff;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700
}

.hot-badge {
  position: absolute;
  top: 35px;
  left: 10px;
  background: #f44;
  color: #fff;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700
}

.action-buttons {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px
}

.action-btn {
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
  cursor: pointer;
  transition: .3s
}

.action-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, .2)
}

.card-image-container {
  height: 300px;
  background-size: cover;
  background-position: center;
  background-color: #f0f0f0;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform .25s, filter .25s
}

.card-image-container::after {
  content: "Image not available";
  color: #666;
  font-size: 16px;
  text-align: center;
  display: none
}

.card-image-container:not([style*=background-image])::after {
  display: block
}

.modern-card:hover .card-image-container {
  filter: saturate(1.08) contrast(1.04)
}

.card-content {
  padding: 15px
}

.card-title {
  margin: 0 0 10px;
  font-size: 16px;
  color: #333
}

.rating-container {
  display: flex;
  align-items: center;
  margin-bottom: 10px
}

.stars {
  color: gold
}

.rating-text {
  margin-left: 5px;
  font-size: 12px;
  color: #666
}

.price-container {
  display: flex;
  align-items: center;
  gap: 10px
}

.original-price {
  text-decoration: line-through;
  color: #999;
  font-size: 14px
}

.discounted-price {
  color: #09f;
  font-weight: 700;
  font-size: 18px
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: start
}

.card-name {
  font-size: 1.3em;
  font-weight: 700
}

.card-img {
  display: block;
  margin: 20px auto 10px
}

.quantity {
  text-align: center;
  margin: 10px 0
}

.price-btn {
  width: 100%
}

.price-btn-margin {
  margin-bottom: 18px
}

.gradient-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 10px;
  font-size: 2.5em
}

.gradient-red {

  display: block;
  margin: 20px auto 10px;
  text-align: center
}

@media (max-width:768px) {
  .modern-cards-container {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 15px 0
  }

  .card-image-container {
    height: 250px;
    background-color: #f0f0f0;
    background-repeat: no-repeat
  }

  .card-image-container::after {
    content: "Image not available";
    color: #666;
    font-size: 14px;
    text-align: center;
    display: none
  }

  .card-image-container:not([style*=background-image])::after {
    display: block
  }

  .card-title {
    font-size: 14px
  }

  .discounted-price {
    font-size: 16px
  }
}

@media (max-width:480px) {
  .modern-cards-container {
    gap: 10px;
    padding: 10px 0
  }

  .card-image-container {
    height: 200px;
    background-color: #f0f0f0;
    background-repeat: no-repeat
  }

  .card-image-container::after {
    content: "Image not available";
    color: #666;
    font-size: 12px;
    text-align: center;
    display: none
  }

  .card-image-container:not([style*=background-image])::after {
    display: block
  }

  .action-btn {
    width: 30px;
    height: 30px
  }

  .discount-badge,
  .hot-badge {
    font-size: 10px;
    padding: 3px 8px
  }
}

@media (max-width:400px) {
  .featured-section {
    padding: 10px 0
  }

  .featured-section h2 {
    font-size: 16px;
    margin-bottom: 12px;
    padding: 0 6px
  }

  .modern-cards-container {
    gap: 1px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0;
    grid-template-columns: 1fr 1fr !important
  }

  .card-image-container {
    height: 110px;
    background-color: #f0f0f0;
    background-repeat: no-repeat
  }

  .card-image-container::after {
    content: "Image not available";
    color: #666;
    font-size: 10px;
    text-align: center;
    display: none
  }

  .card-image-container:not([style*=background-image])::after {
    display: block
  }

  .modern-card .action-btn {
    width: 20px;
    height: 20px;
    font-size: 8px
  }

  .modern-card .card-content {
    padding: 6px
  }

  .modern-card .card-title {
    font-size: 9px;
    margin-bottom: 3px
  }

  .modern-card .stars {
    font-size: 8px
  }

  .modern-card .rating-text {
    font-size: 7px
  }

  .modern-card .original-price {
    font-size: 8px
  }

  .modern-card .discounted-price {
    font-size: 11px
  }

  .discount-badge,
  .hot-badge {
    font-size: 7px;
    padding: 1px 3px
  }
}

.products-container {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
  gap: 25px !important;
  padding: 20px !important;
  max-width: 1200px !important;
  margin: 0 auto !important
}

.price-btn {
  background: 0 0 !important;
  color: #28a780 !important;
  border: 2px solid #28a780 !important;
  padding: 8px 16px !important;
  border-radius: 20px !important;
  cursor: pointer !important;
  font-weight: 400 !important;
  box-shadow: none !important;
  transition: .3s !important;
  font-size: 16px !important;
  margin-bottom: 12px !important;
  letter-spacing: .3px !important
}

.price-btn:hover {

  color: #fff !important;
  box-shadow: none !important
}

.add-to-cart-btn {

  color: #fff !important;
  border: none !important;
  padding: 10px 24px !important;
  border-radius: 12px !important;
  cursor: pointer !important;
  font-weight: 600 !important;
  box-shadow: none !important;
  width: 100% !important;
  margin-top: 8px !important;
  transition: .3s !important;
  font-size: 16px !important;
  letter-spacing: .5px !important
}

.add-to-cart-btn:hover {
  background-color: #217350 !important;
  box-shadow: 0 4px 15px rgba(40, 167, 128, .4) !important;

  color: #fff !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 8px 18px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  box-shadow: none !important;
  transition: .3s !important
}

.buy-button:hover {
  background-color: #217350 !important;
  box-shadow: none !important;
  transform: none !important;
}

.cart-icon-btn {
  background: rgba(40, 167, 128, .1) !important;
  color: #28a780 !important;
  border: 1px solid rgba(40, 167, 128, .2) !important;
  border-radius: 12px !important;
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: .3s !important;
  flex-shrink: 0 !important;
  box-shadow: none !important;
}

.cart-icon-btn:hover {
  background: rgba(40, 167, 128, .25) !important;
  transform: none !important;
  box-shadow: none !important;
}

.cart-icon-btn i {
  font-size: 16px !important;
  letter-spacing: .5px !important
}

.add-to-cart-btn:hover {
  box-shadow: none !important;

}

.buy-button {

  color: #fff !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 6px 14px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  box-shadow: none !important;
  transition: .3s !important
}

.buy-button:hover {

  box-shadow: none !important;
  transform: none !important;
}

.card,
.product-card {

  border-radius: 12px !important;
  padding: 16px !important;
  text-align: center !important;
  position: relative !important;
  min-height: 310px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  margin: 0 auto 20px !important;
  box-sizing: border-box !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .3) !important;
  transition: .3s cubic-bezier(.25, .8, .25, 1) !important;
  border: 1px solid rgba(40, 167, 128, .3) !important;
  backdrop-filter: blur(12px) !important;
  overflow: hidden !important;
  color: #e6e9f0 !important;
  height: 100%
}

.product-image,
.sticker-img {
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 140px;
  margin: 0 auto 15px;
  display: block
}

.product-image img {
  object-fit: contain;
  background: radial-gradient(circle, rgba(255, 255, 255, .03) 0, transparent 70%);
  border-radius: 12px
}

.card::before {
  content: '';

  pointer-events: none !important;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  pointer-events: none !important
}

.card:hover {
  transform: none !important;
  border-color: rgba(245, 158, 11, .4) !important;
}

.card-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  margin-bottom: 15px !important
}

.name {
  font-weight: 700 !important;
  font-size: 20px !important;
  color: #fff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .3) !important;
  flex-grow: 1 !important;
  text-align: left !important;
  padding-right: 10px !important;
  min-height: 54px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: flex;
  align-items: center
}

.quantity {
  font-size: 20px !important;
  color: #fdd835 !important;
  margin-bottom: 20px !important;
  font-weight: 700 !important
}

.sticker-img {
  width: 100px !important;
  height: 100px !important;
  margin: 15px auto !important;
  object-fit: contain !important;
  filter: drop-shadow(0 6px 15px rgba(0, 0, 0, .5)) !important;
  transition: transform .4s !important
}

.sticker-img:hover {
  transform: none !important
}

.info-icon {
  position: static !important;

  color: #fff !important;
  border-radius: 50% !important;
  width: 24px !important;
  height: 24px !important;
  font-size: 14px !important;
  line-height: 24px !important;
  cursor: pointer !important;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .3) !important;
  transition: .3s !important;
  flex-shrink: 0 !important;
  margin-left: 10px !important
}

.info-icon:hover {
  transform: rotate(30deg) scale(1.2) !important;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .4) !important
}

.section-header {
  text-align: left !important;
  color: #fff !important;
  font-size: 28px !important;
  margin: 20px 20px 10px 150px !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .3) !important;
  position: relative !important;
  background: 0 0 !important;
  box-shadow: none !important;
  border: none !important
}

.section-header::after {
  content: '' !important;
  display: block !important;
  width: 60px !important;
  height: 4px !important;

  margin: 8px 0 !important;
  border-radius: 2px !important
}

@media (max-width:768px) {
  .section-header {
    margin: 15px 20px 10px !important;
    text-align: left !important;
    font-size: 26px !important
  }

  .section-header::after {
    margin: 8px 0 !important
  }
}

.breadcrumb {
  padding: 15px 20px 0;
  text-align: left;
}

.breadcrumb-link {
  color: #1877f2;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px
}

.breadcrumb-link .back-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.breadcrumb-link:hover .back-arrow {
  transform: translateX(-4px);
}

.title-section {
  padding: 0 20px 5px;
  text-align: center
}

.main-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center
}

.subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #ccc;
  font-size: 14px
}

.check-icon {
  color: #4caf50
}

.toast-container {
  position: fixed;
  top: 30px;
  right: 20px;
  z-index: 20000 !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none
}

.toast {
  background: rgba(28, 35, 51, .98);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(40, 167, 128, .5);
  color: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .5);
  display: flex;
  align-items: center;
  gap: 12px;
  width: 300px;
  transform: translateX(120%);
  transition: .4s cubic-bezier(.175, .885, .32, 1.275);
  position: relative;
  overflow: hidden;
  pointer-events: auto
}

.toast.show {
  transform: translateX(0)
}

@media (max-width:500px) {
  .toast-container {
    top: 20px;
    right: -15px !important;
    left: auto;
    align-items: flex-end;
    padding-right: 0 !important
  }

  .toast {
    width: 260px;
    margin-right: -5px !important;
    transform: translateX(100%);
    opacity: 0;
    border-right: none !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    box-shadow: -5px 5px 15px rgba(0, 0, 0, .4)
  }

  .toast.show {
    transform: translateX(0);
    opacity: 1
  }
}

.toast-icon {

  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 0 10px rgba(40, 167, 128, .5);
  background: #28a780;
  color: #fff
}

.toast-content {
  flex: 1
}

.toast-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 2px;
  color: #28a780
}

.toast-msg {
  font-size: 13px;
  color: rgba(255, 255, 255, .8)
}

.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: #28a780;
  width: 100%;
  border-radius: 0 0 12px 12px;
  transform-origin: left
}

@keyframes toastProgress {
  from {
    transform: scaleX(1)
  }

  to {
    transform: scaleX(0)
  }
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000
}

.modal-overlay.show {
  display: flex
}

.modal-content {
  background: #0f172a;
  color: #fff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .5);
  overflow: hidden
}

.modal-content .close {
  position: absolute;
  right: 14px;
  top: 10px;
  cursor: pointer;
  font-size: 20px;
  opacity: .85
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px;
  align-items: center
}

.modal-image {
  width: 100%;
  height: 400px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
  margin: 0;
  background-color: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .05)
}

.modal-image.sticker-mode {
  height: 350px;
  background-size: 80%;
  background-repeat: no-repeat;
  background-color: transparent;
  animation: 6s ease-in-out infinite float;
  border: none;
  box-shadow: none
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-15px)
  }
}

@keyframes stickerPan {

  0%,
  100% {
    background-position: center top
  }

  25% {
    background-position: right center
  }

  50% {
    background-position: center bottom
  }

  75% {
    background-position: left center
  }
}

.modal-info {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.modal-info h3 {
  margin: 0 0 15px;
  font-size: 32px;
  font-weight: 800;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2
}

.qv-rating {
  opacity: .9;
  margin-bottom: 8px
}

.qv-price {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin: 10px 0 16px
}

.qv-original {
  text-decoration: line-through;
  color: #aaa
}

.qv-discount {
  color: #4ade80;
  font-weight: 700;
  font-size: 20px
}

.qv-actions button {

  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(34, 197, 94, .35)
}

.qv-actions button:hover {
  transform: translateY(-1px)
}

.tagline-anim::after {
  content: '';
  position: absolute;
  inset: 0;

  transform: translate3d(-140%, 0, 0);
  pointer-events: none;
  border-radius: 999px;
  mix-blend-mode: screen;
  animation: 4s linear infinite shimmerSweep;
  will-change: transform, opacity;
  backface-visibility: hidden
}

@keyframes pulseGlow {

  0%,
  100% {
    text-shadow: 0 0 0 rgba(96, 165, 250, 0);
    box-shadow: 0 6px 20px rgba(59, 130, 246, .12), inset 0 0 0 1px rgba(59, 130, 246, .18);
    transform: translateY(0)
  }

  50% {
    text-shadow: 0 0 14px rgba(96, 165, 250, .55), 0 0 28px rgba(34, 197, 94, .35);
    box-shadow: 0 10px 28px rgba(59, 130, 246, .2), inset 0 0 0 1px rgba(34, 197, 94, .35);
    transform: translateY(-1px)
  }
}

@keyframes shimmerSweep {
  0% {
    transform: translateX(-140%);
    opacity: 0
  }

  8% {
    opacity: .85
  }

  100%,
  20% {
    transform: translateX(140%);
    opacity: 0
  }
}

@media (max-width:768px) {

  #gems,
  #pucks,
  #stickers {
    text-align: left !important;
    padding-left: 20px !important
  }

  #coins::after,
  #gems::after,
  #pucks::after,
  #stickers::after {
    margin: 10px 0 !important;
    left: 20px !important;
    transform: none !important
  }

  .modal-image.sticker-mode {
    height: 150px !important
  }

  .modal-info {
    margin-top: 10px
  }

  .qv-actions {
    margin-top: 15px
  }

  .buy-button {
    padding: 10px 16px !important;
    font-size: 16px !important;
    border-radius: 6px !important
  }

  @media (max-width:768px) {
    .modal-content {
      width: 95vw
    }

    .modal-body {
      grid-template-columns: 1fr;
      gap: 20px;
      padding: 20px;
      text-align: center
    }

    .modal-image {
      height: 250px;
      width: 100%
    }

    .modal-info {
      text-align: center;
      align-items: center
    }

    .modal-info h3 {
      font-size: 24px
    }

    .qv-price {
      justify-content: center
    }

    .products-container {
      padding: 10px 4px !important;
      gap: 12px !important;
      display: block !important
    }

    .card,
    .product-card {
      width: 100% !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
      box-sizing: border-box !important
    }

    .modal-image.sticker-mode {
      height: 120px
    }

    #coinsContainer .product-card,
    #cosmeticsContainer .product-card,
    #gemsContainer .product-card,
    #pucksContainer .product-card,
    #stickersContainer .product-card {

      border: 1px solid rgba(40, 167, 128, .3) !important;
      border-radius: 12px !important;
      padding: 6px 8px !important;
      margin-bottom: 10px !important;
      box-shadow: 0 10px 30px rgba(0, 0, 0, .3) !important;
      transition: .3s cubic-bezier(.25, .8, .25, 1) !important;
      backdrop-filter: blur(12px) !important;
      position: relative !important;
      overflow: hidden !important;
      color: #e6e9f0 !important;
      cursor: pointer !important;
      display: flex !important;
      flex-direction: row !important;
      align-items: center !important;
      gap: 10px !important;
      min-height: auto !important
    }

    #coinsContainer .product-card:hover,
    #cosmeticsContainer .product-card:hover,
    #gemsContainer .product-card:hover,
    #pucksContainer .product-card:hover,
    #stickersContainer .product-card:hover {
      border-color: #28a780 !important;
    }

    #coinsContainer .product-image,
    #cosmeticsContainer .product-image,
    #gemsContainer .product-image,
    #pucksContainer .product-image,
    #stickersContainer .product-image {
      flex: 0 0 auto !important;
      flex: 0 0 auto !important;
      width: 90px !important;
      height: 110px !important;
      justify-content: center !important;
      align-items: center !important;

      border-radius: 12px !important;
      border: none !important;
      box-shadow: none !important
    }

    #coinsContainer .product-image img,
    #cosmeticsContainer .product-image img,
    #gemsContainer .product-image img,
    #pucksContainer .product-image img,
    #stickersContainer .product-image img {
      width: 100% !important;
      height: 100% !important;
      object-fit: contain !important;
      margin: 0 !important;
      display: block !important;
      padding: 8px !important
    }

    #coinsContainer .product-details,
    #cosmeticsContainer .product-details,
    #gemsContainer .product-details,
    #pucksContainer .product-details,
    #stickersContainer .product-details {
      text-align: left !important;
      padding-left: 10px;
      flex: 1 !important;
      min-width: 0 !important;
      padding-right: 5px !important
    }

    #coinsContainer .product-name,
    #cosmeticsContainer .product-name,
    #gemsContainer .product-name,
    #pucksContainer .product-name,
    #stickersContainer .product-name {
      text-align: left !important;
      padding-left: 0 !important
    }

    #coinsContainer .product-footer,
    #cosmeticsContainer .product-footer,
    #gemsContainer .product-footer,
    #pucksContainer .product-footer,
    #stickersContainer .product-footer {
      justify-content: space-between !important;
      padding-left: 0 !important;
      padding-right: 15px !important;
      gap: 5px !important;
      align-items: center !important;
      flex-wrap: nowrap !important;
      width: 100% !important;
      box-sizing: border-box !important
    }

    .buy-button {
      padding: 6px 12px !important;
      font-size: 12px !important;
      border-radius: 6px !important;
      width: auto !important;
      min-width: 60px !important;
      height: 32px !important;
      margin-right: 2px !important;
      transform: none !important;
      max-width: none !important;
      flex-shrink: 0 !important;
      line-height: normal !important;
      white-space: nowrap !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important
    }

    .cart-icon-btn {
      width: 32px !important;
      height: 32px !important;
      border-radius: 8px !important;
    }

    .cart-icon-btn i {
      font-size: 12px !important
    }
  }

  .navbar {
    padding: 8px 12px;
    gap: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1100;
    background: #000
  }

  .navbar .left-side {
    display: flex;
    align-items: center;
    gap: 8px;
    order: 1
  }

  .navbar .title {
    font-size: 14px;
    line-height: 1.2;
    text-align: center
  }

  .navbar .logo {
    width: 32px;
    height: 32px
  }

  .tagline {
    order: 3;
    padding: 6px 12px;
    font-size: 11px;
    white-space: nowrap;
    max-width: 95vw;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 5px 0;
    color: #93c5fd;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
    position: relative;
    border-radius: 999px;

    box-shadow: 0 4px 16px rgba(59, 130, 246, .15), inset 0 0 0 1px rgba(59, 130, 246, .2);
    border: 1px solid rgba(96, 165, 250, .25)
  }

  .tagline:hover {
    color: #fff;
    transform: translateY(-1px);
    text-shadow: 0 2px 8px rgba(96, 165, 250, .4);
    box-shadow: 0 6px 20px rgba(59, 130, 246, .25), inset 0 0 0 1px rgba(34, 197, 94, .35);

    padding: 6px 12px;
    font-size: 12px;
    margin: 5px 0;

    color: #fff;
    border: none;
    border-radius: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
    box-shadow: 0 2px 8px rgba(0, 200, 83, .3);
    position: relative
  }

  .about-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 200, 83, .4)
  }

  .notification-badge {
    background: #f44;
    color: #fff;
    border-radius: 10px;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: 700;
    vertical-align: top;
    margin-left: 4px;
    animation: 1s infinite blink
  }

  @keyframes blink {

    0%,
    100% {
      opacity: 1
    }

    50% {
      opacity: .5
    }
  }

  .menu-icon {
    font-size: 1.8em;
    margin-right: 6px;
    text-decoration: none
  }

  .top-tab-bar {
    position: sticky;
    top: 0;
    z-index: 500;
    overflow-x: auto;
    white-space: nowrap;
    gap: 4px;
    padding: 6px 8px;
    background: #23232b
  }

  .top-tab-bar .tab {
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 6px
  }

  .featured-section {
    padding: 0 0 15px;
    background: 0 0 !important
  }

  .featured-section h2 {
    text-align: left !important;
    font-size: 24px;
    margin: 0 0 20px;
    padding: 0 8px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .3);
    position: relative
  }

  .featured-section h2::after {
    left: 20px;
    transform: none;
    content: '';
    display: block;
    width: 80px;
    height: 4px;

    margin: 10px auto 0;
    border-radius: 2px
  }

  .modern-cards-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 2px;
    padding: 0;
    margin: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    box-sizing: border-box
  }

  .modern-card {
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    background: rgba(255, 255, 255, .03) !important;
    border: 1px solid rgba(40, 167, 128, .3) !important;
    border-radius: 20px !important;
    backdrop-filter: blur(12px) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, .2) !important;
    transition: .4s cubic-bezier(.175, .885, .32, 1.275) !important;
    overflow: hidden !important
  }

  .modern-card:hover {
    transform: translateY(-5px) scale(1.02) !important;
    background: rgba(255, 255, 255, .08) !important;
    border-color: var(--accent) !important;
  }

  .modern-card .card-image-container {
    height: 140px
  }

  .modern-card .action-buttons {
    top: 6px;
    right: 6px;
    gap: 3px
  }

  .modern-card .action-btn {
    width: 24px;
    height: 24px;
    font-size: 10px
  }

  .modern-card .card-content {
    padding: 8px
  }

  .modern-card .card-title {
    font-size: 11px;
    line-height: 1.2;
    margin-bottom: 4px
  }

  .modern-card .rating-container {
    margin-bottom: 4px
  }

  .modern-card .stars {
    font-size: 10px
  }

  .modern-card .rating-text {
    font-size: 9px
  }

  .modern-card .price-container {
    gap: 4px
  }

  .modern-card .original-price {
    font-size: 10px
  }

  .modern-card .discounted-price {
    font-size: 13px
  }

  .discount-badge,
  .hot-badge {
    font-size: 8px;
    padding: 2px 4px
  }

  .featured-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    padding: 0 10px !important
  }

  .featured-card {
    background: rgba(255, 255, 255, .03) !important;
    border: 1px solid rgba(40, 167, 128, .3) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    transition: transform .2s !important
  }

  .featured-card:active {
    transform: scale(.98) !important
  }

  .featured-card .product-image {
    height: 120px !important;
    position: relative !important
  }

  .featured-card .product-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    background: 0 0 !important
  }

  .featured-card .discount-badge {
    top: auto !important;
    bottom: 5px !important;
    left: auto !important;
    right: 5px !important;
    font-size: 7px !important;
    padding: 2px 5px !important;
    border-radius: 4px !important;
    background: rgba(239, 10, 10, .85) !important;
    font-weight: 800 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .5) !important
  }

  .card {
    width: 100%;
    padding: 10px;
    min-height: 200px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, .05);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0;
    box-sizing: border-box
  }

  .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 255, 100, .25)
  }

  .card .emoji-display img,
  .card img:not(.sticker-img) {
    width: 65px;
    height: 65px;
    margin-bottom: 6px;
    display: block;
    margin-left: auto;
    margin-right: auto
  }

  .card img.sticker-img {
    margin-bottom: 6px;
    display: block;
    margin-left: auto;
    margin-right: auto
  }

  .card-name,
  .name {
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.1
  }

  .quantity {
    font-size: 12px;
    margin-bottom: 6px;
    color: #fdd835
  }

  .price-btn {
    background: 0 0 !important;
    border: 2px solid #28a780 !important;
    color: #28a780 !important;
    padding: 8px 16px !important;
    font-size: 16px !important;
    width: 80% !important;
    margin-bottom: 12px !important;
    border-radius: 20px !important;
    font-weight: 400 !important;
    cursor: pointer !important;
    box-shadow: none !important;
    transition: .3s !important;
    letter-spacing: .3px !important
  }

  .price-btn:hover {

    color: #fff !important;
    transform: none !important;
    box-shadow: none !important
  }

  .info-icon {
    position: absolute;
    top: 6px;
    right: 6px;
    background: #007aff;
    color: #fff;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    font-size: 9px;
    line-height: 12px
  }

  #eightBallModal .modal-content,
  #masterChestModal .modal-content,
  #proofsModal .modal-content,
  #quickViewModal .modal-content {
    width: 95vw;
    max-height: 90vh
  }

  #masterChestModal .modal-body,
  #proofsModal .modal-body,
  #quickViewModal .modal-body {
    padding: 12px
  }

  #quickViewModal .modal-body {
    flex-direction: column
  }

  #qvImage {
    width: 100%;
    height: 200px
  }

  .qv-actions button {
    width: 100%;
    padding: 12px;
    font-size: 14px
  }

  .footer {
    padding: 40px 0 20px;
    margin-top: 30px
  }

  .footer-top {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
    padding: 0 15px
  }

  .footer-social {
    justify-content: center;
    gap: 15px;
    font-size: 18px
  }

  .footer-apps {
    justify-content: center;
    gap: 10px
  }

  .footer-apps img {
    height: 38px !important
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin: 20px 0
  }

  .footer-links a {
    font-size: 16px;
    padding: 8px
  }

  .footer-copyright {
    font-size: 14px;
    text-align: center;
    padding: 0 15px
  }

  .footer-bottom {
    padding: 0 15px
  }
}

@media (max-width:400px) {
  .add-to-cart-btn {
    padding: 6px 10px !important;
    font-size: 12px !important;
    border-radius: 4px !important
  }

  .navbar {
    padding: 6px 8px
  }

  .navbar .title {
    font-size: 12px
  }

  .navbar .logo {
    width: 28px;
    height: 28px
  }

  .tagline {
    font-size: 10px;
    padding: 4px 8px;
    max-width: 98vw;
    color: #93c5fd;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
    position: relative;
    border-radius: 999px;

    box-shadow: 0 4px 16px rgba(59, 130, 246, .15), inset 0 0 0 1px rgba(59, 130, 246, .2);
    border: 1px solid rgba(96, 165, 250, .25)
  }

  .tagline:hover {
    color: #fff;
    transform: translateY(-1px);
    text-shadow: 0 2px 8px rgba(96, 165, 250, .4);
    box-shadow: 0 6px 20px rgba(59, 130, 246, .25), inset 0 0 0 1px rgba(34, 197, 94, .35);

    font-size: 11px;

    color: #fff;
    border: none;
    border-radius: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
    box-shadow: 0 2px 8px rgba(0, 200, 83, .3);
    position: relative
  }

  .menu-icon {
    font-size: 1.6em;
    text-decoration: none
  }

  .top-tab-bar {
    padding: 4px 6px
  }

  .top-tab-bar .tab {
    padding: 4px 8px;
    font-size: 11px
  }

  .featured-section {
    padding: 10px 0;
    background: 0 0 !important
  }

  .featured-section h2 {
    font-size: 20px;
    margin-bottom: 12px;
    padding: 0 10px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .3);
    text-align: left
  }

  .featured-section h2::after {
    margin: 8px 0 0;
    left: 0;
    transform: none
  }

  .modern-cards-container {
    gap: 1px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0;
    grid-template-columns: 1fr 1fr !important
  }

  .modern-card .card-image-container {
    height: 110px
  }

  .modern-card .action-btn {
    width: 20px;
    height: 20px;
    font-size: 8px
  }

  .modern-card .card-content {
    padding: 6px
  }

  .modern-card .card-title {
    font-size: 9px;
    margin-bottom: 3px
  }

  .modern-card .stars {
    font-size: 8px
  }

  .modern-card .rating-text {
    font-size: 7px
  }

  .modern-card .original-price {
    font-size: 8px
  }

  .modern-card .discounted-price {
    font-size: 11px
  }

  .discount-badge,
  .hot-badge {
    font-size: 7px;
    padding: 1px 3px
  }

  .modal-content {
    width: 98vw !important;
    max-height: 95vh
  }

  .modal-body {
    padding: 8px !important
  }

  #qvImage {
    height: 150px
  }

  .qv-actions button {
    padding: 10px;
    font-size: 12px
  }

  .footer {

    color: #94a3b8;
    padding: 50px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .05);
    position: relative;
    z-index: 2;
    width: 100%;
    box-sizing: border-box
  }

  .footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;

    margin: 0 auto;
    padding: 0 20px
  }

  .footer-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 40px
  }

  .footer-column {
    display: flex;
    flex-direction: column
  }

  .footer-brand {
    margin-bottom: 20px
  }

  .footer-logo {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
  }

  .footer-tagline {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    max-width: 300px
  }

  .footer-heading {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px;
    letter-spacing: .5px;
    position: relative;
    text-transform: uppercase
  }

  .footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;

    border-radius: 1px
  }

  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px
  }

  .footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: .3s;
    display: inline-block;
    padding: 4px 0
  }

  .footer-links a:hover {
    color: #8b5cf6;
    transform: translateX(4px)
  }

  .footer-socials {
    display: flex;
    gap: 16px;
    margin-top: 20px
  }

  .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    color: #94a3b8;
    font-size: 18px;
    transition: .3s;
    text-decoration: none
  }

  .social-icon:hover {

    color: #fff;
    transform: translateY(-3px)
  }

  .payment-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap
  }

  .payment-icon {
    font-size: 24px;
    color: #94a3b8;
    transition: .3s
  }

  .payment-icon:hover {
    color: #8b5cf6;
    transform: scale(1.1)
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .05);
    padding: 20px 0
  }

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

  .footer-copyright {
    font-size: 13px;
    color: #64748b
  }

  .footer-copyright strong {
    color: #8b5cf6
  }
}

@media (max-width:480px) {
  .card {
    padding: 12px !important;
    min-height: 220px !important;
    border-radius: 8px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0;
    box-sizing: border-box;
    width: 100%
  }

  .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 255, 100, .25)
  }

  .card .emoji-display img,
  .card img:not(.sticker-img) {
    width: 70px !important;
    height: 70px !important;
    margin-bottom: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto
  }

  .card img.sticker-img {
    margin-bottom: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto
  }

  .card-name,
  .name {
    font-size: 11px;
    margin-bottom: 5px;
    font-weight: 700;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
  }

  .price-btn {
    background: 0 0 !important;
    border: 2px solid #28a780 !important;
    color: #28a780 !important;
    padding: 8px 16px !important;
    font-size: 16px !important;
    width: 80% !important;
    margin-bottom: 12px !important;
    border-radius: 20px !important;
    font-weight: 400 !important;
    cursor: pointer !important;
    box-shadow: none !important;
    transition: .3s !important;
    letter-spacing: .3px !important;
    line-height: 1.2
  }

  .quantity {
    font-size: 13px;
    margin-bottom: 8px;
    color: #fdd835
  }

  .price-btn:hover {

    color: #fff !important;
    transform: none !important;
    box-shadow: none !important
  }

  .info-icon {
    position: absolute;
    top: 6px;
    right: 6px;
    background: #007aff;
    color: #fff;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    font-size: 10px;
    line-height: 14px
  }

  .modern-cards-container {
    gap: 2px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0;
    grid-template-columns: 1fr 1fr !important
  }

  .modern-card .card-image-container {
    height: 130px
  }

  .modern-card .card-content {
    padding: 8px
  }

  .modern-card .card-title {
    font-size: 10px
  }

  .modern-card .action-btn {
    width: 22px;
    height: 22px;
    font-size: 9px
  }

  .section-header {
    font-size: 18px;
    margin: 25px 0 15px;
    padding: 12px
  }

  @media (max-width:768px) {
    .footer-main {
      grid-template-columns: 1fr;
      gap: 25px;
      gap: 30px
    }

    .footer-bottom-content {
      flex-direction: column;
      text-align: center
    }

    .footer-container {
      padding: 0 15px
    }

    .footer-column,
    .footer-links {
      align-items: center
    }

    .footer-links a {
      text-align: center
    }

    .footer-socials,
    .payment-icons {
      justify-content: center
    }
  }

  @media (max-width:480px) {
    .footer {
      padding: 30px 0 15px
    }

    .footer-main {
      gap: 25px
    }

    .footer-heading {
      font-size: 18px;
      margin: 0 0 15px
    }

    .footer-links a {
      font-size: 16px;
      padding: 8px 0
    }

    .social-icon {
      width: 45px;
      height: 45px;
      font-size: 20px
    }

    .payment-icon {
      font-size: 28px
    }

    .footer-copyright {
      font-size: 14px;
      text-align: center
    }
  }
}

#quickViewModal .modal-content {
  position: relative;
  box-shadow: 0 12px 36px rgba(37, 99, 235, .25), 0 8px 24px rgba(0, 0, 0, .35)
}

.card.clicked {
  position: relative;
  border: 3px solid #00c853;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 200, 83, .5)
}

.card.clicked::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 2px solid #00c853;
  border-radius: 15px;
  z-index: -1;
  pointer-events: none
}

.container,
.main-content,
.product-list {
  background: 0 0 !important
}

#bitAimGalleryModal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .9);
  backdrop-filter: blur(12px);
  justify-content: center;
  align-items: center
}

#bitAimGalleryModal.show {
  display: flex
}

.gallery-modal {

  border: 1px solid rgba(40, 167, 128, .3);
  border-radius: 24px;
  width: 95%;
  max-width: 800px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .8);
  backdrop-filter: blur(12px)
}

#bitAimGalleryModal.show .gallery-modal {
  animation: .4s cubic-bezier(.165, .84, .44, 1) gallerySlideUp
}

@keyframes gallerySlideUp {
  from {
    transform: translateY(50px);
    opacity: 0
  }

  to {
    transform: translateY(0);
    opacity: 1
  }
}

.gallery-container {
  padding: 30px;
  text-align: center
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  position: relative
}

.gallery-title {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  text-align: left
}

.main-image-container {
  background: #000;
  border-radius: 20px;
  margin: 15px 0;
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .05);
  box-shadow: inset 0 0 30px rgba(0, 0, 0, .5)
}

#bitAimMainImage {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 23, 42, .7);
  border: 1px solid rgba(40, 167, 128, .3);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s cubic-bezier(.4, 0, .2, 1);
  backdrop-filter: blur(8px);
  z-index: 20;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .4)
}

.nav-btn i {
  font-size: 18px
}

.nav-btn:hover {

  border-color: #28a780;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 20px rgba(40, 167, 128, .4)
}

.prev-btn {
  left: -23px
}

.next-btn {
  right: -23px
}

@media (max-width:900px) {
  .prev-btn {
    left: 10px
  }

  .next-btn {
    right: 10px
  }

  .nav-btn {
    width: 40px;
    height: 40px
  }
}

.thumbnail-container {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
  overflow-x: auto;
  padding: 10px 5px
}

.thumbnail {
  width: 80px;
  height: 80px;
  border: 2px solid transparent;
  opacity: .6;
  cursor: pointer;
  transition: .3s;
  object-fit: cover;
  border-radius: 12px
}

.thumbnail.active {
  opacity: 1;
  border-color: #28a780;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(40, 167, 128, .3)
}

.gallery-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 30px;
  padding: 0 10px
}

.gallery-btn {
  padding: 18px 20px;
  border-radius: 14px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: .3s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .2)
}

.add-cart-btn {
  background: #141f26 !important;
  color: #28a780 !important
}

.add-cart-btn:hover {
  background: #1a2832 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, .3)
}

.buy-btn {

  color: #fff !important
}

.buy-btn:hover {
  background: #2fbc91 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40, 167, 128, .4)
}

.image-counter {
  background: rgba(15, 23, 42, .8);
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(40, 167, 128, .3)
}

.close-gallery-btn {
  color: #94a3b8;
  font-size: 32px;
  cursor: pointer;
  transition: .3s;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(40, 167, 128, .3)
}

.close-gallery-btn:hover {
  color: #fff;
  background: rgba(40, 167, 128, .2);
  border-color: rgba(40, 167, 128, .4);
  transform: rotate(90deg)
}

@media (min-width:901px) {
  .prev-btn {
    left: -60px
  }

  .next-btn {
    right: -60px
  }
}

@media (max-width:600px) {
  #bitAimGalleryModal {
    align-items: flex-end
  }

  .gallery-modal {
    width: 100% !important;
    max-width: none !important;
    border-radius: 24px 24px 0 0 !important;
    margin: 0 !important;
    min-height: 60vh;
    max-height: 98vh;
    animation: .4s cubic-bezier(.165, .84, .44, 1) gallerySlideUpMobile !important
  }

  @keyframes gallerySlideUpMobile {
    from {
      transform: translateY(100%)
    }

    to {
      transform: translateY(0)
    }
  }

  .gallery-container {
    padding: 20px 15px 30px
  }

  .gallery-title {
    font-size: 16px;
    max-width: 60%;
    line-height: 1.2
  }

  .main-image-container {
    height: 350px;
    border-radius: 12px;
    margin: 10px 0
  }

  .nav-btn {
    width: 36px;
    height: 36px;
    font-size: 14px
  }

  .thumbnail {
    width: 65px;
    height: 65px;
    border-radius: 8px
  }

  .gallery-buttons {
    gap: 10px;
    margin-top: 20px;
    padding: 0
  }

  .gallery-btn {
    padding: 14px 10px;
    font-size: 15px;
    border-radius: 10px
  }

  .close-gallery-btn {
    width: 36px;
    height: 36px;
    font-size: 24px
  }

  .image-counter {
    font-size: 12px;
    padding: 3px 10px
  }
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px
}

@media (max-width:768px) {
  .related-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
    padding: 0 5px !important
  }

  .related-card {
    flex-direction: column !important;
    text-align: center !important;
    padding: 10px 5px !important;
    gap: 5px !important
  }

  .related-card img {
    width: 40px !important;
    height: 40px !important;
    margin: 0 auto !important
  }

  .related-card .related-title {
    font-size: .7rem !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    width: 100% !important
  }

  .related-card .related-desc {
    display: none !important
  }

  .section-header {
    font-size: .9rem !important;
    letter-spacing: .5px !important;
    white-space: nowrap !important
  }
}

.product-list {
  padding: 0 40px 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto
}

@media (min-width:1200px) {
  .product-list {
    grid-template-columns: repeat(4, 1fr)
  }
}

@media (max-width:1024px) {
  .product-list {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 20px 30px
  }
}

@media (max-width:768px) {
  .product-list {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:480px) {
  .product-list {
    grid-template-columns: 1fr
  }
}

.product-card {
  background-color: rgba(255, 255, 255, .05);
  color: #e6e9f0;
  border: 1px solid rgba(40, 167, 128, .3);
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .3);
  display: flex;
  flex-direction: column;
  gap: 15px;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s
}

@media (min-width:1024px) {
  .product-card {
    text-align: center;
    justify-content: space-between;
    height: 100%
  }

  .product-details {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between
  }

  .product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, .05)
  }

  .price {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff
  }

  .buy-button {
    width: auto !important;
    padding: 8px 20px !important
  }

  .stock-status {
    display: inline-block;
    background: rgba(16, 185, 129, .1);
    color: #10b981;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: .9rem;
    margin-top: 5px
  }
}

@media (min-width:1200px) {
  .product-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 300px;
    padding: 12px;
    gap: 10px;
    justify-content: space-between
  }

  .product-card .product-image {
    width: 100% !important;
    height: 140px !important;
    margin-bottom: 8px
  }

  .product-details {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center
  }

  .product-footer {
    width: 100%;
    justify-content: space-between;
    padding-top: 5px
  }
}

.product-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
  transform: translateY(-3px)
}

.product-image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, .05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.product-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between
}

.product-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 5px
}

.feature {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #a0aec0
}

.coins {
  display: inline-block;
  background-color: #fff9c4;
  color: #333;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  margin-top: 3px
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  gap: 15px
}

.add-to-cart-hint {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 5px;
  text-align: center
}

.price {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap
}

.buy-button {
  background-color: #1877f2
}

.stock-status {
  color: #4ade80;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  padding: 0 15px 30px
}

@media (min-width:992px) {
  .featured-grid {
    grid-template-columns: repeat(4, 1fr)
  }

  .featured-card {
    min-height: 320px
  }
}

.featured-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(40, 167, 128, .3);
  border-radius: 16px;
  padding: 15px;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .2);
  cursor: pointer;
  transition: .2s
}

.featured-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;

  opacity: .6
}

@media (max-width:480px) {
  .featured-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(40, 167, 128, .25);
    border-radius: 12px;
    padding: 12px;
    min-height: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .4);
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer
  }

  .featured-card .product-image {
    width: 100%;
    height: 150px;
    margin-bottom: 12px;
    border-radius: 8px;
    box-shadow: none;
    overflow: hidden;
    background: rgba(15, 23, 42, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px
  }

  .featured-card .product-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    background: 0 0 !important;
    display: block
  }

  .featured-card .product-name {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    margin: 10px 0 15px;
    line-height: 1.3;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .5);
    letter-spacing: .5px
  }

  .featured-card .card-action {
    font-size: 13px;
    padding: 8px 12px;
    background: rgba(40, 167, 128, .15);
    border: 1px solid rgba(40, 167, 128, .4);
    border-radius: 8px;
    color: #4ade80;
    width: 100%;
    justify-content: center
  }

  .featured-card:active {
    transform: scale(.98);
    border-color: #28a780
  }
}

.featured-card:hover {
  border-color: #28a780;
  transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .3)
}

.featured-card .product-image {
  width: 100%;
  height: 130px;
  margin-bottom: 10px;
  border-radius: 12px;
  background: rgba(15, 23, 42, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  position: relative;
  overflow: hidden
}

.featured-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .3s;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .2))
}

.featured-card:hover .product-image img {
  transform: scale(1.05)
}

.featured-card .discount-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #ef4444;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  z-index: 2;
  box-shadow: 0 2px 4px rgba(239, 68, 68, .3)
}

.featured-card .product-name {
  font-size: 13px;
  font-weight: 500;
  color: #f1f5f9;
  margin-bottom: 4px;
  line-height: 1.4;
  height: 38px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical
}

.featured-card .price {
  font-size: 15px;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 10px
}

.card-action {
  width: 100%;
  padding: 8px;
  background: 0 0;
  border: 1px solid rgba(59, 130, 246, .4);
  color: #60a5fa;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: .2s;
  margin-top: auto
}

.featured-card:hover .card-action {
  background: rgba(59, 130, 246, .1);
  border-color: #3b82f6;
  color: #3b82f6
}

@media (max-width:480px) {
  .featured-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0 12px 25px
  }

  .featured-card .product-image {
    height: 100px
  }

  .featured-card .product-name {
    font-size: 12px;
    height: 34px
  }

  .card-action {
    padding: 6px
  }
}

.product-timer-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(15, 23, 42, .9);
  backdrop-filter: blur(8px);
  padding: 5px 10px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border: 1px solid rgba(255, 77, 77, .5);
  box-shadow: 0 4px 15px rgba(0, 0, 0, .5);
  animation: .4s ease-out fadeIn;
  min-width: 80px
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(.9)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

.timer-status-bar {
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
  color: #ff9f43;
  margin-bottom: 1px;
  display: flex;
  align-items: center;
  gap: 3px
}

.product-timer-badge .countdown-text {
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  font-family: 'Courier New', Courier, monospace;
  text-shadow: 0 0 5px rgba(255, 77, 77, .8)
}

.fire-flicker {
  animation: .8s infinite alternate flicker;
  color: #ff3e3e;
  font-size: 8px
}

@keyframes flicker {
  0% {
    opacity: .8;
    transform: scale(1)
  }

  100% {
    opacity: 1;
    transform: scale(1.2)
  }
}

@media (max-width:480px) {
  .product-timer-badge {
    padding: 4px 8px;
    min-width: 70px;
    top: 6px;
    right: 6px
  }

  .product-timer-badge .countdown-text {
    font-size: 10px
  }
}

@media (max-width:768px) {

  #cosmetics,
  .section-header {
    text-align: left !important;
    margin-left: 20px !important;
    padding-left: 0 !important
  }

  #cosmetics::after,
  .section-header::after {
    margin: 8px 0 !important;
    left: 0 !important
  }
}

.custom-modal {
  display: none;
  position: fixed;
  z-index: 10002;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, .7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 0
}

.custom-modal.show {
  display: flex !important
}

.autoplay-header-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(255, 255, 255, .03);
  border-radius: 16px;
  border: 1px solid rgba(40, 167, 128, .3)
}

.autoplay-logo {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .4);
  margin-bottom: 12px
}

.autoplay-title-section h3 {
  margin: 0 0 5px;
  font-size: 24px;
  color: #fff
}

.autoplay-title-section p {
  margin: 0;
  color: #94a3b8;
  font-size: 14px
}

.autoplay-keys-container {
  display: flex;
  flex-direction: column;
  gap: 15px
}

.key-card-full {
  background: rgba(15, 23, 42, .6);
  border: 1px solid rgba(40, 167, 128, .3);
  border-radius: 16px;
  padding: 16px;
  transition: .2s
}

.key-card-full:hover {
  border-color: #28a780;
  background: rgba(15, 23, 42, .8)
}

.key-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px
}

.key-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff
}

.key-stock {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 20px;
  background: rgba(0, 0, 0, .3)
}

.key-stock.available {
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, .2)
}

.key-stock.low {
  color: #facc15;
  border: 1px solid rgba(250, 204, 21, .2)
}

.key-price-large {
  font-size: 24px;
  font-weight: 800;
  color: #22c55e;
  margin-bottom: 15px
}

.key-actions-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px
}

.btn-action-buy {

  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
  box-shadow: none !important;
}

.btn-action-buy:hover {
  background-color: #217350 !important;
  transform: none !important;

  box-shadow: none !important;
}

.btn-action-cart {
  background: rgba(40, 167, 128, .15);
  color: #28a780;
  border: 1px solid #28a780;
  padding: 10px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: .2s
}

.btn-action-cart:hover {
  background: rgba(40, 167, 128, .25);
  color: #fff;
  border-color: #28a780;
  transform: translateY(-2px)
}

.modal-content {

  border-radius: 20px;
  width: 100%;
  max-width: 650px;
  padding: 24px;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, .6);
  border: 1px solid rgba(40, 167, 128, .3);
  position: relative;
  max-height: 92vh;
  overflow-y: auto;
  transition: transform .3s
}

.modal-handle {
  display: none;
  width: 40px;
  height: 5px;
  background: rgba(255, 255, 255, .2);
  border-radius: 10px;
  margin: 10px auto 0;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%)
}

.custom-modal.show .modal-content {
  animation: .4s cubic-bezier(.165, .84, .44, 1) modalSlideUp
}

@keyframes modalSlideUp {
  from {
    transform: translateY(100%);
    opacity: .5
  }

  to {
    transform: translateY(0);
    opacity: 1
  }
}

@media (min-width:769px) {
  .custom-modal.show .modal-content {
    animation: .3s cubic-bezier(.165, .84, .44, 1) modalZoomIn
  }

  @keyframes modalZoomIn {
    from {
      transform: scale(.9);
      opacity: 0
    }

    to {
      transform: scale(1);
      opacity: 1
    }
  }
}

@media (min-width:768px) {
  .custom-modal {
    align-items: center
  }

  .modal-content {
    border-radius: 20px
  }
}

.btn-how-to-use {
  margin-top: 8px;
  background: 0 0;
  border: 1px solid #4ade80;
  color: #4ade80;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: .2s
}

.btn-how-to-use:hover {
  background: #4ade80;
  color: #000
}

.guide-toggle-btn {
  background: rgba(255, 255, 255, .05);
  padding: 12px 16px;
  border-radius: 12px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(40, 167, 128, .3);
  transition: .2s
}

.guide-toggle-btn:hover {
  background: rgba(255, 255, 255, .1)
}

.guide-content-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease-out;
  padding: 0 5px
}

.guide-content-panel.open {
  margin-top: 10px;
  max-height: 500px
}

.guide-step-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.guide-step-card:last-child {
  border-bottom: none
}

.step-number {

  color: #000;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px
}

.step-desc h4 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 15px
}

.step-desc p {
  margin: 0;
  color: #94a3b8;
  font-size: 13px;
  line-height: 1.4
}

@media (max-width:480px) {
  .modal-content {
    border-radius: 24px 24px 0 0;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    min-height: 60vh;
    max-height: 95vh;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border: 1px solid rgba(40, 167, 128, .3);
    border-bottom: none;
    padding: 30px 18px 20px;
    box-shadow: 0 -15px 40px rgba(0, 0, 0, .7)
  }

  .modal-handle {
    display: block
  }

  .modal-header-image {
    height: 180px !important;
    margin-bottom: 20px !important;
    background: radial-gradient(circle, rgba(255, 255, 255, .05) 0, transparent 70%) !important;
    border: 1px solid rgba(255, 255, 255, .05)
  }

  .modal-actions {
    position: sticky;
    bottom: 0;
    background: #0f172a;
    padding-top: 10px;
    z-index: 5
  }
}

.close-modal {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(15, 23, 42, .8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  z-index: 10005;
  transition: .3s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, .4)
}

.close-modal:hover {
  background: rgba(239, 68, 68, .2);
  border-color: rgba(239, 68, 68, .3);
  transform: rotate(90deg) scale(1.1)
}

@media (max-width:480px) {
  .close-modal {
    top: 15px;
    right: 15px;
    width: 38px;
    height: 38px;
    font-size: 20px
  }
}

.modal-header-image {
  width: 100%;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;

  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: inset 0 0 30px rgba(0, 0, 0, .3);
  border-radius: 16px;
  position: relative;
  overflow: hidden
}

.modal-header-image::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(34, 197, 94, .15) 0, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0
}

.process-info-section {
  margin-bottom: 20px;
  background: rgba(255, 255, 255, .03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .05);
  overflow: hidden
}

.process-header {
  padding: 12px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: rgba(255, 255, 255, .05);
  transition: background .3s
}

.process-header:hover {
  background: rgba(255, 255, 255, .08)
}

.process-header span {
  font-size: 14px;
  font-weight: 600;
  color: #e2e8f0
}

.process-header i {
  font-size: 12px;
  color: #94a3b8;
  transition: transform .3s
}

.process-header.active i {
  transform: rotate(180deg)
}

.process-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease-out
}

.process-steps {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.4
}

.step-icon {
  font-size: 16px;
  line-height: 1
}

.step strong {
  color: #fff;
  font-weight: 600
}

.process-note {
  padding: 0 15px 15px;
  font-size: 12px;
  color: #94a3b8;
  margin: 0;
  text-align: center
}

.modal-header-image img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .4));
  position: relative;
  z-index: 1;
  border-radius: 8px;
  transition: transform .3s
}

.modal-header-image:hover img {
  transform: scale(1.05)
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  z-index: 2;
  transition: .2s
}

.modal-nav:hover {
  background: rgba(255, 255, 255, .3)
}

.modal-nav.prev {
  left: 10px
}

.modal-nav.next {
  right: 10px
}

.modal-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 2
}

.modal-dots .dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, .3);
  border-radius: 50%
}

.modal-dots .dot.active {
  background: #fff;
  width: 18px;
  border-radius: 10px
}

#modalTitle {
  font-size: 20px;
  margin: 10px 0 20px;
  color: #fff;
  font-weight: 700
}

.input-group {
  margin-bottom: 15px
}

.input-group label {
  display: block;
  color: #94a3b8;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 500
}

.custom-dropdown {
  position: relative;
  width: 100%;
  background-color: #1e293b;
  border: 1px solid rgba(40, 167, 128, .3);
  border-radius: 12px;
  cursor: pointer;
  user-select: none;
  transition: .2s
}

.dropdown-selected {
  padding: 12px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 500
}

.selected-right {
  display: flex;
  align-items: center;
  gap: 10px
}

.price-pill {
  background-color: #334155;
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600
}

.dropdown-arrow {
  color: #22c55e;
  transition: transform .3s
}

.custom-dropdown.open .dropdown-arrow {
  transform: rotate(180deg)
}

.dropdown-options {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease-out;
  border-top: 1px solid rgba(255, 255, 255, .1);
  background-color: #0f172a;
  border-radius: 0 0 12px 12px
}

.custom-dropdown.open .dropdown-options {
  max-height: 250px;
  overflow-y: auto
}

.dropdown-option {
  padding: 12px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #cbd5e1;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  transition: background .2s
}

.dropdown-option:last-child {
  border-bottom: none
}

.dropdown-option:hover {
  background-color: #1e293b;
  color: #fff
}

.dropdown-option .option-price {
  background-color: #334155;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 13px;
  color: #fff
}

.custom-dropdown.disabled {
  opacity: .7;
  pointer-events: none;
  cursor: default
}

.price-section {
  background: #1e293b;
  padding: 15px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(40, 167, 128, .3)
}

.qty-selector {
  display: flex;
  align-items: center;
  background: #0f172a;
  border-radius: 8px;
  padding: 5px
}

.qty-selector button {
  width: 30px;
  height: 30px;
  background: #334155;
  border: none;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px
}

.qty-selector span {
  width: 30px;
  text-align: center;
  color: #fff;
  font-weight: 700
}

.total-price {
  font-size: 22px;
  font-weight: 700;
  color: #22c55e
}

.modal-actions {
  display: flex;
  gap: 10px
}

.modal-actions button {
  flex: 1;
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: transform .1s
}

.modal-actions button:active {
  transform: scale(.98)
}

.btn-cart {
  background: rgba(40, 167, 128, .15);
  border: 1px solid #28a780;
  color: #28a780;
  transition: .3s;
  font-weight: 600
}

.btn-cart:hover {
  background: rgba(40, 167, 128, .25);
  color: #fff;
  transform: translateY(-2px)
}

.btn-buy {

  color: #fff;
  border: none;
  transition: .3s;
  font-weight: 600
}

.btn-buy:hover {
  background-color: #217350 !important;

  transform: none !important;
  box-shadow: none !important;
}

.featured-section {
  background: 0 0 !important;
  box-shadow: none !important;
  border: none !important;
  padding-top: 20px
}

@media (max-width:768px) {
  .gallery-modal {
    width: 95% !important;
    margin: 10px auto !important;
    padding: 15px !important;
    max-height: 90vh;
    overflow-y: auto
  }

  .main-image-container {
    height: 350px !important;
    background: 0 0 !important;
    border: none !important
  }

  #bitAimMainImage {
    max-height: 100% !important;
    object-fit: contain !important
  }

  .nav-btn {
    width: 40px !important;
    height: 40px !important;
    font-size: 20px !important;
    background: rgba(255, 255, 255, .1) !important;
    backdrop-filter: blur(5px);
    border-radius: 50% !important;
    border: 1px solid rgba(255, 255, 255, .2) !important
  }

  .nav-btn.prev {
    left: 5px !important
  }

  .nav-btn.next {
    right: 5px !important
  }

  #galleryCurrentPrice {
    position: absolute !important;
    bottom: 10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: auto !important;
    background: rgba(0, 0, 0, .85) !important;
    border: 1px solid #4ade80 !important;
    padding: 8px 20px !important;
    border-radius: 30px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .3) !important;
    white-space: nowrap;
    color: #4ade80 !important;
    z-index: 20
  }

  .thumbnail-container {
    gap: 8px !important;
    padding: 10px 0 !important;
    overflow-x: auto;
    justify-content: flex-start !important
  }

  .thumbnail {
    width: 50px !important;
    height: 50px !important;
    flex-shrink: 0
  }

  .gallery-buttons {
    position: sticky;
    bottom: 0;
    background: 0 0 !important;
    padding-top: 10px;
    z-index: 10;
    display: flex !important;
    flex-direction: row !important;
    gap: 10px !important
  }

  .gallery-buttons button {
    flex: 1 !important;
    width: auto !important;
    margin: 0 !important
  }

  .image-counter {
    top: 10px !important;
    right: 10px !important;
    background: rgba(0, 0, 0, .6) !important;
    border-radius: 12px !important;
    padding: 4px 10px !important
  }

  .gallery-header {
    position: relative;
    padding-right: 40px !important
  }

  .gallery-header .close {
    position: absolute !important;
    top: -5px !important;
    right: 0 !important;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
    color: #ef4444 !important;
    z-index: 50
  }
}

.tinder-modal-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: .3s
}

@media (max-width:480px) {
  .tinder-modal-wrapper {
    justify-content: flex-end !important;
    padding-bottom: 0 !important
  }
}

.close-gallery-btn-floating {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, .1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  pointer-events: auto;
  z-index: 200;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .2);
  transition: .3s
}

.close-gallery-btn-floating:hover {
  background: rgba(255, 68, 68, .8);
  transform: rotate(90deg)
}

.tinder-card {
  width: 360px;
  max-width: 90vw;
  height: 75vh;
  max-height: 650px;
  background: #1e293b;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .7);
  display: flex;
  flex-direction: column;
  pointer-events: auto;
  border: 1px solid rgba(255, 255, 255, .1);
  transform: translateY(100vh) scale(.9);
  opacity: 0;
  transition: transform .5s cubic-bezier(.19, 1, .22, 1), opacity .5s
}

.modal-overlay.show .tinder-card {
  transform: translateY(0) scale(1);
  opacity: 1
}

@media (max-width:480px) {
  .tinder-card {
    width: 100%;
    max-width: 100%;
    border-radius: 20px 20px 0 0;
    height: 85vh;
    margin-bottom: 0
  }

  .tinder-modal-wrapper {
    padding: 0
  }
}

.tinder-image-area {
  flex: 1;
  position: relative;
  background: #0f172a;
  overflow: hidden
}

.tinder-image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-fit: contain;
  background: #000;
  transition: transform .3s, opacity .3s
}

.tinder-gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;

  pointer-events: none
}

.tinder-badges {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  gap: 8px
}

.badge-verified {
  background: rgba(34, 197, 94, .9);
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .3)
}

.badge-hot {
  background: rgba(239, 68, 68, .9);
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .3)
}

.tinder-price-tag {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #fbbf24;
  color: #000;
  padding: 8px 16px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(251, 191, 36, .4);
  transform: rotate(-2deg);
  z-index: 10
}

.tinder-info-area {
  background: #1e293b;
  padding: 20px;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, .05);
  display: flex;
  flex-direction: column;
  gap: 15px
}

.tinder-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.tinder-header-row h3 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 700
}

.tinder-rating {
  color: #fbbf24;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px
}

.tinder-stats-row {
  display: flex;
  justify-content: space-between;
  background: rgba(255, 255, 255, .05);
  padding: 10px 15px;
  border-radius: 12px
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px
}

.stat-label {
  font-size: 10px;
  color: #94a3b8;
  text-transform: uppercase
}

.stat-value {
  font-size: 13px;
  color: #fff;
  font-weight: 600
}

.tinder-actions {
  display: flex;
  gap: 15px;
  margin-top: 5px
}

.action-btn-cart {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #3b82f6;
  background: rgba(59, 130, 246, .1);
  color: #3b82f6;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s;
  flex-shrink: 0
}

.action-btn-cart:active {
  background: #3b82f6;
  color: #fff;
  transform: scale(.95)
}

.action-btn-buy {
  flex: 1;

  border: none;
  border-radius: 25px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: none !important;
  transition: .2s
}

.action-btn-buy:active {
  transform: scale(.98);
  box-shadow: 0 2px 5px rgba(16, 185, 129, .4)
}

.tinder-nav-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .5);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  z-index: 20;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s
}

.tinder-nav-btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-50%) scale(1.1)
}

.tinder-nav-btn.prev {
  left: 10px
}

.tinder-nav-btn.next {
  right: 10px
}

.tinder-counter {
  margin-top: 15px;
  color: rgba(255, 255, 255, .6);
  font-size: 14px;
  background: rgba(0, 0, 0, .5);
  padding: 4px 12px;
  border-radius: 12px
}

@media (max-width:480px) {
  .tinder-card {
    width: 92vw;
    height: 70vh
  }

  .tinder-image-area img {
    object-fit: contain
  }

  .tinder-info-area {
    padding: 15px;
    gap: 10px
  }

  .tinder-header-row h3 {
    font-size: 18px
  }
}

.action-btn-buy:hover {
  background-color: #217350 !important;
}

.buy-now-btn:hover {
  background-color: #217350 !important;
}

/* --- UNIFIED GLOBAL BUTTON STYLES --- */
.buy-button,
.pay-btn,
.btn-action-buy,
.btn-buy,
.action-btn-buy,
.primary-btn {
  background-color: #2e976c !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

.buy-button:hover,
.buy-button:hover:not(:disabled),
.pay-btn:hover,
.pay-btn:hover:not(:disabled),
.btn-action-buy:hover,
.btn-action-buy:hover:not(:disabled),
.btn-buy:hover,
.btn-buy:hover:not(:disabled),
.action-btn-buy:hover,
.action-btn-buy:hover:not(:disabled),
.primary-btn:hover,
.primary-btn:hover:not(:disabled) {
  background-color: #217350 !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Floating Offer UI */
.floating-offer {
  position: fixed;
  right: 20px;
  bottom: 190px;
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, #451a03 0%, #1e1b4b 100%);
  border: 2px solid #854d0e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  cursor: pointer;
  z-index: 1000;
  padding: 5px;
  transition: transform 0.2s;
}

.floating-offer:active {
  transform: scale(0.92);
}

.floating-offer .d8-icon {
  color: #fbbf24;
  font-size: 2.1rem;
  animation: chest-wiggle 1.5s infinite;
}

.floating-offer img {
  border-radius: 50%;
}

.floating-offer .offer-badge {
  position: absolute;
  top: -5px;
  left: -5px;
  background: #ef4444;
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  border: 2px solid #0b0f19;
}

@keyframes chest-wiggle {
  0%, 100% { transform: scale(1) rotate(0); }
  10%, 20% { transform: scale(1.1) rotate(-6deg); }
  30%, 50%, 70% { transform: scale(1.1) rotate(6deg); }
  40%, 60% { transform: scale(1.1) rotate(-6deg); }
  80% { transform: scale(1) rotate(0); }
}

.offer-modal-content {
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 12px;
  max-width: 450px;
  box-shadow: none;
}

.offer-header {
  text-align: center;
  margin-bottom: 15px;
}

.offer-title {
  color: #fbbf24;
  font-weight: 800;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
  margin: 0;
}

@media (max-width: 768px) {
  .floating-offer {
    width: 60px;
    height: 60px;
    right: 10px;
  }
}

#offerModal {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.blob-cart-btn {
  background: #064e3b !important;
  border: 2px solid #10b981 !important;
  color: #10b981 !important;
  border-radius: 50% !important;
  transition: all 0.3s ease;
  box-shadow: none !important;
}
.blob-cart-btn:hover {
  transform: none !important;
}
.blob-cart-btn span i {
  color: #10b981 !important;
}
