body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    background: #f8f8f8;
    overflow-x: hidden;
  }
  

  :root {
    --bs-link-decoration: none;
    --bs-link-hover-decoration: none;
  }
  
  a, a:link, a:visited, a:hover, a:active {
    font-size: 0.7rem;
    font-weight: 700;
   
    text-decoration: none !important;
    font-family: "Inter", sans-serif;
  }
  
  /* Override Bootstrap's default link styles */
  a, a:link, a:visited, a:hover, a:active {
    text-decoration: none !important;
  }
  
  /* Specific override for buttons if needed */
  .hero-shop-btn, .hero-shop-btn:hover, .hero-shop-btn:focus {
    text-decoration: none !important;
  }
  
  /* If you're using Bootstrap 5, you can also try resetting the link variables */
  :root {
    --bs-link-decoration: none;
    --bs-link-hover-decoration: none;
  }


  

 
  @media (max-width:767px) {
    .container {
      padding: 0 2rem;
    }
  }
  
  input {
    font-size: 1.3rem;
  }
  
  input[type=checkbox] {
    accent-color: #e37302;
  }
  
  button {
    border: none;
    outline: none;
    background: transparent;
  }

  .header-user {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
    font-size: 0.9rem;
    font-weight: 700;
  }

  .header-user .cart-text a {
    font-size: 0.9rem;
    color: #797979;
  }

  
  .shop-btn {
    padding: 0.8rem 1.8rem;
    margin: 4rem 0;
    text-align: center;
    border-radius: 3rem;
    display: inline-block;
    background: #24184a;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    color: #FFFFFF;
    font-family: "Inter", sans-serif;
    transition: all 0.3s;
    overflow: hidden;
    z-index: 1;
  }
  
  .coupon-btn {
    padding: 0.9rem 0.9rem;
    margin: 2rem 0;
    text-align: center;
    border-radius: 3rem;
    display: inline-block;
    background: #24184a;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    color: #FFFFFF;
    font-family: "Inter", sans-serif;
    transition: all 0.3s;
    overflow: hidden;
    z-index: 1;
  }
  
  .shop-btn::after {
    content: " ";
    width: 0%;
    height: 100%;
    background: #232532;
    position: absolute;
    transition: all 0.4s ease-in-out;
    right: 0;
    top: 0;
    z-index: -3;
  }
  
  .coupon-btn::after {
    content: " ";
    width: 0%;
    height: 100%;
    background: #232532;
    position: absolute;
    transition: all 0.4s ease-in-out;
    right: 0;
    top: 0;
    z-index: -3;
  }
  
  .shop-btn svg {
    fill: #FFFFFF;
    transition: all 0.5s;
  }
  
  .coupon-btn svg {
    fill: #FFFFFF;
    transition: all 0.5s;
  }
  
  .shop-btn span {
    margin-left: 8px;
    font-size: 1.5rem;
    width: 100%;
    z-index: 1;
    transition: all 0.4s ease-in-out;
  }
  
  .coupon-btn span {
    margin-left: 8px;
    font-size: 1.5rem;
    width: 100%;
    z-index: 1;
    transition: all 0.4s ease-in-out;
  }
  
  
  .shop-btn:hover {
    color: #FFFFFF;
    background-color: #e37302;
  }
  
  .coupon-btn:hover {
    color: #FFFFFF;
    background-color: #e37302;
  }
  
  .shop-btn:hover::after {
    right: auto;
    left: 0;
    width: 100%;
  }
  
  .coupon-btn:hover::after {
    right: auto;
    left: 0;
    width: 100%;
  }
  
  .shop-btn:hover svg {
    fill: currentColor;
    fill: #FFFFFF;
    transform: translate(5px);
  }
  
  .coupon-btn:hover svg {
    fill: currentColor;
    fill: #FFFFFF;
    transform: translate(5px);
  }
  
  .shop-btn:hover span {
    color: #FFFFFF;
  }
  
  
  .coupon-btn:hover span {
    color: #FFFFFF;
  }
  
  .product {
    padding: 6rem 0;
  }
  @media (max-width:1023px) {
    .product {
      padding: 3rem 0;
    }
  }
  
  .product-wrapper {
    width: 100%;
    height: 24.5rem;
    padding: 0 0 2rem 0;
    border-radius: 1.2rem;
    background-color: #FFFFFF;
    font-family: "Jost", sans-serif;
    cursor: pointer;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: relative;
    transition: all 0.2s;
    border: 1px solid #FFFFFF;
    overflow: hidden;
  }
  .product-wrapper .product-img {
    height: 13.3rem;
    position: relative;
  }
  .product-wrapper .product-img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
  }
  .product-wrapper .product-img .product-cart-items {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
  }
  .product-wrapper .product-img .product-cart-items .cart-item svg rect {
    fill: currentColor;
    fill: #FFFFFF;
    transition: all 0.2s linear;
  }
  .product-wrapper .product-img .product-cart-items .cart-item svg path {
    fill: currentColor;
    fill: #232532;
  }
  .product-wrapper .product-img .product-cart-items .cart-item:hover svg rect {
    fill: currentColor;
    fill: #e37302;
  }
  .product-wrapper .product-img .product-cart-items .cart-item:hover svg path {
    fill: currentColor;
    fill: #FFFFFF;
  }
  .product-wrapper .product-info {
    margin: 0.7rem 1.5rem 1.5rem;
    text-align: center;
  }
  .product-wrapper .product-info .ratings {
    margin: 0.6rem 0;
  }
  .product-wrapper .product-details {
    font-size: 0.8rem;
    font-family: "Jost", sans-serif;
    color: #24184A;
  }
  @media (max-width:767px) {
    .product-wrapper .product-details {
      font-size: 1.0rem;
      padding: 0.8rem;
    }
  }
  .product-wrapper .product-cart-btn {
    position: absolute;
    bottom: 1rem;
    right: 0;
    transition: all 0.4s;
  }
  .product-wrapper:hover {
    border: 1px solid #e37302;
  }
  .product-wrapper:hover .product-cart-items {
    bottom: 15%;
    opacity: 1;
    visibility: visible;
  }
  .product-wrapper:hover .product-cart-items .product-cart-btn {
    border-bottom-right-radius: 1.2rem;
  }
  @media (max-width:767px) {
    .product-wrapper {
      height: 30rem;
    }

    .product-img{
      height: 20rem;
    } 

    .product-wrapper .product-info {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0px;
      margin: 0rem;
    }
    .product-wrapper .price {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      gap: 0.25rem;
    }
  }
  @media (max-width:767px) and (max-width:767px) {
    .product-wrapper .price span {
      margin-top: auto;
      font-size: 0.9rem;
    }
  }
  
  .product-wrapper-two .product-img .product-cart-items .cart-item svg rect {
    fill: #FFFFFF;
  }
  .product-wrapper-two .product-img .product-cart-items .cart-item svg path {
    fill: #232532;
  }
  .product-wrapper-two .product-img .product-cart-items .cart-item:hover svg rect {
    fill: #FF7062;
  }
  .product-wrapper-two .product-img .product-cart-items .cart-item:hover svg path {
    fill: #FFFFFF;
  }
  .product-wrapper-two .price .new-price {
    color: #FF7062;
  }
  .product-wrapper-two .product-cart-btn .product-btn {
    background-color: rgba(255, 112, 98, 0.2);
    color: #FF7062;
  }
  .product-wrapper-two .product-cart-btn .product-btn:hover {
    background-color: #FF7062;
    color: #FFFFFF;
  }
  .product-wrapper-two:hover {
    border: 1px solid #FF7062;
  }
  
  .product-wrapper-three .product-img .product-cart-items .cart-item svg rect {
    fill: #FFFFFF;
  }
  .product-wrapper-three .product-img .product-cart-items .cart-item svg path {
    fill: #232532;
  }
  .product-wrapper-three .product-img .product-cart-items .cart-item:hover svg rect {
    fill: #232532;
  }
  .product-wrapper-three .product-img .product-cart-items .cart-item:hover svg path {
    fill: #FFFFFF;
  }
  .product-wrapper-three .price .new-price {
    color: #232532;
  }
  .product-wrapper-three .product-cart-btn .product-btn {
    background-color: rgba(35, 37, 50, 0.2);
    color: #232532;
  }
  .product-wrapper-three .product-cart-btn .product-btn:hover {
    background-color: #232532;
    color: #FFFFFF;
  }
  .product-wrapper-three:hover {
    border: 1px solid #232532;
  }
  
  .price {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    color: #e37302;
  }
  .price .points {
    color: #e37302;
  }
  .price .new-price {
    color: #e37302;
  }
  .price span {
    font-size: 0.9rem;
    color: #797979;
    font-weight: 500;
  }
  
  .product-btn {
    padding: 1.2rem 1.6rem 1.2rem 2.5rem;
    border-top-left-radius: 3rem;
    background: #24184a;
    color: #ffffff;
    font-size: 1.6rem;
    transition: all 0.4s;
  }
  .product-btn:hover {
    background-color: #e37302;
    color: #FFFFFF;
  }
  
  .section-title {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
  }
  .section-title .view {
    font-family: "Jost", sans-serif;
    position: relative;
  }
  .section-title .view::before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #232532;
    top: 2.2rem;
    left: 2px;
    transition: all 0.2s;
    opacity: 0;
    visibility: hidden;
  }
  .section-title .view:hover::before {
    opacity: 1;
    visibility: visible;
    width: 7rem;
  }
  @media (max-width:767px) {
    .section-title h5 {
      font-size: 1.8rem;
    }
    .section-title a {
      margin: auto;
      font-size: 0.9rem;
    }
  }
  
  .blog-item,
  .cart-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
  }
  .blog-item p,
  .cart-content p {
    font-size: 2rem;
    color: #232532;
    font-weight: 600;
  }
  .blog-item .shop-btn,
  .cart-content .shop-btn {
    margin: 0;
  }
  
  .modal-wrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2;
  }
  
  .modal-wrapper .anywhere-away {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.37);
    width: 100%;
    height: 100%;
  }
  
  .modal-main {
    position: relative;
    background: #FFFFFF;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0px;
  }
  .modal-main .wrapper-close-btn {
    position: absolute;
    right: 3rem;
    top: 3rem;
    width: 2rem;
    height: 2rem;
    cursor: pointer;
  }
  .modal-main .wrapper-close-btn svg {
    fill: currentColor;
    fill: red;
    stroke: red;
  }
  .modal-main .wrapper-main .divider {
    height: 3rem;
    width: 1px;
    background: #e8e8e8;
  }
  
  .slectbox-body .country-options {
    position: absolute;
    z-index: 5;
    background-color: #FFFFFF;
    padding: 0px 0;
    margin-top: 13px;
    width: 20.5rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border: 1px solid rgba(121, 121, 121, 0.18);
    z-index: 20;
    overflow: hidden;
  }
  .slectbox-body .country-options .all-option {
    cursor: pointer;
    padding: 9px 16px;
  }
  .slectbox-body .country-options .all-option .option-text {
    font-size: 1.2rem;
  }
  .slectbox-body .country-options .all-option:hover {
    background: rgba(121, 121, 121, 0.18);
  }
  .slectbox-body .country-options .all-option:hover .option-text {
    font-weight: 700;
  }
  .slectbox-body .clickAway {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    display: block;
  }
  
  .header-top-section {
    border-bottom: 1px solid #e37302;
    background: #fcfaf1;
  }


