
header, .navbar, #main-header { position: relative; z-index: 4000 !important; }
header .dropdown-menu,
.navbar .dropdown-menu,
.dropdown-panel,
.dropdown-options { position: absolute; z-index: 5000 !important; }
.product-listing, .filter-bar, .container, main, body { overflow: visible !important; }
.dropdown-panel,
.dropdown-menu,
.dropdown-options {
  z-index: 3000 !important;
  position: absolute;
}

header,
.navbar,
#main-header {
  z-index: 2000 !important;
  position: relative;

}

/* AFTER */
.main-wrapper, .main-content, .product-list {
  overflow: visible !important;
}

main {
  unicode-bidi: normal;
 
}
body {
    background-color: #141419;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.product-listing {    background: #010315;
    padding-bottom: 10px;
      padding-left: 10%;
  padding-right: 10%;
}

.container {
    width: 100%; /* 100% - (5% + 5%) padding = 90% width */
    max-width: 2000px;
    margin-left: auto;
    margin-right: auto;
   
}

.section-title h1 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #E0E0E0;
}

/* --- Filter Bar --- */
.filter-bar {

    gap: 15px;
    margin-bottom: 30px;
}

.filter-dropdown {
    position: relative;
}

.filter-btn {
    background: #2a2d34;
    color: #e0e0e0;
    border: 1px solid #444;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn .arrow {
    font-size: 10px;
    transition: transform 0.2s;
}

.filter-dropdown.open .filter-btn .arrow {
    transform: rotate(180deg);
}



.filter-dropdown.open .dropdown-menu {
    display: block; /* Show when .open class is added by JS */
}

.dropdown-menu .filter-search, .dropdown-menu .price-filter input {
    width: 100%;
    padding: 8px 10px;
    background: #1c1e24;
    color: #fff;
    border: 1px solid #555;
    border-radius: 4px;
    margin-bottom: 10px;
}

.dropdown-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 200px;
    overflow-y: auto;
}

.dropdown-menu li label {
    display: block;
    padding: 8px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.dropdown-menu li label:hover {
    background-color: #3b4049;
}

.dropdown-menu li input[type="checkbox"] {
    margin-right: 8px;
}

.price-filter {
    display: flex;
    align-items: center;
    gap: 8px;
}


/* --- Product Grid & Cards (from previous response, still valid) --- */


.product-card {
    background: #1E1E25;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
    border: 1px solid #2A2A32;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background-color: #292B32;
}

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

.badge-tag, .region-flag { /* Combined styles for badges */
    position: absolute;
    top: 12px;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
}
.badge-tag { left: 12px; }
.region-flag { right: 12px; }

.product-title { font-size: 16px; font-weight: 600; margin: 0 0 5px 0; color: #EAEAEA; }

.product-bottom { background-color: #3152F5; padding: 12px 16px; margin-top: auto; }
.price-tag { display: flex; align-items: baseline; gap: 8px; }
.price { font-size: 18px; font-weight: 700; color: #FFFFFF; }
.old-price { font-size: 13px; color: #AAB7F9; text-decoration: line-through; }

/* --- Pagination Styling --- */
.pagination-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 8px;
}

.pagination li a, .pagination li span {
    display: block;
    padding: 10px 15px;
    background-color: #2a2d34;
    color: #e0e0e0;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s;
}

.pagination li a:hover {
    background-color: #3b4049;
}

.pagination li.active span {
    background-color: #3152F5; /* Active page color */
    color: #fff;
    font-weight: bold;
}

.pagination li.disabled span {
    background-color: #25282e;
    color: #666;
    cursor: not-allowed;
}
.inline-filters {
  display: flex;
  padding-bottom: 30px;
  gap: 1.5rem;
  justify-content: center;
  align-items: flex-end;
}
.filter-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.sale-amount-range {
  display: flex;
  gap: 0.5rem;
}
.clear-btn {
    background: #171723;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
      border: 1px solid #F5F5F51A;
}

.product-card-ui {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5);
    background-color: #111827;
      width: 100%;
    max-width: 100%;
  display: flex;
  transition: transform 0.3s ease;
   border-width: 1px;
    border-style: solid;
    border-color:#6d6d6d4f;min-height: 430px;
    
}

.product-card-ui:hover {
  transform: translateY(-5px);
}

.product-card-figma {
  position: relative;
  overflow: hidden;
}

/* ✅ Maintain ratio, works perfectly on Safari */
.product-image-section {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4; /* consistent height ratio (adjust as needed) */
  overflow: hidden;
  border-radius: 12px;
}

/* ✅ Let object-fit handle scaling */
.product-image-section img {
  width: 100%;
  height: 100%;
  display: block;
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
}

/* ✅ Mobile override (keep flexible) */
@media (max-width: 767px) {
  .product-image-section {
    aspect-ratio: auto;
  }
  .product-image-section img {
    height: auto !important;
    width: 100% !important;
    min-height: unset !important;
  }
}

/* Keep your existing flag styling */
.region-flag {
  position: absolute;
  top: 10px;
  background-color: white;
  color: #000;
  font-size: 11px;
  font-weight: 600;
  border-radius: 20px;
}
.badge-container{    display: flex;gap: 5px;flex-direction: column;position: absolute;top: 10px;left: 10px;}
.badge {
  background-color: #ffc750;
  color: #000;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: bold;
  border-radius: 12px;
}

.product-info-section {
  padding: 12px 16px 4px;
}

.product-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 5px;
   white-space: nowrap;
}


.product-pricing-section {
position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000000ab;
    backdrop-filter: blur(20px);
    padding: 13px;
    color: #fff;
    text-align: left;
    z-index: 10;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    display: flex;
    flex-direction: column;
        align-items: center;
        padding-bottom:23PX;
    
}

.starting-at-text {
    font-size: 0.9rem;
    color: #FFC750;
    margin: 0;
}

.price-details {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.new-price {
    border-radius: 5px;
    padding: 4px 8px;
    background: #0045FF;
    color: #ffffff;
    font-weight: 700;
    margin-left: 8px;
}

.old-price {
  font-size: 0.85rem;
  color: #888;
  text-decoration: line-through;
}

.time-left {
  font-size: 0.7rem;
  color: #777;
}
.product-pricing{
    display: flex;
    align-items: center;
}

.product-pricing h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 6px 0;
}

.product-list {
  display: grid;
  gap: 1rem;
  justify-items: center;
}



/* Mobile (≤ 767px) */

.filter-item {
  display: flex;
  flex-direction: column;
}

.filter-label {
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
  color: #344054;
}
.filter-input.dark,
.filter-select.dark {
  background-color: #171723;
  color: #fff;
  border: 1px solid #2D2D38;
  border-radius: 16px;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  min-width: 120px;
    width: 100%;
}
.sale-amount-range {
  display: flex;
  gap: 0.5rem;
}

.filter-bar-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1rem;
}


.custom-dropdown {
  position: relative;
  width: 280px;
  font-family: sans-serif;
}
.dropdown-options {
  display: none;
  position: absolute;
  background-color: #1e1e2dd2;
  border: 1px solid #333;
  border-radius: 12px;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 5px;
  z-index: 10;
  max-height: 200px;
  overflow-y: auto;
  padding: 0;
  list-style: none;
  backdrop-filter: blur(3.9px);
}

/* Wrap your native select in a container */
.filter-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  /* Base styling */
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #333;
  background-color: #15151f;
  color: #fff;
  font-size: 14px;

  /* Prevent internal scrollbars */
  overflow: hidden;
}

