  /* when search is open */
  .search-open #floatingSearch {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  button{
    cursor: pointer;
  }

  /* small slide animation */
  #floatingSearch {
    transform: translateY(-10px);
  }

footer .social a.facebook i {
    background: radial-gradient(67.25% 67.25% at 50% 50%, rgba(255, 255, 255, 0.5) 0%, rgba(0, 148, 255, 0.5) 100%);
}
footer .social a.instagram i {
    background: radial-gradient(50% 50% at 50% 50%, rgba(250, 255, 0, 0.5) 0%, rgba(253, 255, 163, 0.5) 0.01%, rgba(199, 203, 0, 0.5) 100%);
}
footer .social a.youtube i {
    background: radial-gradient(63.37% 63.37% at 50% 50%, rgba(255, 255, 255, 0.3) 0%, rgba(161, 67, 255, 0.3) 100%);
}
footer .social a.tiktok i {
    background: radial-gradient(73.64% 73.64% at 50% 50%, rgba(180, 255, 200, 0.5) 0%, rgba(0, 166, 45, 0.5) 100%);
}
footer .social a.printrest i {
    background: radial-gradient(63.37% 63.37% at 50% 50%, rgba(255, 255, 255, 0.3) 0%, rgb(255 67 67 / 30%) 100%);
}
footer .social a i {
    color: #616161;
}
footer .social a i {
    color: #616161;
    padding: 5px;
    border-radius: 50%;
    height: 45px;
    width: 45px;
    min-width: 45px;
    text-align: center;
    line-height: 25px; 
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}
/* ===============================
   DEFAULT STATE (TOP)
================================ */

/* center search visible */
#mainSearchBar {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* right icons visible */
#rightIcons {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;

}

/* sticky search hidden */
#stickySearchIcon {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: none;
  position: relative;
    z-index: 60;

}

#bottomMenu {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}



/* ===============================
   SCROLLED STATE
================================ */

/* hide center search */
header.scrolled #mainSearchBar {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.95);
}

/* hide right icons */
header.scrolled #rightIcons {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.95);
  display: none;
}

/* show sticky search in SAME right position */
header.scrolled #stickySearchIcon {
  opacity: 1;
  pointer-events: auto;
  transform: scale(0.95);
  display: flex;
  
}


header.scrolled #bottomMenu {
  position: absolute;
  top: 50%;
  z-index: 1;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  border-top: none;
  margin: 0;
  opacity: 1;
  pointer-events: auto;
}




/* ===============================
   MOBILE SIDEBAR DEFAULT
================================ */
#mobilemenu {
  display: none;
}

/* ===============================
   SIDEBAR OPEN (MOBILE)
================================ */
#mobilemenu.sidebar {
  display: flex;
  flex-direction: column;

  position: fixed;
  top: 0;
  left: 0;

  width: 280px;
  height: 100vh;

  background: #ffffff;
  padding: 16px;
  overflow: auto;
  z-index: 60;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}

/* Close button wrapper */
#mobilemenu .sidebar-close {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}

/* ===============================
   DESKTOP RESET (DO NOT TOUCH)
================================ */

@media (min-width: 1024px) {
  #mobilemenu {
    display: flex !important;
    position: static;
    flex-direction: row;
    width: auto;
    height: auto;
    box-shadow: none;
    background: transparent;
  }

  #mobilemenu .sidebar-close {
    display: none;
  }

   
}


@media (max-width: 1023px) {

  /* keep center search visible */
  header.scrolled #mainSearchBar {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  /* keep right icons visible */
  header.scrolled #rightIcons {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: flex;
  }

  /* NEVER show sticky search on mobile */
  header.scrolled #stickySearchIcon {
    display: none;
    opacity: 0;
    pointer-events: none;
  }

  /* keep bottom menu in normal flow */
  header.scrolled #bottomMenu {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: auto;  
  }


    .category_section .category_text {
        height: 95px;
        width: 95px;
        margin: auto;
        background: #D4ACFF;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        padding: 5px;
        background: radial-gradient(61.82% 61.82% at 50% 50%, #FFFFFF 0%, #FFBC2F 100%);
        border: 5px solid #fff;
        box-shadow: 0px 0px 25.7px 0px #00000026;
    }

   .mobile-dropdown:hover .submenu {
    opacity: 0;
    visibility: hidden;
  }

  /* mobile submenu base */
  .mobile-dropdown .submenu {
    position: relative;
    transform: none;
    width: 100%;

    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;

    box-shadow: none;
    border-radius: 12px;
    transition: max-height 0.3s ease, opacity 0.2s ease;
  }

  /* open state (on click) */
  .mobile-dropdown.open .submenu {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
  }

  
}