.header-top-section {
    border-bottom: 1px solid #e37302;
    background: #fcfaf1;
  }
  
  .header-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
    padding: 0.5rem 0;
  }
  .header-top .header-profile {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }

  .header-top .header-contact {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }

  .header-profile-atag {
text-decoration: none;
color: #232532;
font-size: 0.9rem;
font-weight: 600;

  }

  .header-top .header-contact .contact-number {
    color: #24184a;
    font-weight: 700;
  }
  
  .header-center {
    display: flex;
    flex-direction: row;
    align-items: center;
    
    gap: 0px;
    padding: 1.2rem 0 1.2rem 0;
  }



  .header-center .header-cart-items {
    display: flex;
    flex-direction: row;
    
    align-items: center;
    justify-content: flex-end;
    gap: 2.5rem;
    width: 100%;
  }
  .header-center .header-cart-items .cart-item {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
  }
  .header-center .header-cart-items .cart-item .cart-text {
    font-size: 1rem;
    color: #797979;
  }
  .header-center .header-cart-items .header-cart {
    position: relative;
  }
  .header-center .header-cart-items .header-cart .cart-submenu {
    position: absolute;
    width: 30rem;
    background: #FFFFFF;
    z-index: 2;
    left: -15rem;
    top: 5rem;
    border-top: 3px solid #24184a;
    border-radius: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  }
  .header-center .header-cart-items .header-cart .cart-submenu .wrapper-title {
    font-size: 2rem;
  }
  .header-center .header-cart-items .header-cart .cart-submenu .cart-wrapper-item {
    padding: 1rem;
    width: 100%;
    height: 30.1rem;
    overflow-y: scroll;
  }
  .header-center .header-cart-items .header-cart .cart-submenu .cart-wrapper-item .wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0px;
    margin-top: 2rem;
    width: 100%;
  }
  .header-center .header-cart-items .header-cart .cart-submenu .cart-wrapper-item .wrapper .wrapper-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
  }
  .header-center .header-cart-items .header-cart .cart-submenu .cart-wrapper-item .wrapper .wrapper-item .wrapper-title,
  .header-center .header-cart-items .header-cart .cart-submenu .cart-wrapper-item .wrapper .wrapper-item .new-price {
    font-size: 1.2rem;
  }
  .header-center .header-cart-items .header-cart .cart-submenu .cart-wrapper-item .wrapper .wrapper-item .wrapper-img {
    width: 6.5rem;
    height: auto;
    background: #ffd6ab;
    border-radius: 0.5rem;
  }
  .header-center .header-cart-items .header-cart .cart-submenu .cart-wrapper-item .wrapper .wrapper-item .wrapper-img img {
    width: 100%;
    height: 100%;
  }
  .header-center .header-cart-items .header-cart .cart-submenu .cart-wrapper-item::-webkit-scrollbar {
    width: 2px;
    height: 15rem;
    background: #ffd6ab;
  }
  .header-center .header-cart-items .header-cart .cart-submenu .cart-wrapper-item::-webkit-scrollbar-track {
    background: #e8e8e8;
  }
  .header-center .header-cart-items .header-cart .cart-submenu .cart-wrapper-item::-webkit-scrollbar-thumb {
    background: #8e8e8e;
  }
  .header-center .header-cart-items .header-cart .cart-submenu .cart-wrapper-section {
    width: 100%;
    padding: 2rem;
  }
  .header-center .header-cart-items .header-cart .cart-submenu .cart-wrapper-section .wrapper-line {
    width: 100%;
    height: 1px;
    background: #ffd6ab;
    border-radius: 1rem;
    margin-bottom: 1rem;
  }
  .header-center .header-cart-items .header-cart .cart-submenu .cart-wrapper-section .wrapper-subtotal {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
  }
  .header-center .header-cart-items .header-cart .cart-submenu .cart-wrapper-section .cart-btn {
    width: 100%;
    margin-top: 2rem;
  }
  .header-center .header-cart-items .header-cart .cart-submenu .cart-wrapper-section .cart-btn .shop-btn {
    background: #ddd;
    margin: 0.5rem 0;
    width: 100%;
    border-radius: 0.5rem;
    color: #232532;
    font-weight: 600;
  }
  .header-center .header-cart-items .header-cart .cart-submenu .cart-wrapper-section .cart-btn .shop-btn::after {
    display: none;
  }
  .header-center .header-cart-items .header-cart .cart-submenu .cart-wrapper-section .cart-btn .checkout-btn {
    background: #24184a;
    color: #FFFFFF;
  }
  .header-center .header-cart-items .header-cart:hover .cart-submenu {
    opacity: 1;
    visibility: visible;
  }

  .header-center .header-cart-items .header-user svg {
    fill: currentColor;
    fill: #797979;
  }
  
  .mobile-menu {
    padding: 10px;
    background-color: #ffd6ab;
  }
  
  .offcanvas.offcanvas-start {
    width: 380px;
  }
  
  .offcanvas-body {
    padding: 1rem 1.5rem;
  }
  .offcanvas-body .header-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
    margin: 1rem 0;
  }
  .offcanvas-body .header-top .header-cart {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
  }
  .offcanvas-body .header-top .shop-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0px;
    border-radius: 50%;
    padding: 0;
    margin: 0;
  }
  .offcanvas-body .header-top .shop-btn .btn-close {
    --bs-btn-close-bg: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="%23FFF" width="24px" height="24px"><path stroke-linecap="round" stroke-linejoin="round" d="M6 18L18 6M6 6l12 12" /></svg>');
    font-size: 1rem;
  }
  .offcanvas-body .header-top .shop-btn i {
    color: #FFFFFF;
  }
  .offcanvas-body .header-input {
    margin: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
    background: #FFFFFF;
    border: 1px solid #ffd6ab;
    margin-bottom: rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
  }
  .offcanvas-body .header-input input {
    background: #FFFFFF;
    border: none;
    outline: none;
  }

  .offcanvas-body .category-dropdown {
    margin-top: 2rem;
  }
  
  .offcanvas-body .category-dropdown .category-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.5rem;
  }
  .offcanvas-body .category-dropdown .category-list .category-list-item {
    list-style: none;
    width: 100%;
  }
  .offcanvas-body .category-dropdown .category-list .dropdown-item .dropdown-list-item {
    align-items: center;
    gap: 1rem;
  }
  .offcanvas-body .category-dropdown .category-list .dropdown-item .dropdown-list-item .dropdown-img {
    width: 2.2rem;
    height: 2.2rem;
  }
  .offcanvas-body .category-dropdown .category-list .dropdown-item .dropdown-list-item .dropdown-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .offcanvas-body .category-dropdown .category-list .dropdown-item .drop-down-list-icon span svg,
  .offcanvas-body .category-dropdown .category-list .dropdown-item .drop-down-list-icon span rect {
    fill: currentColor;
    fill: #24184a;
  }
  
  .header-bottom {
    background: #24184a;
    padding: 15px 0;
  }
  
  .header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
  
  .header-nav .category-menu-section {
    cursor: pointer;
    width: 16rem;
  }
  
  .header-nav .category-menu-section .empty {
    width: 100%;
    height: 100%;
    display: none;
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
  }
  
  .header-nav .category-menu-section .empty.active {
    display: block;
  }
  
  .header-nav .category-menu-section .category-item {
    background: #FFFFFF;
    width: 100%;
    border: none;
    padding: 1.2rem 1.5rem;
    border-radius: 5px 5px 0 0;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .header-nav .category-menu-section .category-item i {
    font-size: 12px;
  }
  
  .header-nav .category-menu-section .category-item .category-img {
    margin-right: 1rem;
  }
  
  .header-nav .category-menu-section .category-dropdown {
    overflow: hidden;
    width: 100%;
    max-height: 0;
    transition: max-height 0.3s ease-out;
    position: absolute;
    left: 0;
    top:3.6rem;
    z-index: 3;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .header-nav .category-menu-section .category-dropdown .category-list {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    list-style-type: none;
  }
  
  .header-nav .category-menu-section .category-dropdown .category-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.2rem;
    background: #FFFFFF;
    color: #232532;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
  }

  .header-nav .category-menu-section .category-dropdown .category-list-item .drop-down-list-icon{
    margin-left: 20px;
  }
  
  .header-nav .category-menu-section .category-dropdown .category-list-item:hover {
    background-color: #24184a;
  }

 
  .header-nav .category-menu-section .category-dropdown .category-list-item:hover .drop-down-list-icon{
    animation: iconMovementLoop 0.9s ease-out infinite;
  }
  
  @keyframes iconMovementLoop {
    0% {
      margin-left: 20px;
    }
    50% {
      margin-left: 25px;
    }
    100% {
      margin-left: 20px;
    }
  }
  
  .header-nav .category-menu-section .category-dropdown .category-list-item:hover .dropdown-text,
  .header-nav .category-menu-section .category-dropdown .category-list-item:hover .drop-down-list-icon svg,
  .header-nav .category-menu-section .category-dropdown .category-list-item:hover .drop-down-list-icon rect {
    color: #FFFFFF;
    fill: #FFFFFF;
  }
  
  .header-nav .category-menu-section .category-dropdown .category-list-item .dropdown-item,
  .header-nav .category-menu-section .category-dropdown .category-list-item .dropdown-list-item {
    display: flex;
    align-items: center;
  }
  
  .header-nav .category-menu-section .category-dropdown .category-list-item .dropdown-list-item {
    gap: 1rem;
    color: #232532;
    
  }
  
  .header-nav .category-menu-section .category-dropdown .category-list-item .dropdown-list-item .dropdown-img {
    width: 1.8rem;
    height: 1.8rem;
  }
  
  .header-nav .category-menu-section .category-dropdown .category-list-item .dropdown-list-item .dropdown-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .header-nav .category-menu-section .category-dropdown .category-list-item .dropdown-list-item .dropdown-text {
    font-size: 0.9rem;
   font-weight: 600;
  }
  
  .header-nav .category-menu-section .open-dropdown {
    max-height: var(--max-height);
  }
  
  .header-nav .list-text {
    font-size: 1rem;
    color: #FFFFFF;
    font-weight: 500;
  }



  .header-nav .shop-text {
    color: #ffffff;
  }

  
  .header-nav .header-nav-menu .menu-list {
    margin: auto;
    display: flex;
    flex-direction: row;
    align-items: center !important;
    justify-content: center !important;
    gap: 2rem;
  }


  @media (max-width: 1200px) {
    .header-nav .list-text {
      font-size: 0.6rem;
      color: #FFFFFF;
    }

    .header-nav .header-nav-menu .menu-list {
      margin: auto;
      display: flex;
      flex-direction: row;
      align-items: center !important;
      justify-content: center !important;
      gap: 1.4rem;
    }
  
  }


  @media (max-width: 1300px) {
    .header-nav .list-text {
      font-size: 0.7rem;
      color: #FFFFFF;
    }

    .header-nav .header-nav-menu .menu-list {
      margin: auto;
      display: flex;
      flex-direction: row;
      align-items: center !important;
      justify-content: center !important;
      gap: 1.6rem;
    }
  
  }



  @media (max-width: 1400px) {
    .header-nav .list-text {
      font-size: 0.6rem;
      color: #FFFFFF;
    }

    .header-nav .header-nav-menu .menu-list {
      margin: auto;
      display: flex;
      flex-direction: row;
      align-items: center !important;
      justify-content: center !important;
      gap: 1.8rem;
    }
  
  }



  
  .header-nav .header-nav-menu .menu-list li {
    position: relative;
    list-style: none;
  }
  .header-nav .header-nav-menu .menu-list li:hover .header-sub-menu {
    visibility: visible;
    opacity: 1;
  }
  .header-nav .header-nav-menu .menu-list .header-sub-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.5rem;
    width: 220px;
    position: absolute;
  }
  .header-nav .header-nav-menu .menu-list .header-sub-menu,
  .header-nav .header-nav-menu .menu-list .shop-menu {
    position: absolute;
    background: #FFFFFF;
    visibility: hidden;
    z-index: 2;
    opacity: 0;
    top: 2.7rem;
    left: 0;
    pointer-events: auto;
    transition: all 0.5s ease-in-out;
    border-radius: 0.5rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    padding: 1.1rem;
  }
  .header-nav .header-nav-menu .menu-list .header-sub-menu a,
  .header-nav .header-nav-menu .menu-list .shop-menu a {
    
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    color: #797979;
  }
  .header-nav .header-nav-menu .menu-list .header-sub-menu a:hover,
  .header-nav .header-nav-menu .menu-list .shop-menu a:hover {
    color: #24184a;
  }
  .header-nav .header-nav-menu .menu-list .mega-menu {
    position: unset;
  }
  .header-nav .header-nav-menu .menu-list .mega-menu .shop-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    gap: 3rem;
    width: 100%;
    height: 29.5rem;
    padding: 0 3rem;
    top: 6.1rem;
  }
  .header-nav .header-nav-menu .menu-list .mega-menu .shop-menu .menu-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    gap: 0px;
    flex: 1 1 0%;
  }
  .header-nav .header-nav-menu .menu-list .mega-menu .shop-menu .menu-wrapper .menu-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
  }
  .header-nav .header-nav-menu .menu-list .mega-menu .shop-menu .menu-wrapper .menu-list .menu-title {
    font-size: 1.8rem;
    font-weight: 600;
  }
  .header-nav .header-nav-menu .menu-list .mega-menu .shop-menu .menu-wrapper .menu-list ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
  }
  .header-nav .header-nav-menu .menu-list .mega-menu .shop-menu .shop-menu-img {
    width: 28.4rem;
    height: 23.5rem;
  }
  .header-nav .header-nav-menu .menu-list .mega-menu .shop-menu .shop-menu-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .header-nav .header-nav-menu .menu-list .mega-menu:hover .shop-menu {
    visibility: visible;
    opacity: 1;
  }
  @media (max-width:1200px) {
    .header-nav .header-nav-menu .menu-list {
      gap: 2rem;
    }

    .header-nav .list-text {
      font-size: 0.7rem;
      color: #FFFFFF;
    }
  }
  
  .dropdown-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }
  .dropdown-btn .dropdown-icon {
    width: 2.8rem;
    height: 2.6rem;
    border-radius: 50%;
    background-color: #e37302;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0px;
  }
  .dropdown-btn .dropdown-icon svg {
    fill: currentColor;
    fill: #FFFFFF;
  }
  .dropdown-btn .dropdown-text {
    font-size: 1.6rem;
    color: #FFFFFF;
  }

  .header-vendor-btn{
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
  }
  
  .header-vendor-btn .shop-btn {
    padding: 0.6rem 1.4rem;
    margin: 0px;
    text-align: center;
    border-radius: 3rem;
    display: inline-block;
    background: #e37302;
    font-size: 0.9rem;
    font-weight: 300;
    position: relative;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    transition: all 0.3s;
    overflow: hidden;
  }
  .header-vendor-btn .shop-btn::after {
    content: " ";
    width: 0%;
    height: 100%;
    background: #ffffff;
    position: absolute;
    transition: all 0.4s ease-in-out;
    right: 0;
    top: 0;
    z-index: -3;
  }
  .header-vendor-btn .shop-btn svg {
    fill: #FFFFFF;
    transition: all 0.5s;
  }
  .header-vendor-btn .shop-btn span {
    margin-left: 8px;
    font-size: 0.9rem;
    width: 100%;
    z-index: 1;
    transition: all 0.4s ease-in-out;
  }
  .header-vendor-btn .shop-btn:hover {
    color: #FFFFFF;
    background-color: #e37302;
  }
  .header-vendor-btn .shop-btn:hover::after {
    right: auto;
    left: 0;
    width: 100%;
  }
  .header-vendor-btn .shop-btn:hover svg {
    fill: currentColor;
    fill: #e37302;
    transform: translate(5px);
  }
  .header-vendor-btn .shop-btn:hover span {
    color: #e37302;
  }
  .header-vendor-btn .shop-btn .shop-list {
    color: #ffffff;
  }
  .header-vendor-btn .shop-btn svg {
    fill: #fafbff;
  }
  
  .header-two {
    background: #FFFFFF;
  }
  .header-two .header-top-section {
    border-bottom: 1px solid #efefef;
    background: #FFFFFF;
  }
  .header-two .header-top a span {
    font-size: 1.2rem;
  }
  .header-two .header-top .header-contact .header-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
  .header-two .header-search-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
    font-size: 1.2rem;
    width: 51.7rem;
    height: 4.4rem;
    border: 1px solid #e9e9e9;
    overflow: hidden;
  }
  .header-two .header-search-btn .header-input,
  .header-two .header-search-btn .search-btn {
    height: 100%;
    padding: 0 2rem;
    color: #232532;
    font-weight: 500;
    border: none;
    outline: none;
  }
  .header-two .header-search-btn .header-input::placeholder,
  .header-two .header-search-btn .search-btn::placeholder {
    color: #797979;
  }
  .header-two .header-search-btn .search-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
    width: 100%;
    color: #797979;
  }
  .header-two .header-search-btn .shop-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0px;
    height: 100%;
    border-radius: 0;
    background: #FF7062;
    padding: 1rem 2.2rem;
  }
  .header-two .header-search-btn .shop-btn::after {
    display: none;
  }
  .header-two .header-search-btn .shop-btn:hover {
    color: #232532;
  }
  .header-two .header-search-btn .divider {
    width: 1px;
    background: #eee;
    height: 2.5rem;
  }
  .header-two .header-search-btn #allcat {
    flex: 1 1 0%;
  }
  .header-two .header-bottom {
    background: #FF7062;
    padding: 0;
  }
  .header-two .header-nav .header-category-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3rem;
  }
  .header-two .header-nav .category-menu-section {
    width: 27rem;
    height: 5.3rem;
    margin-top: 1rem;
  }
  .header-two .header-nav .category-menu-section .category-dropdown .category-list-item:hover {
    background-color: #FF7062;
  }
  .header-two .header-nav .header-nav-menu .menu-list .header-sub-menu a:hover,
  .header-two .header-nav .header-nav-menu .menu-list .shop-menu a:hover {
    color: #FF7062;
  }
  .header-two .header-nav .header-vendor-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0px;
  }
  .header-two .header-nav .header-vendor-btn .shop-btn {
    border-radius: 0;
    background: #FFFFFF;
    padding: 1rem 2.2rem;
  }
  @media (max-width:1200px) {
    .header-two .header-nav .header-nav-menu .menu-list {
      gap: 2rem;
    }
  }
  .header-two .dropdown-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
    background: #FFFFFF;
    padding-right: 2.2rem;
    width: 100%;
    height: 100%;
    border-radius: 5px 5px 0 0;
  }
  .header-two .dropdown-btn .dropdown-btn-icon {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }
  .header-two .dropdown-btn .dropdown-icon {
    border-radius: 0;
  }
  .header-two .dropdown-btn .list-text {
    color: #232532;
    font-weight: 600;
  }
  .header-two .dropdown-btn .dropdown-text {
    font-size: 1.6rem;
    color: #FFFFFF;
  }
  
  .header-three .header-search-btn .shop-btn {
    background: #232532;
  }
  .header-three .header-bottom {
    background: #FFFFFF;
  }
  .header-three .header-nav .header-category-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3rem;
  }
  .header-three .header-nav .category-menu-section .category-dropdown .category-list-item:hover {
    background-color: #232532;
  }
  .header-three .header-nav .list-text {
    color: #232532;
  }
  .header-three .header-nav .header-nav-menu .menu-list .header-sub-menu a:hover,
  .header-three .header-nav .header-nav-menu .menu-list .shop-menu a:hover {
    color: #232532;
  }
  .header-three .header-nav .header-vendor-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0px;
  }
  .header-three .header-nav .header-vendor-btn .shop-btn {
    background: #232532;
    color: #FFFFFF;
  }
  .header-three .header-nav .header-vendor-btn .shop-btn .list-text {
    color: #FFFFFF;
  }
  @media (max-width:1200px) {
    .header-three .header-nav .header-nav-menu .menu-list {
      gap: 2rem;
    }
  }
  .header-three .dropdown-btn {
    background: #f5f5f5;
  }
  
  .mobile-menu-two {
    background-color: #FFFFFF;
  }
  .mobile-menu-two .offcanvas-body .header-top .shop-btn .btn-close {
    background-color: #FF7062;
  }
  .mobile-menu-two .offcanvas-body .category-dropdown .category-list .dropdown-item .drop-down-list-icon span svg,
  .mobile-menu-two .offcanvas-body .category-dropdown .category-list .dropdown-item .drop-down-list-icon span rect {
    fill: #FF7062;
  }
  
  .mobile-menu-three {
    background-color: #f6f6f6;
  }
  .mobile-menu-three .offcanvas-body .header-top .shop-btn .btn-close {
    background-color: #232532;
    font-size: 2rem;
  }
  .mobile-menu-three .offcanvas-body .category-dropdown .category-list .dropdown-item .drop-down-list-icon span svg,
  .mobile-menu-three .offcanvas-body .category-dropdown .category-list .dropdown-item .drop-down-list-icon span rect {
    fill: #232532;
  }












