.remove-cart-button i {
  color: #4cc9e0 !important;
  transition: color 0.3s ease;
}

.remove-cart-button:hover i {
  color: #38b9ce !important; /* optional: slightly darker shade on hover */
}









.ps-product--detail .ps-product__thumbnail img {
  max-height: 500px !important;
  width: 100%;
  height: auto;
  object-fit: contain !important;
  display: block;
  margin: 0 auto;
}

.ps-product--detail .ps-product__thumbnail,
.ps-product--detail .bb-product-gallery-images {
  max-height: 500px !important;
  overflow: hidden;
}




.sell-on-marketplace-link {
  visibility: hidden !important;
}


.ps-top-categories.mt-40.mb-40 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.icon-eye,
.icon-heart,
.icon-bag2 {
  color: #666666 !important;
}


.ps-product-list.mb-60 {
  margin-bottom: 0 !important;
}


.ps-page__right {
    display: none !important;
}
.ps-page__left,
.ps-page__right,
.ps-product--detail.ps-product--fullwidth {
    max-width: none !important;
    width: 100% !important;
}



.ps-product .ps-product__actions li a {
    align-items: center;
    border-radius: 50%;
    display: flex
;
    height: 34px;
    justify-content: center;
    width: 34px;
    background-color: #4cc9e0;
}


[class*=" icon-"], [class^=icon-] {
  color: #fff;}









.ps-product .ps-product__price.sale {
    color: #4cc9e0;
}

.ps-product .ps-product__badge {
    background-color: #E0634C;
}

/* Remove shadow from product card */
.ps-product {
  box-shadow: none !important;
}

/* Remove shadow from product thumbnail and image */
.ps-product__thumbnail,
.ps-product__thumbnail img,
.owl-item a img {
  box-shadow: none !important;
}










/* Center image vertically (and horizontally) inside  */
.ps-product__thumbnail > a {
  display: flex;
  align-items: center;     /* vertical centering */
  justify-content: center; /* horizontal centering */
  height: 100%;            /* fill parent container */
  margin: 0;
  padding: 0;
}

.ps-product__thumbnail > a {
  display: flex;
  width: 100%;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.ps-product__thumbnail > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* makes the image fill container without distortion */
  display: block;
}

/* Make sure the image scales nicely */
.ps-product__thumbnail > a > img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;  /* keep aspect ratio */
  display: block;
}




/* Center product image inside thumbnail */
.ps-product__thumbnail {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}




/* Make sure image doesn't stretch or overflow */
.ps-product__thumbnail a img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* keeps image proportion correct */
  display: block;
}



/* Disable transform on hover for product cards */
.ps-product:hover,
.ps-product__thumbnail:hover,
.ps-product__thumbnail a:hover img {
  transform: none !important;
}



/* Also cancel transitions if they were applied */
.ps-product,
.ps-product__thumbnail,
.ps-product__thumbnail a img {
  transition: none !important;
}




/* Default product style */
.ps-product {
  border: 1px solid transparent;
  transition: border-color 0.3s ease;
  border-radius: 6px; /* optional for smoother look */
}

/* On hover — show colored border */
.ps-product:hover {
  border-color: #4cc9e0 !important;
}






/* Make product image cover the entire thumbnail container */
.ps-product__thumbnail {
  position: relative;
  overflow: hidden; /* ensures image doesn’t overflow the div */
}













/* 1) Add a 10px gap between product cards (5px on each side) */
.ps-carousel--nav.owl-carousel .owl-item {
  padding-inline: 5px; /* works LTR & RTL */
}
.ps-carousel--nav.owl-carousel .owl-stage {
  margin-inline: -5px; /* keeps first/last items aligned with container */
}

/* Remove horizontal padding from product image link */
.ps-product__thumbnail > a {
  padding-left: 0 !important;
  padding-right: 0 !important;
  display: flex;
}


.ps-product {
    padding: 0;
  
}

/* Remove all padding and margin from the product image link */
.ps-product__thumbnail > a {
  padding: 0 !important;
  margin: 0 !important;
  display: block;
}

/* Ensure image itself has no margin or padding either */
.ps-product__thumbnail > a > img {
  margin: 0 !important;
  padding: 0 !important;
  display: block;
}


.ps-product .ps-product__container {
    padding-left: 10px;
  padding-right: 10px;
}

