/* Fonts */

@font-face {
  font-display: "swap";
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: local(""),
    url("../fonts/montserrat-v25-latin-regular.woff2") format("woff2"),
    url("../fonts/montserrat-v25-latin-regular.woff") format("woff");
}

@font-face {
  font-display: "swap";
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: local(""), url("../fonts/montserrat-v25-latin-700.woff2") format("woff2"),
    url("../fonts/montserrat-v25-latin-700.woff") format("woff");
}

@font-face {
  font-display: "swap";
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: local(""),
    url("../fonts/open-sans-v34-latin-regular.woff2") format("woff2"),
    url("../fonts/open-sans-v34-latin-regular.woff") format("woff");
}

@font-face {
  font-display: "swap";
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 800;
  src: local(""), url("../fonts/open-sans-v34-latin-800.woff2") format("woff2"),
    url("../fonts/open-sans-v34-latin-800.woff") format("woff");
}

@font-face {
  font-display: "swap";
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: local(""),
    url("../fonts/poppins-v20-latin-regular.woff2") format("woff2"),
    url("../fonts/poppins-v20-latin-regular.woff") format("woff");
}

@font-face {
  font-display: "swap";
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: local(""), url("../fonts/roboto-v30-latin-regular.woff2") format("woff2"),
    url("../fonts/roboto-v30-latin-regular.woff") format("woff");
}

@font-face {
  font-display: "swap";
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 700;
  src: local(""), url("../fonts/work-sans-v18-latin-700.woff2") format("woff2"),
    url("../fonts/work-sans-v18-latin-700.woff") format("woff");
}

@font-face {
  font-display: "swap";
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 700;
  src: local(""), url("../fonts/ubuntu-v20-latin-700.woff2") format("woff2"),
    url("../fonts/ubuntu-v20-latin-700.woff") format("woff");
}

/* CSS Reset */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

/* CSS Variables */