/* Hero section styling */
.hero {
  width: 100%;
  height: 45rem;
  overflow: hidden;
}

@media (max-width: 767px) {
    .hero {
        height: 20rem;
    }
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10%;
  background-size: cover;
  background-position: center;
}

.swiper-pagination {
    bottom: 3rem;
}

.swiper-pagination-bullet {
    width: 3rem;
    height: 7px;
    border-radius: 30px;
    background-color: #ccc; /* Default bullet color */
}

.swiper-pagination-bullet-active {
    background-color: #e37302; /* Active bullet color */
}




.hero-section .hero-subtitle {
    margin-top: 1.2rem;
    font-size: 1.2rem;
    
}

.hero-section .hero-details {
    font-size: 2.6rem; /* Adjust as needed */
    font-weight: 800;
}



.hero-text-container {
    width: 100%;
   
}




.hero-section .hero-shop-btn {
    padding: 1.0rem 4.2rem;
    margin: 2rem 0;
    text-decoration: none;
    text-align: center;
    border-radius: 2rem;
    display: inline-block;
    background: #e37302;
    font-size: 1.2rem;
    font-weight: 500;
    color: #FFFFFF;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}




.hero-section .hero-shop-btn::after {
    content: " ";
    width: 0%;
    height: 100%;
    background: #232532;
    position: absolute;
    transition: all 0.4s ease-in-out;
    right: 0;
    top: 0;
    z-index: -1;
}

.hero-section .hero-shop-btn:hover {
    background-color: #e37302;
}

.hero-section .hero-shop-btn:hover::after {
    width: 100%;
    right: auto;
    left: 0;
}

#content .product .text p.price {
font-size:18px;
text-align:center;
font-weight:300;

}

#content .product .text .buttons {
clear:both;
text-align:center;
}

#content .product .text h3 {
text-align:center;
font-size:20px;

}

#content .product .text h3 a {

color:rgb(85, 85, 85);
}

/* ... existing styles ... */

.swiper-button-next,
.swiper-button-prev {
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

/* ... other styles ... */

/* Add additional specific styling if needed */


/*banner css start*/

.product.fashion-style {
    width: 100%;
    padding: 3.8rem 0;
    
}

.container{
 
    
}

.custom-container {
    width: 100%;
    padding-right: 10%;
    padding-left: 10%;
    margin-right: auto;
    margin-left: auto;
  }

.style-section .product-wrapper {
    width: 100%;
    height: 28.5rem;
    position: relative;
    color: #232532;
    padding: 10px;
    border-radius: 15px;
    
}

.style-section .product-wrapper .wrapper-info {
    padding: 20px;
    border-radius: 10px;
}

.wrapper-info .wrapper-subtitle {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    font-weight: 300;
}



.wrapper-info .wrapper-details {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.wrapper-info .shop-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #ff5e14;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}



@media (max-width: 767px) {
  .hero-section .hero-details {
    font-size: 1.5rem; /* Adjust as needed */
    font-weight: 600;
}

.hero-section .hero-subtitle {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-section .hero-shop-btn {
  padding: 0.5rem 2.1rem;
  margin: 1rem 0;
  text-decoration: none;
  text-align: center;
  border-radius: 2rem;
  display: inline-block;
  background: #e37302;
  font-size: 0.9rem;
  font-weight: 500;
  color: #FFFFFF;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.wrapper-info .wrapper-details {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.wrapper-info .shop-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 10px;
  font-size: 1rem;
  background-color: #ff5e14;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.style-section .product-wrapper {
  width: 100%;
  height: 22.5rem;
  position: relative;
  color: #232532;
  padding: 10px;
  border-radius: 15px;
  
}

.product.fashion-style {
  width: 100%;
  padding: 2.8rem 0;
  
}


}

.wrapper-info .shop-btn::after {
    content: " ";
    width: 0%;
    height: 100%;
    background: #232532;
    position: absolute;
    transition: all 0.4s ease-in-out;
    right: 0;
    top: 0;
    z-index: -3;
}

.wrapper-info .shop-btn svg {
    fill: #ffffff;
    transition: all 0.5s;
}

.wrapper-info .shop-btn span {
    margin-left: 10px;
}

.wrapper-info .shop-btn:hover {
    color: #ffffff;
    background-color: #e37302;
}

/* Password Strength Checker Styles */

#meter_wrapper{
border:1px solid grey;
width:202px;
height:20px;
margin:0;
border-radius:3px;

}


#meter{
width:0px;
height:18px;
border-radius:2px;

}


#pass_type{
font-size:15px;
margin-top:10px;
position:absolute;
top:0;
right:90px;
margin-bottom:10%;
color:grey;

}