.custom-radio {
    color: #252C32;
    font-weight: 600;
}
.custom-radio {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    cursor: pointer;
}

.custom-radio input[type="radio"] {
    display: none;
}






.second_section .category-swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    z-index: 1;
    justify-content: center;
}




.category_section .swiper-slide {
    cursor: pointer;
}


.second_section .category-swiper .slider_box {
    position: relative;
    margin: 15px;
}

.second_section .category-swiper .category_text {
    height: 280px;
    width: 280px;
    margin: auto;
    background: #D4ACFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 15px;
    background: radial-gradient(61.82% 61.82% at 50% 50%, #FFFFFF 0%, #FFBC2F 100%);
    border: 5px solid #fff;
    box-shadow: 0px 0px 25.7px 0px #00000026;
}


.slider_box p {
    text-align: center;
    padding-top: 40px;
    color: #383838;
    font-size: 18px;
    font-weight: 700;
}


.second_section .category-swiper .slider_box .category_text img {
    width: 235px;
}


.partners_section .partners-swiper {
    padding-top: 60px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    padding-bottom: 50px;
}
 

.partners_section .partner_pic {
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrival_section .prev_next_div, .partners_section .prev_next_div {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.main_sidebar_box {
    background: #fff;
    border-left: 1px solid #EEEEEE;
    height: 100%;
    overflow: auto;
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 99999;
    display: none;
}
.main_sidebar_box.active {
    display: block;
}
.sidebar_opened {
    overflow: hidden;
}
.sidebar_opened::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-color: #000000b0;
    z-index: 9999;
}

.color_radios:checked + label {
    border-color: #ff2056; 
}
.thumbSwiper .swiper-slide-thumb-active .thumb-img{
  border-color: #ffa1ad;
}


.payment-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pay-option {
  cursor: pointer;
  display: block;
}

/* hide native radio */
.pay-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* default box */
.pay-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  border: 2px solid #f1f5f9; /* slate-100 */
  transition: all 0.2s ease;
  background: #fff;
}

/* hover */
.pay-option:hover .pay-box {
  border-color: #e2e8f0; /* slate-200 */
}

/* custom radio circle */
.pay-radio {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 2px solid #cbd5e1; /* slate-300 */
  transition: all 0.2s ease;
  background: #fff;
  box-sizing: border-box;
}

/* checked state: border + bg */
.pay-option input[type="radio"]:checked + .pay-box {
  border-color: #f43f5e;        /* rose-500 */
  background: #fff1f2;          /* rose-50 */
}

/* checked state: radio ring thicker + rose */
.pay-option input[type="radio"]:checked + .pay-box .pay-radio {
  border-color: #f43f5e;        /* rose-500 */
  border-width: 6px;
}

/* text styles */
.pay-title {
  font-weight: 800;
  color: #0f172a; /* slate-900 */
}

/* tabby content */
.pay-content {
  flex: 1;
}

.pay-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pay-badge {
  background: #3cf281;
  color: #0f172a;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pay-sub {
  margin: 4px 0 0;
  font-size: 12px;
  font-weight: 700;
  color: #94a3b8; /* slate-400 */
}
.validate-has-error{  
    position: absolute;
    left: 0;
    bottom: -8px;
    font-size: 14px;
    color: #f43f5e;
    font-weight: 400;
}
/* optional focus */
.pay-option input[type="radio"]:focus-visible + .pay-box {
  outline: 2px solid #f43f5e;
  outline-offset: 2px;
}


@media (max-width: 768px) {
   .slider_box p {
        font-size: 12px;
        padding-top: 16px;
    }
}

.filter-dropdown .submenu{
    position: relative;
    transform: none;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    box-shadow: none;
    border-radius: 12px;
    transition: max-height 0.3s ease, opacity 0.2s ease;
}



.filter-dropdown.mobile-dropdown.open .submenu {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
}


.icon-aed {
  width: 1em;
  height: 1em;
  display: inline-block;
  background-color: currentColor;

  mask-image: url("../images/aed.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;

  -webkit-mask-image: url("../images/aed.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

 
footer  .social a i {
  /* background: radial-gradient(67.25% 67.25% at 50% 50%, rgba(255, 255, 255, 0.5) 0%, rgba(0, 148, 255, 0.5) 100%);
    color: #616161; */
    padding: 5px;
    border-radius: 6px;
    height: 45px;
    width: 45px;
    text-align: center;
    line-height: 25px; 
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}


