/************** style_css 
* Page_Home
* Page_Products
 **************/

/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@400;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  font-family: "Roboto", sans-serif;
}

:root {
  --main-color: #fcb700;
  --dark-color: #222222;
  --parg-color: #666666;
  --bg-color: #f3f3f3;
  --p-color: #7b7b7b;
  --dark-red: #d01418;
  --border-color: #6666662a;
  --name-item: #0066c0;
  --white-color: #fff;
  --soft-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --hover-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
  --success-color: #28a745;
}

body {
  background: #f5f6f9;
  margin-top: 180px;
}

h1,
h1,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

img {
  width: 100%;
}

input,
select,
button {
  border: none;
  outline: none;
}

p {
  color: var(--parg-color);
}

.container {
  width: 90%;
  margin: auto;
  max-width: 1350px;
}

/* @media (min-width: 1440px) {
  .container {
    width: 80%;
  }
}  */

@media (max-width: 1500px) {
  .container {
    width: 90%;
  }
}

/* =========== header =========== */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white-color);
  z-index: 1000;
}

header .top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

header .top-nav .logo img {
  width: 150px;
}

header .top-nav .search {
  width: 610px;
  display: flex;
  align-items: center;
  background-color: var(--bg-color);
  border-radius: 2px;
}

header .top-nav .search input {
  height: 55px;
  width: 400px;
  padding: 5px 15px 5px 10px;
  background-color: var(--bg-color);
}

header .top-nav .search .select-box {
  position: relative;
}

header .top-nav .search .select-box::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 1px;
  height: 50%;
  background: #b9b9b9;
}

header .top-nav .search select {
  height: 55px;
  width: 190px;
  background: var(--bg-color);
  font-size: 16px;
  cursor: pointer;
  padding-left: 10px;
  margin-right: 10px;
}

header .top-nav .search select option {
  font-size: 15px;
}

header .top-nav .search button {
  height: 55px;
  width: 60px;
  background-color: var(--main-color);
  font-size: 18px;
  cursor: pointer;
}

header .top-nav .cart_header {
  display: flex;
  gap: 10px;
  align-items: center;
}

header .top-nav .cart_header .icon_cart {
  position: relative;
}

header .top-nav .cart_header i {
  color: var(--dark-color);
  font-size: 20px;
  border: 1px solid var(--border-color);
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s ease;
}

header .top-nav .cart_header i:hover {
  background-color: var(--main-color);
  color: var(--white-color);
}

header .top-nav .cart_header .count_item {
  position: absolute;
  background-color: var(--main-color);
  width: 20px;
  height: 20px;
  font-size: 13px;
  border-radius: 50%;
  line-height: 20px;
  text-align: center;
  top: -5px;
  right: 0;
  color: var(--dark-color);
  border: 1px solid var(--border-color);
}

header .top-nav .cart_header .total_price {
  margin-bottom: 8px;
}

/* ========= nav ===========  */
header nav {
  border-top: 1px solid var(--border-color);
}

header .links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  gap: 50px;
}

.category_links {
  display: flex;
  align-items: center;
  gap: 15px;
  height: 100%;
}

.category_links .category_nav {
  width: 220px;
  position: relative;
  height: 100%;
}

.category_links .category_nav .category_btn {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--main-color);
  padding: 0 15px;
  cursor: pointer;
}

.category_links .category_nav .category_btn p {
  color: var(--white-color);
  font-weight: 600;
  font-size: 15px;
}

.category_links .category_nav .category_btn i {
  color: var(--white-color);
}

.category_links .category_nav .category_nav_list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--white-color);
  border: 1px solid #999;
  border-top: 0;
  display: flex;
  flex-direction: column;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transition: 0.3s ease-in-out;
}

