/* Dashboard */
/* ===== Dashboard Layout ===== */
.dashboard {
  display: grid;
  grid-template-columns: 260px 2fr 1fr;
  /* Sidebar - Main - Right */
  gap: var(--space-lg);
  padding: var(--space-lg);
  line-height: 1.2;
  font-family: var(--font-main);
  background-color: var(--color-bg-muted);
  color: var(--color-text);
}

/* ===== Sidebar ===== */
.dashboard__sidebar {
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.categories-links {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.categories-links a:hover {
  color: var(--color-primary);
}

.category {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  color: var(--color-text);
  transition: background-color 0.2s;
  display: block;
}

.category:hover {
  color: var(--color-primary);
}

/* ===== Main Column ===== */
.dashboard__main {
  display: grid;
  grid-template-rows: auto auto;
  gap: var(--space-md);
}

/* ===== Row 1  */

/* ===================================
   HERO SLIDER
   =================================== */

.slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
  min-height: 400px;
}

/* Track */
.slider__track {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

/* Individual Slide */
.slider__slide {
  position: relative;
  display: grid;
  width: calc(100% / 3);
  min-height: 400px;
  flex-shrink: 0;
}

.slider__slide img {
  grid-area: 1 / 1;
  border-radius: var(--radius-lg);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* ===== Content Layer ===== */
.slider__content {
  grid-area: 1 / 1;
  z-index: 2;
  padding: var(--space-2xl) var(--space-2xl) var(--space-2xl) 4rem;
  max-width: 55%;
  color: var(--text-inverse);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-md);
}

/* Title */
.slider__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-inverse);
  margin: 0;
}

.slider__title span {
  font-weight: 400;
}

/* Description */
.slider__desc {
  font-size: clamp(0.875rem, 2vw, 1rem);
  line-height: 1.5;
  opacity: 0.9;
  color: var(--text-inverse);
  margin: 0;
}

/* Button */
.slider__btn {
  margin-top: var(--space-md);
  width: fit-content;
  padding: 14px 32px;
  background-color: var(--color-primary);
  color: var(--color-text-white);
  border-radius: 25px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all var(--transition-base);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.slider__btn:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  font-weight: bolder;
}

/* ===== SLIDER CONTROLS ===== */

/* Navigation Arrows */
.slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* background: rgba(255, 255, 255, 0.9); */
  /* backdrop-filter: blur(8px); */
  /* border: 1px solid rgba(255, 255, 255, 0.5); */
  color: var(--text-inverse);
  font-size: 2rem;
  cursor: pointer;
  z-index: 20;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); */
}

.slider__arrow--prev {
  left: var(--space-sm);
}

.slider__arrow--next {
  right: var(--space-sm);
}

.slider__arrow:hover {
  transform: translateY(-50%) scale(1.1);
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.slider__arrow:active {
  transform: translateY(-50%) scale(0.95);
}

/* Pagination Dots */
.slider__pagination {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-sm);
  z-index: 10;
}

.slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  padding: 0;
}

.slider__dot--active {
  background: var(--color-bg);
  width: 32px;
  border-radius: 6px;
}

.slider__dot:hover:not(.slider__dot--active) {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

/* ===== Row 2 Only: 2 Columns ===== */
.dashboard__main-row--bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.dashboard__card {
  display: grid;
  border-radius: 12px;
  overflow: hidden;
}

.dashboard__card img {
  width: 100%;
  border-radius: 10px;
  object-fit: fill;
}

.dashboard__card img,
.dashboard__content {
  grid-area: 1 / 1;
}

.dashboard__content {
  z-index: 1;
  padding: var(--space-lg);
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-sm);
}

.dashboard__content--title {
  color: var(--color-after-discount);
}

/* ===== Right Panel ===== */
.dashboard__right {
  display: grid;
  gap: var(--space-md);
}

.dashboard__right img {
  object-fit: cover;
  border-radius: 10px;
}

.dashboard__card--light {
  background: var(--color-bg-soft);
}

.dashboard__card--light .dashboard__content {
  color: var(--color-text-strong);
}

/* .dashboard__card--dark {
  background: var(--color-bg-muted);
} */

