*,
*::after,
*::before {
  box-sizing: border-box;
}

body,
html {
  margin: 0;
  padding: 0;
  font-family: "Poppins", "Montserrat", sans-serif;
  text-align: center;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #625d5d;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: inline-block;
}

/* header css start */
.logo-wrapper img {
  width: 100px;
}

.main-head-wrap .menu-wrapper {
  /* position: fixed; */
  top: 0;
  width: 100%;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  background-color: #f8f6ef;
  padding: 26px 40px;
  align-items: center;
}

.header-cart-search-user-wrap.mobile-cart-search-user {
  display: none;
}

.header-cart-search-user-wrap.desktop-cart-search-user {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.main-head-wrap .logo-wrapper a {
  display: flex;
  color: #fff;
  font-size: 20px;
}

.main-head-wrap .menu-wrapper .phone-wrap-menu {
  display: none;
}

.main-head-wrap .hamburger-wrap {
  display: none;
}

.main-head-wrap .hamburger-wrap .hamburger {
  height: 30px;
  width: 30px;
  display: flex;
  flex-flow: column nowrap;
  position: fixed;
  top: 30px;
  right: 20px;
  cursor: pointer;
  z-index: 20;
}

.main-head-wrap .hamburger-wrap .hamburger .line {
  height: 2px;
  margin-bottom: 5px;
  width: 100%;
  display: block;
  border-radius: 3px;
  transition: all 0.2s ease;
  background-color: #000;
}

/* overlay sidebar start */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease-in-out;
}

.overlay.overlay-open {
  opacity: 1;
  visibility: visible;
}
/* overlay sidebar end */
/* menu on click to open hamburger */
.main-head-wrap .hamburger-wrap .hamburger.menu-open .line:first-child {
  background: #fff;
  transform: rotate(45deg);
  margin-bottom: 2px;
  margin-top: 5px;
}

.main-head-wrap .hamburger-wrap .hamburger.menu-open .line:nth-child(2) {
  opacity: 0;
  transform: translateX(-16px);
}

.main-head-wrap .hamburger-wrap .hamburger.menu-open .line:nth-child(3) {
  background: #fff;
  transform: translateX(-3px) translateY(-8px) rotate(-45deg);
}
/* menu on click to open hamburger */

.main-head-wrap nav.main-menu ul.navbar-wrap {
  display: flex;
  list-style-type: none;
  position: relative;
}

.main-head-wrap nav.main-menu ul.navbar-wrap li {
  margin: 0 10px;
  position: relative;
}