.category_links .category_nav .category_nav_list.active {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.category_links .category_nav .category_nav_list a {
  padding: 14px 10px;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
  color: var(--dark-color);
}

.category_links .category_nav .category_nav_list a:last-child {
  border-bottom: 0;
}

.category_links .category_nav .category_nav_list a:hover {
  background: #d0d0d0;
}

header .links ul {
  display: flex;
  gap: 35px;
}

header .links ul li {
  position: relative;
  padding: 20px 0;
}

header .links ul li a {
  color: var(--dark-color);
  text-transform: uppercase;
  font-weight: bold;
  font-size: 15px;
  transition: 0.3s ease-in-out;
}

header .links ul li.active a,
header .links ul li:hover a {
  color: var(--main-color);
}

header .links .login_signup a {
  color: var(--dark-color);
  padding: 10px 20px;
  background-color: var(--main-color);
  margin-left: 10px;
  border-radius: 5px;
}
/* =================== end header ======================= */

/* -================ cart_products ===================== */
.cart {
  position: fixed;
  top: 0;
  right: -400px;
  bottom: 0;
  background: #fff;
  z-index: 1100;
  padding: 30px;
  border-left: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 400px;
  transition: 0.5s ease-in-out;
}

.cart.active {
  right: 0;
}

.cart .top_cart {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart .top_cart .close_cart i {
  font-size: 35px;
  cursor: pointer;
}

.cart .top_cart h3 {
  font-size: 18px;
}

.cart .top_cart h3 span {
  font-size: 14px;
  color: var(--parg-color);
  font-weight: normal;
}

.cart .items_in_cart {
  padding: 20px 0;
  border-block: 1px solid var(--border-color);
  margin-block: 20px;
  height: calc(100% - 200px);
  overflow-y: auto;
}

.cart .item_cart {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.cart .item_cart:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.cart .item_cart img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #eee;
}

.cart .item_cart .content {
    flex: 1;
}

.cart .item_cart h4 {
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 15px;
  color: var(--dark-color);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cart .item_cart .price_cart {
    font-weight: 700;
    color: var(--dark-red);
    font-size: 15px;
    margin-bottom: 5px;
}

.cart .item_cart .qty_control {
    font-size: 13px;
    color: var(--parg-color);
    background: #f5f5f5;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
}

.cart .item_cart .delete_item {
  outline: none;
  border: none;
  background: transparent;
  color: #999;
  transition: 0.3s;
  padding: 5px;
}

.cart .item_cart .delete_item i {
  font-size: 18px;
  cursor: pointer;
}

.cart .item_cart .delete_item:hover {
  color: var(--dark-red);
  background: #fff0f0;
  border-radius: 50%;
}

.cart .bottom_cart .total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
  padding-top: 15px;
  border-top: 2px solid #f5f5f5;
  align-items: center;
}

.cart .bottom_cart .total p {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-color);
}

.cart .bottom_cart .total .price_cart_total {
  color: var(--main-color);
  font-size: 20px;
  font-weight: bold;
}

.cart .button_cart {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart .button_cart .btn_cart {
  border: 2px solid var(--main-color);
  border-radius: 5px;
  color: var(--dark-color);
  padding: 15px 0;
  text-align: center;
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
  background-color: var(--main-color);
  transition: 0.3s ease;
}

.cart .button_cart .btn_cart:hover {
  background-color: transparent;
}

.cart .button_cart .trans_bg {
  background-color: transparent;
}

.cart .button_cart .trans_bg:hover {
  background-color: var(--main-color);
}
/* =========== end cart ==========*/

/* ========= landing slider =======*/
.slider {
  position: relative;
}

.slider .container {
  display: flex;
  justify-content: space-between;
}

.slider .container .slider-bar {
  width: 23%;
  height: 100%;
  object-fit: cover;
}

.slider .container .slider-bar a {
  height: 100%;
  width: 100%;
}

/* ========== slider_imags =========== */
.slider .container .slider-swp {
  width: 75%;
  overflow: hidden;
  position: relative;
  z-index: -1;
}

.slider .container .slider-swp .swiper-wrapper {
  height: auto !important;
}

.slider .container .slider-swp .swiper-pagination span {
  background-color: #fff;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: var(--main-color) !important;
  width: 35px !important;
  height: 8px !important;
  border-radius: 30px !important;
}
/* ============= end slider img ============= */

/* ============== feature ============ */
.features {
  margin: 50px 0;
}

.features .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 2fr));
  background-color: #fff;
  padding: 15px 20px;
  border-radius: 5px;
  justify-content: space-between;
  /* flex-wrap: wrap; */
}

.features .container .feature_item {
  width: 18%;
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.features .container .feature_item img {
  width: 50px;
}

.features .container .feature_item h4 {
  margin-bottom: 8px;
  font-size: 15px;
}

.features .container .feature_item p {
  font-size: 12px;
}
/* ============== end features ============= */

/* ============= banners ================  */
.banner {
  margin: 50px 0;
}

.banner .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.banner .container .box {
  background: url(../Image/bg_banner3.jpg);
  background-size: cover;
  background-position: center;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 10px;
  position: relative;
}

.banner .container .box img {
  width: 100px;
  transition: 0.3s;
}

.banner .container .box:hover img {
  scale: 1.05;
}

.banner .container .box h5 {
  font-size: 16px;
}

.banner .container .box .sale {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 7px 0;
}

.banner .container .box .sale span {
  font-size: 25px;
  font-weight: bold;
  color: var(--main-color);
}

.banner .container .box .sale h6 {
  font-size: 14px;
  font-weight: bold;
}

.banner .container .box .link_btn {
  position: absolute;
  width: 100%;
  height: 100%;
}
/* =================== end banners ================ */

/* Section Header Styles */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #eee;
}