:root {
  --navbar-height: 60px;
  --border-radius: 7px;
  --white: #fff;
  --black: #222831;
  --color-grey: #eee;
  --color-dark-grey: #222831;
  --blue: #31326f;
  --green: #008000;
  --color-grey-2: rgb(237, 237, 237);
  --gradient: linear-gradient(150deg, #120125 0%, #091884 30%, #012e71 100%);
  --color-primary: #002e6f;
  --color-sec: #00b9f2;
  --shadow: #1687d933;
  --orange: #f4747f;
  --bgcol: ##f9fbfc;
  --border: #dee4ed;
}

html {
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}

body {
  background-color: var(--bgcol);
  font-family: "Roboto", sans-serif;
  min-height: 100vh;
  padding: 0;
}

/* margin and padding */

.pbox {
  margin: 0.75rem 0;
  padding: 0 1.5rem;
}

.logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.margin-top-bottom {
  margin-bottom: 6vh;
  margin-top: 6vh;
}

.margin-left-right {
  margin-left: 2.25vw;
  margin-right: 2.25vw;
}

.margin-bottom {
  margin-bottom: 3vh;
}

.padding {
  padding: 5%;
}

.margin-top {
  margin-top: 3vh;
}

.margin-auto {
  margin: auto;
}

.white-patch {
  height: 0.25vh;
  background-color: var(--white);
}

.w-full {
  width: 100%;
}

.w-half {
  width: 50%;
}

.h-full {
  height: 100%;
}

.h-100 {
  height: 100vh;
}

.h-50 {
  height: 50vh;
}

.h-75 {
  height: 75vh;
}

/* display */

.hidden {
  display: none !important;
  transition: all 0.35s ease-out;
}

.invisible {
  visibility: hidden;
}

.unselectable,
button,
img,
.heading-box,
input::placeholder,
textarea::placeholder,
.product-image,
nav,
footer,
a {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.center {
  text-align: center;
}

.item-center {
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-p: center;
  -ms-flex-p: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.item-end {
  -webkit-align-items: flex-end;
  -webkit-box-align: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
}

.item-start {
  -webkit-align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
}

.item-space-between {
  align-items: center;
  justify-content: space-between;
}

ul {
  display: flex;
}

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

a {
  text-decoration: none;
}

a,
button,
.cur-point {
  cursor: pointer;
}

.ol-styled li {
  list-style: lower-roman;
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.flex-colunm {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex-colunm-reverse {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.flex-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.flex-row-reverse {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.gap-8 {
  gap: 8px;
}

.gap-16 {
  gap: 16px;
}

.shadow {
  -webkit-box-shadow: 0 1.25px 2.25px 1.25px #00000023;
  box-shadow: 0 1.25px 2.25px 1.25px #00000023;
  background-color: white;
  transition: all 0.35s ease-out;
}

.brad {
  border-radius: 0.5rem;
  transition: all 0.35s ease-out;
}

.dashed-border {
  border: 2px dashed #00000023;
  background-color: white;
  transition: all 0.35s ease-out;
}

.transition {
  transition: all 0.35s ease-out;
}

/* color */

.color {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.color-primary {
  color: var(--color-primary);
}

.color-sec {
  color: var(--color-sec);
}

.black {
  color: var(--black);
}

.green {
  color: var(--green);
}

.red {
  color: #e20212;
}

.green-box {
  background-color: #e6f7e0;
  color: var(--green);
  border-radius: 6px;
  letter-spacing: 0.75px;
  padding: 1.5rem;
  box-sizing: border-box;
  flex-direction: column;
  font-family: "Open Sans", sans-serif;
  font-size: 1.75rem;
}

.orange-box {
  background-color: rgb(247, 232, 226);
  color: orangered;
  padding: 3px;
  border-radius: 6px;
  letter-spacing: 0.75px;
}

.grey-box {
  background-color: var(--color-grey-2);
  padding: 3px;
  border-radius: 6px;
  letter-spacing: 0.75px;
}

.twothird {
  margin-right: 1.2vw;
  width: 66.6666666667%;
}

.onethird {
  margin-left: 1.2vw;
  width: 33.3333333333%;
}

.error-box {
  background-color: #fae7f0;
  border: 1px solid var(--red);
  border-radius: 6.5px;
  color: var(--red);
  text-align: center;
  margin: 0px auto;
  margin-top: 5vh;
  padding: 2%;
  width: 85%;
  display: none;
}

#popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--grey);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 20;
  width: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#close-button {
  position: relative;
  bottom: 2.5vh;
  right: 35vw;
  cursor: pointer;
}

/* fonts */

.b {
  font-weight: bold;
}

.ub {
  font-weight: normal;
}

.b-xtra {
  font-weight: 900;
}

.ltspace {
  letter-spacing: 1px;
}

.ltspace-xtra {
  letter-spacing: 1.5px;
}

.h-primary {
  font-family: "Montserrat", sans-serif;
  font-size: 2.9rem;
}

.h-secondary {
  font-family: "Montserrat", sans-serif;
  font-size: 2.15rem;
}

.h-mid {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  line-height: normal;
}

.text {
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
}

.h-1 {
  font-family: "Ubuntu", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 1.4px;
}

.h-2 {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
}

.h-3 {
  font-family: "Open Sans", sans-serif;
  font-size: 1.5rem;
  /* font-weight: bold; */
}

.h-4 {
  font-family: "Playfair Display", serif;
  font-weight: bold;
  font-size: 2.9rem;
}

.h-5 {
  font-family: "Work Sans", sans-serif;
  font-weight: bold;
  font-size: 3.15rem;
}

.h-6 {
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
}

.h-7 {
  font-family: "Heboo", sans-serif;
  font-size: 1.5rem;
}

.h-8 {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
}

.h-9 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
}

.h-cs {
  font-family: "Poppins";
  font-weight: 900;
  font-size: 5rem;
}

.heading-box::after {
  left: 50%;
  width: 200px;
  content: "";
  display: block;
  position: absolute;
  margin-left: -100px;
  border-bottom: 6px solid;
  border-bottom-color: var(--orange);
}

.heading-box {
  align-items: center;
  text-align: center;
  margin-bottom: 3vh;
  margin-top: 0vh;
}

.headings {
  font-family: "Montserrat", sans-serif;
  font-size: 9.2vh;
  line-height: 1.5;
  text-align: center;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons  */

#myBtn {
  font-family: "Montserrat";
  font-weight: bold;
  display: none;
  position: fixed;
  left: 1vw;
  bottom: 10vh;
  z-index: 99;
  outline: none;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5vw;
  padding-bottom: 0.5vh;
  border-radius: 8px;
  -webkit-box-shadow: 0 1px 2px 1px #00000032;
  box-shadow: 0 1px 2px 1px #00000032;
}

#myBtn:hover {
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

#myBtn svg {
  enable-background: new 0 0 330 330;
  width: 40px;
}

#myBtn svg path {
  fill: url(#gradient-0);
}

.btn {
  box-shadow: 7px 6px 28px 1px rgba(0, 0, 0, 0.24);
  padding: 0.3rem 2rem;
  color: var(--white);
  border: 3.5px solid transparent;
  background: var(--gradient);
  margin: 2vh 2.8vw;
  font-size: 2vw;
  border-radius: 5px;
  font-weight: bold;
  letter-spacing: 2px;
  transition: all 100ms ease-in;
  font-family: "Montserrat", sans-serif;
}

.btn > span {
  color: var(--white);
}

.btn:hover {
  background: var(--white);
  color: var(--color-primary);
  box-shadow: 2px 3px 14px 1px rgba(0, 0, 0, 0.24);
  border: 3.5px solid var(--color-primary);
}

.btn:hover > span {
  color: var(--color-primary);
}

.btn:active {
  transform: scale(0.925);
  box-shadow: none;
}

.check_btn {
  margin: 0vh 2.5vw 2vh 2.5vw;
}

/* hr styles */

hr.sto {
  width: 100%;
  padding: 0;
  padding-top: 5px;
  border: none;
  border-top: medium double var(--white);
  color: var(--white);
  text-align: center;
}

hr.sto:after {
  content: "www.unitybooks.in";
  font-family: "Ubuntu", sans-serif;
  display: inline-block;
  position: relative;
  font-size: 1.4vw;
  padding: 0.25rem;
}

.hrstyle {
  margin-top: 8px;
  margin-bottom: 16px;
  padding: 0.75px;
  background: #e3e3e3;
}

/* Background Video */

.video-background {
  position: relative;
  overflow: hidden;
  padding: 3px 10px;
  text-align: left;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 90vh;
  max-height: 90vh;
  margin-top: 0;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.video-background video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  filter: contrast(0.25) brightness(1.75);
  object-fit: cover;
  z-index: 0;
}

.video-background .content {
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Input Box */

.fields {
  margin: 20px;
  margin-top: 0;
  font-size: 19px;
  color: var(--black2);
  flex-wrap: wrap;
  align-items: center;
}

.field-name {
  font-weight: bold;
  font-size: 16px;
  color: var(--black2);
}

.field-value,
.field-value-2 {
  margin-top: 5px;
  margin-left: 2px;
  padding: 12.5px 12.5px;
  border: 1px solid #4c4c4c21;
  -webkit-box-shadow: 0 0.75px 0.75px 0.75px #0000001d;
  box-shadow: 0 0.75px 0.75px 0.75px #0000001d;
  border-radius: 6px;
  width: 100%;
  background-color: #fff;
  font-size: 18px;
}

.fields input:focus {
  border: 2px solid var(--color-primary) !important;
}

/* Navigation Bar */

.navbar {
  position: relative;
  z-index: 1;
  padding: 12px 8px;
  background-color: #ffffff33;
  box-shadow: 1px 2px 15px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  width: 100%;
}

.left,
.right {
  position: relative;
  padding: 8px 12px;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
}

.search-main {
  position: relative;
}

.search-main > .flex-row {
  position: relative;
  min-height: 48px;
  background-color: var(--white);
  border-color: var(--border);
  border-style: solid;
}

.search-main > .search-left-half {
  padding: 0px 32px;
  width: 40vw;
  min-width: 227px;
  border-radius: 16px 0 0 16px;
  border-width: 3px 0 3px 3px;
}

.label-text {
  font-size: 1rem !important;
  text-wrap: nowrap;
}

.label-logo {
  position: relative;
  left: -15px;
  height: 24px;
  width: 90px;
  object-fit: cover;
}

.search-main > .search-right-half {
  padding: 8px 20px 8px 16px;
  width: auto;
  border-radius: 0 16px 16px 0;
  border-width: 3px 3px 3px 0;
  margin: 0;
}

.search-svg {
  width: 20px;
  height: 20px;
}

.circle-box {
  position: relative;
  padding: 8px;
  height: 48px;
  width: 48px;
  background-color: var(--white);
  border-color: var(--border);
  border-style: solid;
  border-radius: 50%;
  border-width: 3px;
}

.circle-icons {
  width: 28px;
  height: 28px;
}

.search-input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
}

@media screen and (max-width: 786px) {
  .navbar {
    width: 100vw;
    padding: 8px;
  }
  .left,
  .right {
    padding: 0px 4px;
    gap: 4px;
  }
  .search-main > .flex-row {
    min-height: 36px;
  }
  .search-main > .search-left-half {
    padding: 0px 16px;
    border-radius: 12px 0 0 12px;
  }
  .label-logo {
    height: 20px;
  }
  .search-main > .search-right-half {
    padding: 0px 16px 0px 20px;
    border-radius: 0 12px 12px 0;
  }
  .search-svg {
    width: 16px;
    height: 16px;
  }
  .circle-box {
    padding: 4px;
    height: 36px;
    width: 36px;
  }
  .circle-icons {
    width: 20px;
    height: 20px;
  }
}

/* Footer */

footer {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  margin-top: auto;
  background: linear-gradient(
    165deg,
    #120125,
    75%,
    var(--color-primary)
  ) !important;
  color: var(--white);
}

#mainfooter {
  flex-wrap: wrap;
}

.rows {
  width: 95%;
  margin: auto;
  flex-wrap: wrap;
  align-items: flex-start;
}

.foot {
  margin-top: 1.5rem;
  font-size: 1rem;
}

.cols {
  flex-basis: 25%;
  padding-left: 0.5rem;
  padding-bottom: 0;
}

#logou {
  position: relative;
  left: 0.5rem;
  width: auto;
  height: 15vh;
}

.cols h4 {
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
  margin-bottom: 1rem;
  position: relative;
  font-size: 1.75vw;
  letter-spacing: 0.2rem;
  font-family: "Montserrat", sans-serif;
}

#email-id {
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid #ccc;
}

#wh {
  position: relative;
  top: 5px;
  height: 25px;
  width: auto;
  margin-right: 0.5rem;
  border-radius: 50%;
}

.cols ul {
  flex-direction: column;
}

.cols ul li {
  list-style: none;
  padding-bottom: 7.5px;
  padding-top: 7.5px;
}

.cols ul li a {
  color: #c0daec;
  font-size: 1.35vw;
  transition: all 0.4s;
}

.cols ul li a:hover {
  color: var(--white);
  font-size: 1.375vw;
}

.social-icons {
  margin-top: 5px;
}

.sc {
  cursor: pointer;
  width: auto;
  height: 4vh;
  margin-right: 15px;
  margin-left: 10px;
  margin-bottom: 5px;
  transition: background 0.3s;
}

.del {
  position: relative;
  top: 60px;
  justify-content: space-between;
  align-items: center;
  /* font-size: 14px; */
}

.del ul {
  padding: 10px 0px;
}

.del ul li {
  font-family: "Roboto", sans-serif;
}

#gs,
#gs2 {
  margin-top: 5px;
  width: 15vw;
  height: auto;
  border: 2px solid #d2e6f5;
  border-radius: 8px;
  box-shadow: 1px 1px 10px 3px rgb(30, 30, 30);
  transition: all 0.5s;
}