.main-head-wrap nav.main-menu ul.navbar-wrap li a {
  color: #000000;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.main-head-wrap nav.main-menu ul.navbar-wrap li a.active,
.main-head-wrap nav.main-menu ul.navbar-wrap li a:hover {
  color: #000;
  transition: all 0.2s ease-in-out;
  font-weight: 700;
}

.announcement-bar {
  position: fixed;
  background-color: #005c67;
  color: #fff;
  z-index: 2;
  top: 100px;
  left: 0;
  width: 100%;
  padding: 13px;
}

.search-icon-wrap {
  background-color: #fff;
  padding: 10px;
  border-radius: 5px;
  align-items: center;
  display: flex;
  cursor: pointer;
}

.search-icon-wrap:hover {
  background-color: #ff5c3e;
  transition: 01s ease;
  -webkit-transition: 01s ease;
  -moz-transition: 01s ease;
  -ms-transition: 01s ease;
  -o-transition: 01s ease;
}
.search-icon-wrap:hover svg path {
  stroke: #fff;
  transition: 01s ease;
  -webkit-transition: 01s ease;
  -moz-transition: 01s ease;
  -ms-transition: 01s ease;
  -o-transition: 01s ease;
}

.cart-icon-wrap {
  background-color: #fff;
  padding: 10px;
  border-radius: 5px;
  align-items: center;
  display: flex;
  cursor: pointer;
}
.cart-icon-wrap:hover {
  background-color: #ff5c3e;
  transition: 01s ease;
  -webkit-transition: 01s ease;
  -moz-transition: 01s ease;
  -ms-transition: 01s ease;
  -o-transition: 01s ease;
}
.cart-icon-wrap:hover svg path {
  stroke: #fff;
  transition: 01s ease;
  -webkit-transition: 01s ease;
  -moz-transition: 01s ease;
  -ms-transition: 01s ease;
  -o-transition: 01s ease;
}
.user-icon-wrap {
  background-color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  align-items: center;
  display: flex;
  cursor: pointer;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.user-icon-wrap:hover {
  background-color: #ff5c3e;
  transition: 01s ease;
  -webkit-transition: 01s ease;
  -moz-transition: 01s ease;
  -ms-transition: 01s ease;
  -o-transition: 01s ease;
}

.user-icon-wrap:hover svg path {
  stroke: #fff;
  transition: 01s ease;
  -webkit-transition: 01s ease;
  -moz-transition: 01s ease;
  -ms-transition: 01s ease;
  -o-transition: 01s ease;
}

.hidden {
  display: none;
}

/* Style the overlay */
#search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-container {
  width: 50%;
  display: flex;
  align-items: center;
}

span.arrow {
  font-size: 20px;
  position: absolute;
  top: -3px;
}

.main-head-wrap nav.main-menu ul.navbar-wrap .dropdown .submenu {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20%);
  transition: all 0.5s;
  position: absolute;
  width: 150px;
  top: 100%;
  left: -22px;
  padding: 10px 0px 10px 0;
  background-color: #ffffff;
  border: 1px solid #dbdbdb;
  border-radius: 8px;
  box-shadow: 0 6px 9px rgba(0, 0, 0, 0.11);
  z-index: 10;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.main-head-wrap nav.main-menu ul.navbar-wrap .dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0%);
  max-height: 500px;
}
/* header css end */
/* desktop search start */
.desktop-search-bar-wrap {
  display: none; /* Hidden by default */
  position: absolute;
  top: -50px; /* Start position above the screen */
  left: 0;
  width: 100%;
  background-color: white;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  opacity: 0; /* Hidden initially */
  transition: top 0.5s ease, opacity 0.5s ease; /* Smooth transition */
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.desktop-search-input {
  width: calc(100% - 40px);
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.desktop-close-search {
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 0 10px;
}

.desktop-search-icon-wrap svg {
  cursor: pointer;
}

/* When active, display the search bar */
.desktop-search-bar-active {
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 0px; /* Moves to visible position */
  opacity: 1; /* Makes it visible */
}
/* desktop search end */
/* cart css start */
section.cart-main-wrap-item {
  margin-top: 9em;
}
.add-to-cart-main-wrap {
  background-color: #f8f6ef;
  margin-top: -3em;
}
.cart-title-item h3 {
  padding-top: 50px;
  font-size: 33px;
  font-weight: 500;
  color: #000;
  text-align: center;
}
.cart-container {
  margin: 50px 100px 0 100px;
}

.cart-container.save-later-product-view-mobile {
  display: none;
}

.cart-container.cart-container-mobile-view {
  display: none;
}
.cart-header {
  border-bottom: 1px solid #dbdbdb;
}
.cart-header,
.cart-item {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 20px 0;
  text-align: left;
  gap: 30px;
  margin: 0 20px;
}
.cart-header-related-product {
  border-bottom: 1px solid #dbdbdb;
}
.cart-header-related-product,
.cart-item-related-products {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 20px 0;
  text-align: left;
  gap: 30px;
  margin: 0 20px;
}

.cart-header-item {
  font-weight: bold;
  color: #333;
}

.cart-product {
  display: flex;
}

.product-image {
  width: 100px;
  height: auto;
  margin-right: 20px;
}

.product-details h3 {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}

.product-details p {
  font-size: 14px;
  color: #666;
}

.format-text {
  color: #ff5c3e;
  font-weight: bold;
}

.product-actions {
  margin-top: 10px;
}

.action-btn {
  background-color: #ffffff;
  border: none;
  font-size: 16px;
  cursor: pointer;
  margin-right: 5px;
  color: #e94e77;
  padding: 5px;
  width: 30px;
  height: 30px;
  border-radius: 5px;
}

.cart-price,
.cart-subtotal {
  font-size: 16px;
  color: #333;
}

.cart-quantity {
  display: flex;
  align-items: center;
  border: 1px solid #dbdbdb;
  padding: 0px 0px;
  width: 110px;
  height: 35px;
  justify-content: left;
}

.qty-btn {
  background-color: #f8f6ef;
  outline: unset;
  border: 0;
  padding: 5px 0px;
  font-size: 16px;
  cursor: pointer;
}

.qty-input {
  width: 50px;
  background-color: #f8f6ef;
  text-align: center;
  outline: unset;
  border: 0;
  margin: 0 10px;
}

.discount-text {
  font-size: 12px;
  color: #ff5c3e;
}

.subtotal {
  font-size: 16px;
  color: #333;
  margin: 5px 0;
}

.old-price {
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
}

.cart-summary {
  text-align: right;
  border: none;
  border-top: 1px solid #dbdbdb;
}

@media (max-width: 768px) {
    .cart-summary {
        text-align: center; /* Align text to the center for better readability */
        border: none;
        border-top: 1px solid #dbdbdb; /* Retain the border */
        padding: 10px; /* Add padding for better spacing */
        font-size: 14px; /* Adjust font size for smaller screens */
    }
}



.summary-item {
  font-size: 28px;
  font-weight: 500;
  margin-top: 20px;
}

@media (max-width: 768px) {
    .summary-item {
        font-size: 20px; /* Adjust font size for smaller screens */
        font-weight: 400; /* Optional: Adjust font weight if needed */
        margin-top: 10px; /* Reduce margin for better spacing */
    }
}

.summary-value {
  font-size: 32px;
  font-weight: 400;
  color: #000;
}

@media (max-width: 768px) {
    .summary-value {
        font-size: 20px; /* Adjust font size for smaller screens */
        font-weight: 300; /* Optional: Lighten font weight if needed */
        color: #000; /* Maintain the same color or adjust if necessary */
    }
}

.checkout-btn {
  grid-column: span 2;
  padding: 15px 50px;
  background-color: #ff5c3e;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 24px;
  cursor: pointer;
  font-weight: 500;
  margin-top: 20px;
}
.checkout-btn:hover {
  background-color: #ff5c3e;
}
/* cart css start */

/* recommended book css start */

section.recommended-books-item-wrap {
  margin: 50px 100px 0 100px;
  padding-bottom: 50px;
}
.recommended-book-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

.recommended-book-title h3 {
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 21px;
  font-weight: 500;
  color: #000;
}

.recommended-book-title h3::before,
.recommended-book-title h3::after {
  content: "";
  flex: 1; /* Make lines flexible to fill the remaining space */
  height: 1px;
  background-color: #dbdbdb;
}

.recommended-book-title h3::before {
  margin-right: 20px; /* Space between line and text */
}

.recommended-book-title h3::after {
  margin-left: 20px; /* Space between line and text */
}

.recommended-book-title h3 span {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  white-space: nowrap; /* Prevent text wrapping */
}

.show-related-product-slider {
  display: flex;
  justify-content: space-between;
  text-align: center;
  margin-top: 50px;
}

.bookdetails-slide-item {
  text-align: left;
  margin: 0 30px;
}

.bookdetails-slide-item img {
  width: 100%;
}

.book-title {
  margin-top: 10px;
}

.writer-title {
  margin-top: 10px;
}

.bookdetails-slide-item .writer-title h4 {
  font-size: 16px;
  font-weight: 500;
}
.bookdetails-slide-item .book-title h4 {
  font-size: 16px;
  font-weight: 400;
}
/* recommended book css end */



/* sticky cart css start */
.sticky-cart-wrapper {
  display: none;
}
/* sticky cart css end */

/* media query for mobile start */
@media screen and (max-width: 767px) {
  /* header media query css start */
  .main-head-wrap .menu-wrapper {
    padding: 10px 10px;
    justify-content: space-around;
    gap: 5px;
  }

  .logo-wrapper a svg {
    width: 150px;
  }

  .main-head-wrap .menu-wrapper .phone-wrap-menu {
    display: block;
  }

  .user-icon-wrap {
    background-color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
  }

  span.arrow svg path {
    color: #fff;
    fill: #fff;
  }

  .search-icon-wrap {
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    align-items: center;
    display: flex;
    cursor: pointer;
    width: 35px;
    height: 35px;
    justify-content: center;
  }

  .cart-icon-wrap {
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    align-items: center;
    display: flex;
    width: 35px;
    height: 35px;
  }

  span.arrow {
    font-size: 20px;
    position: absolute;
    top: 12px;
    right: 0;
    color: #fff;
  }

  li.list-item-wrap.dropdown {
    margin: 0 0px 0 0 !important;
  }

  .main-head-wrap nav.main-menu ul.navbar-wrap .dropdown .submenu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20%);
    transition: max-height 0.5s ease, opacity 0.5s, visibility 0s 0s,
      transform 0.5s;
    overflow: hidden;
    position: unset;
    width: 100%;
    top: 44px;
    left: 0;
    padding: 10px 0;
    background-color: #005c69;
    border: unset;
    box-shadow: 0 6px 9px rgba(0, 0, 0, 0.11);
    z-index: 10;
    max-height: 0;
    -webkit-transition: max-height 0.5s ease, opacity 0.5s, visibility 0s 0s,
      transform 0.5s;
    -moz-transition: max-height 0.5s ease, opacity 0.5s, visibility 0s 0s,
      transform 0.5s;
    -ms-transition: max-height 0.5s ease, opacity 0.5s, visibility 0s 0s,
      transform 0.5s;
    -o-transition: max-height 0.5s ease, opacity 0.5s, visibility 0s 0s,
      transform 0.5s;
  }

  .announcement-bar {
    position: fixed;
    top: 68px;
    background-color: #005c67;
    color: #fff;
    width: 100%;
    padding: 10px;
    z-index: -1;
  }

  .header-cart-search-user-wrap.mobile-cart-search-user {
    display: flex;
    gap: 5px;
  }

  .header-cart-search-user-wrap.desktop-cart-search-user {
    display: none;
  }

  .main-head-wrap .menu-wrapper .phone-wrap-menu .phone-icon-menu {
    display: flex;
    font-size: 18px;
  }

  .main-head-wrap .hamburger-wrap {
    display: block;
    margin: 0 0 0 20px;
  }

  .main-head-wrap .hamburger-wrap .hamburger {
    justify-content: center;
    align-items: center;
    top: 22px;
  }

  .main-head-wrap nav.main-menu {
    background-color: #000000;
    width: 250px;
    height: 100vh;
    transition: 0.85s;
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    right: -100%;
  }
  /* sidebar open on click to show */
  .main-head-wrap nav.main-menu.menu-open {
    right: 0;
    transition: 0.35s;
  }
  /* sidebar open on click to show */
  .main-head-wrap nav.main-menu ul.navbar-wrap {
    display: block;
    width: 100%;
    padding: 100px 10px;
  }

  .main-head-wrap nav.main-menu ul.navbar-wrap li {
    margin: 0 0px 0 0;
    padding: 15px 0 10px 15px;
    border-bottom: 1px solid #ffffff;
    text-align: left;
  }

  .main-head-wrap nav.main-menu ul.navbar-wrap li a {
    color: hsla(0, 0%, 100%, 0.5019607843137255);
  }

  .main-head-wrap nav.main-menu ul.navbar-wrap li a .list-item:before {
    content: ".";
    position: absolute;
    top: 4px;
    left: 5px;
    color: #ffffff;
    font-size: 25px;
  }

  .main-head-wrap .header-social-icon ul.header-social-icon-wrap {
    display: none;
  }

  /* mobile search css start */
  .search-bar-wrap {
    display: none;
    position: absolute;
    top: 70px;
    left: 10px;
    width: 95%;
    background-color: white;
    border-radius: 10px;
    padding: 7px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }

  .search-input {
    width: calc(100% - 40px);
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
  }

  .close-search {
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 0 10px;
  }

  .search-icon-wrap svg {
    cursor: pointer;
  }

  /* When active, display the search bar */
  .search-bar-active {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  /* mobile search css end */
  /* header media query css end */
    section.cart-main-wrap-item {
        margin-top: 6.7em;
        padding-top: 10px;
    }

  section.recommended-books-item-wrap {
    margin: 50px 10px 0 10px;
    padding-bottom: 50px;
  }
  .cart-container {
    margin: 100px 10px 0 10px;
  }

  .cart-container.cart-container-desktop {
    display: none;
  }

  .cart-container.cart-container-mobile-view {
    display: block;
    border-bottom: 1px solid #c8c8c8;
  }

  /* .product-image {
    width: 250px;
    height: 300px;
    margin-right: 20px;
  } */

  .sale-price-regular-price-item-view {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
  }

  .product-details p.subtotal {
    font-size: 16px;
    color: #000;
    font-weight: 600;
  }

  .product-actions {
    margin-top: 10px;
    display: flex;
    justify-content: flex-start;
  }
  .cart-header {
    display: none;
  }
  .cart-item {
    display: block;
    padding: 20px 0;
    text-align: left;
    margin: 0 5px;
  }

  .cart-header-related-product {
    display: none;
  }
    .cart-item-related-products {
        display: grid;
        grid-template-columns: 5fr 1fr;
        padding: 10px 0px 15px 0px;
        text-align: left;
        gap: 10px;
        margin: 0 4px;
    }

  .cart-container.save-later-product-view-desktop {
    display: none;
  }

  .cart-container.save-later-product-view-mobile {
    display: block;
    margin-top: 0;
  }

  .checkout-btn {
   grid-column: span 2;
   padding: 12px 49px;
   background-color: #ff5c3e;
   color: #fff;
   border: none;
   border-radius: 46px;
   font-size: 17px;
   cursor: pointer;
   font-weight: 500;
   margin-top: 13px;
   width: 100%;
  }

  .sticky-cart-wrapper {
    display: block;
    background-color: #fff;
    padding: 10px;
    position: sticky;
    bottom: 0;
  }

  .cart-title-item h3 {
    padding-top: 7px;
    font-size: 21px;
    font-weight: 500;
    color: #000;
    text-align: center;
  }
  
  .sticy-cart-subtotal-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .subtotal-sticky-cart-title h4 {
    font-size: 22px;
    color: #000;
    font-weight: 600;
  }
  .subtotal-sticky-cart-price h4 {
    font-size: 22px;
    color: #000;
    font-weight: 600;
  }

  .footer-wrapper-row {
    display: grid;
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .slick-prev {
    left: 0 !important;
  }
  .slick-next {
    right: 0 !important;
  }
}
/* media query for mobile end */

/* Mobile styles */
@media screen and (max-width: 768px) {
    .cart-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 10px 0px 15px 0px;
        border-bottom: 1px solid #ddd;
    }

    .cart-product {
        display: flex;
        flex-direction: column; /* Stack image and details vertically */
        gap: 8px;
        width: 100%;
    }

    .product-details {
        margin-top: 0;
        margin-right: 0;
        padding: 0 0px 0 0px; /* Adjust padding to avoid content touching edges */
        width: 100%;
    }

    .product-details h3 {
        font-size: 18px; /* Adjust heading font size for mobile */
        margin-bottom: 5px;
        margin-left: 0px;
    }

    .cart-price,
    .cart-quantity,
    .cart-subtotal {
        width: 100%; /* Ensure elements take full width */
        text-align: left; /* Align text to left */
        margin-top: 8px;
    }

    .cart-quantity {
        display: flex;
        /*justify-content: space-between; */
        align-items: center;
        /*gap: 10px;*/
        border: none; /* Remove border from quantity */
    }

    .qty-btn {
        width: 35px;
        height: 35px;
        background-color: #f7f7f7;
        border: 1px solid #ccc;
        border-radius: 50%;
        font-size: 18px;
        color: #333;
        cursor: pointer;
        transition: background-color 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .qty-btn:hover,
    .qty-btn:focus {
        background-color: #ddd;
    }

    .qty-btn:active {
        background-color: #ccc;
    }

    .qty-input {
        width: 45px;
        height: 35px;
        text-align: center;
        font-size: 16px;
        border: 1px solid #ccc;
        border-radius: 4px;
        padding: 5px;
        font-weight: bold;
        color: #333;
    }

    .qty-input:disabled {
        background-color: #f0f0f0;
        color: #888;
        cursor: not-allowed;
    }

    .cart-price {
        margin-bottom: 0px;
        font-size: 18px;
    }

    .cart-subtotal {
        font-size: 18px;
        font-weight: bold;
        color: #333;
        margin-top: 8px;
    }

    .discount-text {
        font-size: 16px;
        color: #FF5C3E;
        font-weight: bold;
        text-align: center;
        margin-bottom: 4px;
    }

    .old-price {
        font-size: 16px;
        color: #999;
        text-decoration: line-through;
        margin-right: 8px;
    }

    .subtotal {
        font-size: 17px;
        color: #333;
        font-weight: bold;
        text-align: right;
        margin-bottom: 0;
    }

    /* Ensure prices align on the same row */
    .old-price,
    .subtotal {
        display: inline-block;
    }

    .product-actions {
        margin-top: 10px;
        display: flex;
        width: 100%;
    }

    .action-btn {
        width: 30px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: transparent;
        border: none;
        cursor: pointer;
    }

    .action-btn svg {
        width: 20px;
        height: 20px;
    }

    /* Adjust button margins to prevent overlap */
    .delete-btn,
    .save {
        margin-right: 8px;
    }
    .product-details p{
        margin-left: 0px
    }
    
    
    

}

section.cart-main-wrap-item {
    margin-top: 97px !important;
}