.dashboard__card--dark a {
  color: var(--text-inverse);
}

.dashboard__card--dark a:hover {
  color: var(--color-after-discount);
}

.dashboard__card--dark h3 {
  color: var(--text-inverse);
}

.dashboard__tag {
  font-size: 12px;
  opacity: 0.7;
}

.dashboard__content h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.dashboard__content a:hover {
  transform: translateY(-2px);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  font-weight: bolder;
}

.dashboard__card--right .dashboard__content {
  margin-left: auto;
  text-align: left;
}

.dashboard__btn {
  margin-top: 8px;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 20px;
  background: var(--color-primary);
  color: var(--color-text-white);
  text-decoration: none;
  font-size: 13px;
}

.price {
  font-size: 13px;
  opacity: 0.7;
}

.price span {
  color: var(--color-primary);
  font-size: var(--font-size-xl);
  font-weight: 700;
}

/* Section Container */
.featured-section {
  padding: var(--space-sm) var(--space-lg) var(--space-lg) var(--space-lg);
  background-color: var(--color-bg-muted);
}

/* Grid Layout */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  max-width: 1500px;
  margin: 0 auto;
}

/* Column Base Styles */
.featured-column {
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* Column Header */
.featured-column__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}

.featured-column__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-column__link {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: opacity var(--transition-fast);
}

.featured-column__link:hover {
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-2%) scale(1.1);
  color: var(--color-text);
}

.featured-column__link:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ===== BRAND GRID (LEFT COLUMN) ===== */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
}

.brand-link {
  display: block;
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
  aspect-ratio: 2 / 1;
}

/* .brand-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.brand-link:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
} */

.brand-link img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

/* ===== PRODUCT GRID (RIGHT COLUMN) ===== */
.product-grid-container {
  flex: 1;
  position: relative;
  overflow: hidden;
}

/* Product Page (holds 4 products) */
.product-page {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(0, 1fr);
  gap: var(--space-md);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.4s ease;
}

/* Active page */
.product-page.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  position: relative;
}

/* Previous page slides left */
.product-page.slide-out-left {
  transform: translateX(-100%);
}

/* Next page slides in from right */
.product-page.slide-in-right {
  transform: translateX(100%);
}

/* Product Card */
.categories-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: var(--radius-md);
  background-color: var(--color-bg-muted);
  overflow: hidden;
  transition: 0.3s;
}

/* .categories-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.categories-card:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
} */

.categories-card img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  display: block;
}

.categories-card__name {
  padding: var(--space-sm);
  margin: 0;
  font-size: 0.75rem;
  text-align: center;
  color: var(--color-text);
  font-weight: 500;
}

.categories-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

/* ===== SLIDER CONTROLS ===== */
.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  background-color: var(--color-bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  color: var(--color-text);
  flex-shrink: 0;
}

.slider-btn:hover:not(:disabled) {
  background-color: var(--color-primary);
  color: var(--color-bg);
  border-color: var(--color-primary);
  transform: scale(1.1);
}

.slider-btn:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.slider-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.slider-btn svg {
  width: 24px;
  height: 24px;
}

/* Page Indicator */
.page-indicator {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  user-select: none;
}

.page-indicator__current {
  color: var(--color-primary);
  font-size: 1.25rem;
}

.page-indicator__separator {
  color: var(--color-text-muted);
}

.page-indicator__total {
  color: var(--color-text-muted);
}

/* ===== UTILITY CLASSES ===== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ===== Section 3: Left bigger twice Right ===== */
.two-cols-large-left {
  display: grid;
  grid-template-columns: 2fr 1fr;
  /* Left أكبر مرتين من Right */
  gap: var(--space-lg);
  padding: var(--space-lg);
  background-color: var(--color-bg-muted);
  border-radius: var(--radius-lg);
}

/* ------------------------------------------------------------ */
.container__setproducts {
  max-width: 1400px;
  margin: 0 auto 20px auto;
  background: var(--color-bg-soft);
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--radius-lg);
}

.setproducts {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-xl);
}

.navigation {
  display: flex;
  gap: var(--space-xl);
}

.navigation__tab {
  padding: 15px 0;
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: var(--transition-normal);
}