.section-header h2 {
  color: #222;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.section-header h2 span {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
  font-weight: 400;
}

.view-all {
  color: var(--main-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.view-all:hover {
  color: var(--dark-color);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* Special Offers Section */
.special-offers {
  background-color: #f9f9f9;
  padding: 60px 0;
  margin: 40px 0;
}

/* Testimonials Section */
.testimonials {
  background-color: #fff;
  padding: 60px 0;
}

.testimonials-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 0;
  scrollbar-width: none; /* Firefox */
}

.testimonials-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* Blog/News Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ===================slider_card_sales =========== */
.slider {
  margin-bottom: 50px;
}

.top_slider {
  position: relative;
  margin-bottom: 20px;
  border-bottom: 3px solid var(--main-color);
}

.top_slider h2 {
  text-transform: uppercase;
  position: relative;
  background: var(--main-color);
  color: var(--white-color);
  font-size: 18px;
  padding: 10px 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  border-top-right-radius: 5px;
}

.top_slider h2::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 0;
  z-index: 9;
  border-left: 20px solid transparent;
  background: #f5f6f9;
  left: 0;
  border-bottom: 20px solid #fcb900c2;
}

.top_slider h2 {
  color: var(--white-color);
}

/* product_card_slider */
.product {
  position: relative;
  padding: 10px 20px;
  border-radius: 5px;
  width: 25%;
  margin-right: 0;
}

.product .img_product {
  width: 250px;
  height: 250px;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
}

.product .img_product img {
  object-fit: cover;
  min-height: 100%;
  height: auto;
  transition: all 0.5s ease;
  width: 100%;
  height: auto;
}

.product .img_product::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease;
  opacity: 0;
}

.product .img_product:hover::after {
  position: absolute;
  content: "";
  transform: translateY(0);
  background: linear-gradient(
    35deg,
    rgba(0, 0, 46, 0.8) 25%,
    rgba(0, 0, 46, 0)
  );
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
}

.product .img_product:hover img {
  transform: scale(1.3) translate(10%, 10%);
}

.product .img_product .info {
  position: absolute;
  z-index: 3;
  opacity: 0;
  overflow: hidden;
  transform: translateX(-105%);
  transition: all 0.4s ease;
  left: 5%;
  right: 5%;
  bottom: 5%;
  padding: 10px 12px;
  border-left: 4px solid #fff;
  color: #ffffff;
}
.product .img_product:hover .info {
  opacity: 1;
  transform: translateX(0);
}
.product .img_product .info h2 {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 23px;
  margin-bottom: 10px;
}
.product .img_product .info h2,
.product .img_product .info p {
  transition: all 0.7s ease;
  transform: translateX(-100%);
  overflow: hidden;
}
.product .img_product:hover .info h2,
.product .img_product:hover .info p {
  transform: translateX(0);
}
.product .img_product .info p {
  font-size: 13px;
  line-height: 17px;
  color: var(--main-color);
  font-weight: bold;
}

.slider .container .myswiper {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
}

.slider .container .myswiper .btn_swiper {
  position: absolute;
  top: 30px;
  right: 0;
  background: var(--main-color);
  color: #fff;
  font-weight: bold;
  padding: 0 18px;
  border-radius: 5px;
  height: 35px;
  width: 35px;
}

.slider .container .myswiper .btn_swiper::after {
  font-size: 12px;
}

.slider .container .myswiper .btn_swiper.swiper-button-prev {
  left: calc(100% - 80px);
}

/* =============== Footer ==================  */
footer {
  background: #394150;
}

footer .container {
  display: flex;
  justify-content: space-between;
  padding: 40px 0;
}

footer .container .big-row {
  width: 30%;
}

footer .container .big-row .hotline {
  display: flex;
  align-items: center;
  margin: 15px 0;
  gap: 10px;
}

footer .container .big-row .hotline i {
  font-size: 60px;
  color: var(--main-color);
}

footer .container .big-row .hotline h5 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
}

footer .container .big-row .hotline h6 {
  color: var(--main-color);
  font-size: 18px;
}

