@charset "UTF-8";
/* SASS VAR */
.v2-pill {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #504594;
  text-decoration: none;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.v2-pill.active {
  background: #504594;
  color: #fff !important;
}

.produit-header .txt {
  position: relative;
  z-index: 0;
}
.produit-header {
  color: #fff;
}
.produit-header::before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: #e9ecef;
  border-radius: 5px;
  outline: none;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: #C5216B;
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}
input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}
input[type=range]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: #C5216B;
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.top-header {
  font-size: 13px;
}

.brand-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  background-color: #fff;
  border-radius: 10px;
}

.hover-orange:hover {
  color: #fff !important;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.6rem;
}

.slide-content {
  min-height: 350px;
  border-radius: 8px;
}

.bg-gradient-warning {
  background: linear-gradient(135deg, #C5216B 0%, #ff9800 100%);
}

.bg-gradient-primary {
  background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
}

.bg-gradient-success {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.promo-card {
  transition: transform 0.3s ease;
  cursor: pointer;
}

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

.product-card {
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.product-card .badge {
  z-index: 10;
  font-size: 11px;
  font-weight: 600;
}

/* CATEGORY CARDS */
.category-card {
  transition: all 0.3s ease;
  cursor: pointer;
  background-color: var(--jumia-light-gray);
}

.category-card:hover {
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.hover-scale {
  transition: transform 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
}

/* BRAND CARDS */
.brand-card {
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-card:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15) !important;
  transform: translateY(-3px);
}

/* SHOP PAGE - FILTERS */
.filters-sidebar {
  position: sticky;
  top: 120px;
}

.filter-group {
  transition: box-shadow 0.3s ease;
}

.filter-group:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.form-check-input:checked {
  background-color: #C5216B;
  border-color: #C5216B;
}

/* PAGINATION */
.pagination .page-link {
  color: #000000;
  border: 1px solid #F6F6F6;
  transition: all 0.3s ease;
}

.pagination .page-link:hover {
  background-color: #C5216B;
  color: #fff;
  border-color: #C5216B;
}

.pagination .page-item.active .page-link {
  background-color: #C5216B;
  border-color: #C5216B;
}

/* PRODUCT DETAILS PAGE */
.product-images .main-image {
  border: 1px solid #F6F6F6;
}

.thumb-image {
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.thumb-image:hover,
.thumb-image.active {
  border-color: #C5216B;
}

.color-option {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #F6F6F6;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.color-option.active,
.color-option:hover {
  border-color: #C5216B;
  transform: scale(1.1);
}

.color-option.active::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: bold;
}

.btn-outline-dark.active {
  background-color: #000000;
  color: #fff;
}

/* CART PAGE */
.cart-item {
  transition: box-shadow 0.3s ease;
}

.cart-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.cart-summary {
  border: 2px solid #F6F6F6;
}

/* BUTTONS */
.btn-warning {
  background-color: #C5216B;
  border-color: #C5216B;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-warning:hover {
  background-color: #e67e0e;
  border-color: #e67e0e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(246, 139, 30, 0.3);
}

.btn-outline-secondary:hover {
  background-color: #F6F6F6;
  border-color: #F6F6F6;
}

/* RATING STARS */
.rating i {
  font-size: 14px;
}

/* TABS */
.nav-tabs .nav-link {
  color: #000000;
  border: none;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.nav-tabs .nav-link.active {
  color: #C5216B;
  border-bottom-color: #C5216B;
  background-color: transparent;
}

.nav-tabs .nav-link:hover {
  color: #C5216B;
}

/* REVIEW ITEMS */
.review-item:last-child {
  border-bottom: none !important;
}

/* TIMER */
.timer .badge {
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 700;
}

/* FOOTER */
footer a {
  transition: color 0.3s ease;
}

footer a:hover {
  color: #C5216B !important;
}

/* HOVER EFFECTS */
.hover-shadow {
  transition: box-shadow 0.3s ease;
}

.hover-shadow:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12) !important;
}

/* UTILITIES */
.cursor-pointer {
  cursor: pointer;
}

.bg-opacity-10 {
  opacity: 0.1 !important;
}

/* Dashboard V2 Glassmorphism */
.stat-card-glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.stat-card-glass:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.9);
}

.stat-icon-circle {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.5rem;
}

/* Shortcut Items */
.shortcut-item {
  background: #f8f9fa;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.shortcut-item:hover {
  background: #ffffff;
  border-color: var(--color-blue);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transform: translateX(5px);
}

.shortcut-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.25rem;
}

/* Badge Soft Text */
.ls-1 {
  letter-spacing: 1px;
}

/* Transitions */
.transition {
  transition: all 0.2s ease-in-out;
}

/* Dashboard V2 Container */
/* Dashboard Sidebar V2 */
.dashboard-sidebar-v2 {
  width: 280px;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  background: #ffffff;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  z-index: 1000;
  transition: all 0.3s ease;
}

.logo-circle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.25rem;
}

