*,
*::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 */

/* books details page css start */
.product-details-main-wrap {
  background-color: #f8f6ef;
}

.books-details-grid-wrap {
	grid-template-columns: 1fr 2fr;
    text-align: left;
    padding: 30px 0px;
    margin-top: 6.5em;
    padding-bottom: 10px;
} 

.audio-book-listing {
  display: flex;
  justify-content: start;
  gap: 10px;
  margin-top: 10px;
}

audio {
  background: #f2f3f4;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border: 1px solid #7b7b7b;
}

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

.book-details-content-wrap .product-book-title h1 {
  font-size: 32px;
  font-weight: bold;
  color: #000;
}

.author-wrap-details {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  align-items: center;
}

.author-wrap-details p {
  font-size: 20px !important;
  color: #000;
  font-weight: 600;
}

.author-wrap-details span {
  color: #000;
  font-size: 18px !important;
  font-weight: 300;
}

.star-rating-wrap {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.star-rating {
  display: flex;
  gap: 10px;
}

.book-price-wrap .sale-price {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  align-items: baseline;
}

.sale-price p.regular-price {
  font-size: 22px !important;
  font-weight: 500;
  color: #acacac;
}
p.updated-price {
  font-size: 31px !important;
  color: #ff5c3e;
  font-weight: 500;
}
p.updated-price span.now-size {
  color: blaCK;
  font-size: 20px !important;
  color: #000;
  font-weight: 600;
}
.stock-manage {
  margin-top: 10px;
}
.stock-manage p {
  font-size: 20px !important;
  color: #008b2f;
  font-weight: 600;
}

.stock-manage p.ship-content-time {
  font-size: 20px;
  color: #000;
  font-weight: 400;
  margin-top: 10px;
}

.format-wrapper-book-details {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

.format-wrapper-book-details p {
  font-size: 22px;
  font-weight: 500;
  color: #000;
}

.box-price-books-wrap {
  display: flex;
  /* background-color: #fff; */
  /* justify-content: space-between; */
  align-items: center;
  padding: 10px;
  border-radius: 12px;
  gap: 12px;
}

.text-black{
  color: black;
}

.book-price {
  border: 1px solid #000;
  padding: 10px 5px;
  border-radius: 12px;
  width: 140px;
  max-width: 100%;
  display: grid;
  justify-content: center;
  text-align: center;
}

.format-wrapper-book-details span{
  font-size: 20px !important;
  color: #000;
  font-weight: 600;
}

.book-price.active {
  border: 1px solid #ff5c3e;
}

.book-price.active p {
  color: #ff5c3e;
}

.book-price p {
  font-size: 14px;
  color: #000;
}

.cart-items-btn{
display: flex;
justify-content: space-between;
gap: 20px;
}

.add-to-cart-buy-now-wrapper {
  /* background-color: #fff; */
  height: fit-content;
  width: fit-content;
  padding: 15px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  margin-top: 20px;
}

.quantity-item-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.quantity-item p {
  font-size: 20px !important;
  font-weight: 500;
  color: #000;
}

.quantity-increase-decrease {
  border: 1px solid #ff5c3e;
  display: flex;
  gap: 40px;
  border-radius: 28px;
  padding: 10px 30px;
}

.cart-btns{
  display: flex;
  gap: 10px;
}

.add-to-cart-item a button {
  /* margin-top: 30px; */
  border: 1px solid #ff5c3e;
  outline: none;
  background-color: transparent;
  padding: 10px 30px;
  width: 100%;
  border-radius: 28px;
  color: #ff5c3e;
  cursor: pointer;
  font-weight: 600;
}
.buy-now-button a button {
  /* margin-top: 20px; */
  background-color: #ff5c3e;
  border: 1px solid #ff5c3e;
  outline: none;
  padding: 10px 30px;
  width: 100%;
  border-radius: 28px;
  color: #ffffff;
  cursor: pointer;
  font-weight: 600;
}
/* books details page css end */

.tab-section-wrapper{
  padding:0 50px
}

/* fold 2 tab css start */
.wrapper {
  margin: 30px;
  padding: 1rem;
  position: relative;
}

.tab-container {
  border-bottom: 1px solid #dbdbdb;
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

.tab-container .tab {
  position: relative; /* Positioning for shadow effect */
  cursor: pointer;
  padding: 8px 20px;
  z-index: 1; /* Ensure tabs are on top */
  font-size: 20px;
}

.tab-container .active-tab {
  box-shadow: 0 2px 0 0 #f8f6ef;
  border: 1px solid #dbdbdb;
  border-bottom: unset;
  font-weight: 600;
}

.tab-content {
  text-align: left;
  margin-top: 15px;
}

.tab-content p {
  font-size: 16px;
  line-height: 25px;
  color: #000;
  word-spacing: 3px;
}

@media (max-width: 767) {
  .tab-container {
    flex-direction: column;
    margin-bottom: 8px;
    padding: 0 8px;
  }
  .tab-container .tab:not(:last-child) {
    margin-right: 0;
  }
}
/* fold 2 tab css end */

/* fold 3 slider css start */
section.fold3 {
  padding: 50px;
}

.slider-title-wrap {
  margin-bottom: 20px;
}

.slider-grid-recommended-title p {
  font-weight: bold;
  font-size: 21px !important;
  color: #030303;
}

.right-line:after {
  content: "";
  display: inline-block;
  height: 0.5em;
  vertical-align: bottom;
  width: 40%;
  margin-right: -100%;
  margin-left: 10px;
  border-top: 1px solid #ddd;
}

.left-line:before {
  content: "";
  display: inline-block;
  height: 0.5em;
  vertical-align: bottom;
  width: 40%;
  margin-left: -100%;
  margin-right: 10px;
  border-top: 1px solid #ddd;
}
.bookdetails-slide-item {
  text-align: left;
  margin: 0 10px;
}

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

.bookdetails-slide-item .book-title h4 {
  font-size: 16px;
  font-weight: 300;
  margin-top: 5px;
  text-align: left;
}

.bookdetails-slide-item .writer-title h4 {
  font-size: 17px;
  font-weight: 400;
  margin-top: 5px;
  text-align: left;
}

.product-details-writer-slider .slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: #000000 !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* fold 3 slider css end */

/* fold 4 section css start */
section.review-section-wrapper {
  padding: 50px;
  border-top: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
  margin: 0 50px;
}

.customer-review-title h4 {
  font-size: 21px;
  font-weight: 600;
  color: #000;
}

.review-grid-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr 2fr;
  margin-top: 50px;
}

.review-rating-col {
  border-right: 1px solid #dbdbdb;
}

.review-mic {
  margin-top: 30px;
}

.content-review p.content-review-title {
  font-size: 22px;
  font-weight: 600;
  color: #000;
}

p.content-review-subtitle {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 400;
  color: #000;
}

.content-review {
  margin-top: 20px;
}

.content-title p {
  font-size: 22px;
  font-weight: 400;
  color: #000;
  margin-bottom: 30px;
}
.rating-container {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 15px;
}

.stars {
  color: #ccc;
  cursor: pointer;
}

.star:hover,
.star.active svg path {
  color: gold;
  fill: gold;
}

.progress-container {
  width: 200px;
  height: 10px;
  background-color: #e0e0e0;
  margin: 10px auto;
  border-radius: 15px;
}

.progress-bar {
  width: 0;
  height: 100%;
  background-color: gold;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.rating-value {
  font-size: 18px;
  margin-top: 10px;
}

/* write review css start */
.review-section {
  margin-top: 20px;
}

.review-toggle-btn {
  background-color: #ff5c3e;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.review-toggle-btn:hover {
  background-color: #ff5c3e;
}

.review-form {
  margin-top: 20px;
  opacity: 0; /* Start hidden */
  transform: translateY(-10px); /* Start position */
  transition: opacity 0.3s ease, transform 0.3s ease; /* Animation */
}

.review-form.show {
  opacity: 1; /* Fully visible */
  transform: translateY(0); /* Final position */
}

#reviewTextArea {
  width: 100%;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 15px;
  font-size: 16px;
  resize: none;
}

.review-buttons {
  margin-top: 10px;
}

.submit-review,
.cancel-review {
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.submit-review {
  background-color: #4caf50;
  color: white;
  border-radius: 15px;
  margin-right: 10px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.cancel-review {
  background-color: #f44336;
  border-radius: 15px;
  color: white;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.submit-review:hover {
  background-color: #45a049;
}

.cancel-review:hover {
  background-color: #d32f2f;
}

/* write review css end */

/* popup for user login css start */
.user-icon-wrap {
  cursor: pointer;
}

.login-popup-overlay {
  display: none; /* Initially hidden */
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6); /* Overlay effect */
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.login-popup-overlay.active {
  display: flex; /* Show the overlay */
}

.login-popup-cover {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
}

.login-popup-cover .contents {
  align-items: center;
  display: grid;
  width: 500px;
  height: 400px;
  background: #ffffff;
  margin: 30px auto;
  padding: 20px;
  border-radius: 30px;
  position: relative;
  text-align: center;
  padding: 0 50px;
}

.popup-message p {
  font-size: 30px;
  font-weight: 700;
}

.popup-message p span.popup-company {
  color: #005c67;
}

.input-number input {
  width: 100%;
  padding: 20px 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.otp-input {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.otp-input input {
  width: 50px;
  height: 50px;
  margin: 0 8px;
  text-align: center;
  font-size: 1.5rem;
  border: 2px solid #6665f1;
  border-radius: 12px;
  color: #000000;
  transition: all 0.3s ease;
}

.otp-input input:focus {
  border-color: #a556f6;
  box-shadow: 0 0 0 2px rgba(166, 86, 246, 0.3);
  outline: none;
}
.otp-input input::-webkit-outer-spin-button,
.otp-input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.orange-content {
  color: #ff5c3e;
}

.close {
  background-color: #000000;
  color: #fff;
  border-radius: 15px;
  padding: 15px 25px;
  position: absolute;
  top: 15px;
  text-align: center;
  right: 0;
  transform: translateX(-50%);
  cursor: pointer;
  width: 30px;
  height: 30px;
  padding: 5px;
}

span.otp-button {
  background-color: #ff5c3e;
  border-radius: 8px;
  padding: 10px 0;
  color: #fff;
  font-weight: 500;
  font-size: 24px;
  cursor: pointer;
  margin-top: 20px;
}

/* popup for user login css end */

/* barcode popup to download the app for write review css start */
.barcode-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
  z-index: 1000;
}

.barcode-popup-overlay.active {
  display: block;
}

.login-popup-overlay.active {
  display: flex; /* Show the overlay */
}
.popup-container {
  width: 100%;
  max-width: 600px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

/* Popup Content */
.popup-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

/* Close Button */
.close-btn-qr-popup {
  position: absolute;
  color: #fddf48;
  background-color: #000 !important;
  border-radius: 50%;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

/* Left Section */
.left-section {
  flex: 1;
  padding: 20px;
  text-align: left;
}

.left-section h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

.left-section p {
  font-size: 18px;
  color: #333;
}

/* Right Section */
.right-section {
  flex: 1;
  background-color: #fddf48;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}
/* barcode popup to download the app for write review css end */

/* fold 4 section css end */

/* fold 5 section css start */
section.review-list-items-wrap {
  margin: 25px 0 0 0;
  text-align: left;
  padding: 0 50px;
}

.review-item-wrapper-view .star-view-rate {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-item-wrapper-view .user-title {
  margin-top: 20px;
}

.review-item-wrapper-view .user-title p {
  font-size: 21px;
  font-weight: 600;
  color: #000;
}
.review-item-wrapper-view .user-review {
  margin-top: 20px;
}
.review-item-wrapper-view .user-review p {
  font-size: 21px;
  font-weight: 400;
  color: #000;
  line-height: 30px;
}

.review-btm-wrap-view {
  display: flex;
  justify-content: start;
  gap: 50px;
  margin-top: 20px;
}

.review-item-wrapper-view {
  border-bottom: 1px solid #dbdbdb;
  padding: 20px 0;
  display: none;
}

.review-btm-wrap-view .book-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.review-btm-wrap-view .book-icon p {
  font-size: 20px;
  font-weight: 700;
}

.review-btm-wrap-view .book-icon span {
  font-weight: 400;
  font-size: 20px;
  color: #000;
}

.review-btm-wrap-view .mic-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.review-btm-wrap-view .mic-icon p {
  font-size: 20px;
  font-weight: 700;
}

.review-btm-wrap-view .mic-icon span {
  font-weight: 400;
  font-size: 20px;
  color: #000;
}

.view-more-review {
  text-align: center;
  margin-top: 50px;
  padding-bottom: 50px;
}

button.view-button {
  background-color: #ffffff;
  color: #000000;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 4px;
  margin: 0 auto;
}
/* fold 5 section 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: 0;
    width: 100%;
    background-color: white;
    border-radius: 10px;
    padding: 10px;
    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 */

  .books-details-grid-wrap {
        display: block;
        grid-template-columns: 1fr;
        text-align: left;
        padding: 0px 0px;
        margin-top: 4.2em;
  } 

.book-details-content-wrap .product-book-title h1 {
        font-size: 18px;
        margin-top: 10px;
        font-weight: 600;
    }

    .format-wrapper-book-details {
        margin-top: 10px;
        display: block;
        margin-bottom: 0px;
    }

  section.review-section-wrapper {
    padding: 10px;
    border-top: 1px solid #dbdbdb;
    border-bottom: 1px solid #dbdbdb;
    margin: 0 0px;
  }

  .review-grid-wrap {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 15px;
  } 

  .review-rating-col {
    border-right: 0px solid #dbdbdb;
  }

  .box-price-books-wrap {
    display: grid;
    /* background-color: #fff; */
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 10px;
    border-radius: 12px;
    gap: 8px;
    text-align: center;
  }

  .book-price {
    width: unset;
    max-width: 100%;
  }

  section.fold3 {
    padding: 30px;
  }

	.left-line:before {
        content: "";
        display: inline-block;
        height: 0.5em;
        vertical-align: bottom;
        width: unset;
        margin-left: auto !important;
        margin-right: auto !important;
        border-top: 1px solid #ddd;
    }
  .right-line:after {
    content: "";
    display: inline-block;
    height: 0.5em;
    vertical-align: bottom;
    width: unset;
    margin-right: auto !important;
    margin-left: auto !important;
    border-top: 1px solid #ddd;
    max-width: 100%;
  } 

  .book-img img {
    width: 100%;
  }

  .wrapper {
    margin: 20px;
    padding: 0rem;
    position: relative;
  }

  .login-popup-cover {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
    padding: 50px 10px;
  }

  .login-popup-cover .contents {
    align-items: center;
    display: grid;
    width: 100%;
    height: auto;
    background: #ffffff;
    margin: 30px auto;
    border-radius: 30px;
    position: relative;
    text-align: center;
    padding: 20px 10px;
  }

  .input-number {
    margin-top: 20px;
  }

  .input-field-content {
    margin-top: 5px;
  }

  .author-wrap-details p.owner-name {
    color: #000;
    font-size: 18px;
    font-weight: 500;
  }

  .author-wrap-details p {
    font-size: 16px;
    color: #000;
    font-weight: 400;
  }

  .author-wrap-details {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    align-items: center;
  }

  span#recive-otp {
    background-color: #ff5c3e;
    border-radius: 8px;
    padding: 10px 0;
    color: #fff;
    font-weight: 500;
    font-size: 24px;
    margin-top: 20px;
  }

  .input-number input {
    width: 100%;
    padding: 20px 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
  }

  .popup-message p {
    font-size: 20px;
    font-weight: 700;
  }

  .popup-content {
    display: block;
    flex-direction: row;
    flex-wrap: wrap;
    position: relative;
    align-items: center;
  }

  .popup-container {
    width: 100%;
    max-width: 380px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .rating-container {
    text-align: center;
    display: block;
    justify-content: center;
    align-items: center;
    margin: 0 0px;
  }

  .review-btm-wrap-view {
    display: flex;
    justify-content: start;
    gap: 10px;
    margin-top: 20px;
  }

  .review-item-wrapper-view .user-review p {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 22px;
  }

  section.review-list-items-wrap {
    margin: 5px 0 0 0;
    text-align: left;
    padding: 0 12px;
  }

  .footer-wrapper-row {
    display: grid;
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .slick-prev {
    left: 0;
  }
  .slick-next {
    right: 0;
  }
}




.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container,
  .container-sm,
  .container-md {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    max-width: 1200px;
  }
}

@media only screen and (min-width: 1300px) {
  .container {
    max-width: 1600px;
  }
}

.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  padding-left: 80px;
  padding-right: 80px;
}

@media only screen and (max-width: 1280px) {
  .container-fluid,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (max-width: 575px) {
  .container-fluid,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    padding-left: 15px;
    padding-right: 15px;
  }
}