/* Optional: remove focus outline */
.filter-select:focus {
  outline: none;
}

/* Hide scrollbar in dropdown list (limited effect) */
select::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

select::-webkit-scrollbar-thumb {
  background: transparent;
}/* Container */
.custom-dropdown {
  position: relative;
  width: 100%;
  max-width: 295px; /* Adjust width to fit your layout */
  font-family: 'Poppins', sans-serif;
}

/* Displayed select */
.custom-select {
  background-color: #171723;
  border: 1px solid #333;
  border-radius: 16px;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
}

/* Arrow icon */
.custom-select .arrow {
  font-size: 12px;
  pointer-events: none;
}

/* Dropdown list */


/* Visible state */
.custom-dropdown.open .dropdown-options {
  display: block;
}

/* Option items */
.dropdown-options li {
  padding: 10px 12px;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #26273180;
}

.dropdown-options li:hover {
  background: linear-gradient(90deg, #0045FF 0%, #002999 100%);
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.4);
}

/* Hide scrollbar cross-browser */
.dropdown-options::-webkit-scrollbar {
  width: 0;
  background: transparent;
}
.dropdown-options {
  scrollbar-width: none; /* Firefox */
}
.search-input-wrapper {
  position: relative;
  width: 100%;
}

.search-input-wrapper input {
  padding-left: 44px; /* increased padding for more space between icon and text */
}

.search-icon {
  position: absolute;
  top: 50%;
  left: 14px; /* moved slightly left */
  transform: translateY(-50%);
  color: #aaa;
  pointer-events: none;
  font-size: 14px;
}
.filter-input.dark, .search-orderbar{width:337px;}
.filter-inputdark{ background-color: #171723;
  color: #fff;
  border: 1px solid #2D2D38;
  border-radius: 16px;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  min-width: 120px;
    width: 100%;}

    @media (max-width: 1425px){
      .custom-select{white-space: nowrap;}
.filter-input.dark, .search-orderbar{width:200PX;}
    }
    