.owl-item .a {
    padding: 0;
  	margin: 0;
    border: 0;
    border-radius: 0;
}

/* Remove borders and rounding from all links inside Owl items */
.ps-carousel--nav.owl-carousel .owl-item a {
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important; /* in case theme adds shadows */
  display: flex;
}

/* Also ensure images inside those links aren’t rounded */
.ps-carousel--nav.owl-carousel .owl-item a img {
  border-radius: 0 !important;
}



/* 2) Remove padding from the anchor that wraps the product image */
.ps-product__thumbnail > a {
  padding: 0 !important;
  display: block; /* keeps image clickable without layout shifts */
}

/* (Optional) Ensure images fill the anchor neatly */
.ps-product__thumbnail > a > img {
  width: 100%;
  height: auto;
  display: block;
}








#homepage-1 .ps-deal-of-day .ps-product .ps-product__price {
    font-size: 16px;
    font-weight: 500;
}

.ps-product .ps-product__title {
    margin-bottom: 25;
  padding: 0;
}

.ps-product__progress-bar.ps-progress {
    display: none !important;
}


/* Add inner padding to product cards */
.ps-product.ps-product--inner {
  padding: 14px;
  box-sizing: border-box;
}
/* Change sale price color */
#homepage-1 .ps-deal-of-day .ps-product .ps-product__price {
    color: #4cc9e0;
}
/* Add border on hover */
.ps-product.ps-product--inner:hover {
  border: 1px solid #4cc9e0;
  transition: border 0.3s ease;
}
/* Make product actions background transparent */
.ps-product .ps-product__actions {
  background-color: transparent !important;
}



















.menu__content,
.menu__content a,
.menu__content h4,
.menu__content span,
.menu__content li {
    color: #000 !important;
}

.menu__content a:hover {
    color: #000 !important;
}










.ps-carousel--nav .ps-product {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}


.header__center .ps-form--quick-search {
  border: 1px solid #666666;
  border-radius: 10px; /* optional for smoother corners */
  padding: 5px;       /* optional spacing inside */
  background: #fff;   /* optional to keep it clean */
}







.ps-deal-of-day .ps-block__right {
    display: inline-block;
    margin-top: 0;
    margin-left: 20px;
    background: #4cc9e0;
    padding: 2px 20px 2px;
    border-radius: 50px;
}

.ps-block__right figure,
.ps-block__right figure * {
  font-size: 15px;
}


.ps-block__left h3 {
  font-weight: 500;
  display: flex;
  align-items: center; /* vertically centers the text */
  justify-content: center; /* optional: centers horizontally too */
  height: 100%; /* ensures vertical centering within the parent */
  margin: 0; /* removes default h3 margin */
}

html[lang="en"] .ps-block__left h3 {
  margin-right: 35px;
}

html[lang="ar"] .ps-block__left h3 {
  margin-left: 35px;
}



.ps-block--countdown-deal figure {
    background-color: #4cc9e0;
}



/* Main navigation left block */
.navigation__left,
.menu--product-categories,
.menu--product-categories .menu__toggle {
  background-color: #4cc9e0 !important;
  color: #ffffff !important;
   padding-left: 5px;
  padding-right: 5px;
}

/* Menu text and icons */
.menu--product-categories .menu__toggle i,
.menu--product-categories .menu__toggle span,
.menu--product-categories a {
  color: #ffffff !important;
}

/* Dropdown (mega-menu) */
.menu--product-categories .menu__content,
.menu--product-categories .mega-menu,
.menu--product-categories .mega-menu__column,
.menu--product-categories .mega-menu__list a {
  background-color: #ffffff !important;
  color: #333333 !important;
  border-radius: 6px;
}

/* Hover states for dropdown links */
.menu--product-categories .mega-menu__list a:hover {
  color: #4cc9e0 !important;
  background-color: rgba(76, 201, 224, 0.1);
}

/* Smooth transitions */
.menu--product-categories a,
.menu--product-categories .menu__toggle {
  transition: all 0.3s ease;
}


















/* Header bars */
.header.header--1,
.header__top,
.navigation,
.navigation .ps-container {
  background-color: #fff !important;
}

/* Category dropdown + mega menu */
.menu--product-categories .menu__content,
.mega-menu,
.mega-menu-wrapper {
  background-color: #fff !important;
}

