:root {
  --primary: #d62828;
  --primary-dark: #c1271f;
  --primary-light: #fef2f2;
  --bg-light: #f5f5f5;
  --white: #ffffff;
  --black: #000000;
  --dark: #1a1a1a;
  --dark-2: #292929;
  --text: #333333;
  --text-light: #6b7280;
  --gray: #888888;
  --gray-light: #bbbbbb;
  --border: #dddddd;
  --overlay: rgba(0, 0, 0, 0.65);
  --overlay-soft: rgba(0, 0, 0, 0.5);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
  --primary: #ff6b6b;
  --primary-dark: #ff5252;
  --primary-light: #2a1a1a;
  --bg-light: #121212;
  --white: #1e1e1e;
  --black: #ffffff;
  --dark: #e4e4e4;
  --dark-2: #cccccc;
  --text: #e4e4e4;
  --text-light: #9ca3af;
  --gray: #aaaaaa;
  --gray-light: #666666;
  --border: #2a2a2a;
  --overlay: rgba(255, 255, 255, 0.08);
  --overlay-soft: rgba(255, 255, 255, 0.05);
  --shadow-sm: 0 2px 8px rgba(255, 255, 255, 0.04);
  --shadow-md: 0 4px 16px rgba(255, 255, 255, 0.06);
  --shadow-lg: 0 8px 32px rgba(255, 255, 255, 0.08);
}

@font-face {
  font-family: pinar;
  src: url(./font/Pinar-DS1-FD-Regular.ttf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: pinar, sans-serif;
  background: var(--bg-light);
  direction: rtl;
  color: var(--text);
  line-height: 1.6;
  transition: var(--transition);
  min-height: 100vh;
}

/* =============================================
   HEADER
============================================= */
.contact-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
  transition: var(--transition);
}

[data-theme="dark"] .contact-header {
  background: rgba(18, 18, 18, 0.95);
}

.top-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.top-header a {
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  transition: var(--transition);
}

.top-header a:hover {
  color: var(--primary);
}

.bc-sep {
  color: var(--gray-light);
  font-size: 14px;
}

.bc-current {
  color: var(--primary);
  font-weight: 600;
}

.contact-header__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}

/* دکمه مشاهده سایت */
.btn-view-site {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--primary);
  color: white !important;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
}

.btn-view-site:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(214, 40, 40, 0.3);
  color: white !important;
}

/* دکمه تغییر تم */
.theme-toggle {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--bg-light);
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  overflow: hidden;
  flex-shrink: 0;
}

.theme-toggle:hover {
  background: var(--border);
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.theme-toggle__icon {
  position: relative;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle svg {
  position: absolute;
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.icon-sun {
  opacity: 1;
  transform: rotate(0deg) scale(1);
  color: var(--dark);
}

.icon-moon {
  opacity: 0;
  transform: rotate(-90deg) scale(0.5);
  fill: none;
}

[data-theme="dark"] .icon-sun {
  opacity: 0;
  transform: rotate(90deg) scale(0.5);
}

[data-theme="dark"] .icon-moon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
  color: #ff6b6b;
}

/* لینک سبد خرید */
.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--text);
  font-size: 18px;
  border-radius: 50%;
  transition: var(--transition);
  text-decoration: none;
}

.cart-link:hover {
  background: rgba(214, 40, 40, 0.1);
  color: var(--primary);
}

.cart-link .cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--primary);
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-link,
.login-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  color: var(--text);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  font-size: 14px;
}

.profile-link:hover,
.login-link:hover {
  background: rgba(214, 40, 40, 0.1);
  color: var(--primary);
}

/* =============================================
   CONTAINER
============================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
}

/* =============================================
   PRODUCT WRAPPER
============================================= */
.product-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

/* =============================================
   PRODUCT GALLERY
============================================= */
.product-gallery {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.main-image {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 1;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.main-image:hover {
  transform: scale(1.01);
  box-shadow: var(--shadow-lg);
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.main-image:hover img {
  transform: scale(1.05);
}

.thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.thumb-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  background: var(--white);
  opacity: 0.6;
}

.thumb-img:hover {
  opacity: 1;
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-md);
}

.thumb-img.active {
  opacity: 1;
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 0 0 3px rgba(214, 40, 40, 0.2);
}

/* =============================================
   PRODUCT INFO
============================================= */
.product-info {
  padding-top: 0;
}

.product-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
  transition: var(--transition);
}