body {
  transform: none !important;
}
/* ==========================================================================
   Mobile Filter Dropdown
   ========================================================================== */

/* The new toggle button is hidden on desktop by default */
.mobile-filter-toggle {
    display: none;
}

/* --- Mobile View (< 768px) --- */
@media (max-width: 820px) {
    /* Style the toggle button for mobile */
    .mobile-filter-toggle {
        display: flex; Align-items: center;justify-content: center;gap: 8px;width: 100%;
        padding: 12px;font-size: 13px; font-weight: 600;font-family: Outfit;color: #fff;border: none;
        border-radius: var(--border-radius-md);
        cursor: pointer;border-radius: var(--radius-md, 16px);border: 1px solid #333741;background: #040A17;box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    }
.custom-dropdown{max-width: 100%;}.filter-input.dark, .search-orderbar{width: 100%}
    /* Hide the filter container by default on mobile */
    .inline-filters {
        display: none;
        flex-direction: column;
        align-items: stretch; /* Make items full-width */
        margin-top: 20px;
    }

    /* When the parent .filter-bar has the .filters-open class, show the filters */
    .filter-bar.filters-open .inline-filters {
        display: flex;
    }
}

.category-description-wrapper {
    border: 1px solid #2D2D38;
    border-radius: 18px;
    padding: 40px;
    margin: 60px auto; /* Adds space above and below */
    max-width: 100%; /* Optimal reading width */
    position: relative; /* Required for the fade-out effect */
}
.category-description h2 { /* Assuming main titles are H2 */
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-top: 0;
    margin-bottom: 16px;
}

.category-description h3 { /* Assuming subheadings are H3 */
    font-size: 20px;
    font-weight: 600;
    color: #4A69FF; /* Your primary accent color */
    margin-top: 40px;
    margin-bottom: 12px;
}

.category-description p {
    font-size: 15px;
    line-height: 1.7; /* Increased for better readability */
    color: #D1D5DB; /* Softer than pure white */
    margin-bottom: 24px;
}

.category-description hr {
    border: 0;
    height: 1px;
    background-color: #2D2D38;
    margin: 40px 0;
}

/* 3. Custom Numbered List Styling */
.category-description ol {
    list-style: none;
    counter-reset: custom-counter;
    padding-left: 0;
}
.category-description ol li {
    counter-increment: custom-counter;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 16px;
    line-height: 1.7;
    color: #D1D5DB;
    margin-bottom: 16px;
}
.category-description ol li::before {
    content: counter(custom-counter);
    min-width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4A69FF;
    color: #FFFFFF;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
}
.category-description.collapsed {
    max-height: 250px; /* Adjust this value to show more/less text initially */
    overflow: hidden;
    /* This creates the fade-out effect at the bottom */
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    transition: max-height 0.5s ease-in-out;
}

.category-description.expanded {
    max-height: 2000px; /* A large value to ensure all content fits */
    transition: max-height 0.5s ease-in-out;
}

.read-more-btn {
    display: block;
    margin: 24px auto 0 auto;
    background-color: #4A69FF;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}
.read-more-btn:hover {
    background-color: #3a54cc;
}

.product-pricing-section {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    padding: 16px 14px 18px;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    display: flex;
    flex-direction: column;
    gap: 1px;
    color: #fff;
    z-index: 10;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.product-title {
    font-size: 15px;
    font-weight: 600;
    color: #EAEAEA;
    margin: 0;
    line-height: 1.4;
    min-height: 2.6em; /* support 2-line truncation */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
     white-space: normal; /* ✅ allow wrapping */
  overflow: visible;   /* ✅ show full text */
  text-overflow: unset; /* remove ellipsis */
  display: block;      /* remove -webkit-box layout */
  word-break: break-word; /* optional for long words */
}

.product-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.starting-at-text {
    font-size: 0.85rem;
    color: #FFC750;
    margin-right: 6px;
    font-weight: 500;
}

.price-details {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.new-price {
    font-size: 1rem;
    font-weight: bold;
    background-color: #0045FF;
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
}

.old-price {
    font-size: 0.85rem;
    color: #999;
    text-decoration: line-through;
}


.dropdown-label {
  font-weight: 600;
}

.dropdown-selected {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
}

.dropdown-selected img {
  width: 18px;
  height: 12px;
}

.arrow {
  margin-left: 8px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.dropdown-header.active .arrow {
  transform: rotate(180deg);
}

/* Region list hidden by default */
.region-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0 0;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.3s ease;  list-style: none;
  padding: 0;
  margin: 0;
}

.region-list.show {
  max-height: 300px;
  opacity: 1;
}

.region-list li {
  padding: 8px 12px;
  cursor: pointer;margin-top: 15PX;
  font-size: 0.9rem;
  transition: background 0.2s ease;border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.region-list li:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
  .product-pricing-section {
    padding: 5px 5px;
  }

  .product-title {
    font-size: 13px;
    -webkit-line-clamp: 2;
  }

  .starting-at-text {
    font-size: 0.8rem;
  }

  .new-price {
    font-size: 0.95rem;
    padding: 5px 9px;
  }

  .old-price {
    font-size: 0.8rem;
  }
}
/* Make sure Swiper behaves properly */
.hero-swiper {
    width: 100%;
}

.hero-swiper .swiper-wrapper {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center;
}

.hero-swiper .swiper-slide {
    width: 268px !important;
    height: 486px !important;
    transition: transform 0.5s ease, filter 0.5s ease;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

/* Inactive slides - blurred and dimmed */
.hero-swiper .swiper-slide:not(.swiper-slide-active) {
    filter: brightness(0.4) blur(3px);
}

/* Active slide styling */
.hero-swiper .swiper-slide-active {
    filter: brightness(1);
    transform: scale(1);
    z-index: 10;
}

/* Game Card Design */
.game-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5);
    background-color: #111827;
    height: 488px;
    width: 358px;
}

/* Game Image */
.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Bestseller Tag */
.bestseller-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #0045FF;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 14px;
    border-radius: 16px;
    z-index: 15;
    text-transform: uppercase;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Card Info Box */
.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    color: #fff;
    text-align: left;
    z-index: 10;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
}

/* Card Info - Title */
.card-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 6px 0;
}

/* Card Info - Price Text */
.card-info p {
    font-size: 0.9rem;
    color: #FFC750;
    margin: 0;
}

/* Card Info - Price Span */
.card-info p span {
    border-radius: 5px;
    padding: 4px 8px;
    background: #0045FF;
    color: #ffffff;
    font-weight: 700;
    margin-left: 8px;
}
/* ------------------ Base ------------------ */
.price-info {
  font-family: 'Outfit', sans-serif;
  margin-top: 10px;
  text-align: right; /* ⬅️ forces everything inside to right */
}

.price-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #cfd3dc;
  letter-spacing: 0.3px;
  margin-bottom: 6px;
  display: block;
  text-align: right; /* keep label text aligned */
  padding-right: 50px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: flex-end; /* align prices to right */
  gap: 10px;
}
/* ------------------ New price chip ------------------ */
.price-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  padding: 3px 9px;
  border-radius: 10px;

  background: linear-gradient(135deg, #0045ff, #006eff);
  border: 1px solid rgba(255, 255, 255, 0.1);

  box-shadow:
    0 6px 14px rgba(0, 69, 255, 0.25),
    inset 0 1px 1px rgba(255, 255, 255, 0.06);

  backdrop-filter: saturate(120%) blur(2px);
}

