/* ================================
   Global custom styles start here
   ================================ */


/* 1) Hide the burger (mobile) menu button
working
*/
a[aria-label="Open-menu"] {
    display: none;
}


/* 2) Hide the search icon in the header
working
*/
.header-btn__icon.icon.sicon-search {
    display: none;
}


/* 3) Try to change background color of specific products by ID
working
*/
#product-670278866,
#product-430130532 {
    background-color: #ddba83;
    border-block: blue;
  
}

/* show the prodcut name in black
working
*/
.product-card__title a {
  color: #000;            /* Ensure the link text is black */
  text-decoration: none;  /* Optional: Remove underline for links */
}

 
/* Style product card prices (black price)
working
*/
.product-card__price h2,
.product-card__price h4,
.product-card__price .before-price {
  font-size: 1.2rem; /* Adjust the price text size */
  color: #000;       /* Black font color */
}

/* Make the "Add to cart" button inside this specific product 
   have a black background and white text */
#product-670278866 salla-add-product-button salla-button button {
    background-color: #000 !important;
    color: #fff !important;
    border-color: #000 !important;
}
/* Make the "Add to cart" button inside this specific product 
   have a black background and white text */
#product-670278866 salla-add-product-button salla-button button {
    background-color: #000 !important;
    color: #fff !important;
    border-color: #000 !important;
}

/* Hide the first title/div block inside the special-product section */
.special-product .s-block__title {
    display: none !important;
}
.swiper-pagination {
    display: none !important;
}


h1.font-bold.text-2xl.mb-6 {
color: #ddba83 !important;
}