#gs {
  width: 10vw;
  border-radius: 4px;
}

#gs:hover,
#gs2:hover {
  box-shadow: none;
}

#tnc {
  font-size: 1.2vw;
  padding-bottom: 5px;
}

/* qty box*/

.qty {
  padding-left: 5px;
}

.qty-text {
  margin: 1rem 0.5rem;
}

.qtybox {
  padding-top: 0.25rem;
  min-width: 12rem;
  height: 70px;
  max-width: 10vw;
  background-color: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  text-align: center;
}

.qty span {
  width: 100%;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
}

.qtybox .num {
  font-size: 1.25rem;
  /* border-right: 1px solid rgba(0, 0, 0, 0.2);
	border-left: 1px solid rgba(0, 0, 0, 0.2); */
  pointer-events: none;
}

.plus,
.minus {
  cursor: pointer;
}

.plus:hover,
.minus:hover {
  font-size: 4.5vh;
}

/*Img-slider */

.product-catalog-box {
  position: relative;
}

.product-container,
.category-container,
.author-container {
  overflow-x: scroll;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
  font-family: "Montserrat", sans-serif;
}

.product-container::-webkit-scrollbar,
.new-product-container::-webkit-scrollbar,
.category-container::-webkit-scrollbar,
.author-container::-webkit-scrollbar {
  display: none;
}