.price-chip .currency {
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  opacity: 0.95;
}

.price-chip .amount {
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1;
  color: #fff;
}

/* ------------------ Old price ------------------ */
.old-price {
    font-size: 0.85rem;
    color: #9ca3af;
    text-decoration: line-through;
    opacity: 0.85;
    font-family: 'Outfit';
    font-weight: 700;
  }

  .product-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  padding: 13px;
  color: #fff;
  text-align: left;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  display: flex;
  flex-direction: column;
  padding-bottom: 23px;
  align-items: flex-start;
}

.product-info {
  flex-grow: 1;
}
.platform-icons {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 25px;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 6px rgba(0,0,0,0.3);border-radius: 23px;
border: 1px solid rgba(131, 131, 131, 0.15);
background: rgba(83, 83, 83, 0.18);
backdrop-filter: blur(70.9000015258789px);
}

.platform-icons span {

  opacity: 0.85;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.platform-icons img:hover {
  transform: scale(1.15);
  opacity: 1;
}
.platform-icons img
{min-height: 20px !important;}

.product-brand-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 2px;
  font-family: 'Outfit', sans-serif;

  /* Force consistent height for 2 lines */
  line-height: 1.3rem;
  max-height: calc(1.3rem * 2);

  /* Text control */
  display: -webkit-box;
  -webkit-line-clamp: 2;   /* show max 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.price-info {
    display: flex;
    gap: 2px;
    align-items: center;}
.header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;PADDING: 20px 0;
}
.buttons {
  display: flex;
  gap: 6px;
}
/* Buy Now Button */
.buy-now {
align-items: center;display: flex;color: #000;border-radius: var(--radius-md, 16px);
border: 1px solid #C09334;WIDTH: 90%;margin-top: 10PX;
background: #FFC750;    justify-content: center;
box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);    padding: 8PX 12PX;color: #000;
font-family: Outfit;
font-size: 15px;
font-style: normal;
font-weight: 600;
line-height: 24px; /* 150% */
    
}

.buy-now:hover {
  background: #ffd766;
  transform: translateY(-2px);
}