.product-description {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 30px;
  transition: var(--transition);
}

/* =============================================
   PRODUCT RATING
============================================= */
.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
}

.product-rating i {
  color: #f59e0b;
  font-size: 16px;
}

.product-rating .rating-count {
  color: var(--text-light);
  font-size: 13px;
  margin-right: 8px;
}

/* =============================================
   COLOR & SIZE
============================================= */
.color-box,
.variant-box {
  margin-bottom: 24px;
}

.label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.colors {
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.color-option {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid transparent;
  transition: var(--transition);
  opacity: 0.6;
  position: relative;
}

.color-option:hover {
  opacity: 1;
  transform: scale(1.15);
  box-shadow: var(--shadow-md);
}

.color-option.active {
  opacity: 1;
  border-color: var(--text);
  transform: scale(1.1);
  box-shadow: 0 0 0 3px rgba(214, 40, 40, 0.2);
}

.color-option.active::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 14px;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.selected-text {
  font-size: 13px;
  color: var(--text-light);
  transition: var(--transition);
}

#sizeSelect {
  width: 100%;
  max-width: 300px;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  background: var(--white);
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  outline: none;
  font-family: pinar;
}

#sizeSelect:hover {
  border-color: var(--text);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

#sizeSelect:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(214, 40, 40, 0.15);
}

/* =============================================
   STOCK STATUS
============================================= */
.stock-status {
  padding: 12px 0;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.stock-status.in-stock {
  color: #16a34a;
}

.stock-status.in-stock i {
  color: #16a34a;
}

.stock-status.low-stock {
  color: #f59e0b;
}

.stock-status.low-stock i {
  color: #f59e0b;
}

.stock-status.out-of-stock {
  color: #ef4444;
}

.stock-status.out-of-stock i {
  color: #ef4444;
}

.stock-status .low-stock-text {
  color: #f59e0b;
  font-size: 13px;
  font-weight: 400;
}

/* =============================================
   PRODUCT BUY
============================================= */
.product-buy {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  border-top: 2px solid var(--border);
  margin-top: 20px;
  flex-wrap: wrap;
  transition: var(--transition);
}

.price-container {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.product-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  transition: var(--transition);
}

.old-price {
  color: #9ca3af;
  text-decoration: line-through;
  font-size: 18px;
}

.discount-percent {
  background: #ef4444;
  color: white;
  padding: 2px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
}

/* تعداد */
.quantity-selector {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
}

.quantity-selector:hover {
  border-color: var(--text);
}

.qty-btn {
  width: 40px;
  height: 44px;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: var(--primary);
  color: white;
}

#qtyInput {
  width: 50px;
  height: 44px;
  border: none;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  background: transparent;
  color: var(--text);
  outline: none;
}

#qtyInput::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

/* دکمه افزودن به سبد خرید */
.add-cart-btn {
  flex: 1;
  min-width: 180px;
  padding: 14px 28px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: pinar;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
}

.add-cart-btn:hover:not(:disabled) {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(214, 40, 40, 0.3);
}

.add-cart-btn:active:not(:disabled) {
  transform: translateY(0) scale(0.98);
}

.add-cart-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* =============================================
   PRODUCT META
============================================= */
.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  margin-top: 16px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-light);
}

.meta-item i {
  color: var(--primary);
  width: 18px;
}

/* =============================================
   SHARE BUTTONS
============================================= */
.share-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
}

.share-buttons span {
  font-size: 14px;
  color: var(--text-light);
}

.share-buttons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
  font-size: 16px;
  text-decoration: none;
}

