.s-slider-block__title-right h2 {
color : #000;
}
div#mainnav {
    display: block !important;
}
.s-product-card-entry {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.content-entry p {
  color: #666;
}
.top-navbar,
.main-nav-container .flex.items-stretch,
.mburger,
.header-search {
  display: none !important;
}

/* Main header container */
.store-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Custom header layout */
.custom-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  height: 70px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Logo centered */
.custom-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.custom-logo img {
  height: 45px;
  width: auto;
  max-width: 120px;
}

/* Left side - Search button */
.custom-left {
  display: flex;
  align-items: center;
  z-index: 3;
}

/* Right side - Menu button and cart */
.custom-right {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

/* Button styles */
.custom-btn {
  background: none;
  border: none;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  position: relative;
  overflow: hidden;
}

.custom-btn:hover {
  background-color: #f3f4f6;
}

.custom-btn:active {
  transform: scale(0.95);
}

.custom-btn i {
  font-size: 20px;
  color: #374151;
}

/* Hamburger menu icon */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 16px;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #374151;
  border-radius: 1px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.hamburger.active {
  transform: rotate(0deg);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Sheet overlay */
.sheet-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(2px);
}

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

/* Menu sheet */
.menu-sheet {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: white;
  z-index: 1002;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  transform: translateX(100%);
}

.menu-sheet.active {
  right: 0;
  transform: translateX(0);
}

/* Sheet header */
.sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #e5e7eb;
}

.sheet-title {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.sheet-close {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.sheet-close:hover {
  background-color: #f3f4f6;
}

.sheet-close i {
  font-size: 20px;
  color: #6b7280;
}

.menu-item {
  display: block;
  padding: 16px 20px;
  color: #374151;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #f3f4f6;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.menu-item:hover {
  background-color: rgba(6, 15, 255, 0.05);
  color: #06f;
  transform: translateX(5px);
  padding-left: 25px;
}

.menu-item:active {
  transform: translateX(3px);
}

.menu-item:last-child {
  border-bottom: none;
}

/* Search modal overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  backdrop-filter: blur(8px);
  z-index: 1003;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 16px 16px;
}

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

/* Search modal */
.search-modal {
  background: white;
  border-radius: 20px;
  width: 100%;
  max-width: 550px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: translateY(-30px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.search-overlay.active .search-modal {
  transform: translateY(0) scale(1);
}

/* Search header */
.search-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-bottom: 1px solid #e2e8f0;
}

.search-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-title::before {
  content: "🔍";
  font-size: 18px;
}

/* Search input container */
.search-input-container {
  padding: 28px;
  background: #fafbfc;
}

/* Style the original salla-search component in modal */
.search-modal salla-search {
  width: 100%;
}

.search-modal .s-search-modal {
  position: static !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.search-modal .s-search-container {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

.search-modal .s-search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.search-modal .s-search-input-wrapper:focus-within {
  border-color: #3b82f6;
  background: white;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1),
    0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.search-modal .s-search-input {
  width: 100% !important;
  padding: 18px 24px 18px 56px !important;
  border: none !important;
  background: transparent !important;
  font-size: 16px !important;
  outline: none !important;
  border-radius: 16px !important;
  color: #1e293b !important;
  font-weight: 500 !important;
}

.search-modal .s-search-input::placeholder {
  color: #94a3b8 !important;
  font-weight: 400 !important;
}

.search-modal .s-search-icon-wrap {
  position: absolute;
  left: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.search-modal .s-search-icon {
  color: #3b82f6 !important;
  font-size: 20px !important;
}

.search-modal .s-search-results {
  max-height: 450px;
  overflow-y: auto;
  margin-top: 16px;
  border-radius: 12px;
  background: white;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Style search result items */
.search-modal .s-search-results .s-search-result-item {
  padding: 16px 20px;
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.search-modal .s-search-results .s-search-result-item:hover {
  background: linear-gradient(90deg, #f8fafc 0%, #ffffff 100%);
  transform: translateX(4px);
  border-left: 3px solid #3b82f6;
  padding-left: 17px;
}

.search-modal .s-search-results .s-search-result-item:last-child {
  border-bottom: none;
}

/* No results message styling */
.search-modal .s-search-no-results-placeholder {
  text-align: center;
  color: #64748b;
  font-size: 15px;
  padding: 32px 20px;
  font-style: italic;
}

/* Body scroll lock */
body.modal-open {
  overflow: hidden;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .custom-header {
    padding: 16px 24px;
    height: 80px;
  }
  

  .custom-logo img {
    height: 50px;
    max-width: 150px;
  }

  .menu-sheet {
    width: 350px;
  }

  .search-overlay {
    padding-top: 120px;
  }
}

/* RTL Support */
[dir="rtl"] .menu-sheet {
  right: auto;
}

[dir="rtl"] .menu-sheet.active {
  left: 0;
  right: auto;
}

[dir="rtl"] .search-input {
  padding: 12px 45px 12px 16px;
}

[dir="rtl"] .search-icon {
  left: auto;
  right: 15px;
}

.rtl\:mr-4:where([dir="rtl"], [dir="rtl"] *) {
  margin-right: 0 !important;
}

.custom-header,
#main-slider-0 {
  max-width: 1320px;
  margin: auto;
}

#main-slider-0 {
  padding: 0 24px;
}

@media (max-width: 768px) {
  #main-slider-0 {
    padding: 0 12px;
  }
    .s-product-card-promotion-title {
    display : none;
  }
  .s-product-card-image-cover {
  height: 300px !important;
  }
}

.s-block.s-block--hero-slider {
  background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
}

.s-block.s-block--hero-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(0, 102, 255, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(0, 102, 255, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
}

.s-slider-block__title-right h2,
.right-side h2,
.s-reviews-header-wrapper h1 {
  font-size: 27px;
}

.s-block.s-block--categories .container {
  padding: 10px 20px !important;
}

@media (max-with: 1320px) {
  .container {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
}

.s-slider-button-icon svg {
  fill: #06f;
}

[dir="rtl"] .menu-sheet.active {
  left: auto;
  right: 0;
}

#sheet-close {
  display: flex;
  align-items: center;
  justify-content: center;
}

.s-block--categories {
  /* Enhanced container with better spacing and visual hierarchy */
  padding: 2rem 0;
  background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.s-block--categories::before {
  /* Subtle background pattern for visual interest */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(0, 102, 255, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(0, 102, 255, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
}

.s-block--categories .container {
  /* Ensure content stays above background pattern */
  position: relative;
  z-index: 1;
}

.s-block--categories .swiper {
  /* Enhanced swiper container with better overflow handling */
  overflow: visible;
  padding: 1rem 0;
}

.s-block--categories .swiper-wrapper {
  /* Improved wrapper alignment and spacing */
  align-items: stretch;
  padding-bottom: 0.75rem;
}

.slide--cat-entry {
  /* Modern card foundation with professional styling */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  /* Layout and spacing */
  padding: 0 !important;
  margin: 0 !important;
  min-height: 120px;

  /* Visual design */
  background: #ffffff;
  border: 2px solid #e9ecef;
  border-radius: 16px;

  /* Typography */
  text-decoration: none;
  color: #000000;

  /* Smooth transitions for all interactive states */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  border: 1px solid #ddd;

  /* Transform origin for smooth scaling */
  transform-origin: center;

  /* Ensure proper positioning for pseudo-elements */
  position: relative;
  overflow: hidden;
}

.slide--cat-entry::before {
  /* Animated glow lines that wrap around card borders */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  /* Create the glow border effect */
  background: linear-gradient(
    45deg,
    transparent 0%,
    #06f 25%,
    transparent 50%,
    #06f 75%,
    transparent 100%
  );

  /* Initially hidden, will animate on hover */
  opacity: 0;
  border-radius: 16px;

  /* Smooth transition for the glow effect */
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Ensure glow stays behind content */
  z-index: -1;

  /* Create the line effect by using a mask */
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;

  /* Define the border width for the glow lines */
  padding: 2px;
}

.slide--cat-entry::after {
  /* Additional animated element for enhanced glow effect */
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;

  /* Rotating gradient for dynamic effect */
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    #06f 90deg,
    transparent 180deg,
    #06f 270deg,
    transparent 360deg
  );

  border-radius: 18px;
  opacity: 0;
  z-index: -2;

  /* Continuous rotation animation */
  animation: rotateGlow 3s linear infinite;

  /* Initially paused, will play on hover */
  animation-play-state: paused;

  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Keyframe animation for rotating glow effect */
@keyframes rotateGlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.slide--cat-entry i {
  /* Enhanced icon presentation */
  font-size: 2rem;
  color: #06f;
  margin-bottom: 0.75rem;

  /* Smooth transitions for icon animations */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Ensure proper alignment */
  display: flex;
  align-items: center;
  justify-content: center;

  /* Add subtle background for better visual hierarchy */
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #f0f4ff 0%, #e6f0ff 100%);
  border-radius: 12px;

  /* Subtle shadow for depth */
  box-shadow: 0 2px 4px rgba(0, 102, 255, 0.1);
}

.slide--cat-entry:hover i {
  color: #ffffff;
  background: linear-gradient(135deg, #06f 0%, #0056d6 100%);
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.25);
}

.slide--cat-entry:focus i {
  /* Icon focus effects for accessibility */
  transform: scale(1.05);
  background: linear-gradient(135deg, #e6f0ff 0%, #d1e7ff 100%);
}

.slide--cat-entry h2 {
  /* Enhanced typography for category names */
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
  margin: 0;
  text-align: center;
  line-height: 1.4;

  /* Smooth transitions for text effects */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Better text rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* Ensure text doesn't break awkwardly */
  word-wrap: break-word;
  hyphens: auto;
}

.slide--cat-entry:hover h2 {
  /* Text hover effects */
  color: #06f;
  transform: translateY(-1px);

  /* Subtle text shadow for enhanced readability */
  text-shadow: 0 1px 2px rgba(0, 102, 255, 0.1);
}

.slide--cat-entry:focus h2 {
  /* Text focus effects for accessibility */
  color: #06f;
}

@media (min-width: 768px) {
  .s-block--categories {
    /* Increased padding for larger screens */
    padding: 2.5rem 0;
  }

  .slide--cat-entry {
    /* Enhanced spacing and sizing for tablets */
    padding: 2rem 1.5rem;
    margin: 0.75rem;
    min-height: 140px;
  }

  .slide--cat-entry i {
    /* Larger icons for better visibility on tablets */
    font-size: 2.25rem;
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
  }

  .slide--cat-entry h2 {
    /* Improved typography for tablet screens */
    font-size: 1.2rem;
    line-height: 1.3;
  }
}

/* Desktop devices (1024px and up) */
@media (min-width: 1024px) {
  .s-block--categories {
    /* Maximum padding for desktop */
    padding: 3rem 0;
  }

  .slide--cat-entry {
    /* Optimal sizing for desktop experience */
    padding: 2.5rem 2rem;
    margin: 1rem;
    min-height: 160px;
  }

  .slide--cat-entry:hover {
    /* Enhanced hover effects for desktop with precise cursor control */
    transform: translateY(-6px) scale(1.03);
  }

  .slide--cat-entry i {
    /* Premium icon sizing for desktop */
    font-size: 2.5rem;
    width: 64px;
    height: 64px;
    margin-bottom: 1.25rem;
  }

  .slide--cat-entry h2 {
    /* Optimal typography for desktop reading */
    font-size: 1.3rem;
    font-weight: 700;
  }
}

/* Large desktop devices (1320px and up) */
@media (min-width: 1320px) {
  .s-block--categories .container {
    /* Constrained width for very large screens */
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .slide--cat-entry {
    /* Premium spacing for large displays */
    padding: 3rem 2.5rem;
    margin: 1.25rem;
    min-height: 180px;
  }
}

[dir="rtl"] .slide--cat-entry {
  /* RTL-specific adjustments for Arabic/Hebrew layouts */
  text-align: center; /* Maintain center alignment for icons and text */
}

[dir="rtl"] .slide--cat-entry h2 {
  /* RTL typography adjustments */
  text-align: center;
  direction: rtl;
  unicode-bidi: embed;
}

[dir="rtl"] .slide--cat-entry i {
  /* Icon positioning remains centered for RTL */
  margin-bottom: 1.25rem;
}

/* RTL hover effects maintain the same visual behavior */
[dir="rtl"] .slide--cat-entry:hover {
  transform: translateY(-4px) scale(1.02);
}

/* ===================================================================
   ACCESSIBILITY ENHANCEMENTS
   ================================================================= */

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .slide--cat-entry,
  .slide--cat-entry i,
  .slide--cat-entry h2,
  .slide--cat-entry::before,
  .slide--cat-entry::after {
    /* Disable animations for users who prefer reduced motion */
    animation: none !important;
    transition: none !important;
  }

  .slide--cat-entry:hover {
    /* Maintain visual feedback without motion */
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.15);
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .slide--cat-entry {
    /* Enhanced contrast for better visibility */
    border: 3px solid #000000;
    background: #ffffff;
  }

  .slide--cat-entry:hover {
    border-color: #06f;
    background: #f0f4ff;
  }

  .slide--cat-entry i {
    background: #e6f0ff;
    color: #06f;
  }

  .slide--cat-entry:hover i {
    background: #06f;
    color: #ffffff;
  }
}

.slide--cat-entry:focus-visible {
  outline: 4px solid #06f;
  outline-offset: 3px;
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 6px #06f;
}

.s-block__display-all {
  position: relative;
  z-index: 1; /* create a stacking context above ::before */
  overflow: hidden;
  width: 150px;
  height: 50px;
  cursor: pointer;
  border: 1px solid #06f;
  background: transparent;
  color: #000; /* initial text color */
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease-in-out;
}

.s-block__display-all::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #06f;
  transform: scale(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-in-out;
  z-index: -1; /* behind the button itself */
}

.s-block__display-all svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #06f;
  stroke-dasharray: 450 480;
  stroke-dashoffset: 450;
  transition: stroke-dashoffset 0.3s ease-in-out;
  z-index: 2; /* above the fill, below text */
}

.s-block__display-all i {
  position: relative;
  z-index: 3; /* ensure icon sits above everything */
  margin-left: 8px;
  font-size: 14px;
}

/* hover states */
.s-block__display-all:hover {
  color: #fff !important; /* force white text */
}

.s-block__display-all:hover::before {
  transform: scale(1); /* expand fill */
}

.s-block__display-all:hover svg {
  stroke-dashoffset: -480; /* animate border stroke */
}

/* Enhanced Product Cards Styling */

/* Container and Layout */
.s-products-list-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

/* Product Card Base */
.s-product-card-entry {
  padding:5px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
  border: 1px solid #f0f0f0;
}

.s-product-card-entry:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.15);
  border-color: #06f;
}

/* Product Image Container */
.s-product-card-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #fafafa;
  border-radius: 8px;
}

.s-product-card-image a {
  display: block;
  height: 100%;
  width: 100%;
}

.s-product-card-image-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.s-product-card-image:hover .s-product-card-image-cover {
  transform: scale(1.08);
}

.s-product-card-entry:hover .s-product-card-image-cover {
  transform: scale(1.05);
}

/* Promotion Title */
.s-product-card-promotion-title {
  position: absolute;
  width: fit-content;
  top: 8px;
  right: 0px;
  background: linear-gradient(135deg, #06f, #0040cc);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 102, 255, 0.3);
}

/* Wishlist Button */
.s-product-card-wishlist-btn {
  position: absolute !important;
  top: -106px;
  left: 5px;
  border: none !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.s-product-card-wishlist-btn .sicon-heart {
  font-size: 18px;
  color: #666;
}

.s-product-card-wishlist-btn:hover {
  background : white !important;
}

/* Product Content */
.s-product-card-content {
  width: 100% !important;
  padding: 10px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Product Title */
.s-product-card-content-title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #333;
  transition: color 0.3s ease;
}

.s-product-card-content-title a {
  text-decoration: none;
  color: inherit;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.s-product-card-content-title a:hover {
  color: #06f !important;
}

.s-product-card-entry:hover .s-product-card-content-title {
  color: #06f;
}

/* Product Subtitle */
.s-product-card-content-subtitle {
  margin: 0;
  font-size: 14px;
  color: #666;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Price */
.s-product-card-price {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #06f;
  display: flex;
  align-items: center;
  gap: 4px;
}

.s-product-card-price .sicon-sar {
  font-size: 16px;
}

/* Add to Cart Button */
.s-product-card-content-footer {
  margin-top: auto;
  padding-top: 8px;
}

.s-product-card-content-footer .s-button-element {
  width: 100% !important;
  height: 44px !important;
  background: transparent !important;
  color: #06f !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  position: relative !important;
  overflow: hidden !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  z-index: 1 !important;
}

.s-product-card-content-footer .s-button-element:hover {
  background: #06f !important;
  color: white !important;
}

/* Button Fill Animation */
.s-product-card-content-footer .s-button-element::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.s-product-card-content-footer .s-button-element:hover::before {
  transform: translateY(-100%);
}

.s-product-card-content-footer .s-button-element:hover {
  color: white !important;
  border-color: #06f !important;
  transform: translateY(-1px);
}

.s-product-card-content-footer .s-button-element:hover .s-button-text {
  color: white !important;
}

.s-product-card-content-footer .s-button-element:hover .sicon-shopping-bag {
  color: white !important;
}

/* Button Text and Icon */
.s-product-card-content-footer .s-button-text {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  transition: color 0.4s ease !important;
  position: relative !important;
  z-index: 2 !important;
}

.s-product-card-content-footer .sicon-shopping-bag {
  font-size: 16px !important;
  transition: color 0.4s ease !important;
}

/* Loading States */
.s-product-card-content-footer .s-button-element:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 768px) {
  .s-products-list-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    padding: 16px 0;
  }

  .s-product-card-image {
    height: 220px;
  }

  .s-product-card-content {
    padding: 16px;
  }

  .s-product-card-content-title {
    font-size: 15px;
  }

  .s-product-card-price {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .s-products-list-wrapper {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .s-product-card-image {
    height: 200px;
  }

  .s-product-card-content {
    padding: 14px;
  }
}

/* Additional Enhancements */
.s-product-card-entry::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.03),
    rgba(0, 102, 255, 0.01)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.s-product-card-entry:hover::after {
  opacity: 1;
}

/* Focus States for Accessibility */
.s-product-card-content-title a:focus,
.s-product-card-content-footer .s-button-element:focus {
  outline: 2px solid #06f;
  outline-offset: 2px;
}

/* Smooth Scrolling for Product Grid */
.s-products-list-wrapper {
  scroll-behavior: smooth;
}

.s-product-card-vertical .s-product-card-wishlist-btn button {
  margin: -8px;
}

/* Main color variable for easy changes */
:root {
  --main-color: #06f;
}
.s-block--custom-testimonials {
  padding: 20px 0;
  background-color: #f8f8f8;
}

.s-reviews-header {
  text-align: center;
  color: #333;
  margin-bottom: 30px;
  font-size: 2em;
}

.s-reviews-testimonial {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 25px;
  padding-left: 2rem !important;
  margin: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: auto;
  position: relative;
  border: 1px solid #ddd;
  padding-top: 50px;
  overflow: hidden;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;
  z-index: 1;
}

@media (max-width: 470px) {
  .s-reviews-testimonial {
    padding-right: 30px !important;
  }
}
.s-reviews-testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  padding-bottom: 0;
  background: linear-gradient(
    to bottom right,
    var(--main-color) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease-out, width 0.4s ease-out, height 0.4s ease-out;
  pointer-events: none;
  z-index: -1;
}

.s-reviews-testimonial:hover::before {
  opacity: 0.2;
  width: 150%;
  height: 150%;
}

.s-reviews-testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.s-reviews-testimonial__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.s-reviews-testimonial__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 15px;
  border: 3px solid var(--main-color);
}

.s-reviews-testimonial__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s-reviews-testimonial__text {
  flex-grow: 1;
  width: 100%;
}

.s-reviews-testimonial__text p {
  font-size: 1.1em;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
  order: 2;
}

.s-reviews-testimonial__name_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
  order: 1;
}

.s-reviews-testimonial__info h2 {
  font-size: 1.2em;
  color: #333;
  margin-bottom: 5px;
}

salla-rating-stars {
  color: var(--main-color);
}

.s-reviews-testimonial__icon {
  position: absolute;
  top: 15px;
  left: 15px;
  color: var(--main-color);
  width: 32px;
  height: 32px;
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .s-reviews-testimonial__icon svg {
    left: -5px;
    top: -5px;
  }
}

.s-reviews-testimonial__icon svg {
  fill: currentColor;
  width: 100%;
  height: 100%;
}

.s-slider-block__title-nav button {
  background-color: transparent;
  color: inherit;
  border: none;
}

@media (max-width: 768px) {
  .s-reviews-header {
    font-size: 1.8em;
  }

  .s-reviews-testimonial {
    padding: 20px;
    margin: 10px;
    padding-top: 45px;
  }

  .s-reviews-testimonial__avatar {
    width: 70px;
    height: 70px;
  }

  .s-reviews-testimonial__text p {
    font-size: 1em;
  }

  .s-reviews-testimonial__info h2 {
    font-size: 1.1em;
  }

  .s-reviews-testimonial__icon {
    width: 28px;
    height: 28px;
    top: 12px;
    left: 12px;
  }
}

@media (max-width: 480px) {
  .s-reviews-header {
    font-size: 1.5em;
  }

  .s-reviews-testimonial {
    padding: 15px;
    margin: 8px;
    padding-top: 40px;
  }

  .s-reviews-testimonial__avatar {
    width: 60px;
    height: 60px;
  }

  .s-reviews-testimonial__text p {
    font-size: 0.9em;
  }

  .s-reviews-testimonial__info h2 {
    font-size: 1em;
  }

  .s-reviews-testimonial__icon {
    width: 24px;
    height: 24px;
    top: 10px;
    left: 10px;
  }
}

@media (min-width: 1024px) {
  .s-reviews-testimonial__icon svg:where([dir="rtl"], [dir="rtl"] *) {
    left: 0rem;
    top: 0px;
  }
}

.s-reviews-testimonial__info h2 {
  margin-bottom: 30px;
}

:root {
  --footer-primary: #06f;
  --footer-bg: #ffffff;
  --footer-text: #333333;
  --footer-text-light: #666666;
  --footer-border: #e5e7eb;
  --footer-hover: #f8fafc;
  --footer-shadow: rgba(0, 0, 0, 0.08);
}

.store-footer {
  width: 100%;
  background: linear-gradient(135deg, var(--footer-bg) 0%, #fafbfc 100%);
  border-top: 1px solid var(--footer-border);
  position: relative;
  overflow: hidden;
  box-shadow: 0 -4px 20px var(--footer-shadow);
}

.store-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(0, 102, 255, 0.02) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(0, 102, 255, 0.02) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
}

.store-footer__inner {
  position: relative;
  z-index: 1;
  padding: 3rem 0 2rem;
  width: 100%;
  max-width: none;
}

.store-footer .container {
  width: 100%;
  max-width: 100%;
  padding: 0 1rem;
  margin: 0;
}

.store-footer .grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.store-footer h3 {
  color: var(--footer-text);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.store-footer h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--footer-primary), transparent);
  border-radius: 2px;
}

.store-footer p {
  color: var(--footer-text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.s-menu-footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.s-menu-footer-item {
  color: var(--footer-text-light);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 6px;
}

.s-menu-footer-item:hover {
  color: var(--footer-primary);
  background: var(--footer-hover);
}

.s-menu-footer-item:hover::before {
  width: 20px;
}

.s-contacts-title {
  color: var(--footer-text);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.s-contacts-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--footer-primary), transparent);
  border-radius: 2px;
}

.s-contacts-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.s-contacts-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  border-radius: 12px;
  text-decoration: none;
  color: var(--footer-text-light);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.s-contacts-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 102, 255, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.s-contacts-item:hover {
  background: var(--footer-hover);
  border-color: var(--footer-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.15);
}

.s-contacts-item:hover::before {
  left: 100%;
}

.s-contacts-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--footer-primary), #0056d6);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.s-contacts-icon svg {
  width: 20px;
  height: 20px;
  fill: white;
  transition: all 0.3s ease;
}

.s-contacts-item:hover .s-contacts-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.s-contacts-item:hover .s-contacts-icon svg {
  fill: white;
}

.unicode {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.s-social-list {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.copyright-text {
  color: var(--footer-text-light);
  font-size: 0.9rem;
  line-height: 1.6;
  width: 100%;
}

.copyright-text a {
  color: var(--footer-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.copyright-text a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--footer-primary);
  transition: width 0.3s ease;
}

.copyright-text a:hover::after {
  width: 100%;
}

.copyright-text a:hover {
  color: #0056d6;
}

/* Social Media Links */
.s-social-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--footer-primary), #0056d6);
  border-radius: 10px;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.s-social-list a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.s-social-list a:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
}

.s-social-list a:hover::before {
  left: 100%;
}

/* Copyright Section */
.store-footer .md\\:flex {
  width: 100%;
  padding: 1.5rem 1rem;
  border-top: 1px solid var(--footer-border);
  background: rgba(248, 250, 252, 0.5);
  backdrop-filter: blur(10px);
}

/* Tablet Responsive Design */
@media (min-width: 768px) {
  .store-footer .container {
    padding: 0 2rem;
  }

  .store-footer .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .store-footer__inner {
    padding: 4rem 0 2.5rem;
  }

  .s-contacts-item {
    padding: 1rem;
  }

  .s-contacts-icon {
    width: 45px;
    height: 45px;
  }

  .s-contacts-icon svg {
    width: 22px;
    height: 22px;
  }

  .unicode {
    font-size: 1rem;
  }

  .s-social-list a {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
}

/* Desktop Responsive Design */
@media (min-width: 1024px) {
  .store-footer .container {
    padding: 0 3rem;
  }

  .store-footer .grid {
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 4rem;
  }

  .store-footer__inner {
    padding: 5rem 0 3rem;
  }

  .store-footer h3 {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }

  .s-menu-footer-item:hover {
    transform: none;
  }

  .s-contacts-item {
    padding: 1.25rem;
  }

  .s-contacts-icon {
    width: 50px;
    height: 50px;
  }

  .s-contacts-icon svg {
    width: 24px;
    height: 24px;
  }

  .unicode {
    font-size: 1.1rem;
  }

  .s-social-list {
    gap: 1.5rem;
  }

  .s-social-list a {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }
}

/* Large Desktop */
@media (min-width: 1440px) {
  .store-footer .container {
    padding: 0 4rem;
    max-width: 1400px;
    margin: 0 auto;
  }

  .store-footer .grid {
    gap: 5rem;
  }

  .store-footer__inner {
    padding: 6rem 0 3.5rem;
  }
}

/* Mobile Responsive Design */
@media (max-width: 767px) {
  .store-footer__inner {
    padding: 2rem 0 1.5rem;
  }

  .store-footer .container {
    padding: 0 1rem;
  }

  .store-footer .grid {
    gap: 2rem;
  }

  .store-footer h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .s-contacts-item {
    padding: 0.5rem;
  }

  .s-contacts-icon {
    width: 36px;
    height: 36px;
  }

  .s-contacts-icon svg {
    width: 18px;
    height: 18px;
  }

  .unicode {
    font-size: 0.9rem;
  }

  .s-menu-footer-item:hover {
    transform: none;
  }

  .s-contacts-item {
    gap: 0.75rem;
  }

  .s-social-list a {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

/* RTL Support */
[dir="rtl"] .s-menu-footer-item {
  padding-left: 0;
  padding-right: 1rem;
}

[dir="rtl"] .s-menu-footer-item::before {
  left: auto;
  right: 0;
}

[dir="rtl"] .store-footer h3::after {
  left: auto;
  right: 0;
}

[dir="rtl"] .s-contacts-title::after {
  left: auto;
  right: 0;
}

/* Accessibility Features */
.s-menu-footer-item:focus-visible,
.s-contacts-item:focus-visible,
.s-social-list a:focus-visible,
.copyright-text a:focus-visible {
  outline: 3px solid var(--footer-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .store-footer *,
  .store-footer *::before,
  .store-footer *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .s-menu-footer-item:hover,
  .s-contacts-item:hover,
  .s-social-list a:hover {
    transform: none;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .store-footer {
    border-top: 3px solid #000000;
    background: #ffffff;
  }

  .store-footer h3,
  .s-contacts-title {
    color: #000000;
    border-bottom: 2px solid #000000;
  }

  .s-menu-footer-item,
  .s-contacts-item,
  .copyright-text {
    color: #000000;
  }

  .s-menu-footer-item:hover,
  .s-contacts-item:hover {
    background: #f0f0f0;
    border: 2px solid var(--footer-primary);
  }

  .s-contacts-icon {
    background: var(--footer-primary);
    border: 2px solid #000000;
  }

  .s-social-list a {
    background: var(--footer-primary);
    border: 2px solid #000000;
  }
}

/* Print Styles */
@media print {
  .store-footer {
    background: white !important;
    box-shadow: none !important;
    border-top: 2px solid #000 !important;
  }

  .store-footer::before {
    display: none !important;
  }

  .s-contacts-item::before,
  .s-social-list a::before {
    display: none !important;
  }

  .s-social-list {
    display: none !important;
  }
}

/* Loading Animation for Footer */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.store-footer {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth Glow Effect for Interactive Elements */
.s-menu-footer-item,
.s-contacts-item,
.s-social-list a {
  position: relative;
}

.s-menu-footer-item::after,
.s-contacts-item::after,
.s-social-list a::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    var(--footer-primary),
    transparent,
    var(--footer-primary)
  );
  border-radius: inherit;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.s-menu-footer-item:hover::after,
.s-contacts-item:hover::after,
.s-social-list a:hover::after {
  opacity: 0.3;
}

.copyright-text p {
  padding-top: 16px;
}

.s-block__title .right-side:where([dir="rtl"], [dir="rtl"] *) {
  padding-left: 0rem !important;
}

/* Enhanced Breadcrumb Navigation Styling */
.breadcrumbs {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 16px 0;
}

.breadcrumbs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

salla-breadcrumb {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
}

.s-breadcrumb-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  max-width: 1320px;
  margin: 0 auto;
}

.s-breadcrumb-item {
  display: flex;
  align-items: center;
  position: relative;
}

.s-breadcrumb-item a {
  color: #374151;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
}

.s-breadcrumb-item a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #06f 0%, #0056d6 100%);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 6px;
  z-index: -1;
}

.s-breadcrumb-item a:hover {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.25);
  border-color: #06f;
}

.s-breadcrumb-item a:hover::before {
  opacity: 1;
}

.s-breadcrumb-item:last-child {
  color: #06f;
  font-weight: 600;
  padding: 8px 12px;
  background: linear-gradient(135deg, #e6f0ff 0%, #d1e7ff 100%);
  border-radius: 8px;
  border: 1px solid rgba(0, 102, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.s-breadcrumb-item:last-child::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #06f, transparent, #06f);
  border-radius: inherit;
  opacity: 0.3;
  z-index: -1;
  animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

.s-breadcrumb-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 4px;
  color: #9ca3af;
  transition: all 0.2s ease;
}

.s-breadcrumb-arrow svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: all 0.2s ease;
}

.s-breadcrumb-item:hover + .s-breadcrumb-arrow svg {
  fill: #06f;
  transform: scale(1.1);
}

/* Responsive Design */
@media (min-width: 768px) {
  .breadcrumbs {
    padding: 20px 0;
  }

  .s-breadcrumb-item a {
    font-size: 15px;
    padding: 10px 16px;
  }

  .s-breadcrumb-item:last-child {
    padding: 10px 16px;
    font-size: 15px;
  }

  .s-breadcrumb-arrow svg {
    width: 18px;
    height: 18px;
  }
}

@media (min-width: 1024px) {
  .breadcrumbs {
    padding: 24px 0;
  }

  .s-breadcrumb-item a {
    font-size: 16px;
    padding: 12px 18px;
  }

  .s-breadcrumb-item:last-child {
    padding: 12px 18px;
    font-size: 16px;
  }
}

/* RTL Support */
[dir="rtl"] .s-breadcrumb-wrapper {
  direction: rtl;
}

[dir="rtl"] .s-breadcrumb-arrow svg {
  transform: scaleX(-1);
}

[dir="rtl"] .s-breadcrumb-item:hover + .s-breadcrumb-arrow svg {
  fill: #06f;
  transform: scaleX(-1) scale(1.1);
}

/* Accessibility and Focus States */
.s-breadcrumb-item a:focus-visible {
  outline: 3px solid #06f;
  outline-offset: 2px;
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 5px #06f;
}

.s-breadcrumb-item:last-child:focus-visible {
  outline: 3px solid #06f;
  outline-offset: 2px;
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 5px #06f;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .s-breadcrumb-item a,
  .s-breadcrumb-item a::before,
  .s-breadcrumb-arrow svg,
  .s-breadcrumb-item:last-child::before {
    animation: none !important;
    transition: none !important;
  }

  .s-breadcrumb-item a:hover {
    transform: none;
  }

  .s-breadcrumb-item:hover + .s-breadcrumb-arrow svg {
    transform: none;
  }

  [dir="rtl"] .s-breadcrumb-arrow svg {
    transform: scaleX(-1);
  }

  [dir="rtl"] .s-breadcrumb-item:hover + .s-breadcrumb-arrow svg {
    transform: scaleX(-1);
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .breadcrumbs {
    background: #ffffff;
  }

  .s-breadcrumb-item a {
    border: 2px solid #000000;
    background: #ffffff;
    color: #000000;
  }

  .s-breadcrumb-item a:hover {
    border-color: #06f;
    background: #f0f4ff;
    color: #06f;
  }

  .s-breadcrumb-item:last-child {
    border: 3px solid #06f;
    background: #f0f4ff;
    color: #06f;
  }

  .s-breadcrumb-arrow {
    color: #000000;
  }
}

#page-main-title {
  font-size: 25px;
}

#product-filter,
#comments-filter {
  border: 1px solid #06f;
}

#s-edit-alert a,
.promotion-title,
.s-add-product-button-main button,
.s-comment-form-action button,
#cart-submit button {
  background-color: #06f !important;
}

.main-content h1,
.s-add-product-button-mini-checkout-content {
  color: #06f;
}

.s-add-product-button-main button,
.s-comment-form-action button,
#cart-submit button {
  color: white;
  border: 2px solid #06f;
}

.s-add-product-button-mini-checkout {
  border: 2px solid #06f !important;
  border-radius: 16px;
}

.s-quantity-input-button:hover {
  fill: #9ca3af;
}

.s-comment-form-input {
  resize: none;
}

.s-slider-block__title-nav button {
  background: white;
  border: 1px solid #dddd;
}

.s-slider-block__title-nav button:hover {
  color: #06f;
  fill: #06f;
}

.text-primary.flex-none.font-bold.text-sm {
  color: #06f;
}

.cart-item.bg-white,
.shadow-default.bg-white {
  border: 1px solid #ddd;
}

.s-login-modal-tab.s-show.s-login-modal-active button,
.s-infinite-scroll-wrapper button {
  background-color: #06f !important;
  color: #fff !important;
  border: 2px solid #06f;
}

@media (min-width: 768px) {
  .slide--cat-entry i {
    width: 45px;
    height: 45px;
  }
}

.no-content-placeholder .btn {
  border: 1px solid #06f;
  color: #06f;
}

.no-content-placeholder .btn:hover {
  background: #06f;
  color: #fff;
}

.no-content-placeholder p,
.s-products-list-placeholder p {
  font-size: 20px;
  padding: 10px 0;
}
.no-content-placeholder i,
.s-products-list-placeholder span {
  border: 1px solid #0066ff36;
}

.s-social-share-list a:hover {
  color: #06f !important;
}

.content.content--single-page {
  border: 1px solid #ddd;
}

.s-product-card-wishlist-btn:hover .s-button-text .sicon-heart {
  color: white !important;
}

@media(max-width : 1024px) {
.s-product-card-wishlist-btn {
 top: -110px;
 left: 0;
}
}

@media (max-width: 850px) {
  .s-product-card-wishlist-btn {
    top: -107px;
    left: 2px;
  }
}

@media (max-width: 640px) {
  .s-product-card-wishlist-btn {
    top: -135px;
    left: 3px;
  }
}

@media (max-width: 480px) {
  .s-product-card-wishlist-btn {
    top: -135px;
    right: 0;
  }
}

@media (max-width: 480px) {
  .s-product-card-horizontal salla-button.s-product-card-wishlist-btn:where([dir="rtl"], [dir="rtl"] *) {
    right: auto;
  }
}

.s-button-element.s-button-btn.s-button-outline {
background : #06f !important;
color : white !important;
}


body.index > div.app-inner> section.s-block.s-block--banners.container > div.grid {
    grid-template-columns:repeat(4,minmax(0,1fr)) !important;
 }
body.index > div.app-inner> section.s-block.s-block--banners.container > div.grid a {
 background:transparent !important;
 
}
body.index > div.app-inner> section.s-block.s-block--banners.container > div.grid a:nth-child(1){
 grid-area:1/1/1/1 !important;
}

body.index .s-products-slider-wrapper div.s-slider-block__title>div.s-slider-block__title-right>h2 ,
body.index .s-block__title h2{
    position: relative;
    padding-left: 0!important;
    margin-bottom: 1rem;
    font-size:20px;
    color: #0066ff;
}



body.index .s-products-slider-wrapper .s-slider-block__title ,body.index .s-block__title {
    flex-direction: column;
    
}


body.index .s-slider-block__title-left {
    display: none;
}