/* Icons */
.cart-icon,
.bag-icon {
  font-size: 1.1rem;
  display: inline-flex;
}
/* Breadcrumb */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;margin-bottom:10px;    BACKGROUND: #0b0d2230;
    backdrop-filter: blur(5.9px);
    border-radius: 24px;
}

.breadcrumb-item {font-size: 14px;
text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.2s 
ease-in-out;
}
.breadcrumb-item:hover{color: #9ca3af}
.breadcrumb-separator {
    color: #ffffff;
    font-size: 12px;
}

.breadcrumb-active {
  color: #ffb84c;
  font-weight: 600;
}

/* Title */
.page-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.page-title span {
  font-weight: 500;
  color: #9ca3af;
}

/* Search */
.search-container {
  position: relative;
  width: 280px;
}

.search-container input {
  width: 100%;
  background: #0e1220;
  border: 1px solid #1e2235;
  border-radius: 10px;
  padding: 10px 35px;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.search-container input::placeholder {
  color: #555b6f;
}

.search-container input:focus {
  border-color: #3d6aff;
}

.search-icon {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  font-size: 0.9rem;
  color: #6b7280;
  pointer-events: none;
}

.filter-container {width: 320px;padding: 20px;border-radius: 20px;border: 1px solid rgba(255, 255, 255, 0.10);}

.filter-title {font-size: 1.2rem;font-weight: 600;
  margin-bottom: 20px;display: flex;align-items: center;justify-content: space-between;    padding-bottom: 20px;font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.filter-section {
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  position: relative;
}

.filter-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Dropdown Header */
.dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  cursor: pointer;
  margin-bottom: 10px;
}

.dropdown-header:hover {
  background: rgba(255, 255, 255, 0.08);
}

.dropdown-label {
  font-weight: 500;
}

.dropdown-selected {
  display: flex;
  align-items: center;
  gap: 8px;
}

.arrow {
  transition: transform 0.3s ease;
}

.arrow.rotate {
  transform: rotate(180deg);
}
* {
    scrollbar-width: thin;
    scrollbar-color: #041027 #101c3b;
}
/* Region List */
.region-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #00000036;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 8px;
  margin-top: 5px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  max-height: 300px;
  overflow-y: auto;backdrop-filter: blur(7px);
}

.region-list.show {
  display: block !important;
}

/* Region Items inside the list */
.region-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
  font-size: 0.9rem;
  list-style: none;
  margin: 2px 0;
}

.region-list li:hover {
  background: rgba(255, 255, 255, 0.08);
}

.region-list li.active {
  background: #13224d;
  color: #fff;
  border: 1px solid #0045FF;
}

.region-list li img {
  width: 20px;
  height: 15px;
  border-radius: 2px;
  object-fit: cover;
}

/* Loading state */
#product-list.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}

#product-list.loading::after {
  content: 'Loading...';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  z-index: 10;
}

.price-range {
  display: flex;
  flex-direction: column;
  gap: 10px;    margin-bottom: 10PX;
}

.price-range input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  height: 5px;
  background: #FFF;
  border-radius: 5px;
  outline: none;
}

.price-range input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  background: #0045FF;
  border-radius: 50%;
  cursor: pointer;
}

.price-values {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.category-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;margin-bottom: 10PX;
}
.category-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}
.category-buttons button {
  color: #fff;font-family: Outfit;
  border-radius: 6px;
    padding: 6px 10px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s 
ease;
    border-radius: 6px;
    border: 1px solid #171929;
    background: #070D1B;
}

.category-buttons button.active {
    border-radius: 6px;
    border: 1px solid #FFC750;
    background: #070D1B;
}
.filter-item-list{    display: flex;gap: 20PX;align-items: flex-start;}
.category-buttons button:hover {
  background: #24345f;
}

.apply-btn {
  width: 100%;
  border: none;
  padding: 10px 0;
  border-radius: 10px;
  font-size: 0.9rem;
  color: #fff;
  font-weight: 600;color: #FFF;
font-family: Outfit;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: normal;
  cursor: pointer;
  transition: background 0.3s;border-radius: 62px;
background: #070B27;
}

.apply-btn:hover {
  background: #3d6aff;
}
/* ------------------ Responsive ------------------ */

@media (min-width: 1820px) {.product-list {grid-template-columns: repeat(5, 1fr);}}
@media (max-width: 1920px) {.product-list {grid-template-columns: repeat(4, 1fr);}}

@media (max-width: 1520px) {.product-list {grid-template-columns: repeat(3, 1fr);}.product-card-ui {min-height: 380px;}}

@media (max-width: 1200px){.filter-container {width: 250px;}}

@media (min-width: 1200px){  .product-pricing{ white-space: nowrap; }.inline-filters{ max-width: 1920px;}
  .product-title{font-size: 0.7rem;}
  .product-pricing{ white-space: nowrap; }
  .starting-at-text{padding-right: 1PX;}
  .new-price{    padding: 3px 6px;}}
