
/* Rudro CSS */
.mobileNavContainer{
  position: fixed;
  inset: 0;
  top: 0;
  left: 0;
  animation: slideFromRight .3s ease-in;
}

.ellipsisOne {
  width: 250px;         
  white-space: nowrap;   
  overflow: hidden;      
  text-overflow: ellipsis;
  display: inline-block;  
}

.dwebLoader {
  position: fixed;
  inset: 0;          
  
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgb(255, 255, 255); 
  z-index: 999999;   
}



@keyframes slideFromRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}



.cardCategoryImg{
  transform: scale(1);
  transition: transform .5s;
}
.cardCategory:hover .cardCategoryImg{
  transform: scale(1.06);
}
.authorProductPage{
  transition: .5s ease;
}
.authorProductPage img{
  border: 3px solid #17c653;
}
.authorProductPage:hover{
  transform: scale(1.05);
  border: 1px solid #17c653;
}
.lightRedColor{
  background-color: #fee5db;
}

.alwaysSquare {
  display: block;          
  width: 100%;               
  aspect-ratio: 1 / 1;       
  position: relative;        
  overflow: hidden;          
  box-sizing: border-box;
}
.stickey{
  position: sticky;
}

.self-end{
  align-self: end;
}

.top-minusRead{
  top: -18px;
}









/***** Large Device Header Section *****/
/* .lg_header {
  position: fixed;
  left: 50%;
  top: 50px;
  transform: translate(-50%, -50%);
  transition: all 0.25s ease-in-out;
  z-index: 100;
  font-family: "Barlow", serif;
}

.lg_header[data-status="scrolled"] {
  top: 0;
  transform: translate(-50%, 0);
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-image: url("/assets/header-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0 40px;
}

.header .logo {
  height: 36px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
}

.menu li {
  position: relative;
}

.menu li a {
  padding: 7px 16px;
  border-radius: 3px;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  display: block;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.menu li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 0;
  width: 100%;
  border-radius: 3px;
  background: linear-gradient(to right, #0f7404, #5cb917);
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  transition: all 0.3s;
}

.menu li a:hover::before {
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.menu li a.active {
  background: linear-gradient(to right, #0f7404, #5cb917);
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #03262c;
  min-width: 150px;
  border-radius: 3px;
  padding: 8px 0;
}

.submenu li {
  width: 100%;
}

.submenu li a {
  border-radius: 0;
}

.menu .dropdown:hover .submenu {
  display: block;
} */

/***** Small Device Header Section *****/
/* .sm_header_top {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  box-shadow: 1px 1px 2px #6c6c6cb3;
}

.sm_header_top .search_input {
  border-radius: 50px;
  padding-inline: 36px;
  border: 1px solid #03262c;
}

.sm_header_top .search_input:focus {
  border: 1px solid #6c6c6cb3;
}

.sm_header_top .search_field {
  position: relative;
}

.sm_header_top .search_icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
}

.sm_header_top .filter_icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 30px;
  width: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 30px;
  border-left: 1px solid #6c6c6cb3;
}

.sm_header_bottom {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  box-shadow: 0px 1px 4px 1px #6c6c6cb3;
  padding: 2px;
}

.sm_header_bottom a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: #fff;
  cursor: pointer;
}

.sm_header_bottom a span {
  font-size: 9px;
  font-weight: 100;
}

.sm_header_bottom a.active {
  transform: translateY(-12px);
  background: #fff;
  color: #03262c;
  font-size: 18px;
  border: 3px solid #03262c;
}

.sm_header_bottom a.active span {
  display: none;
}


@media only screen and (max-width: 768px) {
  .lg_header {
    display: none;
  }

  .sm_header_top,
  .sm_header_bottom {
    display: block;
    background-color: #03262c;
  }
} */


/* Filter toggle button */
/* .filter-toggle-btn {
  display: none;
  padding: 10px 16px;
  background: #0b4ea2;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
} */

/* Overlay */
.filter-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
}

/* Sidebar transition */
.leftSectionProduct {
  transition: transform 0.35s ease;
}

/* Tablet & Mobile */
@media (max-width: 1080px) {

  .filter-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .leftSectionProduct {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 320px;
    max-width: 90%;
    background: #fff;
    z-index: 1000;
    overflow-y: auto;
    transform: translateX(-100%);
    padding-bottom: 40px;
  }

  .leftSectionProduct.active {
    transform: translateX(0);
  }

  .filter-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }
}