footer .container .big-row p {
  width: 90%;
  color: #b1b1b1;
  font-size: 14px;
  line-height: 1.5;
}

footer .container .row {
  width: 22%;
}

footer .container .row h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
}

footer .container .row .links {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

footer .container .row .links a {
  color: #b1b1b1;
  font-size: 14px;
  position: relative;
  left: 0;
  transition: 0.3s ease-in-out;
}

footer .container .row .links a:hover {
  left: 8px;
  color: var(--main-color);
}

footer .bottom_footer {
  background-color: #202935;
}

footer .bottom_footer .container {
  padding: 20px 0;
  align-items: center;
}

footer .bottom_footer .container span {
  color: var(--main-color);
}

footer .bottom_footer .payment_img {
  display: flex;
  gap: 10px;
}

footer .bottom_footer .payment_img img {
  filter: grayscale(100%);
  cursor: pointer;
  transition: 0.3s;
}

footer .bottom_footer .payment_img img:hover {
  filter: grayscale(0%);
}

/* ###################### Page_Products ########################## */
.product-field {
  padding: 40px 20px;
  background-color: white;
  margin-top: -20px;
}

.product-field .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.product-field .container .filter {
  background-color: var(--white-color);
  width: 280px;
  padding: 25px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  height: max-content;
  position: sticky;
  top: 100px; /* Adjust based on header height */
  transition: 0.3s ease-in-out;
}

.filter_header_mobile {
    display: none;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.filter_header_mobile h3 {
    font-size: 18px;
    font-weight: 700;
}

.filter_header_mobile i {
    font-size: 24px;
    cursor: pointer;
    color: var(--dark-red);
}

.filter_group {
    margin-bottom: 25px;
}

.filter_group:last-child {
    margin-bottom: 0;
}

.filter_group h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter_group h4 i {
    color: var(--main-color);
}

/* Search Input */
.search_filter input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: 0.3s;
}

.search_filter input:focus {
    border-color: var(--main-color);
    box-shadow: 0 0 0 3px rgba(252, 183, 0, 0.1);
}

/* Checkbox Items */
.filter .content .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  cursor: pointer;
  transition: 0.2s;
}

.filter .content .item:hover span {
    color: var(--main-color);
}

.filter .content .item span {
    font-size: 14px;
    color: #444;
    transition: 0.2s;
}

.filter-checkbox {
    width: 16px;
    height: 16px;
    accent-color: var(--main-color);
    cursor: pointer;
}

/* Price Filter */
.price_filter .price_inputs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.price_filter input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
}

.price_filter span {
    font-weight: bold;
    color: #999;
}