.navigation__tab--active {
  color: var(--color-text);
  border-bottom-color: var(--color-text);
}

.setproducts__link {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: var(--font-size-sm);
}

.setproducts__link:hover,
.navigation__tab:hover {
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-2%) scale(1.1);
  color: var(--color-text);
}

.carousel {
  position: relative;
  width: 100%;
  padding: 20px 0;
}

.carousel__wrapper {
  overflow: hidden;
  position: relative;
}

.carousel__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
  cursor: pointer;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel__track::-webkit-scrollbar {
  display: none;
}

.carousel__track:active {
  cursor: grabbing;
}

.carousel__button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-primary);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel__button:hover {
  background: var(--color-primary-hover);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.carousel__button:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel__button--next {
  left: 10px;
}

.carousel__button--prev {
  right: 10px;
}

.product-card__image-container {
  border-radius: var(--radius-lg);
  position: relative;
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.product-card__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--color-primary);
  color: var(--color-bg);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  z-index: 1;
}

.badge__label {
  font-size: 10px;
  display: block;
}

.badge__price {
  font-size: 13px;
  font-weight: 700;
}

.product-card__reviews {
  color: var(--color-text-muted);
  font-size: 13px;
  text-align: center;
  margin-bottom: var(--space-sm);
}

.product-card__title {
  font-size: var(--font-size-sm);
  color: var(--color-text);
  margin-bottom: var(--space-md);
  min-height: 40px;
  line-height: 1.4;
}

.product-card__price {
  margin-bottom: var(--space-md);
}

.product-card__price-current {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
}

.product-card__price-new {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-discount);
}

.product-card__price-original {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  text-decoration: line-through;
  margin-right: var(--space-sm);
}

.product-card__price-range {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
}

.product-card__shipping {
  font-size: 12px;
  margin-bottom: var(--space-sm);
}

.product-card__shipping--free {
  color: var(--color-primary);
  font-weight: 600;
}

.product-card__shipping--paid {
  color: var(--color-text-muted);
}

.status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  margin-bottom: var(--space-sm);
}

.status--in-stock {
  color: var(--color-primary);
}

.status--out-of-stock {
  color: var(--color-discount);
}

.status__indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.gift-tag {
  display: inline-block;
  background: var(--color-bg-muted);
  color: var(--color-discount);
  font-size: 11px;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.product-card__pre-order {
  font-size: 12px;
  color: var(--color-text-muted);
  font-weight: 600;
}

.product-card__contact {
  margin-top: var(--space-sm);
  font-size: 13px;
  color: var(--color-text-muted);
}

/* ===== PAGE LAYOUT ===== */
.page {
  max-width: 1400px;
  margin: 0 auto var(--space-lg) auto;
  padding: var(--space-lg);
  background-color: var(--color-bg-muted);
  font-family: var(--font-main);
  border-radius: var(--radius-xxl);
}

/* ===== HEADER ===== */
.topproducts {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-lg);
}

.topproducts__title {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.5px;
}

.topproducts__link {
  color: var(--color-text-light);
  text-decoration: none;
  font-size: var(--font-size-sm);
  transition: color var(--transition-normal);
}

.topproducts__link:hover {
  color: var(--color-text);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-2%) scale(1.1);
}

.main-content {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
  margin-bottom: 50px;
}

.banner {
  width: 100%;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.banner img,
.banner-img {
  width: 110%;
  height: auto;
  display: block;
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  z-index: 2;
  color: var(--color-text);
}

.banner-content h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.2;
  color: var(--color-text);
}

.banner-content .sell,
.banner-content .start {
  color: var(--color-text-white);
}

.banner-content .sell span {
  font-weight: lighter;
}

.banner-content .start span {
  color: var(--color-primary);
}

.banner-content p {
  font-size: var(--font-size-base);
  margin-bottom: 25px;
  color: var(--color-text-muted);
}

.banner-content a {
  color: var(--color-bg);
  background-color: var(--color-primary);
  padding: var(--space-sm) 25px;
  border-radius: var(--radius-lg);
  transition: 0.3s;
}

.banner-content a:hover {
  background-color: var(--color-primary-hover);
  font-weight: bolder;
}