/* Services Styles  */


.services .col-md-4 {

margin-left:3%;

width:29%;

}

@media(max-width: 1000px){

.services .col-md-4 {

margin-left:2%;

width:46%;

}

}


@media(max-width: 800px){

.services .col-md-4 {

width:90%;

}


}



.footer {
  font-family: "League Spartan", sans-serif;
  background-repeat: no-repeat;
  background-color: black;
  background-size: cover;
  padding-bottom: 2rem;
}

.footer-padding {
  padding-bottom: 12rem !important;
}

.footer-service-section {
  background-color: #24184a;
  padding: 2.8rem;
  margin-top: 0rem;
  border-radius: 4px;
}
.footer-service-section .service-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.footer-service-section .service-wrapper .service-info {
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 0;
}
.footer-service-section .service-wrapper .service-details {
  font-size: 1rem;
  font-weight: 400;
}
@media (max-width:1023px) {
  .footer-service-section .gy-4 {
    --bs-gutter-y: 2rem;
  }
  .footer-service-section .service-wrapper {
    justify-content: flex-start;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1200px) {
  .footer-service-section .service-wrapper {
    align-items: flex-start;
  }
}

.footer-section {
  padding-top: 4rem;
}
.footer-section .logo {
  margin-bottom: 4.7rem;
}
.footer-section .footer-heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
}
.footer-section .footer-title {
  margin-bottom: 1.8rem;
}
.footer-section .footer-link a {
  color: #c8c8c8;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
}
.footer-section .footer-link a:hover {
  color: #e37302;
  text-decoration: underline;
}
.footer-section .footer-link p {
  color: #c8c8c8;
}
.footer-section .footer-link ul {


  color: white;
  padding-left: 0;
}


.footer-section .footer-link ul li {
  list-style: none;
  margin-bottom: 2rem;
}


.footer-section .footer-link .address {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.5rem;
}
.footer-section .contact-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
}
@media (max-width:767px) {
  .footer {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 20px;
  }
  .footer-section .footer-link a {
    font-size: 1rem !important;
  }
}


/*back to scroll top */
#btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background-color: #e37302;
  border-color: #e37302;
}

#btn-back-to-top:hover {
  background-color: #24184a;
  border-color: #24184a;
}




.product-info {
  background: #FFFFFF;
}
@media (max-width:767px) {
  .product-info .product-info-content {
    padding: 0;
  }
}

.product-info-section {
  margin-top: 2.5rem;
}
.product-info-section .row > * {
  --bs-gutter-y: 50px;
}

.product-info-img .swiper {
  position: relative;
}
.product-info-img .swiper .product-discount-content {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  z-index: 2;
  background: #e37302;
  width: 4.1rem;
  height: 4.1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0px;
  border-radius: 50%;
}
.product-info-img .swiper .product-discount-content h4 {
  font-size: 1rem;
  font-family: "Inter", sans-serif;
}
.product-info-img .swiper .swiper-wrapper {
  align-items: center;
}
.product-info-img .product-top {
  height: 37.5rem;
  border: 1px solid #ffd6ab;
  border-radius: 1rem;
}
.product-info-img .product-top .swiper-wrapper {
  height: 100%;
}
.product-info-img .product-top .slider-top-img {
  height: 32rem;
  padding: 0;
}
.product-info-img .product-top .slider-top-img img {
  width: 100%;
  height: 100%;
  
  object-fit: contain;
}

.product-bottom {
  margin-top: 2rem;
}
.product-bottom .swiper-slide-thumb-active {
  opacity: 1;
}
.product-bottom .slider-bottom-img {
  height: 9rem !important;
  width: 9rem !important;
  padding: 1rem;
  margin-right: 10px;
  border: 1px solid #ffd6ab;
  border-radius: 1rem;
  opacity: 0.4;
  
  
}
.product-bottom .slider-bottom-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-bottom .swiper-slide-thumb-active {
  opacity: 1;
}

.product-info-content {
  padding: 0 5rem;
}
.product-info-content .ratings {
  margin-top: 1.3rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}
.product-info-content .ratings .text {
  font-size: 0.9rem;
}
.product-info-content .price {
  justify-content: flex-start;
  gap: 0.9rem;
  margin-top: 1rem;
}
.product-info-content .price .new-price {
  font-size: 1.4rem;
  color: red;
  margin-bottom: 1rem;
}
.product-info-content .price .gd-points {
  font-size: 1.4rem;
  color: red;
  margin-bottom: 1rem;
}
/* external checkboxes adding */

.product-info-content .choose-type .checkbox-item {
  gap: 1.2rem;
  width: 100%;
  border-radius: 0.5rem;
  transition: all 0.3s;
  padding: 1.2rem;
}
.product-info-content .choose-type .checkbox-item input {
  accent-color: #e37302;
}
.product-info-content .choose-type .checkbox-item:hover {
  background-color: #ffd6ab;
}

/* checkbox ending */

.product-info-content .content-paragraph {
  line-height: 3rem;
  font-size: 1.6rem;
  margin-top: 1rem;
}
.product-info-content .content-paragraph .inner-text {
  display: block;
}
.product-info-content .product-availability {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 15px;
  background-color: #ffd6ab;
  border-radius: 1.2rem;
  display: inline-block;
  margin: 1rem 0;
}
.product-info-content .product-availability .inner-text {
  color: #e37302;
}
.product-info-content .product-size {
  width: 100%;
  margin-top: 2rem;
  position: relative;
}
.product-info-content .product-size .size-title {
  color: #e37302;
  margin-bottom: 1rem;
}
.product-info-content .product-size .size-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
  background-color: #FFFFFF;
  border: 1px solid #D5D5D5;
  border-radius: 1.2rem;
  height: 3.1rem;
  padding: 1rem 2rem;
  cursor: pointer;
  font-size: 0.8rem;
}
.product-info-content .product-size .size-section .chevron {
  transition: 0.3s;
}
.product-info-content .product-size .size-section .toggle-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
.product-info-content .product-size .size-option {
  position: absolute;
  width: 100%;
  display: none;
  z-index: 2;
  transition: all 0.5s;
}
.product-info-content .product-size .size-option .option {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
  padding: 13px 23px;
  font-size: 13px;
  transition: all 0.5s;
}
.product-info-content .product-size .size-option .option:hover {
  background: #e37302;
  color: #FFFFFF;
}
.product-info-content .product-size .size-option .option:hover .option-measure {
  color: #FFFFFF;
}
.product-info-content .product-size.active .size-option {
  display: block;
  z-index: 2;
  background: #FFFFFF;
  border: 1px solid #D5D5D5;
  border-radius: 10px;
  top: calc(100% + 5px);
  overflow: hidden;
}
.product-info-content .product-size.active .size-option .option {
  background-color: #FFFFFF;
}
.product-info-content .product-size.active .size-option .option:hover {
  background-color: #e37302;
}
.product-info-content .product-size.active .chevron {
  transform: rotate(-180deg);
}
.product-info-content .product-quantity {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.product-info-content .product-quantity .quantity-wrapper {
  display: flex;
  flex-direction: row;
  cursor: pointer;
  user-select: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
/*
.product-info-content .product-quantity .quantity,
.product-info-content .product-quantity .wishlist {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  height: 3rem;
  border: 1px solid #ffd6ab;
  border-radius: 0.5rem;
}
.product-info-content .product-quantity .quantity {
  width: 12rem;
  font-size: 2rem;
}
.product-info-content .product-quantity .wishlist {
  width: 6rem;
}
*/

.product-info-content .product-quantity .quantity,
.product-info-content .product-quantity .wishlist {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  height: 2.5rem;
  border: 1px solid #ffd6ab;
  border-radius: 0.5rem;

}
.product-info-content .product-quantity .quantity {
  width: 8rem;
  font-size: 1rem;
}
.product-info-content .product-quantity .wishlist {
  width: 3rem;
}

.wishlist {
  cursor: pointer;
}

.wishlist-icon path {
  transition: fill 0.3s, stroke 0.3s;
}

.wishlist.active .wishlist-icon path {
  fill: red; /* Fill color when active */
  stroke: red; /* Stroke color when active */
}


/*end wishlist */


.product-info-content .product-quantity .shop-btn {
  flex: 1 1 0%;
}
.product-info-content .product-quantity .shop-btn::after {
  display: none;
}
.product-info-content .product-details {
  margin: 1.5rem 0;
}
.product-info-content .product-details p {
  margin-bottom: 1rem;
}
.product-info-content .product-details .inner-text {
  color: #e37302;
}
.product-info-content .product-report {
  margin-bottom: 1.5rem;
}
.product-info-content .product-report .report {
  color: red;
}
.product-info-content .product-report .modal-main {
  border-radius: 1rem;
  margin: 2rem;
}
.product-info-content .product-report .modal-main .review-form {
  width: auto;
  height: auto;
  margin-top: 0;
}
.product-info-content .product-report .modal-main .review-form .review-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
}
.product-info-content .product-report .modal-main .review-form .review-content .comment-title {
  font-size: 2.4rem;
  margin: 0;
}
.product-info-content .product-report .modal-main .review-form .review-content .close-btn {
  cursor: pointer;
}
.product-info-content .product-report .modal-wrapper.active {
  display: flex;
}
.product-info-content .product-share,
.product-info-content .social-icons {
  display: flex;
  flex-direction: row;
 
  justify-content: flex-start;
  gap: 1rem;
}
@media (max-width:1200px) {
  .product-info-content .product-quantity {
    flex-direction: column;
    margin-top: 2rem;
  }
  .product-info-content .product-quantity .shop-btn {
    margin-top: 0;
  }
}

hr {
  color: #f3b4ea;
}

.product-description .nav-item {
  border-bottom: 1px solid #ffd6ab;
  gap: 2rem;
}
.product-description .nav-item .nav-link {
  font-size: 1rem;
  padding: 0.7rem 1.7rem;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
  color: #e37302;
  font-weight: 600;
}
.product-description .nav-item .nav-link:hover {
  border-color: #ffd6ab;
}
.product-description .nav-item .nav-link.active {
  background: #e37302;
  color: #FFFFFF;
}
.product-description .tab-item {
  padding: 1.2rem 0 0 0;
}
.product-description .tab-item .product-intro-section {
  margin-bottom: 2rem;
}
.product-description .tab-item .product-intro-section .product-details {
  line-height: 1.5rem;
  margin-top: 0.7rem;
}
.product-description .tab-item .product-feature ul li {
  list-style: unset;
  margin-top: 1.2rem;
  margin-left: 1.2rem;
}
.product-description .tab-item .product-feature ul li::marker {
  font-size: 1.5rem;
}

/* Review Form */
.info-review-form-container {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 0px;
  max-width: 100%;
  width: 100%;
  margin-bottom: 30px;
}

.form-row {
  display: flex;
  justify-content: space-between;
}

.form-group {
  flex: 1;
  margin-right: 10px;
}

.form-group:last-child {
  margin-right: 0;
}

.info-review-form .form-group {
  margin-top: 20px;
  margin-bottom: 15px;
}

.info-review-form label {
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}

.info-review-form input, .info-review-form select, .info-review-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #cccccc;
  border-radius: 5px;
  font-size: 16px;
  box-sizing: border-box;
}

.info-review-form textarea {
  resize: vertical;
}

.submit-group {
  display: flex;
  justify-content: flex-end;
}

.submit-button {
  background-color: #24184a;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
  width: 25%;
  box-sizing: border-box;
  
}

.submit-button:hover {
  background-color: #e37302;
  color: white;
}

@media (max-width: 576px) {
  .info-review-form-container {
    max-width: 100%;
    width: 100%;
  }
  .submit-button {
    max-width: 100%;
    width: 100%;
  }
  .form-row {
    flex-direction: column;
    justify-content: space-between;
  }
  .form-group {
    flex: 1;
    margin-right: 0px;
  }
  
  
}


/* Form End */