.btn_apply_filter {
    width: 100%;
    padding: 8px;
    background: var(--dark-color);
    color: var(--white-color);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

.btn_apply_filter:hover {
    background: var(--main-color);
    color: var(--dark-color);
}

.product-field .container ul {
  width: calc(100% - 280px);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.product-field ul li {
  list-style: none;
  height: auto;
  transition: 0.5s all;
  background: whitesmoke;
  border-radius: 20px;
  padding: 10px;
  margin: 200px 10px 50px 10px;
  position: relative;
}

picture {
  background: #eee;
  padding: 5px;
  position: absolute;
  right: 0;
  bottom: 41%;
  width: 70%;
  height: 85%;
  border-radius: 50px 20px 0 20px;
  transform: skewY(40deg);
  overflow: hidden;
  box-shadow: 0px 1px 0px #00000020, -1px 0px 0px #ccc;
  transition: 0.4s ease-in-out;
}

picture img {
  width: 100%;
  z-index: 1;
  transform: skewY(-40deg);
  padding: 25px 0 0 0;
  transition: 0.4s ease-in-out;
}

picture:hover {
  overflow: visible;
}
picture:hover img {
  scale: 1.5;
}

.detail {
  width: 100%;
  height: 100%;
}

.detail .icon {
  display: flex;
  flex-direction: column;
  height: 55%;
  padding: 20px 5px;
}

.icon span {
  background: #00000030;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0;
  border-radius: 50%;
  margin: 0 0 20px -5px;
  font-size: 20px;
  color: white;
  transition: 0.3s ease-in-out;
}

.icon span:hover {
  background: var(--main-color);
  cursor: pointer;
}

.detail > strong {
  display: inherit;
  margin: 20px;
  font-size: 30px;
  letter-spacing: 2px;
  color: var(--main-color);
}

.detail > span {
  display: inherit;
  padding: 0 20px;
  width: 80%;
}

.detail small a {
  color: white;
}

.detail small {
  display: inline-block;
  padding: 8px 20px;
  margin: 15px;
  font-weight: bold;
  border-radius: 6px;
  background: var(--main-color);
  cursor: pointer;
  color: white;
  transition: 0.3s ease-in-out;
}

.detail small:hover {
  background: var(--white-color);
  border-color: var(--main-color);
}

.detail small:hover a {
  color: var(--main-color);
}

li h4 {
  position: absolute;
  right: 10px;
  top: 50%;
  font-size: 30px;
  color: var(--main-color);
  text-shadow: 1px 1px 2px var(--main-color);
}

li del {
  position: absolute;
  right: 10px;
  top: 42%;
  font-size: 30px;
  color: #ccc;
  font-weight: bold;
  text-decoration-line: line-through;
}

.pagination {
  padding: 8px 20px;
  background: whitesmoke;
  border: 1px solid var(--border-color);
  display: flex;
  justify-content: center;
  align-items: center;
  width: max-content;
  margin: auto;
  margin-bottom: 40px;
}

.pagination .btn_page {
  font-size: 22px;
  padding: 0 15px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.pagination .btn_page:hover {
  color: var(--main-color);
}

.pagination .num_page {
  border: 1px solid transparent;
  width: 100%;
  padding: 11px 15px 8px 15px;
  font-size: 18px;
}

.pagination .num_page.active,
.pagination .num_page:hover {
  background-color: var(--main-color);
  color: var(--white-color);
  cursor: pointer;
}
/* =================== Clean Elite Sections Font ================ */
.how-it-works, .featured_plumbers_elite {
    font-family: 'Cairo', sans-serif !important;
}

/* =================== How It Works (Clean Elite) ================ */
.how-it-works {
    padding: 100px 0;
    background: var(--white-color);
}

.section_title {
    text-align: center;
    margin-bottom: 70px;
}

.section_title h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section_title h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    inset-inline-start: 50%;
    transform: translateX(50%); 
    width: 60px;
    height: 4px;
    background: var(--main-color);
    border-radius: 10px;
}

.section_title p {
    color: var(--parg-color);
    max-width: 650px;
    margin: 15px auto 0;
    font-size: 17px;
}

.steps_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.step_card {
    background: var(--bg-color);
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
    transition: 0.4s;
    position: relative;
    border: 1px solid transparent;
}

.step_card:hover {
    background: var(--white-color);
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
    border-color: var(--border-color);
}

.step_card .step_num {
    position: absolute;
    top: 25px;
    inset-inline-end: 25px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: rgba(252, 183, 0, 0.2);
    line-height: 1;
}

.step_card .icon_wrap {
    width: 90px;
    height: 90px;
    background: var(--white-color);
    color: var(--main-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 34px;
    box-shadow: var(--soft-shadow);
    transition: 0.3s;
}

.step_card:hover .icon_wrap {
    background: var(--main-color);
    color: var(--white-color);
}

.step_card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step_card p {
    font-size: 15px;
    line-height: 1.7;
}

/* =================== Featured Plumbers Elite ================ */
.featured_plumbers_elite {
    padding: 100px 0;
    background: #fdfdfd;
}

.plumbers_elite_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.plumber_elite_card {
    background: var(--white-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    transition: 0.3s;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.plumber_elite_card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
}

.plumber_elite_card .plumber_img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.plumber_elite_card .plumber_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.plumber_elite_card:hover .plumber_img img {
    transform: scale(1.1);
}

.plumber_elite_card .verified_badge {
    position: absolute;
    bottom: 15px;
    inset-inline-end: 15px;
    background: var(--white-color);
    color: var(--success-color);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.plumber_elite_card .plumber_info {
    padding: 25px;
    text-align: center;
}

.plumber_elite_card .specialty {
    color: var(--main-color);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.plumber_elite_card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.plumber_elite_card .rating_row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.plumber_elite_card .stars {
    color: #ffa000;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.plumber_elite_card .reviews {
    color: var(--parg-color);
    font-size: 14px;
}

.plumber_elite_card .btn_view_profile {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--bg-color);
    color: var(--dark-color);
    border-radius: 12px;
    font-weight: 700;
    transition: 0.3s;
}

.plumber_elite_card .btn_view_profile:hover {
    background: var(--main-color);
    color: var(--white-color);
}

.center_btn {
    text-align: center;
}

.view_all_plumbers {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: var(--dark-color);
    color: var(--white-color);
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
}

.view_all_plumbers:hover {
    background: var(--main-color);
    transform: scale(1.05);
}

.view_all_plumbers i {
    font-size: 14px;
}