/* Language dropdown */
.ps-dropdown.language > span,
.ps-dropdown-menu {
  background-color: #fff !important;
}

/* Search form area */
.ps-form--quick-search,
.ps-form--quick-search .form-group--icon,
.ps-panel--search-result {
  background-color: #fff !important;
}








.ck-content {
 /*margin-left: 232.5px;*/
 /* margin-right: 232.5px;*/
  background-color: #f3f5f6;
}


#homepage-1 {
  background-color: #f3f5f6;
}

#homepage-1 #app {
  background-color: #f3f5f6;
}

#homepage-1 .ck-content {
  background-color: #f3f5f6;
}

/* Tablets */
@media (max-width: 1024px) {
  .ck-content {
    margin-left: 80px;
    margin-right: 80px;
  }
}


.ps-block--category {
  background-color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 10px;
  padding: 10px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.ps-block--category:hover {
  border-color: #4cc9e0
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.free-delivery-banner {
    background: #4cc9e0; /* Light background for contrast */
    color: #fff; /* Use your site's primary color */
    text-align: center;
   padding: 5px 10px;
    font-size: 18px;
    font-weight: bold;
    margin: auto;
    width: 100%;
    
  }

  .free-delivery-banner p {
    margin: 0;
    color: #fff; /* Reinforce primary color for paragraph text */
  }

.free-delivery-banner .en { display: none; }
  .free-delivery-banner .ar { display: none; }

  html[lang="en"] .free-delivery-banner .en { display: block; }
  html[lang="ar"] .free-delivery-banner .ar { display: block; }


/* Mobile phones */
@media (max-width: 768px) {
  .ck-content {
    margin-left: 20px;
    margin-right: 20px;
  }
}

/* Very small screens */
@media (max-width: 480px) {
  .ck-content {
    margin-left: 10px;
    margin-right: 10px;
  }
}




/* ========== Layout Grid ========== */
.ps-product-list .ps-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px; /* margin between product cards */
}

/* ========== Product Card ========== */
.ps-product-list .ps-product {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
  min-height: 350px; /* ensures all cards have same height */
}

.ps-product-list .ps-product:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* ========== Image Section ========== */
.ps-product-list .ps-product__thumbnail {
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  height: 200px; /* fixed height for consistency */
}

.ps-product-list .ps-product__thumbnail img {
  max-width: 100%;
  max-height: 160px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.ps-product-list .ps-product:hover .ps-product__thumbnail img {
  transform: scale(1.05);
}

/* ========== Content ========== */
.ps-product-list .ps-product__container {
  flex-grow: 1; /* make content stretch */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ps-product-list .ps-product__title {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 42px;
}

/* ========== Price Area ========== */
.ps-product-list .ps-product__price {
  display: flex;
  flex-direction: column; /* sale price on top, original below */
  align-items: flex-start;
  margin-bottom: 6px;
}

.ps-product-list .price-sale {
  font-size: 19px;
  font-weight: 700;
  color: #000;
}

.ps-product-list .price-original {
  font-size: 15px;
  color: #9ca3af;
  text-decoration: line-through;
}

.ps-product-list .price-save {
  font-size: 15px;
  font-weight: 700;
  color: #16a34a;
  margin: 0;
}

/* ========== Discount Badge ========== */
.ps-product-list .off-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #007bff;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 10px;
}

/* Responsive tweak */
@media (max-width: 600px) {
  .ps-product-list .ps-product__thumbnail {
    height: 160px;
  }
}








.ps-collection picture {
  border-radius: 10px;
  overflow: hidden;
  display: block;
  position: relative;
}

.ps-collection img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease, filter 0.5s ease;
}

/* Hover effect */
.ps-collection:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}


.owl-main-slider .ps-banner picture,
.owl-main-slider .ps-banner img {
  border-radius: 10px;
  overflow: hidden;
  display: block;
}

.owl-main-slider .ps-banner {
  border-radius: 10px;
  overflow: hidden;
}







.owl-item a {
  display: block;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 10px;
  padding: 10px;
  margin: 0 10px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.owl-item a:hover {
  border-color: #4cc9e0
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transform: scale(1.03);
}

.owl-item a img {
  border-radius: 8px;
  width: 100%;
  height: auto;
}


categories .menu__toggle span, .menu--product-categories a {
    color: #000000 !important;
}