.categories {
  flex: 0 0 46%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.category {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  cursor: pointer;
  width: 100%;
  transition: all var(--transition-normal);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.category:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.category__icon {
  width: 35px;
  height: 35px;
  object-fit: contain;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.category__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.category__name {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-strong);
  margin: 0;
}

.category__count {
  font-size: 10px;
  color: var(--color-text-light);
  margin: 0;
}

.products {
  display: flex;
  gap: 15px;
  position: relative;
  overflow-x: auto;
  padding-bottom: var(--space-sm);
}

.product-card {
  flex: 0 0 auto;
  min-width: 250px;
  max-width: 280px;
  background: var(--color-bg);
  border-radius: 12px;
  padding: var(--space-lg) 15px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06);
}

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

.product-card__badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 9px;
  font-weight: 700;
  color: var(--color-bg);
  text-align: center;
  line-height: 1.3;
  z-index: 2;
}

.product-card__badge--save,
.product-card__badge--sale {
  background-color: var(--color-primary);
}

.product-card__badge--hot {
  background-color: var(--color-text);
}

.product-card__rating {
  font-size: 11px;
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}

.product-card__image {
  width: 100%;
  height: 160px;
  object-fit: contain;
  margin: var(--space-sm) 0 15px 0;
}

.product-card__title {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  min-height: 38px;
  line-height: 1.4;
}

.product-card__price {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: var(--space-sm);
  flex-wrap: wrap;
}

.product-card__price-current {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--color-text);
}

.product-card__price-old {
  font-size: 13px;
  color: var(--color-text-light);
  text-decoration: line-through;
}

.product-card__shipping {
  font-size: 10px;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.product-card__shipping--paid {
  color: var(--color-text-muted);
}

.product-card__stock {
  font-size: 11px;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.product-card__stock-icon {
  font-weight: 700;
  font-size: 12px;
}

.product-card__colors {
  display: flex;
  gap: 6px;
  margin-top: auto;
  padding-top: var(--space-sm);
}

.product-card__color {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--color-bg-soft);
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.product-card__color:hover {
  transform: scale(1.1);
  border-color: var(--color-border);
}

.product-card__button {
  width: 100%;
  padding: var(--space-sm);
  background: var(--color-bg);
  border: 1.5px solid var(--color-text);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  transition: all var(--transition-normal);
  margin-top: auto;
}

.product-card__button:hover {
  background: var(--color-text);
  color: var(--color-bg);
}

/* ===== BRAND NEW SECTION ===== */
.brandnew-section {
  max-width: 1400px;
  margin: 0 auto 20px auto;
  padding: var(--space-lg);
  background-color: var(--color-bg-soft);
  border-radius: var(--radius-xxl);
}

/* Section Header */
.brandnew-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-xl);
}

.brandnew-header__title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--color-text);
  margin: 0;
  text-transform: uppercase;
}

.brandnew-header__link {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: all var(--transition-normal);
}

.brandnew-header__link:hover {
  color: var(--color-text);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-2%) scale(1.1);
}

.brandnew-header__link svg {
  width: 20px;
  height: 20px;
}

/* Products Grid */
.brandnew-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

/* Product Item */
.brandnew-item {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.brandnew-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.brandnew-item__image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--color-bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brandnew-item__img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.brandnew-item__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  padding: var(--space-md) var(--space-md) var(--space-sm);
  line-height: 1.4;
  min-height: 65px;
  margin: 0;
}

.brandnew-item__reviews {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0 var(--space-md) var(--space-sm);
  font-size: 13px;
}

.brandnew-item__stars {
  color: var(--color-after-discount);
  font-size: 14px;
  letter-spacing: 1px;
}

.brandnew-item__count {
  color: var(--color-text-light);
  font-size: 13px;
}

.brandnew-item__btn {
  margin: 0 var(--space-md) var(--space-md);
  padding: var(--space-sm);
  background: transparent;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--color-primary);
  text-decoration: none;
  text-align: center;
  transition: all var(--transition-normal);
  display: block;
}

.brandnew-item__btn:hover {
  border-color: var(--color-primary);
  color: var(--color-bg);
  background: var(--color-primary);
}