.product-card {
  flex: 0 0 auto;
  width: 16vw;
  min-width: 260px;
  height: 500px;
  margin: 2vh 12.5px;
  padding: 12.5px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 6px 6px 7px 5px rgba(114, 181, 248, 0.233);
  cursor: pointer;
}

.product-image {
  position: relative;
  width: auto;
  height: 350px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 5px;
}

.product-thumb {
  width: auto;
  height: 350px;
  object-fit: cover;
  border-radius: 5px;
}

.discount-tag {
  position: absolute;
  font-weight: 700;
  font-size: 15px;
  left: 12.5px;
  top: 10px;
  text-transform: capitalize;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px;
}

.discount-tag > span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bestsellers-tag {
  position: absolute;
  top: 87.75%;
  left: 0%;
  padding: 4% 6.5%;
  background-color: var(--color-dark-grey);
  color: var(--bgcol);
  border-radius: 0 75% 0 0;
  font-family: "Roboto";
  font-weight: 700;
  font-size: 2.75vh;
}

.fav-tag {
  position: absolute;
  padding: 5px;
  padding-bottom: 0;
  left: 2px;
  top: 1px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  display: none;
}

.fav-tag img {
  height: 20px;
}

.fav-active {
  display: block;
}

.fav-tag:hover {
  background: rgba(255, 255, 255, 0.225);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
}