.product-description .tab-item .review-wrapper {
  padding: 2rem 0;
}
.product-description .tab-item .review-wrapper .wrapper .wrapper-aurthor {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
}
.product-description .tab-item .review-wrapper .wrapper .wrapper-aurthor .wrapper-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.product-description .tab-item .review-wrapper .wrapper .wrapper-aurthor .wrapper-info h5 {
  font-size: 2rem;
  font-weight: 500;
}
.product-description .tab-item .review-wrapper .wrapper .wrapper-description {
  margin-top: 2rem;
}
.product-description .tab-item .review-wrapper .wrapper .wrapper-description .wrapper-details {
  line-height: 3rem;
}

.intro-heading {
  font-weight: 500;
  font-size: 1.8rem;
}

.product-weekly {
  background: #f8f8f8;
}

.sidebar-section {
  background: #FFFFFF;
  border-radius: 0.5rem;
  padding: 2rem 1rem;
}
.sidebar-section .sidebar-wrapper .wrapper-heading {
  font-size: 1.1rem;
  margin-bottom: 1.6rem;
}
.sidebar-section .sidebar-wrapper .sidebar-item .sidebar-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
}
.sidebar-section .sidebar-wrapper .sidebar-item .sidebar-list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}
.sidebar-section .sidebar-wrapper .sidebar-item .sidebar-list li label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #232532;
}
.sidebar-section hr {
  margin: 4rem 0;
}
.sidebar-section .sidebar-range .price {
  display: unset;
}
.sidebar-section .sidebar-range .slider-range {
  height: 6px;
  margin: 2.5rem 0;
  border-radius: 30px;
}
.sidebar-section .sidebar-range .noUi-target {
  background: #D4D4D4;
  box-shadow: none;
  border: none;
}
.sidebar-section .sidebar-range .noUi-handle {
  border-radius: 50%;
  height: 1.6rem;
  width: 1.6rem;
  right: -1.4rem;
  filter: drop-shadow(0px 3px 10px #CCC);
  border: 1 px solid #ccc;
}
.sidebar-section .sidebar-range .noUi-handle::before {
  display: none;
}
.sidebar-section .sidebar-range .noUi-handle::after {
  display: none;
}
@media (max-width:767px) {
  .sidebar-section .sidebar-range .noUi-handle {
    top: -5px;
  }
}
.sidebar-section .sidebar-range .noUi-connect {
  background: #e37302;
}
.sidebar-section .sidebar-range .example-val {
  font-size: 1.5rem;
}

.sidebar-shop-section {
  background: url("../assets/images/homepage-one/sidebar-img.png");
  padding: 3rem;
  margin-top: 3rem;
  height: 29.5rem;
  border-radius: 0.5rem;
}
.sidebar-shop-section .wrapper-subtitle {
  font-size: 1.3rem;
  font-weight: 500;
}
@media only screen and (min-width: 767px) and (max-width: 1200px) {
  .sidebar-shop-section {
    display: none;
  }
}

.deal-btn {
  background-color: transparent;
  margin-top: 6rem;
  padding: 0;
  color: #232532;
}
.deal-btn::after {
  padding: 0;
  background: #e37302;
  width: 0;
  height: 2px;
  top: 2rem;
  visibility: hidden;
}
.deal-btn:hover {
  background: none;
  color: #232532;
}
.deal-btn:hover::after {
  width: 100%;
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.product-sidebar-section .product-sorting-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
  background: #FFFFFF;
  padding: 1.5rem;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
}


.product-sidebar-section .product-sorting-section .result{
  display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
}


.product-sidebar-section .product-sorting-section p {
  font-size: 1rem;
  color: #232532;
  text-align: center;
}




.product-sidebar-section .product-sorting-section .product-sorting {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.product-sidebar-section .product-sorting-section .product-sorting span {
  font-size: 1rem;
}
@media (max-width:767px) {
  .product-sidebar-section .product-sorting-section {
    padding: 1rem;
  }
}

.product-deal-section {
  padding: 3rem;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: url("../assets/images/homepage-one/product-deal-.png") no-repeat center/cover;
}
.product-deal-section .wrapper-heading {
  color: #FFFFFF;
}
.product-deal-section .shop-btn {
  margin: 0;
  background: #e37302;
  color: #ffffff;
}
.product-deal-section .shop-btn::after {
  background-color: #e37302;
}

.seller-sidebar .seller-wrapper {
  padding: 4rem;
  align-items: center;
}
.seller-sidebar .seller-wrapper .ratings {
  text-align: center;
  margin-bottom: 0;
}

.blogs-wrapper {
  border: none;
  border-radius: 0;
  height: auto;
}
.blogs-wrapper:hover {
  border: none;
}
.blogs-wrapper:hover img {
  transform: scale(1.1);
}
.blogs-wrapper .wrapper-img {
  overflow: hidden;
}
.blogs-wrapper .wrapper-img img {
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.blogs-wrapper .wrapper-info {
  padding: 2rem 3rem;
}
.blogs-wrapper .wrapper-info .wrapper-data {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 4.2rem;
  margin-bottom: 1rem;
}
.blogs-wrapper .wrapper-info .wrapper-data .wrapper-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
}
.blogs-wrapper .wrapper-info .wrapper-data .wrapper-item .text {
  font-size: 1.4rem;
  color: #797979;
}
.blogs-wrapper .wrapper-info .wrapper-details {
  font-style: 2.6rem;
}
.blogs-wrapper .shop-btn {
  margin: 0;
  padding: 0;
  margin: 0;
  text-align: center;
  border-radius: 3rem;
  display: inline-block;
  background: transparent;
  font-size: 1.8rem;
  font-weight: 500;
  position: relative;
  color: #e37302;
  font-family: "Inter", sans-serif;
  transition: all 0.3s;
  overflow: hidden;
  overflow: unset;
}
.blogs-wrapper .shop-btn::after {
  content: " ";
  width: 0%;
  height: 100%;
  background: #232532;
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
  top: 0;
  z-index: -3;
}
.blogs-wrapper .shop-btn svg {
  fill: #FFFFFF;
  transition: all 0.5s;
}
.blogs-wrapper .shop-btn span {
  margin-left: 8px;
  font-size: 1.5rem;
  width: 100%;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}
.blogs-wrapper .shop-btn:hover {
  color: #FFFFFF;
  background-color: transparent;
}
.blogs-wrapper .shop-btn:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}
.blogs-wrapper .shop-btn:hover svg {
  fill: currentColor;
  fill: #FFFFFF;
  transform: translate(5px);
}
.blogs-wrapper .shop-btn:hover span {
  color: #FFFFFF;
}
.blogs-wrapper .shop-btn:hover {
  color: #e37302;
}
.blogs-wrapper .shop-btn::after {
  display: none;
}

.blog-details {
  margin-top: 2.5rem;
  background: #f8f8f8;
}
.blog-details .row > * {
  --bs-gutter-x: 3rem;
}
.blog-details hr {
  margin: 3rem 0;
}
.blog-details .wrapper-img {
  height: 45.7rem;
}
.blog-details .wrapper-img img {
  object-fit: cover;
}
.blog-details .blog-details-heading {
  margin-top: 2rem;
}
.blog-details .blogs-form-section .social-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
}
.blog-details .blogs-form-section .social-item a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0px;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #e37302;
  transition: all 0.2s;
  border: 1px solid #e37302;
}
.blog-details .blogs-form-section .social-item a svg {
  fill: currentColor;
  fill: #FFFFFF;
}
.blog-details .blogs-form-section .social-item a:hover {
  border-radius: 20%;
  background: #FFFFFF;
}
.blog-details .blogs-form-section .social-item a:hover svg {
  fill: #e37302;
}
@media (max-width:767px) {
  .blog-details .blogs-wrapper .wrapper-info {
    padding: 2rem 0;
  }
  .blog-details .blogs-wrapper .wrapper-details {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

.review-form {
  margin-top: 4rem;
}
.review-form .comment-title {
  margin-bottom: 3rem;
}
.review-form .form-control,
.review-form .form-select {
  border: 1px solid #ffd6ab;
  box-shadow: none;
  color: #232532;
}
.review-form .form-control::placeholder,
.review-form .form-select::placeholder {
  color: #797979;
}
.review-form label {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  color: #797979;
  margin-bottom: 0.5rem;
}
.review-form .review-inner-form {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.review-form .review-inner-form .review-form-name {
  margin-bottom: 1rem;
  width: 100%;
}
.review-form input {
  height: 3rem;
}
.review-form input,
.review-form textarea,
.review-form select {
  padding: 0.5rem 1rem;
  font-size: 1rem;
}
.review-form input::placeholder,
.review-form textarea::placeholder,
.review-form select::placeholder {
  color: #797979;
  font-family: "Jost", sans-serif;
  font-size: 1rem;
}
.review-form textarea {
  padding: 1.5rem;
}
.review-form .review-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 0px;
}
.review-form .review-btn .shop-btn {
  border-radius: unset;
  width: 30rem;
}
.review-form .review-btn .shop-btn::after {
  display: none;
}
@media (max-width:767px) {
  .review-form .comment-title {
    font-size: 2rem;
  }
  .review-form .review-inner-form {
    flex-direction: column;
  }
}

.blog-post-section {
  width: 33.5rem;
}
.blog-post-section .post-details {
  font-size: 2rem;
}
.blog-post-section hr {
  margin: 1.8rem 0;
}
.blog-post-section .blog-post {
  background-color: #FFFFFF;
  padding: 2.5rem;
  border-radius: 0.6rem;
}
.blog-post-section .blog-post .search-btn {
  background: #ffd6ab;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
  padding: 0.8rem 3rem;
  border-radius: 0.6rem;
}
.blog-post-section .blog-post .search-btn input {
  border: none;
  background: transparent;
  padding: 1rem 0;
  outline: none;
}
.blog-post-section .blog-post .search-btn input::placeholder {
  font-size: 1.5rem;
}
.blog-post-section .blog-post .blogs-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: none;
}
.blog-post-section .blog-post .blogs-wrapper .wrapper-img {
  width: 8.5rem;
  height: 9.2rem;
  border-radius: 0.5rem;
}
.blog-post-section .blog-post .blogs-wrapper .wrapper-info {
  padding: 0;
  flex: 1 1 0%;
}
.blog-post-section .blog-post .blogs-wrapper .wrapper-info .wrapper-details {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.4rem;
}
.blog-post-section .blog-post .blogs-wrapper .wrapper-info .wrapper-item {
  margin-top: 1rem;
}
.blog-post-section .blog-post .blogs-wrapper .wrapper-info svg {
  fill: currentColor;
  fill: #e37302;
}
.blog-post-section .blog-post .category-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
}
.blog-post-section .blog-post .category-list a {
  font-size: 1.5rem;
  font-weight: 400;
  color: #797979;
}
.blog-post-section .blog-post .category-list a:hover {
  color: #e37302;
}
.blog-post-section .newsletter {
  background: url("../assets/images/homepage-one/newsletter.webp") no-repeat center/cover;
}
.blog-post-section .newsletter .post-details,
.blog-post-section .newsletter .blog-paragraph {
  color: #FFFFFF;
}
.blog-post-section .newsletter .blog-paragraph {
  margin: 1rem 0 4rem 0;
}
.blog-post-section .newsletter hr {
  color: #FFFFFF;
}
.blog-post-section .newsletter input,
.blog-post-section .newsletter .shop-btn {
  width: 100%;
  border-radius: 0.5rem;
  padding: 1.5rem;
  outline: none;
  border: none;
}
.blog-post-section .newsletter .shop-btn {
  margin: 1rem 0;
  background: #e37302;
  color: #ffffff;
}
.blog-post-section .newsletter .shop-btn::after {
  display: none;
}

@media (max-width:1023px) {
  .blog-post-section {
    width: 100%;
  }
}
.product-cart {
  background: #FFFFFF;
}
.product-cart .cart-btn {
  justify-content: flex-start;
}
@media (max-width: 576px) {
  .product-cart .cart-btn {
    flex-direction: column;
  }
  .product-cart .cart-btn .shop-btn {
    width: 100%;
  }
}

.cart-section .table-row .table-wrapper .wrapper-img {
  width: 8rem;
  height: 8rem;
  border: 1px solid #ffd6ab;
  border-radius: 0.5rem;
  background: #FFFFFF;
}
.cart-section .table-row .table-wrapper .wrapper-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-section .table-row .table-wrapper .heading_main {
  font-size: 0.8rem;
  font-weight: 600;
}