.share-buttons a:hover {
  transform: scale(1.15) translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.share-buttons a[onclick*="whatsapp"] {
  background: #25D366;
}

.share-buttons a[onclick*="telegram"] {
  background: #0088cc;
}

.share-buttons a[onclick*="twitter"] {
  background: #000000;
}

.share-buttons a[onclick*="email"] {
  background: #ea4335;
}

/* =============================================
   RELATED PRODUCTS
============================================= */
.related-products {
  padding-top: 40px;
  border-top: 2px solid var(--border);
  margin-top: 20px;
}

.rp-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.rp-title i {
  color: var(--primary);
}

.rp-slider {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.rp-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.rp-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.rp-item a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.rp-image {
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-light);
}

.rp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.rp-item:hover .rp-image img {
  transform: scale(1.08);
}

.rp-info {
  padding: 14px 16px 18px;
}

.rp-name {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rp-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}

/* =============================================
   TOAST
============================================= */
.toast-custom {
  position: fixed;
  top: 80px;
  right: 20px;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  color: white;
  font-size: 14px;
  z-index: 9999;
  display: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.toast-custom.show {
  display: flex !important;
  animation: slideInRight 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toast-custom.success {
  background: linear-gradient(135deg, #10b981, #059669);
}

.toast-custom.error {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.toast-custom.info {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.toast-custom.warning {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.toast-custom .toast-icon {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes slideInRight {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* =============================================
   ZOOM
============================================= */
#zoomLens {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.zoom-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.zoom-modal.active {
  opacity: 1;
  visibility: visible;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(16px);
}

.zoom-modal-content {
  position: relative;
  width: 90vw;
  height: 90vh;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.zoom-modal.active .zoom-modal-content {
  transform: scale(1);
}

.zoom-img-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}

.zoom-modal-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: zoom-in;
  user-select: none;
  -webkit-user-drag: none;
}

.zoom-close {
  position: absolute;
  top: -60px;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.zoom-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.zoom-controls {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px;
  border-radius: 24px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.zoom-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.zoom-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.zoom-btn:active {
  transform: scale(0.95);
}

#imageContainer {
  cursor: zoom-in;
}

/* =============================================
   EMPTY / NO RELATED
============================================= */
.no-related {
  text-align: center;
  padding: 40px;
  color: var(--text-light);
}

.no-related i {
  font-size: 48px;
  display: block;
  margin-bottom: 12px;
  color: var(--gray-light);
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .product-wrapper {
    gap: 40px;
  }
  
  .rp-slider {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .product-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .product-gallery {
    position: static;
  }
  
  .product-title {
    font-size: 24px;
  }
  
  .product-price {
    font-size: 24px;
  }
  
  .rp-slider {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .thumb-img {
    width: 60px;
    height: 60px;
  }
  
  .top-header {
    gap: 8px;
  }
  
  .btn-view-site span {
    display: none;
  }
  
  .contact-header__inner {
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 16px;
  }
  
  .product-title {
    font-size: 20px;
  }
  
  .product-price {
    font-size: 20px;
  }
  
  .old-price {
    font-size: 15px;
  }
  
  .product-buy {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  
  .add-cart-btn {
    width: 100%;
    min-width: unset;
  }
  
  .quantity-selector {
    align-self: center;
  }
  
  .rp-slider {
    grid-template-columns: 1fr;
  }
  
  .thumb-img {
    width: 50px;
    height: 50px;
  }
  
  .color-option {
    width: 34px;
    height: 34px;
  }
  
  #sizeSelect {
    max-width: 100%;
  }
  
  .top-header a {
    font-size: 12px;
  }
  
  .bc-sep {
    font-size: 12px;
  }
  
  .bc-current {
    font-size: 12px;
  }
  
  .toast-custom {
    top: 70px;
    right: 10px;
    left: 10px;
    max-width: unset;
    font-size: 13px;
  }
}

/* =============================================
   DARK MODE OVERRIDES
============================================= */
body.dark .contact-header {
  background: rgba(18, 18, 18, 0.95);
}

body.dark .main-image {
  background: var(--white);
}

body.dark .thumb-img {
  background: var(--white);
}

body.dark .quantity-selector {
  background: var(--white);
}

body.dark #qtyInput {
  color: var(--text);
}

body.dark .rp-item {
  background: var(--white);
}

body.dark .rp-name {
  color: var(--text);
}

body.dark .profile-link,
body.dark .login-link {
  color: var(--text);
}

body.dark .profile-link:hover,
body.dark .login-link:hover {
  background: rgba(214, 40, 40, 0.2);
}

body.dark .cart-link {
  color: var(--text);
}

body.dark .cart-link:hover {
  background: rgba(214, 40, 40, 0.2);
}

/* =============================================
   SCROLLBAR
============================================= */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--gray);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

body.dark ::-webkit-scrollbar-track {
  background: #1f2937;
}

body.dark ::-webkit-scrollbar-thumb {
  background: #374151;
}

body.dark ::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}