.card-btn {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  width: 80%;
  border: none;
  outline: none;
  cursor: pointer;
  box-sizing: border-box;
  opacity: 0;
  background: #00baf2b7;
  border-radius: 5px;
  box-shadow: 4px 4px 4px 2px rgba(0, 0, 0, 0.25);
  font-family: "Roboto", "Helvetica Neue";
  font-weight: 700;
  font-size: 1.5vw;
  text-transform: capitalize;
  letter-spacing: 1.5px;
  color: white;
  transition: 0.5s;
  text-align: center;
  z-index: 9;
}

.product-card:hover .card-btn {
  opacity: 1;
}

.card-btn:hover {
  width: 75%;
  background: #00baf2f0;
  box-shadow: 4px 4px 4px 1px rgba(0, 0, 0, 0.25);
  font-size: 1.4vw;
}

.card-btn:active {
  width: 65%;
  background: var(--color-sec);
  box-shadow: 2.5px 2.5px 2.5px 1px rgba(0, 0, 0, 0.25);
  font-size: 1.2vw;
}

.product-info,
.author-info {
  width: 100%;
  padding-top: 15px;
}

.product-brand {
  text-transform: uppercase;
  font-size: 18px;
}

.product-short-des {
  width: 100%;
  height: 20px;
  line-height: 20px;
  overflow: hidden;
  opacity: 0.75;
  text-transform: capitalize;
  margin: 5px 0;
  font-size: 14px;
}

.price {
  margin-left: 1vw;
  font-weight: 900;
  font-size: 24px;
  color: green;
}

.actual-price {
  opacity: 0.5;
  text-decoration: line-through;
}

.author-card {
  flex: 0 0 auto;
  width: 10.75vw;
  min-width: 150px;
  height: 280px;
  margin-right: 15px;
  margin-left: 15px;
  margin-bottom: 2vh;
  margin-top: 2vh;
  padding-right: 7.5px;
  padding-left: 7.5px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 6px 6px 7px 5px rgba(114, 181, 248, 0.233);
  cursor: pointer;
  position: relative;
}

.author-image {
  position: relative;
  top: 6.25px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 5px;
}

.author-image > img {
  height: 215px;
  width: auto;
}

.author-name {
  text-align: center;
  margin-bottom: 10px;
  font-size: 17px;
}

.pre-btn,
.nxt-btn {
  border: none;
  width: 2.5vw;
  height: 100%;
  position: absolute;
  top: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fdffff 100%);
  cursor: pointer;
  z-index: 2;
  opacity: 1;
}

.pre-btn {
  left: 0;
  transform: rotate(180deg);
}

.nxt-btn {
  right: 0;
}

.pre-btn img,
.nxt-btn img {
  opacity: 0.4;
}

.pre-btn:hover img,
.nxt-btn:hover img {
  opacity: 1;
}

.view-more {
  background: var(--color-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}

.view-more:hover {
  font-weight: 600;
  text-decoration: underline;
}

/* Loader */

#loader {
  height: 80vh;
}