.cart-section .table-row .table-wrapper .heading {
  font-size: 1rem;
}
.cart-section .table-row .table-wrapper .heading:hover {
  color: #e37302;
}

/* external adding quantity */
.cart-section .table-row .table-wrapper .quantity{
  cursor: pointer;
}
/* external adding quantity ended */

.cart-section .table-row .wrapper-product {
  width: 22rem;
  padding: 1.2rem 0 1.2rem 2.8rem;
}
.cart-section .table-row .wrapper-total {
  width: 20rem;
}
@media (max-width:1023px) {
  .cart-section {
    overflow-x: scroll;
    border: 1px solid #ffd6ab;
  }
}

table {
  width: 100%;
}
table .ticket-row {
  background: #FFFFFF;
  transition: all 0.3s;
}
table .ticket-row:hover {
  background-color: #ffd6ab;
}
@media (max-width:1023px) {
  table .table-wrapper {
    min-width: 25rem;
  }
}

.table-row {
  background: #ffd6ab;
  border: 1px solid #e9e7e7;
}
.table-row .table-wrapper {
  padding: 1rem 0;
}
.table-row .table-wrapper .wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
}
.table-row .table-wrapper .wrapper-img {
  width: 8rem;
  height: 8rem;
  border: 1px solid #ffd6ab;
  border-radius: 0.5rem;
  background: #FFFFFF;
}
.table-row .table-wrapper .wrapper-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.table-row .table-wrapper .heading {
  font-size: 1.1rem;
  font-weight: 600;
}
.table-row .table-wrapper .heading:hover {
  color: #e37302;
}
.table-row .table-wrapper .table-heading {
  font-size: 1rem;
  font-weight: 500;
}
.table-row .table-wrapper p {
  font-weight: 500;
}
.table-row .table-wrapper .ticker-number {
  color: #232532;
  font-size: 1.2rem;
}
.table-row .table-wrapper .inner-text {
  display: block;
}
.table-row .wrapper-product {
  width: 22rem;
  padding: 1.2rem 0 1.2rem 2.6rem;
}
.table-row .wrapper-total {
  width: 20rem;
}
.table-row .table-wrapper-center {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0px;
  text-align: center;
}
.table-row .table-wrapper-center path {
  fill: currentColor;
  fill: #797979;
  transition: all 0.2s;
}
.table-row .table-wrapper-center path:hover {
  fill: #e37302;
}
.table-row .table-wrapper-img {
  gap: 1rem;
}

.quantity {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 12rem;
  height: 4rem;
  padding: 0 4rem;
  border: 1px solid #ffd6ab;
  border-radius: 0.5rem;
}
.quantity span {
  font-size: 1.4rem;
}

.quantity input {
  font-size: 1.4rem;
}

.close-btn svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
  fill: #797979;
}
.close-btn svg:hover {
  fill: red;
}

.wishlist-section .table-wrapper {
  width: 38rem;
}
@media (max-width:767px) {
  .wishlist-section {
    overflow-x: scroll;
  }
}

.wishlist-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  margin-top: 2rem;
}
.wishlist-btn .shop-btn {
  margin: 0;
}
.wishlist-btn .shop-btn::after {
  display: none;
}
.wishlist-btn .clear-btn {
  color: red;
  font-size: 1rem;
}
.wishlist-btn .update-btn {
  background-color: #E8E8E8;
  color: #232532;
}

.checkout {
  background: #FFFFFF;
}
.checkout .row > * {
  --bs-gutter-x: 3rem;
}
.checkout .checkbox-item .form-label {
  margin-bottom: 0;
}
@media (max-width:767px) {
  .checkout .checkout-wrapper .wrapper-heading {
    font-size: 2.5rem;
  }
  .checkout .checkout-wrapper .account-inner-form {
    flex-direction: column;
  }
  .checkout .order-summery .wrapper-heading {
    font-size: 1.2rem;
  }
  .checkout .order-summery .subtotal .product-list li {
    align-items: flex-start;
  }
  .checkout .order-summery .payment-type .wrapper-heading {
    margin-bottom: 1rem;
  }
  .checkout .order-summery .payment-type .checkbox-item {
    padding: 2rem 0;
  }
  .checkout .billing-section .review-form {
    padding: 0;
  }
}

.checkout-wrapper .shop-btn {
  margin: 0;
  width: 100%;
  border-radius: 0.5rem;
}
.checkout-wrapper .shop-btn::after {
  display: none;
}


.checkout-wrapper .coupon-btn {
  margin-top: 10px;
  width: 100%;
  border-radius: 0.5rem;
}

.checkout-wrapper .coupon-btn::after {
  display: none;
}

.billing-section {
  background: transparent;
  padding: 1rem;
  margin-top: 2.5rem;
  border: 1px solid #ffd6ab;
  border-radius: 0.5rem;
}
.billing-section .review-form {
  width: auto !important;
  height: auto !important;
}

.order-summery .wrapper-heading {
  font-size: 1rem;
  font-weight: 500;
}
.order-summery .subtotal {
  margin: 1rem 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
}
.order-summery .subtotal .product-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  width: 100%;
}
.order-summery .subtotal .product-list li {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
}
.order-summery .subtotal .product-list .product-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
}
.order-summery .subtotal .product-list .product-info .wrapper-heading {
  font-size: 1rem;
  font-weight: 400;
}
.order-summery .subtotal .product-list .product-info .paragraph {
  font-size: 0.8rem;
}
.order-summery .total .wrapper-heading {
  font-size: 1.5rem;
}
.order-summery .total .price {
  color: #e37302;
}
.order-summery .payment-type {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0px;
}
.order-summery .payment-type .wrapper-heading {
  font-size: 2rem;
}
.order-summery .payment-type .checkbox-item {
  gap: 2rem;
  width: 100%;
  border-radius: 0.5rem;
  transition: all 0.3s;
  padding: 2rem;
}
.order-summery .payment-type .checkbox-item input {
  accent-color: #e37302;
}
.order-summery .payment-type .checkbox-item:hover {
  background-color: #ffd6ab;
}
.order-summery .payment-type .inner-text {
  display: block;
  color: #797979;
}

.order {
  background: #FFFFFF;
}
.order .order-section {
  margin-top: 3rem;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.order .order-section .review-form {
  width: 100% !important;
  height: auto;
  padding: 0;
  margin-top: 1rem;
}
.order .order-section .review-form .shop-btn {
  width: auto;
}

.login {
  background: url("../customer/images/login-bg.png") no-repeat center/cover;
}

.login-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0px;
}
.login-section .review-form {
  width: 32.2rem;
  height: 39rem;
  background-color: #FFFFFF;
  padding: 2.5rem;
  border-radius: 0.5rem;
}
.login-section .review-form .comment-title {
  text-align: center;
  margin-top: 3rem;
}
.login-section .review-form .review-inner-form {
  display: block;
  width: 100%;
}
.login-section .review-form .shop-btn {
  width: 100%;
  margin: 0 0 2rem 0;
}
.login-section .review-form .shop-btn::after {
  display: none;
}
.login-section .review-form .shop-account {
  color: #797979;
  font-size: 0.8rem;
}
.login-section .review-form .shop-account a {
  font-size: 0.8rem;
  margin-left: 0.5rem;
  font-weight: 400;
}
@media (max-width:767px) {
  .login-section .review-form {
    padding: 2rem;
    height: auto;
  }
}

.checkbox {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
}
.checkbox .forget-pass p {
  color: #e37302;
}

.checkbox-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}
.checkbox-item p {
  margin-bottom: 0;
  color: #797979;
}
.checkbox-item p .inner-text {
  color: #232532;
}
.checkbox-item .address {
  font-size: 1rem;
}