/* ===== CATEGORIES SHOWCASE SECTION ===== */
.categories-showcase {
  max-width: 1400px;
  margin: 0 auto 20px auto;
  padding: var(--space-lg);
  background-color: var(--color-bg-muted);
  border-radius: var(--radius-xxl);
}

.categories-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

/* ===== SHOWCASE COLUMN ===== */
.showcase-column {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.showcase-column__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-lg);
}

.showcase-column__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.showcase-column__link {
  font-size: 13px;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: all var(--transition-normal);
}

.showcase-column__link:hover {
  color: var(--color-text);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-2%) scale(1.1);
}

/* ===== FEATURED PRODUCT ===== */
.showcase-column__featured {
  margin-bottom: var(--space-lg);
}

.featured-product {
  position: relative;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.featured-product--AUDIOS {
  background-image: url("/assets/images/banners/main-category/main-category-Audios.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.featured-product--GAMING {
  background-image: url("/assets/images/banners/main-category/main-category-Gaming.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.featured-product--OFFICE {
  background-image: url("/assets/images/banners/main-category/main-category-official.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* ===== SHOWCASE ITEMS GRID ===== */
.showcase-column__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.showcase-item {
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-decoration: none;
  text-align: center;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.showcase-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.showcase-item__icon {
  width: 80px;
  height: 100;
  border-radius: 50%;
  background: var(--color-bg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.showcase-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.showcase-item__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
}

.showcase-item__count {
  font-size: 12px;
  color: var(--color-text-muted);
  margin: 0;
}

/* ===== DEALS OF THE DAY SECTION ===== */
.deals-section {
  padding: var(--space-lg);
}

.deals-container {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: var(--space-lg);
  background-color: var(--color-bg-soft);
  padding: var(--space-lg);
  border-radius: var(--radius-xxl);
}

/* ===== MAIN DEALS CARD ===== */
.deals-main {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-hover) 100%
  );
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.deals-main__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) var(--space-xl);
  background: rgba(0, 0, 0, 0.1);
}

.deals-main__title {
  font-size: 24px;
  font-weight: 900;
  color: var(--color-text-white);
  margin: 0;
  letter-spacing: 1px;
}

.deals__btn {
    margin-top: var(--space-md);
      width: fit-content;
      padding: 14px 32px;
      background-color: var(--color-primary);
      color: var(--color-text-white);
      border-radius: 25px;
      text-decoration: none;
      font-size: 1rem;
      font-weight: 600;
      transition: all var(--transition-base);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
.deals__btn:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.deals-main__timer {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.timer-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.timer-numbers {
  display: flex;
  gap: var(--space-xs);
}

.timer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 42px;
}

.timer-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-white);
  line-height: 1;
}

.timer-unit {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  margin-top: 2px;
}

/* ===== MAIN CONTENT AREA ===== */
.deals-main__content {
  display: grid;
  grid-template-columns: 60px 1fr 2fr;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: var(--color-bg);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* Thumbnails */
.deals-main__thumbnails {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.thumbnail-item {
  width: 60px;
  height: 60px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.thumbnail-item--active {
  border-color: var(--color-primary);
}

.thumbnail-item:hover {
  border-color: var(--color-primary);
  transform: scale(1.05);
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Main Product Image */
.deals-main__image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.deals-main__image img {
  max-width: 100%;
  max-height: 350px;
  object-fit: contain;
}

/* Product Details */
.deals-main__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.deals-main__sku {
  font-size: 12px;
  color: var(--color-text-muted);
  margin: 0;
}

.deals-main__product-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
  line-height: 1.4;
}

.deals-main__pricing {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.price-current {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-discount);
}

.price-original {
  font-size: 18px;
  color: var(--color-text-light);
  text-decoration: line-through;
}

.deals-main__specs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.deals-main__specs li {
  font-size: 13px;
  color: var(--color-text);
  padding-left: 20px;
  position: relative;
}

.deals-main__specs li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.deals-main__badges {
  display: flex;
  gap: var(--space-sm);
}

.badge-tag {
  padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.badge-tag--shipping {
  background: var(--color-bg-soft);
  color: var(--color-primary);
}

.badge-tag--gift {
  background: var(--color-bg-soft);
  color: var(--color-discount);
}

/* Countdown Timer */
.deals-main__countdown {
  margin-top: var(--space-md);
}

.countdown-text {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.countdown-timer {
  display: flex;
  gap: var(--space-sm);
}

.countdown-unit {
  background: var(--color-bg-muted);
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-md);
  text-align: center;
  min-width: 60px;
}

.countdown-number {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
}

.countdown-label {
  display: block;
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* Progress Bar */
.deals-main__progress {
  margin-top: var(--space-md);
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--color-bg-muted);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: var(--space-xs);
}

.progress-bar__fill {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--color-primary) 0%,
    var(--color-primary-hover) 100%
  );
  border-radius: 10px;
  transition: width 0.3s ease;
}

.progress-text {
  font-size: 12px;
  color: var(--color-text-muted);
  margin: 0;
}

.progress-text strong {
  color: var(--color-text);
  font-weight: 600;
}

/* ===== SIDEBAR PROMOTIONAL CARDS ===== */
.deals-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.promo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-normal);
  cursor: pointer;
}

.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.promo-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Enhanced transitions for interactive elements */
.deals-main__image img {
  transition: opacity 0.3s ease;
}

.thumbnail-item {
  transition: all 0.3s ease;
}

.promo-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* ========================================
   RESPONSIVE MEDIA QUERIES
   ======================================== */


/* ===== MEDIUM SCREENS (992px to 1199px) ===== */
@media (max-width: 1199px) and (min-width: 992px) {
  .dashboard {
    grid-template-columns: 220px 2fr 1fr;
    gap: var(--space-md);
    padding: var(--space-md);
  }

  .slider {
    min-height: 350px;
  }

  .slider__slide {
    min-height: 350px;
  }

  .slider__content {
    padding: var(--space-xl) var(--space-xl) var(--space-xl) 2rem;
    max-width: 60%;
  }

  .slider__title {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  }

  .slider__pagination {
    gap: 3px;
    bottom: 20px;
  }

  .slider__dot {
    width: 5px !important;
    height: 5px !important;
    min-width: 5px !important;
    min-height: 5px !important;
    max-width: 5px !important;
    max-height: 5px !important;
  }

  .slider__dot--active {
    width: 15px !important;
    min-width: 15px !important;
    max-width: 15px !important;
  }

  .brand-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .product-page {
    grid-template-columns: repeat(3, 1fr);
  }

  .brandnew-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .deals-main__content {
    grid-template-columns: 50px 1fr 1.5fr;
  }
  .deals__btn{
    padding: 13px 28px;
      font-size: 0.95rem;
  }

  .container__setproducts,
  .page,
  .brandnew-section,
  .categories-showcase {
    padding: var(--space-md);
  }

  .featured-product {
    height: 180px;
  }
}

/* ===== SMALL SCREENS (768px to 991px) ===== */
@media (max-width: 991px) and (min-width: 768px) {
  .dashboard {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    padding: var(--space-md);
  }

  .dashboard__sidebar {
    order: -1;
    padding: var(--space-md);
  }

  .categories-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .category {
    padding: 0.5rem 0.75rem;
  }

  .slider {
    min-height: 300px;
  }

  .slider__slide {
    min-height: 300px;
  }

  .slider__content {
    padding: var(--space-lg) var(--space-lg);
    max-width: 70%;
  }

  .slider__title {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
  }

  .slider__btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .slider__pagination {
    bottom: 15px;
    gap: 2.5px;
  }

  .slider__dot {
    width: 4px !important;
    height: 4px !important;
    min-width: 4px !important;
    min-height: 4px !important;
    max-width: 4px !important;
    max-height: 4px !important;
  }

  .slider__dot--active {
    width: 12px !important;
    min-width: 12px !important;
    max-width: 12px !important;
  }

  .dashboard__main-row--bottom {
    grid-template-columns: 1fr;
  }

  .dashboard__right {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .brand-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
  }

  .product-page {
    grid-template-columns: repeat(3, 1fr);
  }

  .two-cols-large-left {
    grid-template-columns: 1fr;
  }

  .navigation {
    gap: var(--space-md);
    overflow-x: auto;
  }

  .navigation__tab {
    padding: 12px 0;
    white-space: nowrap;
  }

  .main-content {
    flex-direction: column;
  }

  .banner {
    width: 100%;
  }

  .banner img,
  .banner-img {
    width: 100%;
    height: auto;
  }

  .banner-content {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    max-width: 60%;
  }

  .banner-content h2 {
    font-size: 20px;
  }

  .banner-content p {
    font-size: 0.9rem;
  }

  .categories {
    flex: 1;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .brandnew-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .categories-showcase__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .showcase-column__items {
    grid-template-columns: repeat(3, 1fr);
  }

  .featured-product {
    height: 180px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .deals-container {
    grid-template-columns: 1fr;
  }

  .deals-main__content {
    grid-template-columns: 1fr;
  }

  .deals-main__thumbnails {
    flex-direction: row;
    order: 2;
  }

  .deals-main__image {
    order: 1;
  }

  .deals-main__details {
    order: 3;
  }
.deals__btn{
padding: 12px 24px;
  font-size: 0.9rem;
}
  .deals-sidebar {
    flex-direction: row;
  }

  .promo-card {
    flex: 1;
  }
}

/* ===== EXTRA SMALL SCREENS (below 768px) ===== */
@media (max-width: 767px) {
  .dashboard {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    padding: var(--space-sm);
  }

  .dashboard__sidebar {
    display: none;
  }

  .categories-links {
    flex-direction: column;
    gap: 0.35rem;
  }

  .category {
    padding: 0.5rem;
    font-size: 0.875rem;
  }

  .slider {
    min-height: 250px;
    border-radius: var(--radius-md);
  }

  .slider__slide {
    min-height: 250px;
  }

  .slider__content {
    padding: var(--space-md);
    max-width: 85%;
  }

  .slider__title {
    font-size: clamp(1rem, 4vw, 1.5rem);
  }

  .slider__desc {
    font-size: 0.75rem;
  }

  .slider__btn {
    padding: 15px 20px;
    font-size: 0.85rem;
  }

  .dashboard__btn {
    padding: 15px 16px;
  }

  .slider__arrow {
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
  }

  .slider__pagination {
    bottom: 10px;
    gap: 2px;
  }

  .slider__dot {
    width: 3px !important;
    height: 3px !important;
    min-width: 3px !important;
    min-height: 3px !important;
    max-width: 3px !important;
    max-height: 3px !important;
  }

  .slider__dot--active {
    width: 9px !important;
    min-width: 9px !important;
    max-width: 9px !important;
  }

  .slider__dot:hover:not(.slider__dot--active) {
    transform: scale(1.1);
  }

  .dashboard__main-row--bottom {
    grid-template-columns: 1fr;
  }

  .dashboard__right {
    grid-template-columns: 1fr;
  }

  .dashboard__content h3 {
    font-size: 16px;
  }

  .featured-section {
    padding: var(--space-sm);
  }

  .featured-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .featured-column {
    padding: var(--space-md);
  }

  .featured-column__title {
    font-size: 1rem;
  }

  .brand-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xs);
  }

  .product-page {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .categories-card img {
    height: 80px;
    object-fit: contain;
  }

  .categories-card__name {
    font-size: 0.7rem;
  }

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

  .slider-btn svg {
    width: 20px;
    height: 20px;
  }

  .two-cols-large-left {
    grid-template-columns: 1fr;
    padding: var(--space-sm);
  }

  .container__setproducts,
  .page,
  .brandnew-section,
  .categories-showcase {
    padding: var(--space-sm);
    margin-bottom: 15px;
  }

  .setproducts {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }

  .navigation {
    gap: var(--space-sm);
    overflow-x: auto;
    width: 100%;
  }

  .navigation__tab {
    padding: 10px 0;
    font-size: 0.875rem;
    white-space: nowrap;
  }

  .carousel__button {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .product-card {
    min-width: 200px;
  }

  .product-card__image-container {
    height: 150px;
  }

  .topproducts {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .topproducts__title {
    font-size: 1rem;
  }

  .main-content {
    flex-direction: column;
    margin-bottom: 30px;
  }

  .banner img,
  .banner-img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .banner-content {
    position: absolute;
    top: 50%;
    left: 10px;
    right: 10px;
    transform: translateY(-50%);
    max-width: calc(100% - 20px);
    padding: 0;
  }

  .banner-content h2 {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .banner-content p {
    font-size: 0.75rem;
    margin-bottom: 12px;
    line-height: 1.4;
  }

  .banner-content a {
    padding: 8px 16px;
    font-size: 0.8rem;
    display: inline-block;
  }

  .categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .category {
    padding: 8px;
  }

  .category__icon {
    width: 28px;
    height: 28px;
  }

  .category__name {
    font-size: 11px;
  }

  .category__count {
    font-size: 9px;
  }

  .products {
    gap: 10px;
  }

  .product-card {
    min-width: 180px;
    padding: var(--space-md) 12px;
  }

  .product-card__image {
    height: 120px;
  }

  .product-card__title {
    font-size: 12px;
    min-height: 32px;
  }

  .brandnew-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .brandnew-header__title {
    font-size: 14px;
  }

  .brandnew-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .brandnew-item__image-wrapper {
    height: 180px;
  }

  .brandnew-item__name {
    font-size: 13px;
    min-height: 50px;
    padding: var(--space-sm);
  }

  .categories-showcase__grid {
    grid-template-columns: 1fr;
  }

  .showcase-column {
    padding: var(--space-md);
  }

  .showcase-column__header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
  }

  .showcase-column__title {
    font-size: 12px;
  }

  .featured-product {
    height: 150px;
    padding: var(--space-md);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .showcase-column__items {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-item__icon {
    width: 60px;
    height: 60px;
  }

  .showcase-item__name {
    font-size: 12px;
  }

  .showcase-item__count {
    font-size: 11px;
  }

  .deals-section {
    padding: var(--space-sm);
  }

  .deals-container {
    grid-template-columns: 1fr;
    padding: var(--space-sm);
  }

  .deals-main__header {
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-md);
    align-items: flex-start;
  }

  .deals-main__title {
    font-size: 18px;
  }

  .deals-main__timer {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
    width: 100%;
  }
.deals__btn{
  padding: 11px 22px;
    font-size: 0.875rem;
}
  .timer-numbers {
    width: 100%;
    justify-content: space-between;
  }

  .timer-block {
    min-width: auto;
    flex: 1;
  }

  .timer-value {
    font-size: 16px;
  }

  .deals-main__content {
    grid-template-columns: 1fr;
    padding: var(--space-md);
    gap: var(--space-md);
  }

  .deals-main__thumbnails {
    flex-direction: row;
    order: 2;
    gap: var(--space-xs);
    overflow-x: auto;
  }

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

  .deals-main__image {
    order: 1;
    padding: var(--space-md);
  }

  .deals-main__image img {
    max-height: 250px;
  }

  .deals-main__details {
    order: 3;
  }

  .deals-main__product-title {
    font-size: 16px;
  }

  .price-current {
    font-size: 22px;
  }

  .price-original {
    font-size: 14px;
  }

  .deals-main__specs li {
    font-size: 12px;
  }

  .countdown-unit {
    padding: var(--space-xs) var(--space-sm);
    min-width: 50px;
  }

  .countdown-number {
    font-size: 18px;
  }

  .deals-sidebar {
    flex-direction: column;
  }
}
.sidebar-toggle {
  display: none;
}

/* موبايل + تابلت */
@media (max-width: 991px) {
  /* ===== Sidebar ===== */
  .dashboard__sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 260px;
    height: 100vh;

    background: var(--color-bg);
    z-index: 1000;
    transition: left 0.5s ease;

    display: flex;
    flex-direction: column;
  }

  .dashboard__sidebar.active {
    left: 0;
  }

  /* محتوى الكاتيجوري Scroll */
  .categories-links {
    flex: 1;
    overflow-y: auto;
  }

  /* ===== زر الفلتر ===== */
  .sidebar-toggle {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    position: fixed;
    bottom: 16px;
    right: 16px;

    background: var(--color-primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;

    z-index: 1100;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  }

  .sidebar-toggle i {
    font-size: 20px;
    color: #fff;
  }
  /* ===== Overlay ===== */
  .sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 900;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
  }

  .sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}
