/* ============================= */
/* MAIN MENU UNDERLINE EFFECT   */
/* ============================= */
ul.main-menu > li:not(:has(.sub-menu)) > a {
  position: relative;
  text-decoration: none;
}
ul.main-menu > li:not(:has(.sub-menu)) > a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: black;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
ul.main-menu > li:not(:has(.sub-menu)):hover > a::after {
  width: 100%;
}
/* ============================= */
/* HEADINGS AND TABS             */
/* ============================= */
h3.text-lg.font-bold.leading-12 {
  font-size: 30px !important;
  font-weight: bold !important;
  line-height: 1.8 !important;
}
.navbar-brand {
  display: block;
  margin: 0 auto;
  text-align: center;
}
button.tab-trigger{
  background-color: #9c503b !important; 
  color: white !important;             
  font-size: 18px !important;          
  padding: 12px 32px !important;       
  border-radius: 99px !important;       
  float: none !important;             
  display: block !important;            
  width: 100% !important;              
  box-sizing: border-box !important;   
  margin: 0 auto !important;            
}
/* ============================= */
/* PURCHASE NOW BUTTON  */
/* ============================= */
salla-mini-checkout-widget:hover {
  filter: brightness(95%);
  transition: filter 0.3s ease;
}
salla-mini-checkout-widget:hover svg {
  animation: wiggle 0.4s ease;
}
salla-mini-checkout-widget:active {
  animation: pulseClick 0.25s ease;
}
/* ============================= */
/* ADD TO CART BUTTON */
/* ============================= */
salla-button button:active {
  animation: pulseClick 0.25s ease;
}
/* ============================= */
/* CARD ADD TO CART BUTTON      */
/* ============================= */
salla-add-product-button i.sicon-shopping-bag {
  display: inline-block;
}
salla-add-product-button:hover i.sicon-shopping-bag {
  animation: wiggle 0.4s ease;
}
salla-add-product-button:active button {
  animation: pulseClick 0.25s ease;
}
/* ============================= */
/* NOTE BUTTON                   */
/* ============================= */
button.btn-tab.btn--collapse i.sicon-chat-conversation-alt {
  display: inline-block;
}
button.btn-tab.btn--collapse:hover i.sicon-chat-conversation-alt {
  animation: wiggle 0.4s ease;
}
button.btn-tab.btn--collapse:active {
  animation: pulseClick 0.25s ease;
}
/* ============================= */
/* ANIMATIONS                    */
/* ============================= */
@keyframes wiggle {
  0% { transform: translateX(0); }
  25% { transform: translateX(-2px); }
  50% { transform: translateX(2px); }
  75% { transform: translateX(-1px); }
  100% { transform: translateX(0); }
}
@keyframes pulseClick {
  0% { transform: scale(1); }
  50% { transform: scale(0.95); }
  100% { transform: scale(1); }
}
/* ============================= */
/* PRODUCT SLIDER CARD          */
/* ============================= */
.s-products-slider-card {
  transition: transform 0.3s ease-in-out;
  position: relative;}
.s-products-slider-card:hover {
  transform: scale(1.05);
  z-index: 10;
}
.s-slider-container,
.s-slider-section,
.swiper,
.swiper-wrapper,
.swiper-slide{
    overflow: visible !important;
}
custom-salla-product-card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  cursor: pointer;
}
custom-salla-product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.s-product-card-image,
.s-product-card-content {
  width: 100%;
  display: block;
}