@media (max-width: 1100px){.product-card-ui{max-height: 268px!important;}.product-list{gap: 1rem;grid-template-columns: repeat(2, 1fr);}}

@media (max-width: 820px) {.filter-item-list{    gap:2px;flex-direction: column;align-items: stretch;}.filter-container{width: auto;}.product-list {grid-template-columns: repeat(3, 1fr);}}

@media (max-width: 787px) {.header-bar{flex-direction: column;align-items: flex-start;}
  .search-container{    width: 100%;}
  .filter-bar{margin-bottom: 15px;}
}

@media (max-width: 768px) {
    .product-list {grid-template-columns: repeat(3, 1fr);}
    .filter-input.dark, .search-orderbar{width:100%}
    .filter-item{align-items: stretch;}
    .custom-dropdown{max-width:100%}
    .category-description-wrapper {padding: 24px 20px;margin: 40px 15px; border-radius: 16px; }
    .product-listing{padding-left: 3%;padding-right: 3%;}
    .category-description h2 {font-size: 15px; /* Was 28px */}
    .category-description h3 {font-size: 13px; /* Was 20px */margin-top: 32px;}
    .category-description p {font-size: 12px; /* Slightly smaller for mobile */line-height: 1.65;}
    strong{font-size: 15px;}
    .category-description ol li {font-size: 15px;line-height: 1.65;gap: 12px;}
    .category-description ol li::before {min-width: 28px;height: 28px;font-size: 13px;}
    .category-description.collapsed {max-height: 200px;}
    .read-more-btn {padding: 10px 20px;font-size: 13px;}
    .section-title h1{font-size: 20px;}
    .pagination-container {padding: 0 10px;}
    .pagination {display: flex;justify-content: space-between; /* Pushes Prev/Next to the edges */align-items: center;width: 100%;padding: 0;margin: 0;}
    .pagination .page-item {display: none;}
    .pagination .page-item:first-child,
    .pagination .page-item:last-child {display: block;}
    .pagination .page-item .page-link {
        font-size: 14px;
        font-weight: 600;
        padding: 10px 20px;
        border-radius: 12px;
        border: 1px solid var(--color-border, #333);
        background-color: var(--color-surface, #1C1C24);}
        .pagination .page-item.disabled .page-link {
        background-color: transparent;
        border-color: transparent;
        color: #555;
    }
    .pagination-status .page-link {
        font-size: 14px;
        font-weight: 500;
        color: var(--color-text-secondary, #8E8E9A);
        background: none !important;
        border: none !important;}
  .inline-filters {grid-template-columns: 1fr 1fr;gap: 1rem;}
  .sale-amount-range {flex-direction: column;}
    .container {   width: auto;}
    .filter-bar {flex-wrap: wrap;}
    .product-title {font-size: 14px;}
    .price {font-size: 16px;}
}
@media (max-width: 640px) {.product-list {grid-template-columns: repeat(2, 1fr);gap: 15px;}
  .price-chip {padding: 4px 8px;}
  .price-chip .currency {font-size: 0.7rem;}
  .price-chip .amount {font-size: 0.95rem;}
  .old-price {font-size: 0.65rem;}
  .price-label {font-size: 0.7rem;padding-right: 10px;}
  .product-brand-title {font-size: 12px;}
  .product-content {padding: 7px;}}
@media (max-width: 500px){.breadcrumb{font-size: 11px;} .buy-now{font-size: 13px;padding: 5PX 10PX;}.product-card-ui{min-height: 268px!important;} }
/* ==================== MODERN PRICE DESIGN ==================== */
.price-info {
  font-family: 'Outfit', sans-serif;
  margin-top: 12px;
}

/* ==================== PRICE LAYOUT ==================== */
.price-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-direction: row-reverse;
}

/* ==================== MAIN PRICE CHIP - PREMIUM DESIGN ==================== */
.price-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  border-radius: 12px;
  
  /* Premium gradient background */
  background: linear-gradient(135deg, #0045ff 0%, #006eff 50%, #0080ff 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  
  /* Advanced shadow system */
  box-shadow: 
    0 8px 25px rgba(0, 69, 255, 0.3),
    0 4px 12px rgba(0, 69, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  
  /* Glass morphism effect */
  backdrop-filter: blur(10px) saturate(150%);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Shine effect on price chip */
.price-chip::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.price-chip:hover::before {
  left: 100%;
}

/* Price chip hover effects */
.price-chip:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 12px 35px rgba(0, 69, 255, 0.4),
    0 6px 18px rgba(0, 69, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* ==================== CURRENCY SYMBOL ==================== */
.price-chip .currency {
  font-weight: 700;
  font-size: 0.85rem;
  color: #ffffff;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* ==================== AMOUNT ==================== */
.price-chip .amount {
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: -0.5px;
}

/* ==================== OLD PRICE - ELEGANT DESIGN ==================== */
.old-price {
  position: relative;
  font-size: 0.85rem;
  font-weight: 600;
  color: #6b7280;
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(107, 114, 128, 0.08);
  transition: all 0.3s ease;
}

/* Custom strikethrough */
.old-price::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 8px;
  right: 8px;
  height: 2px;
  background: linear-gradient(90deg, 
    rgba(239, 68, 68, 0.6) 0%, 
    rgba(239, 68, 68, 0.8) 50%, 
    rgba(239, 68, 68, 0.6) 100%);
  transform: translateY(-50%);
  border-radius: 1px;
}

/* Old price hover effect */
.old-price:hover {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
  transform: scale(1.05);
}

/* ==================== DISCOUNT BADGE (Optional) ==================== */
.discount-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
  z-index: 2;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ==================== PRICE LABEL ==================== */
.price-label {
  padding-right: 48px;
  font-size: 0.9rem;
  color: #ffc750;
  margin: 0;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* ==================== SPECIAL STATES ==================== */

/* Sale price emphasis */
.price-chip.sale {
  background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
  box-shadow: 
    0 8px 25px rgba(16, 185, 129, 0.3),
    0 4px 12px rgba(16, 185, 129, 0.2);
}

.price-chip.sale:hover {
  box-shadow: 
    0 12px 35px rgba(16, 185, 129, 0.4),
    0 6px 18px rgba(16, 185, 129, 0.3);
}

/* Free price styling */
.price-chip.free {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
  box-shadow: 
    0 8px 25px rgba(139, 92, 246, 0.3),
    0 4px 12px rgba(139, 92, 246, 0.2);
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
  .price-chip {
    padding: 6px 12px;
    border-radius: 10px;
  }
  
  .price-chip .currency {
    font-size: 0.75rem;
  }
  
  .price-chip .amount {
    font-size: 1rem;
  }
  
  .old-price {
    font-size: 0.75rem;
    padding: 3px 6px;
  }
  
  .price-label {
    font-size: 0.8rem;
    padding-right: 32px;
  }
  
  .discount-badge {
    font-size: 0.6rem;
    padding: 3px 6px;
  }
}

@media (max-width: 480px) {
  .price-row {
    gap: 6px;
  }
  
  .price-chip {
    padding: 5px 10px;
  }
  
  .price-chip .currency {
    font-size: 0.7rem;
  }
  
  .price-chip .amount {
    font-size: 0.9rem;
  }
  
  .old-price {
    font-size: 0.7rem;
  }
}

/* ==================== DARK MODE SUPPORT ==================== */
@media (prefers-color-scheme: dark) {
  .old-price {
    background: rgba(107, 114, 128, 0.15);
  }
}

/* ==================== ANIMATIONS ==================== */
@keyframes priceBounce {
  0%, 20%, 53%, 80%, 100% {
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    transform: translate3d(0, -8px, 0);
  }
  70% {
    transform: translate3d(0, -4px, 0);
  }
}
.product-card-figma {
    position: relative;
    overflow: hidden; /* keeps the button animation clean */
}

.price-chip:hover .amount {
  animation: priceBounce 1s ease;
}
/* ==================== BUY NOW BUTTON - SLIDE UP ==================== */
.btn.buy-now-slide {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    transform: translateY(100px);
    opacity: 0;
    z-index: 5;
    
    font-family: Outfit;
  background: #ffc750;
    border: none;
    border-radius: 12px;
    padding: 14px 20px;
    color: #000;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    box-shadow: 
        0 12px 30px rgba(0, 69, 255, 0.4),
        0 4px 12px rgba(0, 69, 255, 0.2);
    
    /* Flex layout */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Hover state - Button slides up */
.product-card-figma:hover .btn.buy-now-slide {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* Button hover effects */
.btn.buy-now-slide:hover {
  background: #face6eff;
    transform: translateY(-2px) !important;
    box-shadow: 
        0 16px 40px rgba(0, 69, 255, 0.5),
        0 6px 18px rgba(0, 69, 255, 0.3);
}

/* Button active state */
.btn.buy-now-slide:active {
    transform: translateY(0) !important;
    box-shadow: 
        0 8px 25px rgba(0, 69, 255, 0.3),
        0 4px 12px rgba(0, 69, 255, 0.2);
}

/* Disabled button */
.btn.buy-now-slide.disabled {
    background: linear-gradient(135deg, #6B7280 0%, #9CA3AF 100%);
    transform: translateY(100px);
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 8px 25px rgba(107, 114, 128, 0.2);
}

/* ==================== LAYOUT SWAP ON HOVER ==================== */
/* Move content up when hovering to make space for button */
.product-card-figma:hover .product-content {
    padding-bottom: 80px; /* Make space for the button */
}

.product-card-figma:hover .product-info {
    transform: translateY(-10px);
    transition: transform 0.4s ease;
}

.product-card-figma:hover .product-footer {
    transform: translateY(-15px);
    transition: transform 0.4s ease;
}

/* ==================== BAG ICON ANIMATION ==================== */
.btn.buy-now-slide .bag-icon {
    transition: transform 0.3s ease;
}

.btn.buy-now-slide:hover .bag-icon {
    transform: translateX(3px) scale(1.1);
}

/* ==================== LOADING STATE ==================== */
.btn.buy-now-slide.loading {
    position: relative;
    color: transparent;
}
.btn.buy-now-slide.loading::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 50%;
    margin-left: -9px;
    margin-top: -9px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}
.start-shopping-btn {
      margin-top: 25px;
  background: #0066ff;
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.start-shopping-btn:hover {
  background: #004fd1;
  transform: translateY(-2px);
}
@keyframes spin {
    to { transform: rotate(360deg); }
}.btn.buy-now-slide {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    transform: translateY(100px);
    opacity: 0;
    z-index: 5;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.icon-empty{display: flex;width: 48px;height: 48px;padding: 15px;border-radius: var(--radius-lg, 20px);border: 1px solid #333741;box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    align-items: center;margin-left: auto;margin-right: auto;margin-bottom: 20px;}
    .nowishlist{
      margin-left: auto;
    margin-right: auto;
    text-align: center;
  padding: 40px;
  border-radius: 12px;
  max-width: 400px;}

.nowishlist .icon {
  margin-bottom: 20px;
}
.start-shopping-btn {
  background: #0066ff;
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.start-shopping-btn:hover {
  background: #004fd1;
  transform: translateY(-2px);
}
.nowishlist h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.remove-wishlist-btn{    background: #c0411d;
    padding: 5px;
    border-width: 1px;
    border-style: solid;
    border-color: #ffffff21;
    color: #ffffffb8;
    border-radius: 8px;
    font-family: 'Outfit';}
/* Slide up when hovering the whole card */
.product-card-figma:hover .btn.buy-now-slide {
    transform: translateY(0);
    opacity: 1;
}
@media (max-width:2200px){.container{max-width: 2800px;}}
/* Dark Theme Filter Styles */
.filter-section {
    color: #e2e8f0;
}

.filter-subtitle {
    color: #e2e8f0;
    margin-bottom: 12px;
    font-weight: 600;
}

.category-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    align-items: flex-start;
}

.theme-btn {
    background-color: #1e293b;
    border: 1px solid #334155;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
    color: #cbd5e1;
    white-space: nowrap;
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 0;
}

.theme-btn:hover {
    background-color: #334155;
    border-color: #475569;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.theme-btn.active {
    background-color: #0045FF;
    color: white;
    border-color: #0045FF;
    box-shadow: 0 2px 8px rgba(0, 69, 255, 0.4);
}

.theme-btn.active:hover {
    background-color: #0039d4;
    border-color: #0039d4;
}

/* Show More Row - Full Width Dark */
.show-more-row {
    width: 100%;
    margin-top: 12px;
    border-top: 1px solid #1e293b;
    padding-top: 12px;
}

.show-more-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.show-more-toggle {
    background: #1e293b;
    border: 1px solid #334155;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.show-more-toggle:hover {
    background-color: #334155;
    border-color: #475569;
    color: #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.toggle-arrow {
    transition: transform 0.3s ease;
    color: #94a3b8;
}

.show-more-toggle:hover .toggle-arrow {
    color: #e2e8f0;
}

/* Hidden themes container */
.hidden-themes {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 0;
}

/* Smooth animations */
.hidden-themes {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Elegant Dark Version */
.theme-expand-row {
    width: 100%;
    margin-top: 16px;
}

.expand-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #334155, transparent);
}

.expand-toggle {
    background: #1e293b;
    border: 1px solid #334155;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.expand-toggle:hover {
    background-color: #0045FF;
    border-color: #0045FF;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 69, 255, 0.3);
}

.expand-arrow {
    transition: transform 0.3s ease;
    color: #94a3b8;
}

.expand-toggle:hover .expand-arrow {
    color: white;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .category-buttons {
        gap: 6px;
    }
    
    .theme-btn {
        padding: 6px 12px;
        font-size: 13px;
        max-width: 120px;
    }
    
    .show-more-toggle {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .expand-toggle {
        padding: 6px 16px;
        font-size: 12px;
    }
}


.platform-icons img{
  width:38px !important;
  height: 38px !important;
}


.platform-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 4px;
}

.platform-name-fallback {
    background: rgba(0, 69, 255, 0.9);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
/* Clear All button styling */
.btn-clear-wishlist {
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: #dc3545;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-size: 14px;
}