.account-section .review-form {
  width: 57.2rem;
  height: 79.1rem;
}
.account-section .account-inner-form {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
.account-section .account-inner-form .review-form-name {
  width: 100%;
}
.account-section .city-inner-form {
  margin-bottom: 0;
}
.account-section .address-form {
  margin: 2rem 0;
}

.account-section .phone-form {
  margin: 2rem 0;
}

@media (max-width:767px) {
  .account-section .review-form {
    padding: 2rem;
    height: auto;
  }
  .account-section .account-inner-form {
    flex-direction: column;
  }
  .account-section .checkbox-item {
    margin: 1rem;
  }
}

.faq .row > * {
  --bs-gutter-x: 3rem;
}
.faq .question-section .review-form {
  padding: 2rem;
}

.faq-accordion .faq-item {
  margin-top: 3rem;
  border: none;
  --bs-accordion-border-color: $theme-color;
}
.faq-accordion .faq-item .faq-button {
  height: 6rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
  transition: all 0.5s;
}
.faq-accordion .faq-item .faq-button::after {
  display: none;
}
.faq-accordion .faq-item .faq-button .faq-heading {
  font-size: 1.5rem;
  font-weight: 600;
}
.faq-accordion .faq-item .faq-button:focus {
  border: none;
  box-shadow: none;
}
.faq-accordion .faq-item .faq-button .minus {
  display: none;
}
.faq-accordion .faq-item .faq-button:not(.collapsed) {
  background: #e37302;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3764705882);
}
.faq-accordion .faq-item .faq-button:not(.collapsed) .plus {
  display: none;
}
.faq-accordion .faq-item .faq-button:not(.collapsed) .minus {
  display: block;
}
.faq-accordion .faq-item .faq-button:not(.collapsed) .faq-heading {
  color: #FFFFFF;
}
.faq-accordion .faq-item .accordion-body {
  padding: 3rem 2rem;
}
.faq-accordion .faq-item .accordion-body .paragraph {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.2rem;
}
.faq-accordion .faq-item .accordion-collapse {
  background-color: #e37302;
}
.faq-accordion .faq-item .accordion-collapse .paragraph {
  color: #FFFFFF;
}

.question-section {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.question-section .review-form {
  width: 100%;
  height: 100%;
  margin-top: 0;
  padding: 2rem 4rem;
}
.question-section .review-form .comment-title {
  margin-top: 2rem;
  font-weight: 800;
}
.question-section .review-form .review-form-name {
  margin-bottom: 2rem;
}
.question-section .review-form .shop-btn {
  margin-top: 2rem;
}

.seller-wrapper {
  background: url("../assets/images/homepage-one/sallers-cover.png") no-repeat center/cover;
  min-height: 32.8rem;
  padding: 2.5rem;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
}
.seller-wrapper .ratings {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 1rem 0 3rem 0;
}
.seller-wrapper .seller-address .address {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
.seller-wrapper .seller-address .address .inner-text {
  font-size: 1.5rem;
}
.seller-wrapper .shop-btn {
  margin: 1rem 0;
}
.seller-wrapper .seller-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0px;
  gap: 1rem;
}
.seller-wrapper .seller-details .seller-img {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0px;
  width: 17rem;
  height: 17rem;
  border-radius: 50%;
  background: #FFFFFF;
}

@media (max-width:767px) {
  .seller-wrapper {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
  }
  .seller-wrapper .aurthor {
    display: none;
  }
}
.seller-application-section {
  background: #FFFFFF;
  padding: 3rem 2.5rem;
  border-radius: 0.5rem;
}
.seller-application-section .row > * {
  --bs-gutter-x: 4rem;
}
.seller-application-section .comment-title {
  font-size: 2.2rem;
}
.seller-application-section .paragraph {
  margin-top: 1rem;
}
@media (max-width:767px) {
  .seller-application-section {
    padding: 2rem 0;
  }
  .seller-application-section .seller-information .review-form .form-btn {
    align-items: center;
  }
}

.seller-information .review-form {
  margin-top: 3rem;
}
.seller-information .review-form .review-inner-form {
  display: block;
}
.seller-information .review-form .review-inner-form .checkbox {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}
.seller-information .review-form .review-inner-form .checkbox label {
  margin-bottom: 0;
}
.seller-information .review-form .form-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0px;
}
.seller-information .review-form .form-btn .shop-btn {
  margin: 0;
  width: 49rem;
}
.seller-information .review-form .form-btn .shop-btn::after {
  display: none;
}
.seller-information .review-form .form-btn .shop-account,
.seller-information .review-form .form-btn a {
  font-size: 1.5rem;
  font-weight: 500;
}
.seller-information .review-form .form-btn .shop-account {
  margin: 1.5rem 0;
  color: #797979;
}
.seller-information .review-form .form-btn .shop-account a {
  margin-left: 0.5rem;
  font-size: 1.5rem;
}
@media (max-width:767px) {
  .seller-information .review-form .form-btn .shop-btn {
    width: 25rem;
  }
  .seller-information .review-form .form-btn .shop-account {
    text-align: center;
  }
}

.img-upload-section .row > * {
  --bs-gutter-y: 5rem;
}
.img-upload-section .logo-wrapper label {
  background: #e37302;
  border-radius: 50%;
  cursor: pointer;
}
.img-upload-section .logo-wrapper input {
  opacity: 0;
  display: none;
}
.img-upload-section .logo-wrapper .input-item {
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0px;
  width: 3.2rem;
  height: 3.2rem;
}
.img-upload-section .logo-wrapper .logo-upload {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0px;
  position: relative;
}
.img-upload-section .logo-wrapper .logo-upload .upload-img {
  margin-top: 2rem;
  width: 17rem;
  height: 17rem;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #e37302;
}
.img-upload-section .logo-wrapper .logo-upload .upload-input {
  top: 95%;
  right: 35%;
  transform: translate(-50%, -50%);
}
.img-upload-section .logo-wrapper .cover-upload .cover-img {
  margin-top: 2rem;
  width: 100%;
  height: 15rem;
  border-radius: 0.5rem;
  border: 1px solid #e37302;
}
.img-upload-section .logo-wrapper .cover-upload .cover-input {
  top: 15rem;
  right: 4rem;
}

.privacy-section .intro-heading {
  margin-bottom: 2rem;
}
.privacy-section .policy-details {
  line-height: 3rem;
}
.privacy-section .policy-details .policy-inner-text {
  display: block;
  margin-top: 3rem;
}
.privacy-section .policy {
  margin-bottom: 3rem;
}
.privacy-section .policy .policy-features {
  margin-top: 3rem;
}
.privacy-section .policy .policy-features ul li {
  list-style: unset;
  margin-left: 2rem;
  margin-top: 2rem;
}
.privacy-section .policy .policy-features ul li::marker {
  font-size: 2rem;
}

.paragraph-inner-text {
  display: block;
  margin-top: 3rem;
}

.contact {
  background: #FFFFFF;
}

.contact-section .row > * {
  --bs-gutter-x: 3rem;
}
.contact-section .wrapper-heading {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.contact-section .contact-information .contact-wrapper {
  margin: 2rem 0;
}
.contact-section .contact-information .contact-wrapper .row > * {
  --bs-gutter-x: 3rem;
}
.contact-section .contact-information .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  border: 1px solid #e37302;
  height: 19.6rem;
  border-radius: 0.5rem;
}
.contact-section .contact-information .wrapper .wrapper-content {
  text-align: center;
}
.contact-section .contact-information .address {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  background: #ffd6ab;
  border: 1px solid transparent;
  padding: 2rem;
  border-radius: 0.5rem;
}
.contact-section .contact-information .contact-address {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2rem;
}
.contact-section .contact-information .contact-map {
  width: 100%;
}
@media (max-width:767px) {
  .contact-section .contact-information .contact-address {
    flex-direction: column;
  }
  .contact-section .login-section .review-form {
    padding: 2rem 1.5rem;
  }
}

.product-compare .comment-title {
  font-size: 1.8rem;
  font-weight: 500;
}
.product-compare .paragraph {
  margin-top: 1.5rem;
}
.product-compare tbody {
  border: 1px solid #ffd6ab;
}
.product-compare .cart-top {
  background-color: #FFFFFF;
}
.product-compare .cart-top .cart-item {
  width: 25%;
  padding: 2rem;
}
.product-compare .cart-grey-bg {
  background: #f6f6f6;
}
.product-compare .vertical-cart {
  vertical-align: top;
}
.product-compare .cart-center {
  border: 1px solid #ffd6ab;
}
.product-compare .cart-center .wrapper-data {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0px;
}
.product-compare .cart-center .search {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
  border: 1px solid #ffd6ab;
  border-radius: 0.5rem;
  padding: 1rem;
  background-color: #FFFFFF;
  width: 25rem;
  margin-bottom: 1.8rem;
}
.product-compare .cart-center .search input {
  border: none;
  outline: none;
  color: #e37302;
  flex: 1 1 0%;
}
.product-compare .cart-center .search span svg {
  width: 2rem;
  height: 2rem;
  object-fit: cover;
  fill: currentColor;
  fill: #e37302;
}
.product-compare .cart-center .wrapper .wrapper-img {
  width: 16rem;
  height: 16rem;
  margin-bottom: 1rem;
}
.product-compare .cart-center .wrapper .wrapper-img img {
  width: 100%;
  height: 100%;
}
.product-compare .cart-center .wrapper .wrapper-details {
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
}
.product-compare .cart-center .wrapper .price {
  justify-content: center;
}
.product-compare .cart-bottom {
  padding: 1rem;
  border: none;
}
.product-compare .cart-bottom .cart-center {
  border: none;
}
.product-compare .cart-bottom .stock {
  color: green;
  font-weight: 600;
}

.blog {
  background: #FFFAFE;
  padding: 3rem 0;
}
.blog .heading {
  font-size: 2rem;
  text-align: center;
}

.blog-bradcrum a {
  font-size: 1.6rem;
  color: #232532;
  font-weight: 300;
  font-family: "Inter", sans-serif;
}
@media (max-width:767px) {
  .blog-bradcrum {
    text-align: center;
    margin-bottom: 3rem;
  }
  .blog-bradcrum a {
    font-size: 1.5rem;
  }
}

.about {
  padding: 8rem 0 5rem 0;
  background: #FFFFFF;
}
@media (max-width:1023px) {
  .about {
    padding: 2rem 0 2rem 0;
  }
}

.about-section .row > * {
  --bs-gutter-x: 6rem;
}
.about-section .about-img {
  position: relative;
}
.about-section .about-img .about-inner-img {
  position: absolute;
  top: 12.3rem;
  z-index: 1;
  right: 10rem;
}
.about-section .about-content .about-info {
  padding: 2rem 0;
}
.about-section .about-content .about-list p {
  color: #232532;
}
.about-section .about-content .about-list ul li {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
}

.about-service {
  background: #FFFAFE;
}
.about-service .about-service-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  gap: 0px;
}
@media (max-width:1023px) {
  .about-service .about-service-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
  }
}
.about-service .about-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  width: 28.6rem;
  text-align: center;
}
.about-service .seperator {
  width: 1px;
  height: 19.7rem;
  background: #e37302;
}
@media (max-width:767px) {
  .about-service .seperator {
    display: none;
  }
}
@media (max-width:1023px) {
  .about-service .seperator {
    display: none;
  }
  .about-service .about-service-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1200px) {
  .about-service .about-service-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3rem;
  }
}

.about-details {
  font-family: "League Spartan", sans-serif;
  font-size: 2.6rem;
  line-height: 3rem;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.about-details:hover {
  color: #e37302;
}
@media (max-width:767px) {
  .about-details {
    font-size: 2.6rem;
    line-height: 2.5rem;
  }
}

.about-promotion {
  height: 52.7rem;
  z-index: -1;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0px;
}
.about-promotion::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #24184a;
  z-index: 10;
  opacity: 0.6;
}
.about-promotion video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
}
.about-promotion .about-btn {
  height: 10rem;
  width: 10rem;
  background: #FFFFFF;
  z-index: 100;
  border-radius: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0px;
  transition: all 0.5s;
  position: relative;
  cursor: pointer;
}
.about-promotion .about-btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  border-radius: 50%;
  z-index: -100;
  transition: all 5s;
  animation: btnAnimation 2s linear 0s infinite;
}

.about-feedback {
  background: #FFFAFE;
}
.about-feedback .swiper {
  padding: 3rem 0;
}
.about-feedback .swiper-wrapper {
  box-sizing: border-box;
}
.about-feedback .swiper-slide {
  background: #FFFFFF;
  padding: 3rem;
  min-height: 27.5rem;
  box-shadow: none;
  border: 1px solid #f5f2f4;
  margin-bottom: 2rem;
}
.about-feedback .swiper-pagination {
  margin-top: 3rem;
}
@media (max-width:767px) {
  .about-feedback .swiper-slide {
    padding: 2rem;
    height: auto;
  }
  .about-feedback .swiper-slide .testimonial-details {
    font-size: 1.6rem;
  }
  .about-feedback .swiper-slide .testimonial-details .testimonial-inner-text {
    display: inline;
  }
  .about-feedback .swiper-slide .testimonial-info .testimonial-name {
    font-family: "League Spartan", sans-serif;
    font-size: 1.8rem;
  }
}

.testimonial-wrapper {
  width: 100%;
  height: auto;
  padding: 0 0 2rem 0;
  border-radius: 1.2rem;
  background-color: #FFFFFF;
  font-family: "Jost", sans-serif;
  cursor: pointer;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0px;
  position: relative;
  cursor: default;
  width: 100%;
}
.testimonial-wrapper .blockquote {
  position: absolute;
  z-index: -1;
  top: 2rem;
  left: 2.5rem;
}
.testimonial-wrapper .testimonial-details {
  font-size: 1.8rem;
  color: #797979;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testimonial-wrapper .testimonial-details .testimonial-inner-text {
  display: block;
}
.testimonial-wrapper .ratings {
  margin-top: 1rem;
}
.testimonial-wrapper .testimonial-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}
.testimonial-wrapper .testimonial-info .testimonial-name {
  font-family: "League Spartan", sans-serif;
  font-size: 2.2rem;
}
.testimonial-wrapper .testimonial-info .title-inner {
  color: #e37302;
}
@media (max-width:1023px) {
  .testimonial-wrapper .testimonial-inner-text {
    display: inline;
  }
}

.divider {
  background: #ffd6ab;
  width: 100%;
  height: 1px;
  border-radius: 50%;
  margin: 2rem 0;
}

.latest .section-title {
  justify-content: center;
}
.latest .section-title .about-details {
  font-size: 3.6rem;
}
.latest .latest-section .row > * {
  --bs-gutter-x: 3.5rem;
}
@media (max-width:767px) {
  .latest .blogs-wrapper .about-details {
    font-size: 2rem;
  }
  .latest .blogs-wrapper .shop-btn {
    font-size: 1.6rem;
  }
}

.user-profile {
  margin-top: 2rem;
}