.avatar-bg {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-link-v2 {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  color: #64748b;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 12px;
  margin: 0 0.5rem;
  transition: all 0.2s ease;
}

.nav-link-v2:hover {
  background: #f1f5f9;
  color: var(--color-blue);
  transform: translateX(5px);
}

.nav-link-v2.active {
  background: rgba(3, 99, 167, 0.1);
  color: var(--color-blue);
}

.nav-link-v2 i {
  font-size: 1.1rem;
  width: 24px;
}

.support-card {
  background: linear-gradient(135deg, var(--color-blue), #024d85);
  box-shadow: 0 10px 15px -3px rgba(3, 99, 167, 0.2);
}

.x-small {
  font-size: 0.75rem;
}

/* Dashboard Layout Wrapper */
.dashboard-wrapper {
  padding-left: 280px;
  min-height: 100vh;
  background-color: #f8fafc;
}

.top-nav-dashboard {
  height: 70px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  position: sticky;
  top: 0;
  z-index: 900;
}

@media (max-width: 991.98px) {
  .dashboard-sidebar-v2 {
    transform: translateX(-100%);
  }
  .dashboard-sidebar-v2.show {
    transform: translateX(0);
  }
  .dashboard-wrapper {
    padding-left: 0;
  }
}
/* ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  animation: fadeIn 0.5s ease-in;
}

.slide-in-up {
  animation: slideInUp 0.6s ease-out;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .slide-content {
    min-height: 250px;
    padding: 30px 20px !important;
  }
  .slide-content h2 {
    font-size: 1.75rem !important;
  }
  .slide-content p {
    font-size: 1rem !important;
  }
  .product-card h6 {
    font-size: 12px;
  }
  .cart-summary {
    position: static !important;
  }
  .filters-sidebar {
    position: static;
  }
}
@media (max-width: 576px) {
  .top-header {
    font-size: 11px;
    padding: 8px 0 !important;
  }
  header .container {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }
  header h2 {
    font-size: 1.5rem !important;
  }
  #cartCountBadge {
    right: 0 !important;
    left: auto !important;
    transform: translate(0, -50%) !important;
  }
}
/* LOADING STATES */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* SMOOTH SCROLLING */
html {
  scroll-behavior: smooth;
}

/* FOCUS STATES */
.form-control:focus,
.form-select:focus {
  border-color: #C5216B;
  box-shadow: 0 0 0 0.2rem rgba(246, 139, 30, 0.25);
}

/* CART BADGE */
.badge.bg-warning.text-dark {
  font-weight: 700;
  font-size: 10px;
}

/* STICKY HEADER */
.sticky-top {
  z-index: 1020;
}

/* PRODUCT IMAGE ZOOM */
.main-image img {
  transition: transform 0.3s ease;
}

.main-image:hover img {
  transform: scale(1.05);
}

.card-categorie {
  position: relative;
  background-image: url(../img/Ellipse.png);
  color: rgb(255, 255, 255);
  position: relative;
  background-repeat: no-repeat;
  padding: 45px 20px 15px;
  overflow: hidden;
  background-position: right top;
}
.card-categorie::before {
  position: absolute;
  content: "";
  right: 55px;
  bottom: 40px;
  height: 26px;
  width: 20px;
  background-image: url(../img/dots2.png);
  background-repeat: no-repeat;
  opacity: 1;
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1030;
  padding: 0 1rem;
  animation: slideUpNav 0.5s ease-out;
}

@keyframes slideUpNav {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #64748b;
  font-size: 11px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  min-width: 70px;
}
.bottom-nav-item i {
  font-size: 18px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.bottom-nav-item span {
  transition: all 0.3s ease;
  white-space: nowrap;
}
.bottom-nav-item:hover {
  color: #C5216B;
  background: rgba(197, 33, 107, 0.08);
  transform: translateY(-3px);
}
.bottom-nav-item:hover i {
  transform: scale(1.1);
}
.bottom-nav-item.active {
  color: #C5216B;
  background: rgba(197, 33, 107, 0.12);
}
.bottom-nav-item.active i {
  animation: bounceIcon 0.5s ease;
}

@keyframes bounceIcon {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 2px 8px rgba(197, 33, 107, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 2px 12px rgba(197, 33, 107, 0.6);
  }
}
@media (max-width: 767.98px) {
  body:not(.dashboard-page) {
    padding-bottom: 80px;
  }
}
/* Responsive adjustments */
@media (min-width: 768px) {
  .bottom-nav-item {
    font-size: 12px;
    min-width: 60px;
  }
  .bottom-nav-item i {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .bottom-nav {
    height: 60px;
  }
  .bottom-nav-item {
    font-size: 13px;
  }
}
.gallery-item {
  height: 200px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(139, 21, 56, 0.2);
}

.gallery-item img {
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 21, 56, 0.8) 0%, rgba(107, 15, 43, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-label {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.produit-header {
  background: linear-gradient(135deg, rgba(139, 21, 56, 0.05) 0%, rgba(244, 184, 96, 0.05) 100%);
  border-bottom: 2px solid var(--border-color);
}

.tab-content {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.badge-new {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--primary-gold);
  color: var(--primary-burgundy);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 10;
}