@keyframes ldio-mmfzwmfmbii {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.ldio-mmfzwmfmbii div {
  position: absolute;
  width: 15.75vw;
  height: 15.75vw;
  border: 1.75vw solid #002e6f;
  border-top-color: transparent;
  border-radius: 50%;
}

.ldio-mmfzwmfmbii div {
  animation: ldio-mmfzwmfmbii 1.3333333333333333s linear infinite;
  top: 12.5vw;
  left: 12.5vw;
}

.loadingio-spinner-rolling-suds4nfwr6 {
  width: 25vw;
  height: 25vw;
  display: inline-block;
  overflow: hidden;
  background: none;
}

.ldio-mmfzwmfmbii {
  width: 100%;
  height: 100%;
  position: relative;
  transform: translateZ(0) scale(1);
  backface-visibility: hidden;
  transform-origin: 0 0;
  /* see note above */
}

.ldio-mmfzwmfmbii div {
  box-sizing: content-box;
}

/* Mobile responsive navbar styles */

/* Desktop default - hide mobile elements */
.search-icon-mobile,
.center,
.search-overlay {
  display: none;
}

.sidebar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 0 15px 15px 0;
  padding: 10px 5px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sidebar-item {
  padding: 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.sidebar-item:hover {
  background: rgba(18, 1, 37, 0.1);
  transform: scale(1.1);
}

.sidebar-icon {
  width: 24px;
  height: 24px;
  color: #120125;
}

.sidebar-icon svg {
  width: 100%;
  height: 100%;
}

.more-menu {
  position: absolute;
  left: 100%;
  bottom: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 8px;
  min-width: 150px;
  margin-left: 10px;
}

.more-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.more-menu-item:hover {
  background: rgba(18, 1, 37, 0.1);
}

.more-menu-icon {
  width: 20px;
  height: 20px;
  color: #120125;
}

.more-menu-icon svg {
  width: 100%;
  height: 100%;
}

.more-menu-text {
  font-size: 14px;
  color: #120125;
  font-weight: 500;
}

.hidden {
  display: none !important;
}

/* Mobile styles */
@media (max-width: 768px) {
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 10px 15px;
  }

  /* Show center logo */
  .center {
    display: flex;
    flex: 1;
    justify-content: center;
  }

  .center-logo {
    height: 32px;
    width: auto;
  }

  /* Right section with auth buttons and cart */
  .right {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .auth-btn,
  .circle-box {
    width: 40px;
    height: 40px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .navbar {
    background-color: white;
  }

  .auth-icon,
  .circle-icons {
    width: 20px;
    height: 20px;
  }

  /* Search overlay */
  .search-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px;
  }

  .search-overlay.hidden {
    display: none;
  }

  .search-overlay:not(.hidden) {
    display: flex;
    align-items: flex-start;
    padding-top: 80px; /* Account for navbar height */
  }

  .search-overlay-form {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
  }

  .search-overlay-input {
    flex: 1;
    padding: 20px;
    border: none;
    font-size: 18px;
    outline: none;
    background: transparent;
  }

  .search-overlay-input::placeholder {
    color: #999;
  }

  .search-overlay-submit {
    padding: 20px;
    border: none;
    background: linear-gradient(45deg, #120125, #0044ab);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .search-overlay-submit svg {
    width: 20px;
    height: 20px;
  }

  .search-overlay-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #333;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .search-overlay-close:hover {
    background: rgba(0, 0, 0, 0.2);
  }

  /* Adjust navbar layout */
  .navbar .left {
    flex: 0 0 auto;
  }

  .navbar .right {
    flex: 0 0 auto;
  }
  .sidebar {
    position: fixed;
    left: 0;
    bottom: 0;
    top: auto;
    transform: none;
    width: 100%;
    border-radius: 0;
    flex-direction: row;
    justify-content: space-around;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(18, 1, 37, 0.1);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    gap: 0;
  }

  .sidebar-item {
    padding: 8px 12px;
    flex: 1;
    display: flex;
    justify-content: center;
    border-radius: 8px;
  }

  .sidebar-item:hover {
    transform: scale(1.05);
  }

  .sidebar-icon {
    width: 22px;
    height: 22px;
  }

  .more-menu {
    position: fixed;
    left: 50%;
    bottom: 70px;
    transform: translateX(-50%);
    margin-left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(18, 1, 37, 0.1);
  }

  .more-menu-item {
    padding: 10px 16px;
  }

  .more-menu-icon {
    width: 18px;
    height: 18px;
  }

  .more-menu-text {
    font-size: 13px;
  }

  /* Add padding to body to prevent content from being hidden behind bottom bar */
  body {
    padding-bottom: 60px;
  }
}

/* Tablet adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
  .search-main {
    max-width: 400px;
  }

  .label-text {
    font-size: 16px;
  }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
  .navbar {
    padding: 8px 12px;
  }

  .search-icon-mobile,
  .auth-btn,
  .circle-box {
    width: 36px;
    height: 36px;
    padding: 6px;
  }

  .auth-icon,
  .circle-icons {
    width: 18px;
    height: 18px;
  }

  .center-logo {
    height: 28px;
  }

  .right {
    gap: 6px;
  }
}
