@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

img {
  max-width: 100%
}

a {
  text-decoration: none;
}

/* ================= TOP OFFER ================= */
.top-offer {
  background: linear-gradient(90deg, #0200F7, #EA1B25);
  color: #fff;
  padding: 2px 0;
  overflow: hidden;
  font-weight: 500;
}

.top-offer .marquee {
  font-size: 14px;
  font-weight: 400;
}

.marquee {
  white-space: nowrap;
  display: inline-block;
  animation: scrollText 15s linear infinite;
}

@keyframes scrollText {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}


/* ================= HEADER ICONS ================= */
.header-icons a {

  margin-left: 18px;
  cursor: pointer;
}

.custom-navbar .dropdown-toggle::after {
  display: none;
}


.header-icons a svg {
  width: 24px;
  height: 24px;
}

.search_bar input.form-control {
  background: #FFFFFF;

  border-radius: 2px;
  height: 48px;
  font-size: 14px;
  color: #77878F;
  border: 0;
}

.input-group.search_bar {
  box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.08);
}

button.btn.btn-search_main {
  background: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

ul.dropdown-menu.grey-menu {
  display: block;
  /* important */
  opacity: 0;
  visibility: hidden;

  background: #FFFFFF;
  border: 1px solid #E4E7E9;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  width: 200px;

  transform: scaleY(0);
  transform-origin: top;

  transition: transform 0.3s ease, opacity 0.3s ease;
}


li.nav-item.dropdown.hover-dropdown:hover>ul.dropdown-menu.grey-menu {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}

ul.dropdown-menu.grey-menu li a.dropdown-item {
  font-size: 14px;
  color: #5F6C72;
  padding: 10px 15px;
}

.dropdown-item:focus,
.dropdown-item:hover {
  color: #000 !important;
  background-color: #ebebeb;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #000 !important;
  background-color: #ebebeb;
}

.header-icons {
  display: flex;
  align-items: center;
  justify-content: end;
}

.header-icons .dropdown-toggle::after {
  display: none;
}

.dropdown-menu.mega-menu {
  left: unset;
  right: unset;
  background: #FFFFFF;
  border: 1px solid #E4E7E9;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.3);
  border-radius: 3px;
}

.dropdown-menu.mega-menu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 4%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid white;
}

/* Dropdown styling */
.custom-dropdown {
  min-width: 260px;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
}

.custom-dropdown .dropdown-item {
  padding: 10px 15px;
  font-size: 14px;
  color: #6c757d;
  margin-left: 0;
}

ul.dropdown-menu.custom-dropdown {
  min-width: 190px;
  left: -66px !important;
  top: 7px !important;
  overflow: unset;
  border: 0;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.3);
}

/* Arrow */
.custom-dropdown::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid white;
}

ul.dropdown-menu.grey-menu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 12%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid white;

}

.custom-dropdown .dropdown-item.active {
  background-color: #e9ecef;
  color: #000;
  font-weight: 500;
}

.custom-dropdown .dropdown-item:hover {
  background-color: #f8f9fa;
}

.cart-badge {
  font-size: 10px;
  position: absolute;
  top: -10px;
  right: -6px;
  background: #BC437F;
  width: 22px;
  height: 22px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
}