.user-profile-section {
  background: #FFFFFF;
  padding: 4rem 3.6rem;
  border-radius: 1rem;
}
.user-profile-section .dashboard-heading {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
  margin-bottom: 2rem;
}
.user-profile-section .dashboard-heading .dashboard-title {
  font-family: "Inter", sans-serif;
  font-size: 2.2rem;
}
.user-profile-section .dashboard-heading .dashboard-switch {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.user-profile-section .dashboard-heading .dashboard-switch .switch-icon {
  width: 7.3rem;
  height: 3.1rem;
  border: 1px solid #c0c0c0;
  border-radius: 4.6rem;
  position: relative;
  cursor: pointer;
  transition: all 0.5s ease-in;
}
.user-profile-section .dashboard-heading .dashboard-switch .switch-icon::before {
  content: "";
  width: 2.3rem;
  height: 2.3rem;
  background: #232532;
  position: absolute;
  border-radius: 50%;
  top: 3px;
  left: 4px;
  transition: all 0.5s ease-in;
}
.user-profile-section .dashboard-heading .dashboard-switch .switch-icon.active {
  background: #e37302;
}
.user-profile-section .dashboard-heading .dashboard-switch .switch-icon.active::before {
  left: calc(100% - 23px - 4px);
  background-color: #FFFFFF;
}
.user-profile-section .text {
  color: #797979;
  font-size: 1.6rem;
  transition: all 0.2s;
}
@media (max-width:1023px) {
  .user-profile-section {
    padding: 3rem 2rem;
  }
  .user-profile-section .dashboard-heading .dashboard-switch .text {
    display: none;
  }
  .user-profile-section .dashboard-heading .dashboard-switch .switch-icon::before {
    width: 2, 2rem;
    height: 2.2rem;
    top: 2.5px;
  }
  .user-profile-section .dashboard-heading .dashboard-switch .switch-icon.active::before {
    left: calc(100% - 23px + 5px);
  }
  .user-profile-section .user-dashboard {
    flex-direction: column;
  }
  .user-profile-section .user-dashboard .nav-item {
    width: 100%;
    border-right: none;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
  .user-profile-section .user-dashboard .nav-content .profile-section .info-section {
    flex-direction: column;
    gap: 3rem;
    padding: 3rem 0;
  }
  .user-profile-section .user-dashboard .nav-content .profile-section .info-section .heading {
    font-size: 2rem;
  }
  .user-profile-section .user-dashboard .nav-content .profile-section .info-section .info-list p {
    font-size: 1.2rem;
  }
  .user-profile-section .user-dashboard .nav-content .profile-section .devider {
    display: none;
  }
  .user-profile-section .user-dashboard .nav-content .support-ticket .ticket-section {
    overflow-x: scroll;
  }
  .user-profile-section .user-dashboard .nav-content .seller-application-section {
    padding: 0;
  }
  .user-profile-section .user-dashboard .nav-content .seller-application-section .row > * {
    --bs-gutter-x: 0rem;
  }
  .user-profile-section .user-dashboard .nav-content .seller-application-section .account-section .review-form {
    padding: 0;
  }
  .user-profile-section .user-dashboard .nav-content .seller-application-section .account-section .review-form .submit-btn {
    justify-content: center;
  }
  .user-profile-section .user-dashboard .nav-content .seller-application-section .account-section .review-form .submit-btn .shop-btn {
    margin: 2rem 0;
    padding: 1.2rem 2rem;
  }
  .user-profile-section .user-dashboard .nav-content .payment-section .paragraph {
    margin-top: 0.5rem;
  }
  .user-profile-section .user-dashboard .nav-content .payment-section .wrapper {
    flex-direction: column;
  }
  .user-profile-section .user-dashboard .nav-content .payment-section .wrapper .wrapper-item {
    flex-direction: column;
  }
  .user-profile-section .user-dashboard .nav-content .payment-section .wrapper .shop-btn {
    margin-top: 2rem;
  }
  .user-profile-section .user-dashboard .nav-content .payment-section .wrapper .shop-btn::after {
    display: none;
  }
  .user-profile-section .user-dashboard .nav-content .payment-section .wrapper-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0px;
  }
  .user-profile-section .user-dashboard .nav-content .payment-section .wrapper-btn .shop-btn {
    padding: 1rem 2rem;
  }
  .user-profile-section .user-dashboard .nav-content .address-section .seller-info {
    background-color: #ffd6ab;
    padding: 2rem;
  }
  .user-profile-section .user-dashboard .nav-content .address-section .seller-info .info-list {
    margin-top: 1.5rem;
  }
  .user-profile-section .user-dashboard .nav-content .address-section .seller-info .info-list p {
    font-size: 1.2rem;
  }
  .user-profile-section .user-dashboard .nav-content .address-section .shop-btn {
    margin: 2rem 0;
  }
  .user-profile-section .user-dashboard .nav-content .address-section .shop-btn::after {
    display: none;
  }
  .user-profile-section .user-dashboard .nav-content .top-selling-section .product-wrapper {
    flex-direction: column;
    height: auto;
  }
  .user-profile-section .user-dashboard .nav-content .top-selling-section .product-wrapper .product-img {
    height: 13rem;
  }
  .user-profile-section .user-dashboard .nav-content .top-selling-section .product-wrapper .product-img img {
    object-fit: contain;
  }
  .user-profile-section .user-dashboard .nav-content .form-section .form-btn .shop-btn {
    padding: 1rem;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1200px) {
  .user-profile-section .dashboard-heading .dashboard-switch .switch-icon::before {
    width: 2.3rem;
    height: 2.3rem;
    top: 3px;
  }
  .user-profile-section .dashboard-heading .dashboard-switch .switch-icon.active::before {
    left: calc(100% - 34px + 5px);
  }
  .user-profile-section .nav-content .profile-section .info-section {
    flex-direction: row !important;
  }
}
.user-dashboard {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 3rem;
}
.user-dashboard .nav-item {
  width: 23.1rem;
  border-right: 2px solid #ffd6ab;
  padding: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3rem;
}
.user-dashboard .nav-item .nav-link {
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}
.user-dashboard .nav-item .nav-link a span {
  margin-right: 1.6rem;
}
.user-dashboard .nav-item .nav-link svg {
  fill: currentColor;
  fill: #797979;
  transition: all 0.2s;
}
.user-dashboard .nav-item .nav-link.active {
  background-color: transparent;
}
.user-dashboard .nav-item .nav-link.active svg {
  fill: #e37302;
  transform: scale(1.1);
}
.user-dashboard .nav-item .nav-link.active .text {
  transform: translateX(5px);
  color: #e37302;
  font-weight: 600;
}
.user-dashboard .nav-content {
  width: 100%;
}
.user-dashboard .nav-content .paragraph {
  margin-bottom: 1rem;
  color: #232532;
}
.user-dashboard .nav-content .heading {
  font-size: 2.4rem;
}
.user-dashboard .nav-content .profile-section {
  margin-top: 3rem;
}
.user-dashboard .nav-content .profile-section .product-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  height: auto;
  padding: 2.6rem;
  background-color: #ffd6ab;
  border: none;
  box-shadow: none;
}
.user-dashboard .nav-content .profile-section .product-wrapper svg,
.user-dashboard .nav-content .profile-section .product-wrapper path {
  fill: currentColor;
  fill: #e37302;
}
.user-dashboard .nav-content .profile-section .product-wrapper rect {
  fill: #FFFFFF;
}
.user-dashboard .nav-content .profile-section .product-wrapper .paragraph {
  font-size: 2rem;
  color: #232532;
}
.user-dashboard .nav-content .profile-section .product-wrapper .heading {
  font-size: 4rem;
}
.user-dashboard .nav-content .profile-section .product-wrapper:hover {
  background: #e37302;
}
.user-dashboard .nav-content .profile-section .product-wrapper:hover .paragraph,
.user-dashboard .nav-content .profile-section .product-wrapper:hover .heading {
  color: #FFFFFF;
}
.user-dashboard .nav-content .profile-section .info-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
  padding: 4rem;
  background: #ffd6ab;
  border-radius: 0.5rem;
}
.user-dashboard .nav-content .profile-section .info-section .heading {
  margin-bottom: 2rem;
}
.user-dashboard .nav-content .profile-section .info-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
}
.user-dashboard .nav-content .profile-section .info-list p {
  font-size: 1.6rem;
}
.user-dashboard .nav-content .profile-section .info-list .info-title,
.user-dashboard .nav-content .profile-section .info-list .info-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
}
.user-dashboard .nav-content .profile-section .info-list .info-details p {
  color: #232532;
  font-weight: 500;
}
.user-dashboard .nav-content .profile-section .devider {
  height: 16.4rem;
  width: 1px;
  background: #FFFFFF;
}
.user-dashboard .nav-content .seller-application-section {
  padding: 0;
}
.user-dashboard .nav-content .seller-application-section .row > * {
  --bs-gutter-x: 3rem ;
}
.user-dashboard .nav-content .seller-application-section .account-section .review-form {
  width: auto;
  height: auto;
}
.user-dashboard .nav-content .seller-application-section .account-section .review-form .submit-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
}
.user-dashboard .nav-content .seller-application-section .account-section .review-form .submit-btn .shop-btn {
  margin: 2rem 0;
}
.user-dashboard .nav-content .seller-application-section .account-section .review-form .submit-btn .shop-btn::after {
  display: none;
}
.user-dashboard .nav-content .seller-application-section .account-section .review-form .submit-btn .cancel-btn {
  background: transparent;
  color: red;
}
.user-dashboard .nav-content .seller-application-section .img-upload-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0px;
}
.user-dashboard .nav-content .seller-application-section .img-upload-section .upload-input {
  transform: translate(-5rem, 7rem);
}
.user-dashboard .nav-content .payment-section .verified {
  color: green;
  font-weight: 500;
}
.user-dashboard .nav-content .payment-section .paragraph {
  margin-top: 0.5rem;
}
.user-dashboard .nav-content .payment-section .wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
}
.user-dashboard .nav-content .payment-section .wrapper .wrapper-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
}
.user-dashboard .nav-content .payment-section .wrapper .shop-btn {
  margin: 0;
}
.user-dashboard .nav-content .payment-section .wrapper .shop-btn::after {
  display: none;
}
.user-dashboard .nav-content .payment-section hr {
  margin: 3rem 0;
}
.user-dashboard .nav-content .payment-section .shop-btn {
  margin: 0;
  border: 1px solid #ffffff;
}
.user-dashboard .nav-content .payment-section .shop-btn::after {
  display: none;
}
.user-dashboard .nav-content .payment-section .bank-btn {
  margin-left: 2rem;
  background-color: #FFFFFF;
  color: #232532;
  border: 1px solid #232532;
}
.user-dashboard .nav-content .wishlist .cart-content {
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
.user-dashboard .nav-content .addresses {
  margin-top: 0;
}
.user-dashboard .nav-content .address-section .seller-info {
  background-color: #ffd6ab;
  padding: 3rem;
}
.user-dashboard .nav-content .address-section .seller-info .info-list {
  margin-top: 1.5rem;
}
.user-dashboard .nav-content .address-section .shop-btn {
  margin: 2rem 0;
}
.user-dashboard .nav-content .address-section .shop-btn::after {
  display: none;
}
.user-dashboard .nav-content .top-selling-section .product-wrapper {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border: none;
}
.user-dashboard .nav-content .top-selling-section .product-wrapper:hover {
  border: none;
}
.user-dashboard .nav-content .top-selling-section .product-cart-btn {
  visibility: visible;
  opacity: 1;
  right: 0;
}
.user-dashboard .nav-content .form-section .form-item {
  margin-bottom: 1.6rem;
}
.user-dashboard .nav-content .form-section .form-item input {
  padding: 1.3rem;
  border-radius: 0;
}
.user-dashboard .nav-content .form-section .form-item .form-label {
  color: #797979;
  font-size: 1.5rem;
}
.user-dashboard .nav-content .form-section .form-item .form-control {
  box-shadow: none;
  border: 1px solid rgb(232, 232, 232);
  border-radius: 0.5rem;
}
.user-dashboard .nav-content .form-section .form-btn {
  margin: 3rem 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}
.user-dashboard .nav-content .form-section .form-btn .shop-btn {
  margin: 0;
  font-weight: 600;
}
.user-dashboard .nav-content .form-section .form-btn .shop-btn::after {
  display: none;
}
.user-dashboard .nav-content .form-section .form-btn .cancel-btn {
  background: transparent;
  color: #232532;
  border-radius: 0;
}
.user-dashboard .nav-content .support-ticket .shop-btn {
  margin: 0 0 2rem 0;
}
.user-dashboard .nav-content .support-ticket .shop-btn::after {
  display: none;
}
.user-dashboard .nav-content .support-ticket .table-row .table-wrapper {
  padding: 2rem 4rem;
}
.user-dashboard .nav-content .support-ticket .table-row .table-wrapper .comment-img path,
.user-dashboard .nav-content .support-ticket .table-row .table-wrapper .delete-img path {
  fill: currentColor;
}
.user-dashboard .nav-content .support-ticket .table-row .table-wrapper .comment-img path {
  fill: #27AE60;
}
.user-dashboard .nav-content .support-ticket .table-row .table-wrapper .delete-img path {
  fill: #EB5757;
}
.user-dashboard .nav-content .modal-main {
  border-radius: 1rem;
  margin: 2rem;
}
.user-dashboard .nav-content .modal-main .review-form {
  width: auto;
  height: auto;
  margin-top: 0;
}
.user-dashboard .nav-content .modal-main .review-form .review-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
}
.user-dashboard .nav-content .modal-main .review-form .review-content .comment-title {
  font-size: 2.4rem;
  margin: 0;
}
.user-dashboard .nav-content .modal-main .review-form .review-content .close-btn {
  cursor: pointer;
}
.user-dashboard .nav-content .modal-wrapper.active {
  display: flex;
}/*# sourceMappingURL=style.css.map */


.input-group-text
{
  border: 1px solid #ffd6ab;
  box-shadow: none;
  color: #232532;

}

#meter_wrapper{
  border: 1px solid #ffd6ab;
  box-shadow: none;
}





















 