/* ================= NAVBAR ================= */
.custom-navbar {
  background: linear-gradient(90deg, #EA1B25, #0200F7);
  padding: 0;
}

ul.navbar-nav {
  justify-content: space-between;
  width: 100%;
}

.custom-navbar .nav-link {
  color: #fff !important;
  font-weight: 500;
  padding: 12px 14px;
  font-size: 14px;
}

/* ================= MEGA MENU ================= */
.mega-menu {
  width: 100%;
  left: 0;
  right: 0;
  border-radius: 0;
}

.mega-menu h6 {
  font-weight: 600;
  margin-bottom: 12px;
}

.mega-menu a {
  display: block;
  padding: 5px 0;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.mega-menu a:hover {
  color: #ff0033;
}

/* ================= ABOUT HOVER ================= */
.hover-dropdown:hover .dropdown-menu {
  display: block;
}

.grey-menu {
  background: #f2f2f2;
  border: none;
}

/* ================= OFFCANVAS ================= */
.offcanvas {
  width: 280px;
}

.offcanvas .nav-link {
  font-weight: 500;
}

.offcanvas .collapse .nav-link {
  font-size: 14px;
  padding-left: 15px;
}

.nav-link[aria-expanded="true"] i {
  transform: rotate(180deg);
  transition: 0.3s;
}

.nav-link[aria-expanded="true"] i {
  transform: rotate(180deg);
  transition: 0.3s ease;
}


.hero-section {
  padding: 10px 0;
}

.slider-box {
  background: #fff;
  border-radius: 6px;
  padding: 0px;
  overflow: hidden;
  max-height: 514px;

}

.hero-section .col-lg-8 {
  padding-right: 5px;
}

.hero-section .col-lg-4 {
  padding-right: 5px;
}


.hero-section .carousel-indicators {
  position: absolute;
  right: unset;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 0;
  margin-bottom: 1rem;
  margin-left: 3%;
}

.tagline {
  color: #4c3cff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 38px;
  font-weight: 700;
  margin: 15px 0;
}

.hero-desc {
  color: #777;
  margin-bottom: 25px;
}

.shop-btn {
  background: linear-gradient(90deg, #4c3cff, #ff3c3c);
  color: #fff;
  padding: 10px 25px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
}



.right-card {
  background: #fff;
  border-radius: 6px;
}

.right-card img {
  width: 100%;
  border-radius: 6px;
}

.carousel-indicators [data-bs-target] {
  background-color: #000;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

@media(max-width:991px) {
  .hero-title {
    font-size: 28px;
  }
}

.hero_bottom .owl-carousel .item {
  border-radius: 15px;
  overflow: hidden;
}

.hero_bottom .owl-carousel .item img {
  width: 100%;
  max-height: 126px;
  object-fit: cover;
  border-radius: 10px;
}

/* Arrow Styling */
.owl-nav button {
  position: absolute;
  top: 35%;
  background: linear-gradient(270deg, #0400F6 0%, #E91B26 100%) !important;
  color: #fff !important;
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  font-size: 20px !important;
}

.owl-nav .owl-prev {
  left: -20px;
}

.owl-nav .owl-next {
  right: -20px;
}


.hero_bottom {
  padding: 10px 0;
}

/* Left arrow rotate */
.owl-prev svg {
  transform: rotate(180deg);
}


.section-title {
  font-size: 24px;
  font-weight: 600;
  background: linear-gradient(270deg, #0400F6 0%, #E91B26 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.browse-btn {
  color: #3F36EE;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}

.browse-btn svg {
  margin-left: 5px;
  width: 18px;
  margin-top: -1px;
}

.product-card {
  background: #FFFFFF;
  border: 1px solid #E4E7E9;
  border-radius: 10px;
  transition: 0.3s;
  padding: 12px;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-img {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #F2F2F2;
  padding: 12px;
}

.product-img img {
  width: auto !important;
  transition: opacity 0.4s ease;
  border-radius: 8px;
  max-width: 100% !important;
  max-height: 280px;
  margin: 0 auto;
}

.discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(270deg, #0400F6 0%, #E91B26 100%);
  border-radius: 3px;
  color: #fff;
  font-size: 12px;
  padding: 4px 12px;
  z-index: 2;
}

.hover-icons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 10px;
  opacity: 0;
  transition: 0.3s;
  z-index: 2;
}

.hover-icons a {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.hover-icons a:hover {
  background: linear-gradient(270deg, #0400F6 0%, #E91B26 100%);
}

.hover-icons a:hover svg path {
  stroke: #fff;
}

.product-img:hover .hover-icons {
  opacity: 1;
}

.rating {
  color: #ff9800;
  font-size: 14px;
}

.language {
  background: linear-gradient(270deg, #0200F7 0%, #EA1B25 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 0;
}

.price del {
  color: #929FA5;
  margin-right: 6px;
  font-size: 15px;
}

.price span {
  background: linear-gradient(270deg, #0200F7 0%, #EA1B25 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  font-size: 15px;
}

.bg-light_sec {
  background: #F2F4F5;
}

.rating_view {
  justify-content: space-between;
  align-items: center;
}

.product_cont {
  padding: 12px 0 0;
}

.rating i.fa-star {
  font-size: 13px;
}

.text-light-h {
  color: #77878F;
  font-size: 13px;
}

.eye_icon i.fa-regular.fa-eye {
  font-size: 14px;
  color: #000;
}

h6.hadding_pro {
  font-size: 16px;
  color: #000;
  margin: 10px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 38px;
}

.price_pro {
  align-items: center;
  justify-content: space-between;
}


.item {
  padding: 10px 0;
}


.product-card-cat {
  border: 1px solid #E4E7E9;
  border-radius: 4px;
  padding: 24px 15px;
  text-align: center;
  transition: 0.3s;
}

.product_cat_img img {
  width: 80px !important;
  margin: 0 auto 15px;
  height: 80px;
  max-height: 80px;
}

.product-card-cat a p {
  font-size: 15px;
  color: #191C1F;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 44px;
  margin-bottom: 0;
}

.product-card-cat:hover {
  box-shadow: 0 3px 10px rgba(136, 140, 161, .16);
  background: #fff1f2;
}


.card-time {
  text-align: center;
  height: 100%;
  background: #E7DCF0;
  border-radius: 4px;
}

.card-time img {

  margin-bottom: 40px;
}

.card-time .title {
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-size: 14px;
}

.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.time-box {
  background: #fff;
  padding: 10px 12px;
  border-radius: 3px;
  font-weight: bold;
  font-size: 14px;
  min-width: 40px;
}

.card-time .label {
  font-size: 13px;
  margin: 0 3px;
}

.bg-light_gr {
  background: linear-gradient(107.22deg, rgba(222, 221, 250, 0.5) -0.01%, rgba(240, 217, 218, 0.5) 98.91%);
}

.product_slider-3 .product-img {
  background: transparent;
  padding: 0;
  text-align: center;

}

.product_slider-3 .product-img img {
  max-height: 220px;
  margin: 0 auto 10px;
}


.product_slider-3 .item {
  padding-bottom: 0;
}

.class_tab .nav.nav-tabs {
  border-bottom: 0;
}

.class_tab .nav.nav-tabs .nav-link {
  color: #5F6C72;
  font-size: 14px;
  padding: 4px 8px;
  border: 0;
}

.class_tab .nav.nav-tabs .nav-link.active {
  background: transparent;
  border: 0;
  border-bottom: 2px solid #EE4851;
  color: #EE4851;
  font-weight: 600;
}

.class_tab .nav.nav-tabs .nav-link:hover {
  color: #EE4851;

}

.tabing_ha .section-title {
  margin-bottom: 0;
}


.hover_eff_prod .product-card,
.hover_eff_prod .product-img {
  padding: 0;
  border: 0;
  position: relative;
  max-height: 390px;
}

.hover_eff_prod .product-img img {
  width: 100% !important;
  transition: opacity 0.4s ease;
  border-radius: 0;
  max-width: 100% !important;
  max-height: unset;
  margin: 0 auto;
}

.hover_eff_prod .product_cont {
  position: absolute;
  bottom: 0;
  padding: 15px;
  transition: .3s ease-in-out;
  opacity: 0;
  width: 100%;
}

.hover_eff_prod .product-card:hover::after {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  background: linear-gradient(181.6deg, rgba(0, 0, 0, 0.2) 1.36%, #000000 79.38%);
  border-radius: 10px;
}

.hover_eff_prod .product-card:hover .product_cont {
  opacity: 1;
  z-index: 2;
}

.hover_eff_prod .eye_icon i.fa-regular.fa-eye,
.hover_eff_prod h6.hadding_pro {

  color: #ffffff;
}

.bg-light_lg {
  background: linear-gradient(107.22deg, rgba(222, 221, 250, 0.5) -0.01%, rgba(240, 217, 218, 0.5) 98.91%);
}

.bg-light_lg .product-card-cat {
  width: 150px;
  background: #fff;
  padding: 15px 15px;
}

.bg-light_lg .product-card-cat a p {
  font-size: 16px;
  color: #191C1F;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 22px;
  margin-bottom: 0;
  font-weight: 500;
}

.bg-light_lg .product_cat_img img {
  width: 64px !important;
  margin: 0 auto 15px;
  height: 64px;
  max-height: 64px;
}

.product-card-auth {
  background: #FAFAFA;
  border: 1px solid #F1F1F1;
  border-radius: 10px;
  padding: 5px;
  width: 180px;
  height: 172px;
  position: relative;
}

.product-card-auth img {
  border-radius: 10px;
}

.auth_name {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 6px;
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  text-align: center;
  height: 30px;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding: 4px;
  text-transform: capitalize;
  font-size: 14px;
}

.reg_lan_bg {
  background: url(../images/bg_color.jpg) no-repeat top center;
  background-size: cover;
}

.publish_it {
  border: 1px solid #E4E7E9;
  border-radius: 5px;
  padding: 10px;
  width: 175px;
  text-align: center;
}

.publish_it {
  width: unset !important;
}

.authors_slider_bg {
  background: url(../images/authors_bg.jpg)no-repeat top center;
  background-size: cover;
  padding: 40px 0 !important;
}

.authors_card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
}

.auther_hedding {
  gap: 20px;
}

.auther_img_icon img {
  width: 48px;
}

.auther_name h5 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 0;

}

.auther_name p {
  font-size: 13px;
  color: #777777;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;

}

.contant_te p {
  font-size: 16px;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 96px;
}

.authors_slider_bg .section-title {
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  color: #fff;
  background: transparent;
}

.authors_slider_bg .browse-btn {
  color: #ffffff;
}

.authors_slider_bg .browse-btn svg path {
  stroke: #fff;

}

.cust_card {
  background: #fff;
  padding: 16px 12px;
  width: 130px;
  border-radius: 5px;
  text-align: center;
}

.cust_card img {
  width: unset !important;
  margin: 0 auto;
}

.form-check-input:checked {
  background-color: #E91B26;
  border-color: #E91B26;
}

.choose_right .form-check-input {
  --bs-form-check-bg: #DCE0E7;
  width: 40px !important;
  height: 20px;
  border-radius: 50px !important;
}

.choose_right.d-flex {
  align-items: center;
  gap: 15px;
}

span.text_tongal {
  font-size: 13px;
  font-weight: 600;
  color: #000;
}

span.text_sm_l {
  font-size: 13px;
  color: #3F36EE;
  font-weight: 500;
}

.chose_p_c {
  background: #E1E1E1;
  border-radius: 20px;
  padding: 1px;
}

.main_p {
  text-align: center;
  font-size: 15px;
  color: #000;
  font-weight: 600;
  padding: 5px;
}

.chose_p_inner {
  background: #fff;
  border-radius: 20px;
  padding: 15px 15px 10px;
}

.choose_ben {
  background: #F5F5F5;
  padding: 10px;
  border-radius: 10px;
}

.choose_ben ul {
  padding-left: 0;
}

.choose_ben ul li {
  list-style: none;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #191A15;
  font-size: 14px;
}

.choose_ben ul li img {
  width: 20px;
  height: 20px;
}

a.btn.btn_ch {
  background: linear-gradient(270deg, #0400F6 0%, #E91B26 100%);
  width: 100%;
  color: #fff;
  border: 0;
  padding: 10px;
  font-size: 15px;
  font-weight: 600;
}

.choose_top h3 {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 4px;
}

.choose_top p {
  font-size: 14px;
  color: #000;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.choose_top {
  margin-bottom: 20px;
}

.price_plan {
  font-size: 22px;
  font-weight: 600;
  color: #000;
}

small.duration {
  font-size: 13px;
  font-weight: 400;
}

.price_plan span.old {
  color: #B1B1B1;
  font-weight: 400;
  text-decoration: line-through;
}

.chose_p_c.exp_ch {
  background: linear-gradient(180deg, rgba(63, 54, 238, 0.2) 0%, rgba(234, 72, 85, 0.2) 100%);
}

.exp_ch .main_p {
  color: #3F36EE;
}

.chose_p_c.best_ch {
  background: linear-gradient(270deg, #0400F6 0%, #E91B26 100%);
}

.best_ch .main_p {
  color: #fff;
}

.card_ab {
  border: 1px solid #E4E7E9;
  border-radius: 10px;
}

.text_ab-b {
  background: linear-gradient(270deg, #0200F7 0%, #EA1B25 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 2px;
}

.small_t_a {
  font-size: 13px;
  color: #5F6C72;
}

/* TOP NEWSLETTER */
.newsletter {
  background: linear-gradient(270deg, #0200F7 0%, #EA1B25 100%);
  color: #fff;
  padding: 18px 0;
}

.newsletter h4 {
  font-weight: 700;
  margin-bottom: 2px;
}

.newsletter p {
  font-size: 13px;
  opacity: 0.7;
  color: #fff;
  margin-bottom: 0;
  font-weight: 400;
}

.newsletter .form-control {
  border-radius: 6px;
  border: none;
  padding: 10px 5px;
}

.newsletter .btn {
  color: #fff;
  border: none;
  padding: 8px 10px;
  font-weight: 600;
  display: flex;
  background: linear-gradient(270deg, #0200F7 0%, #EA1B25 100%);
  width: 180px;
  font-size: 15px;
  border-radius: 3px;
  gap: 10px;
  font-weight: 500;
  justify-content: center;
  align-items: center;
}

/* MAIN FOOTER */
.footer {
  background: linear-gradient(90deg, #f6d2d2, #dcd7ff);
  padding: 40px 0 0;
  font-size: 14px;
}

/* LEFT */
.footer .logo {
  width: 180px;
}




/* RIGHT */
.footer a {
  text-decoration: none;
  color: #333;
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

.footer a:hover {
  color: #000;
}

/* SOCIAL */
.social i {
  border: 1px solid #aaa;
  border-radius: 50%;
  padding: 6px;
  margin-right: 8px;
  font-size: 14px;
}

/* PAYMENT BAR */
.payment-bar {
  border-top: 1px solid;
  padding: 8px 0;
  margin-top: 20px;
  border-image: linear-gradient(270deg, #0200F7 0%, #EA1B25 100%);
  border-image-slice: 1;
}

/* BOTTOM */
.bottom {
  text-align: center;
  padding: 12px 15px;
  font-size: 14px;
  color: #323232;
  border-image: linear-gradient(270deg, #0200F7 0%, #EA1B25 100%);
  border-image-slice: 1;
  border-top: 1px solid;
}

.footer-links h6 {
  font-size: 17px;
  font-weight: bold;
}

.social_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.social_icon a {
  width: 32px;
  height: 32px;
  border: 2px solid #000;
  border-radius: 50px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  color: #000;
}

.social_icon a:hover {
  background: linear-gradient(270deg, #0200F7 0%, #EA1B25 100%);
  color: #fff;

}

.payment_img img {
  max-height: 60px;
}

.google-te img {
  max-height: 125px;
}

.trustpilot img {
  max-height: 110px;
}

.fot_im hr {
  background: linear-gradient(270deg, #0200F7 0%, #EA1B25 100%);
  height: 2px;
  border: 0;
  border-color: transparent;
  opacity: 1;
  width: 160px;
  margin: 20px auto 10px;
}

.input_bg {
  width: 50%;
  background: #fff;
  padding: 5px;
  border-radius: 3px;
}

p.ad_fot {
  font-size: 17px;
}

a.email {
  color: #000080 !important;
  font-size: 18px;
  font-weight: 600;
}

hr.mail_b {
  background: linear-gradient(270deg, #0200F7 0%, #EA1B25 100%);
  height: 2px;
  border: 0;
  border-color: transparent;
  opacity: 1;
  width: 160px;
  margin: 10px 0 15px;
}

p.cus_t {
  margin: 0px 0 4px 0;
  font-weight: normal;
  font-size: 16px;
}

p.phone a {
  font-weight: bold;
  background: linear-gradient(to right, #EC1C25 0%, #1C03E0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
}

p.phone {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .newsletter .d-flex {
    flex-direction: column;
  }

  .newsletter input {
    margin-bottom: 10px;
  }
}


/* LOgin css */

/* 🔥 Glass Blur Background */
.modal-backdrop.show {
  background: rgba(255, 255, 255, 0.5) !important;
  backdrop-filter: blur(05.6719px);
  -webkit-backdrop-filter: blur(05.6719px);
  opacity: 1;

}

button.btn-close {
  color: #474747;
  opacity: 1;
  margin-top: -12px !important;
}

label.form-label {
  color: #111;
  font-size: 14px;
}

.modal-body {
  padding: 30px !important;
}

/* Modal Glass Box */
.login-modal {
  background: rgba(255, 255, 255, 1);
  filter: drop-shadow(0px 2.84583px 49.8021px rgba(0, 0, 0, 0.1));
  border-radius: 20px;
  border: 0;

}

/* Input */
.custom-input {
  background: #F2F4F5;
  border: none;
  border-radius: 4px;
  padding: 11px 15px;
  font-size: 14px;
}

.custom-input:focus {
  box-shadow: none;
  background: #ededed;
}

.form-check-input[type=checkbox] {
  border-radius: 2px;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

/* Gradient Button */
.login-btn {
  background: linear-gradient(270deg, #0200F7 0%, #EA1B25 100%);
  color: #fff;
  border: none;
  border-radius: 3px;
  padding: 10px;
  font-weight: 600;
}



.login-btn:hover {
  opacity: 0.9;
  color: #fff;
}

/* Links */
.forgot-link,
.register-link {
  background: linear-gradient(270deg, #0400F6 0%, #E91B26 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

/* Social */
.social-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid #000;
  color: #000;
}

.login_dot {
  font-size: 14px;
  color: #333333;
}

.cont_text {
  font-size: 14px;
  color: #333333;
}

.login_dot a {
  text-decoration: underline;
}

.d_ag {
  display: flex;
}

.d_ag .form-check-label {
  font-size: 13px;
  color: #475156;
}

.d_ag .form-check-label a {
  text-decoration: underline;
  color: #3F36EE;
}


/* Product list page css */
.filter-box {
  background: linear-gradient(180deg, rgba(63, 54, 238, 0.06) 0%, rgba(234, 72, 85, 0.06) 100%);
  border-radius: 3px;
  padding: 12px;
}

.breadcrumb-area {
  background: #F2F4F5;
  padding: 12px 0;
}

.breadcrumb-area ol.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
}

li.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #5F6C72;
}

li.breadcrumb-item.active {
  color: #3A36F3;
}

.filter_top {
  border-bottom: 1px solid #CECECE;
  padding: 5px 0 10px;
}

.filter_top h6 {
  background: linear-gradient(270deg, #0200F7 0%, #EA1B25 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 16px;
  font-weight: 600;
}

.filter_top h6 span {
  background: linear-gradient(270deg, #666 0%, #666 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 14px;
  font-weight: 400;
}

.accordion-button:focus {
  z-index: 3;
  border-color: transparent;
  outline: 0;
  box-shadow: none;
}

.filter-box .accordion-item {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.filter-box .accordion-button {
  background: transparent;
  padding: 15px 0;
  color: #191C1F;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid #CECECE;
}

.filter-box .accordion-button::after {
  width: 16px;
  height: 16px;
  background-size: 16px;
}

.filter-box .accordion-body {
  padding: 15px 0 5px !important;
}

.filter-box .accordion-body .form-check {
  margin-bottom: 10px;
}

.filter-box .accordion-body label.form-check-label {
  font-size: 15px;
  color: #475156;
  font-weight: 500;
  margin-top: 4px;
}

.filter-section .accordion-button {
  border-bottom: 0;
}

.filter-section .accordion-body {
  padding: 0px 0 5px !important;
}

.filter-section .accordion-body .accordion-button {
  font-size: 14px;
  font-weight: normal;
}

.filter-section .itme_nav a {
  font-size: 14px;
  padding: 10px;
  color: #5F6C72;
  display: block;
}

.filter-section .itme_nav a:hover {
  color: #000;
}

a.download-btn.btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 9px 16px;
  gap: 12px;
  background: linear-gradient(270deg, #0200F7 0%, #EA1B25 100%);
  border-radius: 2px;
  color: #fff;
  font-size: 15px;
  border: 0;
}

.right_top_bt select.form-select {
  font-size: 14px;
  border-radius: 2px;
  padding: 9px 60px 9px 15px;
}

.right_top_bt span {
  color: #191C1F;
  font-size: 14px;
}

.right_top_nevegat {
  background: #F2F4F5;
  border-radius: 4px;
  padding: 4px 10px;
}

.items_show {
  color: #5F6C72;
  font-size: 14px;
}

.btn.grid_list {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  border: 1px solid #E4E7E9;
  background: #fff;
  padding: 6px;
  justify-content: center;
  border-radius: 3px;
}

.btn.grid_list.active {
  background: linear-gradient(270deg, #0200F7 0%, #EA1B25 100%);

}

.btn.grid_list svg path {
  fill: #000;
}

.btn.grid_list.active svg path {
  fill: #fff;
}

.form-select:focus {
  border-color: #dedede;
  outline: 0;
  box-shadow: none;
}

.product-card.product_list_view {
  display: flex;
  align-items: self-start;
  gap: 20px;
  padding: 10px;
  margin: 15px 0;
}

.product_list_view h6.hadding_pro {
  height: unset;
  margin: 5px 0;
}

.product_list_view .product_cont {
  width: 100%;
  padding: 0;
}

.product_list_view .product-img img {
  margin: 0;
}

.auter-name {
  font-size: 14px;
  color: #3F36EE;
  margin: 5px 0;
}

.auter-name span {
  color: #EE4851;
}

.instock {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #008000;
  font-weight: 400;
}

.instock img {
  width: 16px;
  height: 16px;
}

.lg_text {
  font-size: 14px;
  margin: 5px 0;
  color: #000;
  font-weight: 500;
}

.lg_text span {
  color: #5F6C72;
  font-weight: 400;
}

.modal-content {
  background: rgba(255, 255, 255, 1);
  filter: drop-shadow(0px 2.84583px 49.8021px rgba(0, 0, 0, 0.1));
  border-radius: 20px;
  border: 0;
}

.quickviewm .product-card.product_list_view {
  padding: 0;
  margin: 0;
  border: 0;
}

.quickviewm .modal-body {
  padding: 20px !important;
}

.quickviewm .product-img {
  padding: 0;
  border-radius: 0;
  flex: none;
}

.quickviewm .product-img img {
  max-height: 360px;
  border-radius: 0;
}

.modal-dialog.modal-dialog-centered.modal-lg {
  max-width: 900px;
}

.quickviewm .product-card:hover {
  transform: translateY(0px);
}

.quickviewm .product_list_view h6.hadding_pro {
  height: unset;
  margin: 10px 0;
  font-size: 22px;
}

.quickviewm .auter-name {
  margin-bottom: 30px;
}

.quickviewm .rating_view {
  justify-content: flex-start;
  gap: 12px;
}

.quickviewm .price del,
.quickviewm .price span {
  font-size: 20px;
}

.quickviewm .price_pro {
  margin: 20px 0;
}

.quickviewm .price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quickviewm .discount-badge {
  position: unset;
}

button.btn-close {
  z-index: 2;
}

.quickviewm .social_icon {
  border-top: 1px solid #E4E7E9;
  padding-top: 15px;
  justify-content: flex-start;
}

.quickviewm .social_icon p {
  font-size: 14px;
  color: #475156;

}

.quickviewm button.btn-close {
  margin-top: -6px !important;
}

/* Left Image */
.main-img {
  width: 100%;
  border: 1px solid #eee;
  border-radius: 8px;
}

.thumb-img {
  width: 60px;
  cursor: pointer;
  border: 1px solid #EA4855;
  border-radius: 5px;
  margin-right: 8px;
  padding: 1px;
}

h5.hadding_pro {
  font-size: 22px;
  color: #000;
  margin: 0px 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 500;


}

.img_sl_vi {
  border: 1px solid #EA4855;
  padding: 5px;
  border-radius: 5px;
  margin-bottom: 10px;

  overflow: hidden;
}

.img_sl_vi img {
  border-radius: 1px;
}

.product_details .quickviewm .price_pro {
  margin: 3px 0 15px;
}

.pro_sep_list {
  display: flex;
  align-items: center;
}

.list_sp {
  width: 40%;
  font-size: 14px;
  font-weight: 600;
  padding: 7px 0;
}

.list_re {
  width: 60%;
  font-size: 14px;
  padding: 7px 0;
}

.product_sp {
  border-top: 1px solid #E4E7E9;
  padding: 10px 0;
}

.product_details .discount-badge {
  position: unset;
  padding: 5px 12px;
}

.google-preview {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  gap: 12px;
  background: linear-gradient(270deg, #0200F7 0%, #EA1B25 100%);
  border-radius: 2px;
  color: #fff;
  font-size: 15px;
  border: 0;
  margin-top: 15px;
}

.btn.tab_se {
  border-radius: 3px;
  padding: 9px 10px;
  width: 100%;
  border: 1px solid #8E8E8E;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 600;
}

.btn.tab_se.active {
  background: linear-gradient(270deg, #0200F7 0%, #EA1B25 100%);
  color: #fff;
  border: 0;
}

.sp_b {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #E4E7E9;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.qty-box {
  display: flex;
  align-items: center;
  border: 1px solid #DADADA;
  border-radius: 3px;
  width: 150px;
  overflow: hidden;
}

.qty-btn {
  width: 45px;
  height: 40px;
  border: none;
  background: #fff;
  font-size: 22px;
  font-weight: 500;
  cursor: pointer;
}

.qty-btn:hover {
  background: #f4f8fb;
}

.qty-input {
  width: 60px;
  height: 40px;
  border: none;
  text-align: center;
  font-size: 16px;
  outline: none;
  font-weight: 600;
}

.offer_te {
  font-size: 13px;
  color: #000000;
  margin-bottom: 15px;
}

.sp_b label {
  font-size: 14px;
  font-weight: 600;
}

.price-box .price {
  display: flex;
  align-items: center;
  gap: 6px;
}

.price-box .price del {
  font-size: 18px;
}

.price-box .price span {
  font-size: 20px;
}

.buy-now-btn {
  width: 100%;
  height: 42px;
  border-radius: 2px;
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(270deg, #0200F7 0%, #EA1B25 100%);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.6s;
}

.buy-now-btn span {
  background: linear-gradient(270deg, #0200F7 0%, #EA1B25 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.buy-now-btn:hover {
  background:
    linear-gradient(90deg, #E91B26, #0400F6) padding-box,
    linear-gradient(90deg, #E91B26, #0400F6) border-box;
}

.buy-now-btn:hover span {
  -webkit-text-fill-color: #fff;
}

.add-cart {
  width: 100%;
  height: 42px;
  border-radius: 2px;
  background:
    linear-gradient(270deg, #0200F7 0%, #EA1B25 100%);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  color: #fff !important;
  transition: 0.6s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 0;
}

.isbn_no {
  font-size: 14px;
  color: #000;
  font-weight: 600;
}

.ship_text {
  font-size: 14px;
  padding: 8px 10px;
  background: #F2F4F5;
  border: 1px solid #e2e2e2;
  border-radius: 3px;
  margin-bottom: 15px;
}

.tabs-section {
  border: 1px solid #E4E7E9;
  margin: 20px 0 0;
  border-radius: 2px;
}

.tabs-section ul#bookTab {
  align-items: center;
  justify-content: center;
}

.tabs-section .nav-tabs .nav-item.show .nav-link,
.tabs-section .nav-tabs .nav-link.active,
.tabs-section .nav-tabs .nav-link:hover {
  background-color: transparent;
  border-color: transparent;
  background: linear-gradient(270deg, #0200F7 0%, #EA1B25 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  border-bottom: 1px solid #3F36EE;
}

.nav-tabs .nav-link {
  margin-bottom: 0;
  border: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  color: #323333;
  font-size: 14px;
  transition: 0.6s;
  padding: 10px;
}

.pro_tab_de h4,
.pro_tab_de h5,
.pro_tab_de h6 {
  font-size: 16px;
  font-weight: 600;
}

.pro_tab_de p {
  font-size: 14px;
}

.pro_tab_de ul li {
  list-style: circle;
  padding: 6px 0;
  font-size: 14px;
  font-weight: 400;
}

.pro_tab_de ol li {
  padding: 6px 0;
  font-size: 14px;
  font-weight: 400;
}

/* ===== Rating Box ===== */
.rating-box {
  background: linear-gradient(270deg, rgba(63, 54, 238, 0.1) 0%, rgba(234, 72, 85, 0.1) 100%);
  border-radius: 4px;
  padding: 30px;
  text-align: center;
}

.rating-box h1 {
  font-size: 60px;
  font-weight: 700;
}

.stars i {
  color: #FA8232;
  font-size: 14px;
}

.progress {
  height: 4px;
  background: #eee;
}

.progress-bar {
  background: #FA8232;
}

/* Review Button */
.review-btn {
  padding: 10px 25px;
  border: none;
  border-radius: 5px;
  background: linear-gradient(90deg, #E91B26, #0400F6);
  color: #fff;
  font-weight: 500;
  font-size: 14px;
}

/* Review Item */
.review-item {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.review-item img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.review-name {
  font-weight: 600;
  font-size: 14px;
}

.review-time {
  color: #777;
  font-size: 12px;
}

.review-text {
  color: #555;
  margin-top: 5px;
  font-size: 13px;
}

.review-item .stars {
  display: flex;
  align-items: center;
  gap: 3px;
}

.review-item .stars i {
  color: #FA8232;
  font-size: 13px;
}


.review-modal .modal-content {
  border-radius: 12px;
  padding: 20px;
}

.review-modal input,
.review-modal select,
.review-modal textarea {
  font-size: 14px;
}

.review-modal textarea {
  min-height: 120px;
}

.review-item:last-child {
  border-bottom: 0;
}

.review-modal label {
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 13px;
  color: #000;
}

.star-rating {
  display: flex;
  gap: 15px;
  margin: 10px 0;
}

.star-rating i {
  font-size: 24px;
  color: #ccc;
  cursor: pointer;
}

.star-rating i.active {
  color: #ff9800;
}

.submit-btn {
  padding: 12px 35px;
  border: none;
  border-radius: 3px;
  background: linear-gradient(90deg, #E91B26, #0400F6);
  color: #fff;
  font-weight: 500;
  font-size: 15px;
}

.border-star {
  color: #ADB7BC !important;
}

.cust_rivew_l .progress~span {
  font-size: 14px;
  color: #191C1F;
}

.cust_rivew_l .progress~span span {
  color: #77878F;
}

.review-modal .modal-body {
  padding: 12px !important;
}

.feed_hedding h4 {
  font-size: 20px;
  font-weight: 600;
  color: #191C1F;

}

.feed_hedding {
  border-top: 1px solid #E5E5E5;
  padding-top: 15px;
}

.br_search {
  justify-content: space-between;
  align-items: center;
}

.br_search .input-group.search_bar {
  box-shadow: none;
}

.br_search .search_bar input.form-control {
  border-radius: 50px;
  height: 38px;
  font-size: 13px;
  color: #77878F;
  border: 0;
  width: 50%;
}

.secrch_d {
  width: 50%;
  max-width: 300px;
}

.secrch_d button.btn.btn-search_main {
  border-radius: 50px;
}

.inner_page_banner img {
  width: 100%;
  max-height: 240px;
}

.inner_page_banner {
  width: 100%;
  max-height: 240px;
  overflow: hidden;
}


/* All Category  */


.all_cat_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Desktop me 3 */
  gap: 20px;
}

.grid_item {
  padding: 15px;
  border-radius: 6px;
  border: 1px solid #E4E7E9;
  display: flex;
  gap: 15px;
  align-items: center;
  transition: 0.5s;
}

.grid_item:hover {
  box-shadow: 0 3px 10px rgba(136, 140, 161, .16);
  background: #fff1f2;
}

.cat_im {
  width: 70px;
  height: 70px;
}

.cat_cont h5 {
  font-size: 16px;
  color: #000;
  margin: 0 0 6px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;

}

.cat_cont a {
  background: linear-gradient(270deg, #0200F7 0%, #EA1B25 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 0;
  text-decoration: underline;
}

.all_cat_list {
  padding: 40px 0;
}

.ab_right {
  overflow: hidden;
  padding: 15px;
  background: linear-gradient(270deg, rgba(2, 0, 247, 0.1) 0%, rgba(234, 27, 37, 0.1) 100%);
  border-radius: 10px;
  margin: 15px;
}

.ab_right img {
  border-radius: 10px;
}

.ad_cont_left h2 {
  font-size: 32px;
  font-weight: 600;
  color: #0F141E;

}

.ad_cont_left p {
  color: #2C374F;
  font-size: 14px;
  line-height: 28px;
}

.rec-box h3 {
  font-size: 22px;
  font-weight: 600;
  color: #0F141E;

}

.rec-box p {
  color: #2C374F;
  font-size: 14px;
  line-height: 28px;
}

.ac_rec_box {
  background: linear-gradient(270deg, rgba(2, 0, 247, 0.1) 0%, rgba(234, 27, 37, 0.1) 100%);
  border-radius: 10px;
  padding: 0 20px;
}

.ac_rec_box {
  background: linear-gradient(270deg, rgba(2, 0, 247, 0.1) 0%, rgba(234, 27, 37, 0.1) 100%);
  border-radius: 10px;
  padding: 0 20px;
  display: flex;
  gap: 40px;
}

.rec-line {
  border: 1px dashed rgba(0, 0, 0, 0.2);
}

.rec-box {
  padding: 40px 20px;
}

.visin_miss h2 {
  font-size: 32px;
  font-weight: 600;
  color: #0F141E;
}

.vision_tect {
  overflow: hidden;
  padding: 30px;
  background: linear-gradient(270deg, rgba(2, 0, 247, 0.1) 0%, rgba(234, 27, 37, 0.1) 100%);
  border-radius: 10px;
}

.vision_hedding {
  padding: 7px 15px;
  background: linear-gradient(270deg, rgba(2, 0, 247, 0.1) 0%, rgba(234, 27, 37, 0.1) 100%);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: max-content;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
}

.vision_tect p {
  color: #2C374F;
  font-size: 16px;
  line-height: 28px;
}

.p-text {
  color: #2C374F;
  font-size: 16px;
  line-height: 28px;
}

.catalog_inner {

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px;
  border-radius: 8px;
  transition: 0.5s;
}

.catalog_list h4 {
  font-size: 16px;
  margin: 0;
}

.catalog_list {
  margin-bottom: 15px;
  background: linear-gradient(270deg, rgba(2, 0, 247, 0.1) 0%, rgba(234, 27, 37, 0.1) 100%);
  padding: 2px;
  border-radius: 10px;
  transition: 0.5s;
}

.cata_do a img {
  width: 36px;
  height: 36px;
}

.catalog_list:hover .catalog_inner {
  background: #fff;

}


.authors_hadding {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.authors_hadding h2 {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  margin: 0;
}

.authors_hadding h2 span {
  font-size: 14px;
  font-weight: 400;
  color: #888;
}

.authors_hadding .input-group.search_bar {
  box-shadow: none;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
}

.authors_hadding .search_bar input.form-control {
  height: 44px;
}

.auther_filter {
  background: #F6F7F9;
  padding: 10px 20px;
  border-radius: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}

.auther_filter a {
  width: 30px;
  height: 30px;
  font-size: 15px;
  color: #000;
  text-align: center;
  padding: 4px;
  border-radius: 50px;
  transition: 0.5s;
}

.auther_filter a:hover {
  background: linear-gradient(270deg, #0200F7 0%, #EA1B25 100%);
  color: #fff;
}

.auther_filter a.active {
  background: linear-gradient(270deg, #0200F7 0%, #EA1B25 100%);
  color: #fff;
}

.line_aut {
  width: 32px;
  background: #000000;
  height: 2px;
  position: relative;
}

.alphabet {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 15px 0;
}

.line_aut-right {
  width: 100%;
  border: 1px dashed #B7BABC;
  flex: 1;
}

.line_number h3 {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  margin: 0;
}

.line_number h3 span {
  font-size: 14px;
  font-weight: 300;
  color: #888;
}

.auther_box {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}





/* Mobile ke liye */
@media (max-width: 991px) {
  .all_cat_grid {
    grid-template-columns: repeat(2, 1fr);
    /* Mobile me 2 */
  }
}

@media (max-width: 500px) {
  .all_cat_grid {
    grid-template-columns: repeat(1, 1fr);
    /* Mobile me 2 */
  }
}



/* ================= PUBLISH WITH US ================= */
.pu_con {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0px 0 25px;
}

.pub_icon {
  width: 84px;
  height: 84px;
  background: linear-gradient(270deg, #0200F7 0%, #EA1B25 100%);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contant_pb h2 {
  font-size: 16px;
  font-weight: 600;
}

.contant_pb p {
  font-size: 14px;
  color: #666666;
  margin: 0;
}

.publish_form {
  background: linear-gradient(270deg, rgba(2, 0, 247, 0.1) 0%, rgba(234, 27, 37, 0.1) 100%);
  border: 1px solid #D4D5D9;
  border-radius: 20px;
  padding: 30px;
}

.publish_form .custom-input {
  padding: 13px 15px;
  background-color: #FFFFFF;
}

.publish_form label.form-label {
  margin-bottom: 4px;
}

button.btn.verify-btn {
  color: #fff;
  border: none;
  padding: 12px 10px;
  font-weight: 600;
  display: flex;
  background: linear-gradient(270deg, #0200F7 0%, #EA1B25 100%);
  font-size: 15px;
  border-radius: 3px;
  gap: 10px;
  font-weight: 600;
  justify-content: center;
  align-items: center;
}

.publish_form h1 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

.dont_re {
  font-size: 14px;
  color: #000;
  font-weight: 400;
}

.dont_re a {
  color: #E91B26;
  font-weight: 600;
}

.scroll_form {
  max-height: 520px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 10px;
}

.scroll_form::-webkit-scrollbar {
  width: 5px;
}

.scroll_form::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.scroll_form::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

/* Contact Page css */
.contact-wrapper {
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
  display: flex;
  padding: 10px;
  background: #FFFFFF;
  box-shadow: 0px 0px 60px 30px rgba(0, 0, 0, 0.03);
  border-radius: 10px;
}

.contact-left {
  width: 35%;
  background: #f5f5f5;
  padding: 30px;
  border-radius: 10px;
  position: relative;
}

.contact-left h3 {
  margin-bottom: 6px;
  font-size: 24px;
  font-weight: 600;
  color: #000;
}

.contact-left p {
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
}

.contact-info {
  margin-bottom: 30px;
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 14px;
}

.address_info {
  align-items: flex-start;
}

.contact-info a {
  font-weight: 500;
  font-size: 15px;
  color: #000;
}

.contact-info svg {
  width: 24px;
  height: 24px;
  min-width: 24px;
}

.contact-info i {
  color: #e91b26;
  font-size: 18px;
  margin-top: 3px;
}

.social-icons {
  margin-top: 25px;
}

.contact-right {
  width: 65%;
  padding: 40px;
}

.contact-right h2 {
  text-align: center;
  margin-bottom: 5px;
}

.subtitle {
  text-align: center;
  font-size: 14px;
  color: #000;
  margin-bottom: 35px;
}

.contact-section .form-row {
  display: flex;
  gap: 30px;
}

.contact-left .social_icon {
  justify-content: flex-start;
  gap: 10px;
  margin-top: 50px;
}

.contact-section .form-group {
  width: 100%;
  margin-bottom: 25px;
}

.contact-section .form-group label {
  font-size: 13px;
  color: #888;
  display: block;
  margin-bottom: 0px;
}

.contact-section .form-group input,
.contact-section .form-group textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 3px 0;
  background: transparent;
  outline: none;
  transition: .3s;
  font-size: 14px;
  border-radius: 0;
  box-shadow: none;
}

.contact-section .form-control::placeholder {
  color: #000;
  opacity: 1;
}

.contact-section .form-group input:focus,
.contact-section .form-group textarea:focus {
  border-bottom: 2px solid #4a6cf7;
}

.contact-section .radio-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 10px;
  width: 100%;
}

.contact-section h2 {
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  color: #000;
}

.contact-section .radio-group label {
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: center;
}

label.bold_text {
  color: #000 !important;
  font-weight: 600;
  font-size: 15px !important;
}

.radio-group input {
  margin-right: 5px;
  width: 20px !important;
}

.send-btn {
  color: #fff;
  border: none;
  padding: 12px 10px;
  font-weight: 600;
  display: flex;
  background: linear-gradient(270deg, #0200F7 0%, #EA1B25 100%);
  width: 180px;
  font-size: 15px;
  border-radius: 3px;
  gap: 10px;
  font-weight: 500;
  justify-content: center;
  align-items: center;
  transition: .3s;
}

.send-btn:hover {
  opacity: .9;
}

.map {
  margin: 0px 0 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.map iframe {
  width: 100%;
  height: 550px;
  border-radius: 10px;
  border: none;
}

@media screen and (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-left,
  .contact-right {
    width: 100%;
  }

  .contact-section .form-row {
    flex-direction: column;
    gap: 0;
  }
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
}

.cart-item {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.cart-item img {
  width: auto;
  height: 100%;
}

.card-time-img {
  width: 70px;
  height: 70px;
  border: 1px solid #ddd;
  text-align: center;
  border-radius: 2px;
  min-width: 70px;
}

.cart-item h4 {
  font-size: 14px;
  margin: 0 0 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cart-item .price {
  font-size: 14px;
  align-items: center;
  gap: 8px;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  margin-right: 5px;
}

.new-price {
  font-weight: 600;
  font-size: 16px;
  background: linear-gradient(270deg, #0400F6 0%, #E91B26 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.remove {
  margin-left: 10px;
  cursor: pointer;
  color: #999;
}

.cart-left h2 {
  font-size: 20px;
  margin-bottom: 0;
  padding: 12px 15px;
  font-weight: 600;
}

.check_same .form-check {
  align-items: center;
}

.check_same .form-check-label {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  cursor: pointer;
}

label.form-label .required {
  color: #ff0000;
  text-decoration: none;
}

.cart-right .card-time-img {
  width: 50px;
  height: 50px;
}

.payment_type .radio-group {
  display: flex;
  align-items: center !important;
  justify-content: space-between;
}

.payment_logo {
  width: 90px;
}

.privacy-policy-text {
  font-size: 13px;
  padding: 15px 0;
  border-top: 1px dashed #ddd;
  margin-top: 20px;
}

.checkout_card_succes {
  max-width: 450px;
  margin: 50px auto;
  text-align: center;
}

.checkout_card_succes h2 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-top: 20px;
}

.checkout_card_succes p {
  font-size: 14px;
  font-weight: 400;
  color: #666;
}


.login-info {
  background: linear-gradient(90deg, #f6d2d2, #dcd7ff);
  padding: 10px;
  font-size: 14px;
  margin: 3px 15px 15px;
  border-radius: 5px;
}

.form_checkout {
  padding: 5px 15px 15px;
}

/* Footer */
.cart-footer {
  border-top: 1px solid #eee;
  padding: 15px;
}

.subtotal {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  margin-bottom: 15px;
}

.checkout-btn {
  width: 100%;
  color: #fff;
  border: none;
  padding: 12px 10px;
  font-weight: 600;
  display: flex;
  background: linear-gradient(270deg, #0200F7 0%, #EA1B25 100%);
  margin-bottom: 10px;
  font-size: 15px;
  border-radius: 3px;
  gap: 10px;
  font-weight: 500;
  justify-content: center;
  align-items: center;
  transition: .3s;
}

.viewcart-btn {
  width: 100%;
  padding: 11px 10px;
  border: 1px solid #7e0f89;
  font-weight: 600;
  cursor: pointer;
  border-radius: 5px;
  background: linear-gradient(270deg, #0400F6 0%, #E91B26 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 15px;
}


/* LEFT SIDE */
.cart-left {
  flex: 2;
  background: #fff;
  padding: 0px;
  border-radius: 6px;
  border: 1px solid #E4E7E9;
  height: 100%;
}

.product-info span {
  max-width: 250px;
}



.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th {
  text-align: left;
  font-size: 13px;
  color: #475156;
  padding: 15px 10px;
  border-bottom: 1px solid #eee;
  background: #F2F4F5;
  font-weight: 400;
}

.cart-table td {
  padding: 20px 10px;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
}

.product-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.product-info img {
  width: 60px;
}

.remove {
  color: red;
  cursor: pointer;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  margin-right: 5px;
}

/* Quantity */
.cart-table .qty-box {
  width: 130px;
}

.qty-box button {
  border: none;
  background: none;
  font-size: 18px;
  cursor: pointer;
}

.qty-box input {
  width: 40px;
  text-align: center;
  border: none;
  font-size: 14px;
}

/* Bottom Buttons */
.cart-actions {
  display: flex;
  justify-content: space-between;
  padding: 15px;
}

.return-btn {
  padding: 10px 20px;
  border: 1px solid #666666;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  height: 44px;
  color: #666666;
  border-radius: 3px;
}

.update-btn {
  padding: 10px 25px;
  border: 1px solid #EA1B25;
  background: #fff;
  cursor: pointer;
  background: linear-gradient(270deg, #0200F7 0%, #EA1B25 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 14px;
  height: 44px;
  border-radius: 3px;
}

/* RIGHT SIDE */
.cart-right {
  flex: 1;
}

.shoping_card .card {
  background: #fff;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 6px;
  border: 1px solid #E4E7E9;
}

.shoping_card .card h3 {
  font-size: 16px;
  margin-bottom: 20px;
  padding: 0;
  color: #000;
}

.summary-row span {
  color: #555;
  font-size: 14px;

}

span.pr_card {
  color: #000;
  font-weight: 600;
}

.cart-right hr {
  background: #E4E7E9;
  margin: 10px 0;
}

.total span {
  color: #000;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: #555;
}

.total {
  font-weight: 600;
  font-size: 18px;
  margin-top: 10px;
}

.checkout-btn {
  color: #fff;
  border: none;
  padding: 10px 10px;
  font-weight: 600;
  display: flex;
  background: linear-gradient(270deg, #0200F7 0%, #EA1B25 100%);
  width: 100%;
  font-size: 15px;
  border-radius: 3px;
  gap: 10px;
  font-weight: 500;
  justify-content: center;
  align-items: center;
}

/* Coupon */
.coupon input {
  width: 100%;
  padding: 10px 15px;
  margin-bottom: 0px;
  border: 1px solid #ddd;
}

.coupon button {
  color: #fff;
  border: none;
  padding: 10px 15px;
  font-weight: 600;
  display: flex;
  background: linear-gradient(270deg, #0200F7 0%, #EA1B25 100%);

  font-size: 15px;
  border-radius: 3px;
  gap: 10px;
  font-weight: 500;
  justify-content: center;
  align-items: center;
}

.shoping_card {
  display: flex;
  gap: 30px;
}

.checkout_card_succes .cart-actions {
  display: flex;
  justify-content: center;
  padding: 15px;
  gap: 10px;
}

a.showlogin {
  background: linear-gradient(270deg, #0400F6 0%, #E91B26 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  text-decoration: underline;
}







/* Mobile ke liye */
@media (max-width: 1200px) {
  .custom-navbar .nav-link {
    padding: 12px 10px;
    font-size: 13px;
  }

}

@media (max-width: 991px) {
  .all_cat_grid {
    grid-template-columns: repeat(2, 1fr);
    /* Mobile me 2 */
  }

  .shoping_card {
    flex-flow: column;
  }

  .contact-wrapper {
    flex-wrap: wrap;
  }

  .contact-left {
    width: 100%;
  }

  .contact-right {
    width: 100%;
    padding: 30px 10px 10px;
  }
}

@media (max-width: 768px) {

  .newsletter .container.d-flex.justify-content-between.align-items-center.flex-wrap {
    flex-wrap: wrap !important;

  }
}

@media (max-width: 500px) {
  .all_cat_grid {
    grid-template-columns: repeat(1, 1fr);
    /* Mobile me 2 */
  }
}

/* --- Live Search Suggestions --- */
.search-suggestions-box {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-height: 400px;
  overflow-y: auto;
}

.suggestion-item {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-bottom: 1px solid #f5f5f5;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}

.suggestion-item:hover {
  background: #f9f9f9;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-img {
  width: 40px;
  height: 50px;
  object-fit: cover;
  margin-right: 15px;
  border-radius: 4px;
}

.suggestion-info {
  flex: 1;
}

.suggestion-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
  display: block;
  color: #333;
}

.suggestion-subtitle {
  font-size: 12px;
  color: #777;
  display: block;
}

.suggestion-type {
  font-size: 10px;
  text-transform: uppercase;
  background: #eee;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 10px;
  font-weight: bold;
  color: var(--kb-navy);
}

.no-suggestions {
  padding: 15px;
  text-align: center;
  color: #999;
  font-size: 14px;
}

/* After login page ui */

/* Sidebar */
.dashboard-sidebar {
  background: linear-gradient(180deg, rgba(63, 54, 238, 0.06) 0%, rgba(234, 72, 85, 0.06) 100%);
  border-radius: 3px;
  padding: 12px;
}

.dashboard-sidebar .nav-link {
  padding: 12px 20px;
  color: #111;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.dashboard-sidebar .nav-link i {
  width: 20px;
}

.dashboard-sidebar .nav-link.active {
  background: linear-gradient(90deg, #EA1B25, #0200F7);
  color: #fff;
  border-radius: 3px;
}

.notification-setting .switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.notification-setting .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.notification-setting .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 50px;
}

.notification-setting .slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

/* Checked (ON) State */
.notification-setting .switch input:checked+.slider {
  background-color: #E91B26;
  /* Red Color */
}

.notification-setting .switch input:checked+.slider:before {
  transform: translateX(24px);
}

.dashboard-right {
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 15px;
  margin-bottom: 20px;
}

.dash_header p {
  font-size: 14px;
}

.dash_header a {
  background: linear-gradient(270deg, #0200F7 0%, #EA1B25 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-decoration: underline;
}

.notification-setting {
  display: flex;
  align-items: center;
  gap: 20px;
}

.notification-setting h5 {
  font-size: 16px;
  margin: 0;
}

/* Content Cards */
.info-card {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  border: 1px solid #ddd;
}

.info-card h6 {
  font-weight: 600;
  margin-bottom: 15px;
  padding: 15px;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
}

.card_info_in {
  padding: 0 15px 20px;
}

.card_info_in p {
  font-size: 14px;
  color: #000;
}

.card_h h3 {
  font-weight: 600;
  color: #000;
  font-size: 15px;
  margin-bottom: 5px;
}

.card_h {
  margin-bottom: 20px;
}

.edit-btn {
  height: 42px;
  border-radius: 4px;
  border: 1px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(270deg, #0200F7 0%, #EA1B25 100%);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.6s;
  padding: 6px 15px;
}

/* Stats */
.stat-box {
  padding: 15px;
  border-radius: 3px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.stat-box-icon {
  background: #fff;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
}

.stat-box h4 {
  margin: 0;
  font-weight: 700;
}

.stat-box small {
  color: #666;
}

.stat-blue {
  background: #eaf4ff;
}

.stat-orange {
  background: #fff2e6;
}

.stat-green {
  background: #e9f8ef;
}

.dashboard-order .cart-table td {
  padding: 12px 8px;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
  font-size: 14px;
}

.dashboard-order {
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}

.dashboard-order .cart-table th {
  font-size: 14px;
  color: #475156;
  padding: 10px 10px;
}

a.btn_td {
  border-radius: 4px;
  border: 1px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(270deg, #0200F7 0%, #EA1B25 100%);
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  transition: 0.6s;
  padding: 4px 10px;
  color: #000;
  text-decoration: none;
}

td.order_id {
  font-weight: 600;
}

td.price_td {
  color: #888;
  font-weight: 400;
}

td.price_td span {
  background: linear-gradient(270deg, #0200F7 0%, #EA1B25 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 600;
  font-size: 14px;
}

.order-info {
  background: linear-gradient(90deg, #f6d2d2, #dcd7ff);
  padding: 10px;
  font-size: 14px;
  margin: 0px 0px 15px;
  border-radius: 5px;
}

.order-info p {
  margin-bottom: 0;
}

.order-info mark {
  background: transparent;
  font-size: 16px;
  font-weight: 600;
}

.order_view h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.order_view_card {
  background: #f4f4f4;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.wallet_btn {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 15px;
}

.btn_w a {
  display: flex;
  align-items: center;
  padding: 20px;
  border: 1px solid #ddd;
  gap: 14px;
  font-size: 16px;
  color: #000;
  border-radius: 10px;
}

.btn_w a svg {
  width: 24px;
  height: 24px;
}

.bal_count {
  background: linear-gradient(90deg, #f6d2d2, #dcd7ff);
  padding: 15px;
  font-size: 14px;
  margin: 0px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bal_count h3 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 0;
}

.bal_count h4 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 0;
}

.bal_count-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  padding: 15px;
}

.bal_count-list:last-child {
  border-bottom: 0;
}

.balance-history {
  background: #f4f8fb;
  border-radius: 10px;
}

.bal_count-list h4 {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  margin-bottom: 0;
}

.bal_list p {
  font-size: 15px;
  color: #444;
  margin-bottom: 0;
}

.date_b {
  font-size: 13px;
  color: #777;
}

.bal_count-list h4 i {
  margin-right: 10px;
}

.bal_count-list h4 i.fa-plus {
  color: #197f36;
}

.bal_count-list h4 i.fa-minus {
  color: #fe1010;
}

.wallet_section {
  display: none;
  margin-top: 20px;
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
}

.wallet_section .btn {
  color: #fff;
  border: none;
  padding: 8px 20px;
  font-weight: 600;
  background: linear-gradient(270deg, #0200F7 0%, #EA1B25 100%);
  font-size: 15px;
  border-radius: 3px;
}

.wallet_section .bal_count {
  background: transparent;
  padding: 15px 0;
  font-size: 14px;
  margin-bottom: 15px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
}

.wallet_section h4 {
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

.wallet_section td h4 {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  margin-bottom: 0;
}

.wallet_section td h4 i.fa-plus {
  color: #197f36;
  margin-right: 10px;
}

.cart-table .cart-item {
  align-items: center;
  margin-bottom: 0;
}

.cart-table .cart-item .remove {
  font-size: 20px;
}

.dashboard-commun {
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 15px;
}

p.shopmagic-optin.form-row label~span {
  display: block;
  font-size: 14px;
  color: #666;
}

.MyAccount-content h3 {
  font-size: 24px;
}

.MyAccount-content input[type="submit"] {
  color: #fff;
  border: none;
  padding: 8px 10px;
  font-weight: 600;
  display: flex;
  background: linear-gradient(270deg, #0200F7 0%, #EA1B25 100%);
  width: 180px;
  font-size: 15px;
  border-radius: 3px;
}

.password_change {
  padding: 15px;
  border-radius: 10px;
  margin: 15px 0;
  background: linear-gradient(180deg, rgba(63, 54, 238, 0.06) 0%, rgba(234, 72, 85, 0.06) 100%);
}

.password_change .custom-input {
  background-color: #ffffff;
}

.submit_btn input[type="submit"] {
  color: #fff;
  border: none;
  padding: 10px 10px;
  font-weight: 600;
  display: flex;
  background: linear-gradient(270deg, #0200F7 0%, #EA1B25 100%);
  width: 180px;
  font-size: 15px;
  border-radius: 3px;
  float: right;
}

i.sh_i {
  font-size: 13px;
  color: #666;
}

.password_change h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .dashboard-sidebar {
    margin-bottom: 20px;
  }
}

/* FAQ PAGE STYLES */
.category_master_accordion {
  background: transparent;
}

.category_faq_item {
  background: #fff;
  border-radius: 12px !important;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee !important;
  margin-bottom: 20px;
}

.cat_btn {
  padding: 18px 25px !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  color: var(--kb-navy) !important;
  background-color: #f8f9fa !important;
  border: none !important;
  box-shadow: none !important;
}

.cat_btn:not(.collapsed) {
  background-color: #f0f2f5 !important;
  color: var(--kb-navy) !important;
}

.cat_btn::after {
  filter: brightness(0);
}

.faq_inner_accordion {
  padding: 10px 20px 20px 20px;
}

.faq_item {
  border-bottom: 1px solid #f0f0f0 !important;
  background: transparent !important;
}

.faq_item:last-child {
  border-bottom: none !important;
}

.faq_inner_accordion .accordion-button {
  padding: 15px 10px;
  font-weight: 600;
  color: #444;
  background-color: transparent !important;
  box-shadow: none !important;
  font-size: 15px;
}

.faq_inner_accordion .accordion-button:not(.collapsed) {
  color: var(--kb-navy);
}

.faq_q_num {
  color: var(--kb-gold);
  font-weight: 700;
}

.faq_answer {
  padding: 0 20px 25px 20px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #555;
}

.faq_answer p {
  margin-bottom: 10px;
}

.faq_answer p:last-child {
  margin-bottom: 0;
}

/* Sidebar Styles consistency */
.faq_content_area .itme_nav a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  display: block;
  padding: 5px 0;
  transition: color 0.2s;
}

.faq_content_area .itme_nav a:hover {
  color: var(--kb-navy);
}

.faq_content_area .filter-heading {
  font-weight: 700;
  font-size: 15px;
  color: #222;
}

/* Pricing Section Enhancements */
.pricing_section .owl-nav button {
  top: 45% !important;
}

.pricing_section .owl-carousel {
  padding: 0 15px;
}

.plan-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #FFD700;
  color: #000;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 11px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.text-truncate-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.choose_ben {
  text-align: left !important;
}

.choose_ben ul {
  text-align: left !important;
  padding-left: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  margin: 0 !important;
}

.choose_ben ul li {
  width: 100% !important;
  justify-content: flex-start !important;
  text-align: left !important;
  display: flex !important;
  align-items: center !important;
  padding: 8px 0 !important;
  gap: 12px !important;
}

.choose_ben ul li img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Absolute Force Left Alignment for Pricing Features */
.pricing_slider .item,
.pricing_slider .chose_p_c,
.pricing_slider .chose_p_inner,
.pricing_slider .choose_ben {
  text-align: left !important;
}

.pricing_slider .choose_ben ul {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  padding-left: 0 !important;
  list-style: none !important;
}

.pricing_slider .choose_ben ul li {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: left !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.pricing_slider .choose_ben ul li img {
  margin-left: 0 !important;
  margin-right: 12px !important;
  flex-shrink: 0 !important;
  width: 20px;
}

/* Custom Filter Scroll */
.filter-scroll {
  max-height: 700px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.filter-box .form-check-input {
  border: 1.5px solid #777777 !important;
}

.filter-scroll::-webkit-scrollbar {
  width: 4px;
}

.filter-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.filter-scroll::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}

.filter-scroll::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* =========================================================
   MINI CART OFFCANVAS
   ========================================================= */

.mini-cart-offcanvas {
  width: 380px !important;
  border-left: 1px solid #eee;
  box-shadow: -6px 0 30px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
}

.mini-cart-header {
  padding: 20px 20px 16px;
  border-bottom: 1px solid #f0f0f0;
  align-items: center;
  justify-content: space-between;
}

.mini-cart-title {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #EA1B25, #3F36EE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mini-cart-count-badge {
  background: linear-gradient(135deg, #EA1B25 0%, #3F36EE 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  min-width: 22px;
  text-align: center;
  -webkit-text-fill-color: #fff;
}

.mini-cart-close-btn {
  background: none;
  border: none;
  font-size: 18px;
  color: #555;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}

.mini-cart-close-btn:hover {
  background: #f5f5f5;
  color: #000;
}

/* Body */
.mini-cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}

.mini-cart-body::-webkit-scrollbar {
  width: 4px;
}
.mini-cart-body::-webkit-scrollbar-track {
  background: #f9f9f9;
}
.mini-cart-body::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 4px;
}

/* Items */
.mini-cart-items {
  padding: 8px 0;
}

.mini-cart-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid #f5f5f5;
  transition: background 0.2s;
}

.mini-cart-item:hover {
  background: #fafafa;
}

.mini-cart-item:last-child {
  border-bottom: none;
}

.mini-cart-item-img-wrap {
  flex-shrink: 0;
  display: block;
}

.mini-cart-item-img {
  width: 64px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #eee;
}

.mini-cart-item-info {
  flex: 1;
  min-width: 0;
}

.mini-cart-item-name {
  font-size: 13.5px;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  display: block;
  line-height: 1.45;
  margin-bottom: 6px;
  transition: color 0.2s;
}

.mini-cart-item-name:hover {
  color: #EA1B25;
}

.mini-cart-item-pricing {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.mini-cart-item-old-price {
  font-size: 12px;
  color: #aaa;
  text-decoration: line-through;
}

.mini-cart-item-price {
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(90deg, #EA1B25, #3F36EE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mini-cart-item-qty {
  font-size: 12px;
  color: #888;
}

.mini-cart-remove-btn {
  flex-shrink: 0;
  background: none;
  border: none;
  color: #bbb;
  font-size: 18px;
  cursor: pointer;
  padding: 2px 4px;
  border-radius: 4px;
  line-height: 1;
  transition: color 0.2s, background 0.2s;
  margin-top: 2px;
}

.mini-cart-remove-btn:hover {
  color: #EA1B25;
  background: #fff0f0;
}

/* Empty State */
.mini-cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
}

.mini-cart-empty-icon {
  font-size: 56px;
  color: #ddd;
  margin-bottom: 16px;
}

.mini-cart-empty-text {
  font-size: 15px;
  color: #999;
  margin-bottom: 20px;
}

.mini-cart-shop-btn {
  background: linear-gradient(270deg, #3F36EE 0%, #EA1B25 100%);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s;
}

.mini-cart-shop-btn:hover {
  opacity: 0.88;
  color: #fff;
}

/* Footer */
.mini-cart-footer {
  padding: 16px 20px 20px;
  border-top: 1px solid #f0f0f0;
  background: #fff;
}

.mini-cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.mini-cart-subtotal-label {
  font-size: 15px;
  color: #555;
}

.mini-cart-subtotal-value {
  font-size: 17px;
  font-weight: 700;
  color: #111;
}

.mini-cart-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 20px;
  background: linear-gradient(270deg, #3F36EE 0%, #EA1B25 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  border: none;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  transition: opacity 0.2s, transform 0.15s;
}

.mini-cart-checkout-btn:hover {
  opacity: 0.92;
  color: #fff;
  transform: translateY(-1px);
}

.mini-cart-viewcart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 11px 20px;
  background: #fff;
  border: 1.5px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
  background-clip: padding-box;
  position: relative;
  color: #EA1B25;
  transition: background 0.2s;
  box-shadow: inset 0 0 0 1.5px #e0e0e0;
}

.mini-cart-viewcart-btn:hover {
  background: #fdf0f0;
  color: #EA1B25;
  box-shadow: inset 0 0 0 1.5px #EA1B25;
}

/* Cart icon button reset (no default button styles) */
button.open-mini-cart.add-to-cart {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

@media (max-width: 480px) {
  .mini-cart-offcanvas {
    width: 100vw !important;
  }
}

/* SweetAlert2 Global Theme Adjustments */
.swal2-custom-popup {
  font-family: 'Inter', sans-serif !important;
  padding: 20px !important;
  border-radius: 8px !important;
  width: 360px !important;
}
.swal2-custom-title {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #191C1F !important;
  margin: 10px 0 5px 0 !important;
  padding: 0 !important;
}
.swal2-custom-html {
  font-size: 13px !important;
  color: #5F6C72 !important;
  line-height: 1.5 !important;
  margin: 5px 0 15px 0 !important;
  padding: 0 !important;
}
.swal2-custom-confirm-btn {
  font-size: 13px !important;
  font-weight: 500 !important;
  padding: 8px 18px !important;
  border-radius: 4px !important;
  background: linear-gradient(270deg, #0200F7 0%, #EA1B25 100%) !important;
  color: #ffffff !important;
  border: none !important;
}
.swal2-custom-cancel-btn {
  font-size: 13px !important;
  font-weight: 500 !important;
  padding: 8px 18px !important;
  border-radius: 4px !important;
  background: linear-gradient(270deg, #0200F7 0%, #EA1B25 100%) !important;
  color: #ffffff !important;
  border: none !important;
}
.swal2-custom-icon {
  transform: scale(0.7) !important;
  margin: 0 auto !important;
}