/* Variables Import */
@import "./variables.css";

/* Top Bar */
body {
  position: relative;
}
.sticky-box {
  position: fixed;
  right: 1%;
  bottom: 2%;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  z-index: 22;
}
.sticky-box a {
  display: inline-block;
}
.top-bar {
  background: var(--primary);
}
.top-bar .top-bar-box {
  padding: 40px 40px;
  padding-bottom: 20px;
}
.top-bar .top-bar-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar .top-bar-box .details {
  display: flex;
  gap: 25px;
}
.top-bar .top-bar-box .details .link {
  display: block;
  color: var(--black);
  font-weight: 500;
  font-family: var(--title-font);
  font-size: 14px;
  transition: 0.5s all ease;
}
.top-bar .top-bar-box .details .link i {
  font-weight: 500;
}
.top-bar .top-bar-box .details a.link:hover {
  color: var(--orange);
}

/* Top Bar */

/* Header */
.navbar {
  position: relative;
  z-index: 111;
  background-color: var(--primary) !important;
  padding: 15px 0;
  width: 100%;
  transition: 0.5s all ease;
}

.px-nav {
  padding-inline: 3.5rem;
}

.navbar .nav-wrapper {
  justify-content: space-between;
  display: flex;
  background: var(--light);
  width: 100%;
  padding: 15px 40px;
  padding-right: 45px;
  border-radius: 100px;
  flex-wrap: wrap;
  position: relative;
}

.navbar .collapse .navbar-nav1 {
  flex: 2;
  justify-content: center;
}

.navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.navbar .navbar-brand .logo-image {
  width: 10%;
}
.navbar .navbar-brand .logo-text {
  font-size: 20px;
  color: var(--secondary);
  font-weight: 700;
  margin-top: 7px;
}

.nav-link {
  position: relative;
  color: var(--black);
  letter-spacing: 1.1px;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 15px !important;
  transition: 0.5s all ease;
}
.navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 50%;
  width: 0;
  height: 2px;
  transform: translateX(50%);
  background: var(--orange);
  border: 0;
  transition: 0.5s all ease;
}
.navbar .nav-link:hover::after {
  width: 80%;
  /* right: unset;
  left: 0; */
}

.navbar .nav-link.active {
  color: var(--orange);
}
.navbar .nav-link.active::after {
  width: 80%;
}
.nav-item.dropdown {
  position: static;
}
.navbar .nav-item .dropdown-toggle {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 20px !important;
}
.navbar .nav-item .dropdown-toggle::before {
  content: "\f078";
  font-family: "Font awesome 5 Pro";
  position: absolute;
  right: 3px;
  font-size: 9px;
  font-weight: 700;
  color: var(--black);
  transition: 0.5s all ease;
}
.navbar .nav-item .dropdown-toggle.show {
  color: var(--orange);
}
.navbar .nav-item .dropdown-toggle.show::after {
  width: 80%;
  /* right: unset;
  left: 0; */
}
.navbar .nav-item .dropdown-toggle.show::before {
  color: var(--orange);
}
.nav-item .dropdown-menu {
  width: 100%;
  left: 50%;
  top: 110%;
  transform: translateX(-50%);
  border-radius: 35px;
  padding: 30px 50px;
  border: none;
}
.nav-item .dropdown-menu .dropdown-list h4 {
  font-size: 24px;
  font-weight: 600;
  color: var(--secondary);
}
.nav-item .dropdown-menu .dropdown-list .inner-list h6 {
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary);
}
.nav-item .dropdown-menu .dropdown-list .inner-list .item-list {
  padding-left: 25px;
  line-height: 105%;
}

.nav-item .dropdown-menu .dropdown-list .inner-list .list {
  list-style: disc;
}
.nav-item .dropdown-menu .dropdown-list .inner-list .list::marker {
  color: #5b5555;
  font-size: 12px;
}
.nav-item .dropdown-menu .dropdown-list .inner-list .link {
  font-size: 12px;
  font-weight: 500;
  color: #5b5555;
}
.nav-item .dropdown-menu .dropdown-list .inner-list .more-link {
  color: var(--orange);
  font-size: 16px;
  text-decoration: underline;
  font-weight: 600;
}

.nav-link:hover {
  color: var(--orange);
}
.nav-link:focus {
  color: var(--orange);
}
.navbar .navbar-nav .button i {
  margin-left: 10px;
}
.navbar .navbar-brand .logo {
  width: 200px;
}
.navbar-toggler:focus {
  box-shadow: none;
}

.navbar .navbar-nav-2 {
  gap: 30px;
  align-items: center;
}

.navbar .navbar-nav .search-input {
  padding: 10px 24px;
  border-radius: 50px;
  background-color: #f8f9fa;
  display: flex;
  font-size: 14px;
}
.navbar .navbar-nav .search-input::placeholder {
  font-size: 14px;
}
.navbar .navbar-nav .search-input input {
  border: none;
  outline: none;
  background: transparent;
}
.navbar .navbar-nav .search-input .search-button {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  border: none;
  border-radius: 50%;
}
.navbar .navbar-nav .search-input .search-button i {
  color: var(--light);
  font-size: 12px;
  font-weight: 800;
}
.navbar .navbar-nav .wish-cart {
  position: relative;
}
.navbar .navbar-nav .wish-cart img {
  width: 22px;
}
.navbar .navbar-nav .nav-item:nth-child(3) .wish-cart img {
  width: 40px;
}

.navbar .navbar-nav .notification-count {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  border-radius: 50%;
  position: absolute;
  top: -8px;
  border-bottom: 2px solid var(--light);
  right: -8px;
}
.navbar .navbar-nav .notification-count span {
  color: var(--light);
}

.navbar .navbar-nav .nav-item .wish-cart i {
  font-size: 22px;
  color: var(--secondary);
}

/* Header end*/

/* Hero */
.hero {
  height: fit-content;
  margin-top: 40px;
  background: var(--primary);
}
.hero .banner-content {
  margin-left: 2%;
}
.hero .heading {
  font-size: 60px;
  font-weight: 500;
  letter-spacing: -0.3px;
}
.hero .sub-heading {
  font-size: 50px;
  font-weight: 400;
  letter-spacing: -0.3px;
  position: relative;
  width: fit-content;
  z-index: 1;
}

.hero .sub-heading span img {
  width: 30%;
  position: absolute;
  bottom: -5px;
  right: -28%;
}
/* .hero .sub-heading  */
.underline {
  width: 28%;
  height: 15%;
  background: #8ab0d5;
  position: absolute;
  opacity: 0.8;
  bottom: 20%;
  z-index: -1;
  right: -4%;
}

.hero p {
  color: #242b33;
  width: 540px;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.5px;
}

.hero .button-box {
  display: flex;
  gap: 30px;
  position: relative;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 80px;
  width: fit-content;
}
.hero .button-box .button i {
  font-size: 22px;
  font-weight: 400;
}
.hero .button-box .svg-box {
  position: absolute;
  top: -18px;
  right: -8px;
  width: 25px;
}

.hero .image-box {
  text-align: center;
}

.hero .image-box img {
  width: 100%;
  transform: translateX(-10%);
}

.card .image-box img {
  position: relative;
}

/* .new-card{
  position: relative;

}
.card svg{
  position: absolute;
left: 85%;
top: 15px;
z-index: 100;
} */

.item1 {
  position: relative;

  /* .bi{
    margin-left: 20px;
  } */
}
.item1 svg {
  position: absolute;
  top: 25px;
  left: 80%;
  z-index: 100;
}

.item2 {
  position: relative;
}
.item2 svg {
  position: absolute;
  top: 25px;
  /* left: 91% !important;  */
  right: 5% !important;
  z-index: 99 !important;
  /* cursor: none !important; */
}

.carousel-control-next,
.carousel-control-prev {
  /* position: absolute; */
  top: 15%;

  height: 70%;
}

/* Hero end*/

/* separation */
.separation {
  background: var(--grey);
}
.separation .image-text {
  display: flex;
  align-items: center;
  gap: 50px;
}
.separation .image-box img {
  width: 80px;
}

.separation .text-box .title {
  width: fit-content;
  position: relative;
  letter-spacing: 0.5px;
  word-spacing: 1px;
}
.separation .text-box .title .inner-title {
  color: var(--black);
  font-size: 28px;
  font-weight: 700;
}
.separation .text-box .title span {
  font-size: 24px;
}
.separation .text-box .title .highlight {
  color: var(--black);
  font-weight: 800;
}
.separation .text-box .title .underline {
  right: 66px;
  bottom: 5px;
  background-color: var(--secondary);
  width: 165px;
  opacity: 1;
}
.separation .text-box .title span img {
  width: 40px;
  margin-left: 20px;
}
/* separation end */

/* shop card */
.shop-card {
  overflow: unset;
}
.pet-card-container .button-image-col:first-child .button-image {
  position: sticky;
  top: 30px;
}
.pet-card-container .button-image {
  position: relative;
  display: block;
  margin-right: 50px;
  padding: 40px;
  border-radius: 20px;
  transition: 0.5s all ease;
}

.pet-card-container .button-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 60px);
  z-index: -1;
  background-color: #f7dba7;
  border-radius: 20px;
}
.pet-card-container .button-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2px;
  width: 99%;
  height: calc(100% - 62px);
  z-index: -1;
  background-color: var(--secondary);
  border-radius: 20px;
  transition: 0.5s all ease;
}

.pet-card-container .button-image:hover::before {
  top: 30px;
  left: -30px;
  height: calc(100% - 60px);
  width: 100%;
}

.pet-card-container .button-image:hover .shop-button span {
  transform: translate(-10px);
}
.pet-card-container .button-image:hover .shop-button i {
  display: inline;
}

.pet-card-container .button-image .image-box {
  text-align: center;
}

.pet-card-container .button-image .image-box img {
  width: 80%;
}

.pet-card-container .text-box {
  position: absolute;
  top: 10%;
  left: 50px;
  opacity: 0;
  transition: 0.5s all ease;
}
.pet-card-container .text-box .text {
  text-transform: uppercase;
  text-shadow: -5px -5px 2px #0034590d;
  font-size: 80px;
  letter-spacing: 10px;
  background: transparent;
  -webkit-text-stroke: 1px var(--secondary);
  /* text-stroke: 1px var(--secondary); */
  background-clip: text;
  color: transparent;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

.pet-card-container .button-image:hover .text-box {
  opacity: 1;
  top: calc(20% + 20px);
}

.pet-card-container .button-image-col:last-child .button-image {
  margin-right: 0;
}

.pet-card-container .button-image-col:last-child .image-box img {
  /* width: 455px; */
  width: 50%;
  margin-left: 45px;
}

/* shop card end */

/* marquee */
.marquee {
  padding-top: 80px;
}

.marquee .news_ticker {
  position: relative;
  display: flex;
  padding-block: 25px;
  align-items: center;
  overflow: hidden;
  background-color: var(--secondary);
}

.marquee .news-group {
  position: relative;
  white-space: nowrap;
}
.marquee .news-group li {
  display: inline-block;
  padding: 0 20px !important;
}
.marquee .news-group li h4 {
  font-size: 18px;
  color: var(--light);
  font-family: var(--title-font);
  text-transform: capitalize;
}
/* marquee end */

/* shop by category section */

.shop-by-category .margined-row {
  margin-top: 120px;
}
.shop-by-category .card {
  border: none;
  text-align: center;
  transition: 0.5s all ease;
}
.shop-by-category .card:hover {
  transform: translateY(-2px);
  box-shadow: 0px 1px 10px 0px #d8d7e085;
}
.shop-by-category .card.card-yellow {
  background-color: #fbedbe;
}
.shop-by-category .card.card-purple {
  background-color: #ece0d0;
}
.shop-by-category .card.card-blue {
  background-color: #d5d6ef;
}
.shop-by-category .card-body .image-box {
  width: 160px;
  height: 160px;
  padding: 5px;
  background-color: var(--light);
  border-radius: 50%;
  text-align: center;
  position: absolute;
  top: -110px;
  left: 50%;
  transform: translateX(-50%);
}
.shop-by-category .card-body .image-box img {
  border-radius: 50%;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.shop-by-category .card-body .text-box {
  margin-top: 65px;
}
.shop-by-category .card-body .text-box h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
}

.shop-by-category .card .shop-button {
  padding: 6px 22px;
  background: var(--light);
  color: #002a48;
  font-weight: 500;
}

/* shop by category section end */

/* treat your pet section */

.treat-your-pet {
  position: relative;
}
.treat-your-pet::after {
  content: "";
  background: linear-gradient(90deg, rgba(255, 233, 198, 1) 6%, rgba(252, 238, 213, 1) 75%, rgba(255, 231, 186, 1) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  height: 300px;
  top: 50%;
  transform: translateY(-50%);
}
.treat-your-pet .text-image {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.treat-your-pet .text-image .text-box .heading {
  font-size: 40px;
  font-weight: 500;
}
.treat-your-pet .text-image .text-box .sub-heading {
  font-size: 24px;
  font-weight: 500;
}
.treat-your-pet .image-box {
  width: 45%;
}

/* treat your pet section end */

/* best seller section */

.product-carousel .owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 12px;
  margin-top: 50px;
}

.product-carousel .owl-dots button {
  background: var(--grey);
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.product-carousel .owl-dots button.active {
  background: var(--secondary);
}

.product-card {
  display: block;
}
.product-card .image-box {
  position: relative;
}
.product-card .image-box img {
  height: 250px;
  object-fit: cover;
}
.product-card .out-of-stock {
  padding: 8px 15px;
  border-radius: 10px;
  background: var(--light);
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 150px;
  transform: translate(-50%, -50%);
}
.product-card .out-of-stock h4 {
  font-size: 16px;
  font-family: var(--jakar);
  font-weight: 600;
  color: var(--black);
}
.product-card .tag {
  padding: 10px 18px;
  border-radius: 100px;
  background: #e6f2eb;
  position: absolute;
  top: 10px;
  left: 10px;
}
.product-card .tag h4 {
  font-size: 14px;
  font-family: var(--jakar);
  font-weight: 600;
  color: var(--black);
}

.product-card .card {
  background-color: #f4f1f1;
  border: 1px solid #e7e7e7;
  box-shadow: none;
  border-radius: 20px;
  text-align: center;
  transition: 0.5s all ease;
}
.product-card .card:hover {
  background-color: #e6e6e6;
  transform: translateY(-2px);
  box-shadow: 0px 1px 10px 0px #ccc7ff;
}
.product-card .card .card-body {
  padding: 12px;
}
.product-card .card .card-body .image-box {
  border-radius: 10px;
  overflow: hidden;
}
.product-card .card .card-body .image-box img {
  border-radius: 10px;
}

.product-card .rating-box i {
  color: #f46a1b;
  font-size: 12px;
}
.product-card .product-details h4 {
  font-size: 14px;
  color: var(--black);
  font-weight: 600;
  font-family: var(--jakar);
}
.product-card .product-details .price {
  font-size: 16px;
  color: var(--black);
  font-weight: 700;
  font-family: var(--jakar);
}

/* best seller section end */

/* image product section */

.product-card.alt .card {
  border-radius: 5px;
}
.product-card.alt .card .card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 10px;
}

.product-card.alt .card .card-body .image-box img {
  border-radius: 5px;
  height: 50px;
}

.product-card.alt .card .card-body .image-box {
  border-radius: 5px;
}

.product-card.alt .product-details {
  text-align: left;
}
.product-card.alt .product-details h4 {
  font-size: 12px;
  letter-spacing: 0.3px;
}

.product-card.alt .product-details .price {
  font-size: 12px;
}

.image-products .image-box {
  position: relative;
}
.image-products .pointers-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.image-products .pointers-box .plot {
  position: relative;
  width: 35px;
  height: 35px;
  background-color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 10px 2px var(--black);
}
.image-products .pointers-box .plot::after {
  content: "";
  position: absolute;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background-color: #ffbd59;
  box-shadow: 0px 0px 30px 1px var(--black);
}

.pointers-box .product-card {
  position: absolute;
  min-width: 285px;
  max-width: 500px;
  padding-top: 10px;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  transition: 0.5s all ease;
}
.pointers-box .plot-popup:hover .product-card {
  opacity: 1;
  pointer-events: all;
  z-index: 1;
}

.pointers-box .plot-popup {
  position: absolute;
  cursor: pointer;
}
.pointers-box .plot-popup .product-card.alt .card .card-body {
  justify-content: start;
}

.pointers-box .plot-popup.plot-popup0 {
  left: 2.5%;
  top: 80%;
}
.pointers-box .plot-popup.plot-popup1 {
  left: 28%;
  top: 72%;
}
.pointers-box .plot-popup.plot-popup2 {
  left: 46%;
  top: 70%;
}
.pointers-box .plot-popup.plot-popup3 {
  top: 88%;
  left: 67%;
}
.pointers-box .plot-popup.plot-popup4 {
  top: 4%;
  left: 64%;
}
.pointers-box .plot-popup.plot-popup5 {
  top: 80%;
  left: 95%;
}
.pointers-box .plot-popup.plot-popup5 .product-card {
  left: unset;
  right: 0;
}

/* image product section end */

/* pet products */
.pet-products {
  overflow: unset;
}
.pet-products .button-image {
  position: sticky;
  top: 30px;
  margin: 0;
}
.pet-products .pet-card-container .button-image .image-box img {
  width: 90%;
}

.pet-products .product-card {
  width: calc(100% - 10px);
}

.pet-products .product-column:nth-child(odd) .product-card {
  margin-right: auto;
}
.pet-products .product-column:nth-child(even) .product-card {
  margin-left: auto;
}

.pet-products .tagline h3 {
  text-align: center;
  display: flex;
  justify-content: start;
  margin-left: 50px;
  gap: 35px;
  align-items: flex-end;
  font-family: var(--caveat);
  font-size: 35px;
  font-weight: 500;
  color: var(--black);
}
.pet-products .tagline h3 img {
  width: 60px;
  transform: translateY(-10px);
}

/* pet products end */

/* payment policy */
.payment-policy .card {
  padding: 10px 25px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
}
.payment-policy .icon-text {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
}
.payment-policy .icon-text .icon {
  width: 15%;
}

.payment-policy .icon-text .text h5 {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
}
/* payment policy end */

/* offer section */
.offer-section .background-image-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.offer-section .text-box h5 {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 700;
}
.offer-section .text-box h3 {
  font-size: 55px;
  font-weight: 600;
  color: var(--black);
  font-family: var(--title-font);
}
.offer-section .text-box p {
  font-size: 16px;
  font-weight: 600;
  color: #646464;
}

.offer-section .shop-button {
  background: #f8c57a;
}
/* offer section end*/

/* contact us section */
.contact-us {
  background: var(--primary);
}

.contact-us .background-image-box {
  position: absolute;
  top: 0;
  left: 58%;
  width: 410px;
  z-index: -1;
  transform: translateX(-50%);
}
.contact-us .form-box .form-wrapped {
  display: flex;
  gap: 10px;
  align-items: center;
  border: 2px solid #e8e8e8;
  padding: 12px 20px;
  border-radius: 6px;
  background: #ffffffb7;
  transition: 0.5s all ease;
}
.contact-us .form-box .form-wrapped i {
  font-size: 14px;
  color: #a1a1a1;
}
.contact-us .form-box input {
  border: 0;
  box-shadow: none;
  background: transparent;
  padding: 0;
  font-family: var(--title-font);
  font-size: 14px;
}

.contact-us .form-box input::placeholder {
  color: #a1a1a1;
  font-family: var(--title-font);
}
.contact-us .form-box textarea {
  box-shadow: none;
  border: 2px solid #e8e8e8;
  border-radius: 6px;
  background: #ffffffb7;
  padding: 12px 20px;
  height: 210px;
  font-family: var(--title-font);
  transition: 0.5s all ease;
}

.contact-us .form-box textarea:focus,
.contact-us .form-box .form-wrapped:focus-within {
  border: 2px solid #0034595c;
}
.contact-us .button {
  width: auto;
  padding: 8px 30px;
  font-size: 16px;
}

.contact-us .image-box img {
  width: 75%;
}
/* contact us section end */

/* faq section */
.faq .image-box img {
  width: 75%;
}
.faq-container {
  width: 100%;
}

.faq-container .accordion .accordion-body {
  padding: 20px;
  padding-top: 0;
}
.faq-container .accordion .accordion-item {
  border-color: #989595;
  border-width: 1.5px;
  background: var(--primary);
}
.faq-container .accordion .accordion-button {
  box-shadow: none;
  text-transform: capitalize;
  background: var(--primary);
  color: #001d23;
  font-weight: 500;
  font-family: var(--title-font);
  font-size: 16px;
  letter-spacing: 0.15px;
  padding: 22px;
}
.faq-container .accordion .accordion-button::after {
  display: none;
}
/* faq section end */

/* divider */
.divider {
  position: relative;
  padding: 100px 0;
}
.divider .container {
  position: relative;
}
.divider .line {
  height: 1px;
  background: var(--black);
  width: 100%;
}
.divider img {
  position: absolute;
  top: 50%;
  left: 0;
  background: #ffffff;
  transform: translateY(-50%);
  width: 100px;
}
/* divider end */

/* footer */
.footer {
  overflow: unset;
}
.footer .details .sub-heading {
  position: relative;
  font-size: 30px;
  letter-spacing: 1px;
  text-transform: capitalize;
  font-family: var(--sans-serif);
}
.footer .details.news-letter .sub-heading {
  width: fit-content;
  margin: 0 auto;
}
.footer .details .sub-heading span {
  position: absolute;
  top: -15px;
  right: -35px;
  width: 60px;
}
.footer .detail-list .list {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer .detail-list .icon {
  width: 22px;
}
.footer ..icon-text .text {
  width: calc(100% - 37px);
}
.footer .detail-list a,
.footer .detail-list p {
  display: block;
  color: #253d4e;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.48px;
  transition: 0.5s all ease;
}
.footer .detail-list a:hover {
  color: var(--orange);
  transform: translateY(-2px);
}
.footer .social-icons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15%;
}
.footer .social-icons .icon {
  width: 25px;
}
.footer .social-icons .icon a {
  display: inline-block;
  font-size: 14px;
  color: #001d23;
  transition: 0.5s all ease;
}
.footer .social-icons .icon a:hover {
  transform: translateY(-2px);
  color: var(--orange);
}
.footer .news-letter {
  text-align: center;
  margin-right: 10%;
}
.footer .news-letter form {
  display: flex;
  justify-content: space-between;
  width: 75%;
  margin: 0 auto;
  padding: 8px 25px;
  padding-right: 10px;
  background: #cce6ff;
  border-radius: 21px;
}
.footer .news-letter form input {
  background: transparent;
  box-shadow: none;
  border: none;
  padding: 0;
  font-size: 16px;
}
.footer .news-letter form button {
  padding: 10px;
  font-size: 14px;
  font-weight: 400;
}
.footer .copyright-box {
  border-top: 1px solid #e8e8e8;
  text-align: center;
  position: relative;
}
.footer .copyright-box .dog-group {
  position: absolute;
  bottom: 100%;
  left: 50%;
  width: 400px;
  transform: translateX(-50%);
}
.footer .copyright-box p {
  color: #001d23;
  font-weight: 500;
  font-size: 12px;
}
.footer .copyright-box a {
  color: #103559;
  transition: 0.5s all ease;
}
.footer .copyright-box a:hover {
  color: var(--orange);
}
/* footer end */

/* --- other pages --- */

/* shop all page */

/* breadcrumb section */
.breadcrumb-box .breadcrumb {
  margin: 0;
  margin-left: 2%;
}

.breadcrumb-box .breadcrumb-item + .breadcrumb-item::before {
  content: "\f054";
  font-family: "Font Awesome 5 Pro";
  font-size: 12px;
}

.breadcrumb-box .breadcrumb-item {
  display: flex;
  align-items: center;
}
.breadcrumb-box .breadcrumb-item a {
  color: var(--black);
  font-size: 16px;
}

.bread-main ol {
  display: flex;
  width: 250px;
  color: #103559 !important;
}

.bread-main ol li {
  font-weight: 600;
  color: #103559 !important;
  cursor: pointer;
}

/* breadcrumb section end */

/* hero section */
.hero.other-pages .image-box {
  position: absolute;
  top: 15%;
  right: 1%;
  z-index: 1;
  transform: scaleX(-1);
  width: 30%;
}
.hero.other-pages .image-box img {
  transform: translate(0);
}

.hero.other-pages .container {
  position: relative;
}
.hero.other-pages .sub-heading {
  font-weight: 500;
}
/* hero section end */

/* pets section */
.pets-section .pets-carousel .image-box {
  display: block;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto;
  overflow: hidden;
}
.pets-section .pets-carousel {
  padding-inline: 50px;
}
.pets-section .pets-carousel .image-box img {
  height: 100%;
  object-fit: cover;
}
.pets-section .pets-carousel p {
  font-weight: 500;
  text-align: center;
  color: var(--black);
}
.pets-section .pets-carousel .owl-nav {
  display: flex;
  position: absolute;
  top: 50%;
  left: 0px;
  justify-content: space-between;
  width: calc(100%);
  transform: translateY(-50%);
  z-index: -1;
}
.pets-section .pets-carousel .owl-nav button {
  font-size: 38px;
  color: var(--secondary);
}

.girl-card-container .button-image .image-box img {
  width: 90%;
  transform: translate(15%, 5%);
}

.girl-card-container .button-image .tagline h3 {
  align-items: flex-start;
}
.girl-card-container .button-image .tagline h3 img {
  width: 60px;
  transform: translateY(10px) rotate(0deg) scaleY(-1);
}
/* pets section end */

/* category product section */
.product-category-section {
  overflow: unset;
}
.product-category-section .dropdown-box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  font-size: 14px;
}
.product-category-section .recommended-dropdown {
  width: fit-content;
}
.product-category-section .recommended-dropdown button {
  background: var(--light);
  color: var(--black);
  padding: 10px;
  border: 1.5px solid #e6e6e6;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
}
.product-category-section .recommended-dropdown button::after {
  content: "\f078";
  font-family: "Font Awesome 5 Pro";
  border: none;
}

.product-category-section .categories-box {
  position: sticky;
  top: 15px;
}
.product-category-section .categories-box .accordion-item {
  border: none;
  padding: 16px 18px;
  background-color: #f7f7f7;
  border-radius: 10px;
}
.product-category-section .categories-box .accordion-item .accordion-button {
  background: transparent !important;
  border: none;
  box-shadow: none;
  padding: 0;
  color: var(--secondary);
  font-size: 20px;
  font-weight: 500;
}
.product-category-section .categories-box .accordion-item .accordion-body {
  padding: 0;
  padding-top: 15px;
}
.product-category-section .accordion-item .accordion-body .input-label {
  display: block;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--light);
  border: 1px solid #e6e6e6;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
}
.product-category-section .accordion-item .accordion-body .input-label .category-quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 45px);
}
.product-category-section .accordion-item .accordion-body .input-label h3 {
  font-size: 14px;
  color: var(--black);
}
.product-category-section .accordion-item .accordion-body .input-label p {
  font-size: 13px;
}
.product-category-section .accordion-item .accordion-body .input-label .active-box {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #f3ede5;
  transition: 0.5s all ease;
}

.product-category-section .accordion-item .accordion-body .input-label .active-box::after {
  content: "";
  width: 2px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 45px;
  background: #f3ede5;
}
.product-category-section .accordion-item .accordion-body input:checked ~ .active-box {
  background: var(--secondary);
}

.product-category-section .product-card .image-box img {
  height: 185px;
}
.product-category-section .product-card .image-box img {
  height: 185px;
}
/* category product section end */

/* price product slider */

/* price product slider end */

/* shop all page end*/

/* product page */
.product-details {
  overflow: unset;
}
.product-details .product-image-carousel {
  position: sticky;
  top: 20px;
}
.product-details .product-image-carousel .carousel-indicators {
  margin: 0;
  padding: 0;
  bottom: -100px;
  gap: 20px;
}
.product-details .product-image-carousel .carousel-indicators button {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
}
.product-details .product-image-carousel .carousel-indicators button img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}
.product-details .product-image-carousel .carousel-item {
  border-radius: 20px;
  overflow: hidden;
}
.product-details .product-image-carousel .carousel-item img {
  height: 450px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}

.product-details .details .product-tags {
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-details .details .sub-heading {
  font-size: 18px;
}
.product-details .details .tag {
  background: #f3ede5;
  border-radius: 100px;
  padding: 6px 15px;
}
.product-details .details .tag h6 {
  font-size: 12px;
  color: var(--black);
  font-weight: 400;
}
.product-details .details .heading {
  font-weight: 500;
  letter-spacing: 0.6px;
  font-family: var(--sans-serif);
}

.product-details .details .product-title .review {
  font-size: 12px;
}
.product-details .details .product-title .price {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-details .details .product-title .price .cost {
  color: var(--black);
  font-weight: 500;
  font-size: 24px;
}
.product-details .details .product-title .price .offer-tag {
  background: #dc632c;
  padding: 3px 5px;
  border-radius: 5px;
  font-size: 13px;
  color: var(--light);
}
.product-details .details .product-title .price .crossed-price {
  color: #6a6a6a;
  font-size: 13px;
  text-decoration: line-through;
}
.product-details .details .product-title .price .save-price {
  color: #dc632c;
  font-size: 13px;
}
.product-details .details .first-subscription {
  display: flex;
  justify-content: space-between;
  background-color: var(--secondary);
  align-items: center;
  padding: 25px 15px;
  border-radius: 10px;
}
.product-details .details .first-subscription img {
  width: 70px;
}
.product-details .details .first-subscription .text {
  text-align: center;
  color: var(--light);
}
.product-details .details .first-subscription h5 {
  font-size: 17px;
  font-weight: 300;
  text-transform: uppercase;
}
.product-details .details .first-subscription h6 {
  font-size: 13px;
  font-weight: 300;
}
.product-details .details .first-subscription h6 span {
  font-weight: 700;
}

.product-details .about-product p {
  color: var(--black);
  font-weight: 400;
}
.product-details .about-product .detail-list .list {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
}
.product-details .about-product .detail-list .list img {
  width: 16px;
}
.product-details .about-product .detail-list .more-list {
  height: 0;
  overflow: hidden;
  transition: height 0.5s ease;
}

.product-details .about-product .more-info {
  color: var(--secondary);
  font-weight: 700;
  font-size: 12px;
  border: none;
  background: transparent;
  padding: 0;
}

.product-details .purchase-information .radio-inputs label {
  display: block;
  position: relative;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
}
.product-details .purchase-information .radio-inputs label .input-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 20px;
  padding-left: 60px;
  background-color: var(--light);
  border: 1px solid #c1c1c2;
  border-radius: 8px;
  transition: 0.5s all ease;
}
.product-details .purchase-information .radio-inputs label input[type="radio"] {
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  background: transparent;
  accent-color: var(--secondary);
}
.product-details .purchase-information .radio-inputs label input:checked ~ .input-text {
  background: #f0f8ef;
  border-color: var(--secondary);
}
.product-details .purchase-information .radio-inputs .input-text {
  display: flex;
  align-items: center;
  gap: 15px;
}
.product-details .purchase-information .radio-inputs .input-text h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
}
.product-details .purchase-information .radio-inputs .input-text p {
  font-size: 12px;
}
.product-details .purchase-information .choose-size label .best-value-tag {
  position: absolute;
  top: -0px;
  right: -0px;
  padding: 5px 10px;
  background: var(--secondary);
  color: var(--light);
  border-bottom-left-radius: 8px;
}
.product-details .purchase-information .choose-size label .best-value-tag h4 {
  font-size: 14px;
}
.product-details .purchase-information .select-quantity select {
  padding: 15px;
  box-shadow: none;
  border: 1px solid #cccccc;
}
.product-details .purchase-information .purchase-tabs {
  border: 1px solid #cccccc;
  border-radius: 8px;
  overflow: hidden;
}
.product-details .purchase-information .purchase-tabs .nav-item {
  flex: 1;
}
.product-details .purchase-information .purchase-tabs .nav-link {
  height: 100%;
  background: var(--light);
  width: 100%;
  padding: 18px 10px !important;
  border-bottom: 1px solid #cccccc;
  border-radius: 0;
}
.product-details .purchase-information .purchase-tabs .nav-link.active {
  background: #f0f8ef;
  border-bottom: 1px solid #464646;
}
.product-details .purchase-tabs .nav-link .text h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
}
.product-details .purchase-tabs .nav-link .text p {
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
}
.product-details .purchase-tabs .tab-content .inner-content {
  padding-inline: 30px;
}
.product-details .purchase-tabs .tab-content .inner-content .tab-list .list {
  display: flex;
  gap: 14px;
}
.product-details .purchase-tabs .tab-content .inner-content .tab-list .list .icon img {
  width: 15px;
  filter: invert(29%) sepia(0%) saturate(6672%) hue-rotate(305deg) brightness(93%) contrast(69%);
}
.product-details .purchase-tabs .tab-content .inner-content .button {
  width: 100%;
  padding-block: 14px;
  border-radius: 18px;
}
.product-details .purchase-tabs .tab-content .inner-content .tab-list .list .text h5 {
  font-size: 16px;
  color: #555759;
  font-weight: 800;
}
.product-details .purchase-tabs .tab-content .inner-content .tab-list .list .text p {
  font-size: 14px;
}
.product-details .purchase-tabs .tab-content .inner-content .tab-list .list .text p strong {
  color: var(--black);
}
.product-details .purchase-tabs .tab-content .inner-content .tab-list .list .icon {
  line-height: 15px;
}

.product-details .dropdown-div {
  padding-top: 10px;
  position: relative;
}

.product-details .dropdown-div label {
  font-size: 16px;
  color: #555759;
  font-weight: 800;
}

.product-details .dropdown-div select {
  width: 450px;
  height: 40px;
  border-radius: 7px;
  font-weight: 600 !important;
  font-size: 13px;
  padding-left: 25px;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  border-color: #555759;
  margin-top: 10px;
  cursor: pointer;
  /* position: relative; */
}

.product-details .dropdown-div svg {
  position: absolute;
  right: 30px;
  top: 57px;
  color: #a9a9a9;
}

.product-details .dropdown-div select option {
  font-weight: 600 !important;
}

.product-description .divider-box {
  border-bottom: 2px solid #bbbbbb;
  width: calc(100% + 10px);
  transform: translateX(-10px);
  position: relative;
}
.product-description .divider-box img {
  position: absolute;
  right: 0;
  bottom: 100%;
  width: 60px;
}

.product-description .description-box .inner-title {
  font-size: 22px;
  color: var(--black);
  font-weight: 500;
  font-family: var(--title-font);
}
.product-description .description-box .list-title {
  font-size: 18px;
  color: var(--black);
  font-weight: 500;
  font-family: var(--title-font);
}
.product-description .description-list {
  padding-left: 30px;
}
.product-description .description-box .list {
  font-size: 15px;
  list-style: disc;
  color: #3f3f3f;
}

.product-reviews .review-box {
  display: flex;
  align-items: center;
  gap: 70px;
}

.product-reviews .current-reviews {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 70px;
  border-right: 2px solid #e3e3e3;
}

.product-reviews .review-box .overal-rating h3 {
  font-size: 60px;
  font-weight: 400;
}
.product-reviews .review-box .review-stars i {
  font-size: 22px;
  color: var(--text-color);
}
.product-reviews .review-box .review-count p {
  color: #2c2c2c;
  font-weight: 400;
}

.product-reviews .reviews-wrapper .review-item {
  border-bottom: 1px solid #88909780;
}
.product-reviews .reviews-wrapper .name-rating h6 {
  font-size: 16px;
}

.product-reviews .reviews-wrapper .name-rating .rating-box i {
  font-size: 16px;
  color: var(--secondary);
}
.product-reviews .reviews-wrapper .review-content .title {
  font-size: 18px;
  font-family: var(--title-font);
  font-weight: 600;
}
.product-reviews .reviews-wrapper .review-content p {
  font-size: 16px;
  color: #2c2c2c;
  font-weight: 400;
}
.product-reviews .reviews-wrapper .date-likes {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  align-items: flex-end;
}
.product-reviews .reviews-wrapper .date p {
  color: #2c2c2c;
  font-weight: 400;
  font-size: 16px;
}

.product-reviews .reviews-wrapper .likes {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

/* review modal */
.review-modal .modal-content .close-button {
  position: absolute;
  right: 0;
  top: 15px;
  right: 15px;
  z-index: 111;
  box-shadow: none;
}

.review-modal .modal-body {
  padding: 50px;
  padding-inline: 40px;
}
.review-modal .modal-body .review-form h6 {
  color: var(--secondary);
  font-weight: 700;
  font-size: 16px;
}
.review-modal .modal-body .review-form .rating-stars {
  display: flex;
  gap: 5px;
}
.review-modal .modal-body .review-form .rating-box i {
  font-size: 36px;
  color: var(--text-color);
}
.review-modal .modal-body .review-form .review-input textarea {
  height: 100px;
}
/* review modal */

/* product page end */

/* terms and privacy page*/
.term-privacy .term-box .inner-title {
  font-size: 18px;
  color: var(--secondary);
  font-weight: 500;
  font-family: var(--title-font);
}
.term-privacy .term-list .list-title {
  font-size: 16px;
  color: var(--black);
  font-weight: 500;
  font-family: var(--title-font);
}
.term-privacy .term-list {
  padding-left: 30px;
}
.term-privacy .term-box .list,
.term-privacy .term-box p {
  font-size: 14px;
  font-weight: 400;
  list-style: disc;
  color: var(--black);
}

/* terms and privacy page end */

/* cart page */
.available {
  background-color: #d7fdc5;
  border: 1px solid #3ab91a;
  color: #3ab91a;
}
.product-summary .card {
  border: 1px solid #ada8a8;
  border-radius: 20px;
}
.product-summary .card-body {
  display: flex;
  gap: 15px;
  padding: 15px 20px;
}
.product-summary .product-cards .product {
  display: flex;
  gap: 20px;
  width: 100%;
}

.product-summary .product-cards .product-input input {
  width: 18px;
  height: 18px;
  accent-color: var(--secondary);
}
.product-summary .product-cards .product img {
  max-width: 140px;
  height: 100%;
  object-fit: cover;
}
.product-summary .product-cards .product .text-box {
  width: calc(100% - 160px);
}
.product-summary .product-cards .product .sub-heading {
  font-weight: 500;
  font-size: 22px;
}
.product-summary .product-cards .product .size,
.product-summary .product-cards .product .purchase-type {
  font-size: 16px;
  font-weight: 400;
}
.product-summary .product-cards .product .purchase-type {
  font-weight: 600;
}
.product-summary .product-cards .stock-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-summary .product-cards .stock-price .stock-tag {
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 12px;
}
.product-summary .product-cards .stock-price .price {
  color: var(--black);
  font-size: 18px;
  font-weight: 600;
}
.product-summary .product-cards .button-box {
  display: flex;
  justify-content: space-between;
}
.product-summary .product-cards .delivery-info p {
  font-weight: 500;
  font-size: 14px;
  margin-left: 15px;
  color: var(--black);
}
.product-cards button {
  border: none;
  background: transparent;
}

.product-cards .action-button {
  display: flex;
  gap: 20px;
}
.product-cards .action-button button {
  font-size: 14px;
  font-weight: 500;
}
.product-cards .quantity-button {
  border: 1px solid var(--black);
  border-radius: 10px;
  padding: 3px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-cards .quantity-button button {
  font-size: 18px;
  font-weight: 700;
}

.product-cards .quantity-button .quantity-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
}
.product-cards .quantity-button .quantity {
  min-width: 25px;
  display: inline-block;
  text-align: center;
}

.product-summary .product-cards-btns button {
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 14px;
  width:14vw;
    min-height: 3.5vw;
background-color: transparent;
  font-weight: 500;
  font-size: 16px;
  line-height: 133%;
  letter-spacing: 0.04em;
  color: #000;
  overflow: hidden;
  position: relative;
}

/* Button Animation */
.product-summary .product-cards-btns button:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  background-color: #002a48;
  transition: 0.5s ease-in-out;
  z-index: -1;
}

.product-summary .product-cards-btns button:hover:before {
  left: 0;
  z-index: -1;
}
.product-summary .product-cards-btns button span {
  color: black;
  transition: 0.5s ease-in-out;
  z-index: 1;
}

.product-summary .product-cards-btns button:hover span {
  color: white;
}

.product-summary .product-cards-btns button:hover{
  background-color: transparent !important;
}


/* Tooltips Bootstrap */
.custom-tooltip {
  --bs-tooltip-bg: rgb(255, 8, 140) ;
}

/* .product-summary .product-cards-btns button:hover{
  background-color: #002a48;
  color: #fff;
} */

.delivery-charges {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  gap: 20px;
  max-width: 420px;
  border-radius: 10px;
  background: #f6f6f6;
}
.delivery-charges .icon img {
  width: 40px;
}
.delivery-charges .text p {
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
}

.checkout-card .card {
  border-radius: 10px;
  background: #fafafa;
}
.checkout-card .card-body {
  padding: 25px 25px !important;
}
.checkout-card .apply-coupoun {
  display: flex;
  gap: 10px;
}
.checkout-card .apply-coupoun input {
  padding: 6px 12px;
  font-size: 15px;
  background: #f4f2f2;
  border: 1px solid #606060;
  width: calc(100% - 90px);
  border-radius: 3px;
}
.checkout-card .payment-cash{
border: 1px solid var(--card-border);
border-radius: 5px;
padding: 10px;
}
.checkout-card .payment-cash .form-check-input:checked {
  background-color: var(--orange);
  border: unset;
}
.checkout-card .apply-coupoun button {
  border-radius: 10px;
  width: 90px;
  font-size: 14px;
}
.checkout-card .available-copoun {
  margin-left: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--black);
}
.checkout-card .available-copoun button {
  border: none;
  background: transparent;
  display: block;
  font-size: 16px;
  font-weight: 500;
}
.checkout-card .order-summary h6 {
  font-size: 22px;
}
.checkout-card .order-summary .list p, .checkout-card .payment-cash label {
  font-size: 16px;
  font-weight: 500;
  color: #5f5959;
}
.checkout-card .pay-op{
border-top: 1px solid var(--card-border);
}
.checkout-card .cod-box{
  font-size: 10px;
  background-image: linear-gradient(to right, var(--white), var(--light-grey), var(--white));
  padding: 10px 15px;
  font-weight: 600;
}
.checkout-card .order-summary .list h5 {
  font-size: 22px;
  color: #5f5959;
  font-weight: 600;
}
.checkout-card .order-summary button {
  padding: 17px 24px;
  width: 100%;
  letter-spacing: 1px;
}

.cart-empty .image-box {
  text-align: center;
}
.cart-empty .image-box img {
  width: 70%;
}
.cart-empty .text-box .heading {
  font-size: 45px;
}

/* cart page end */

/* about us page */

.about.underline {
  width: 23%;
}
.about-us .text-content .inner-title {
  font-size: 20px;
  color: var(--secondary);
  font-weight: 600;
  text-transform: capitalize;
  width: fit-content;
  position: relative;
}
.about-carousel-section .text-content .heading {
  width: fit-content;
  position: relative;
}
.about-carousel-section .text-content .heading .underline {
  width: 70%;
}
.about-carousel-section .text-content {
  padding-right: 10%;
}
.about-carousel-section .image-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.about-carousel-section .image-box img {
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.about-carousel-section .about-carousel .owl-nav {
  display: flex;
  gap: 25px;
  margin-top: 30px;
}
.about-carousel-section .about-carousel .owl-nav svg {
  width: 35px;
  height: 35px;
  color: var(--light);
  transition: 0.5s all ease;
}
.about-carousel-section .about-carousel .owl-nav svg:hover {
  color: var(--secondary);
}

.about-carousel-section .about-carousel p {
  font-weight: 400;
  color: #103559;
  letter-spacing: 0.72px;
  font-size: 18px;
}

.about-carousel-section {
  padding: 130px 0;
}

/* about us page end */

/* contact us page */

.have-question-cards .card {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-color: #4f4e4e;
  color: var(--black);
  gap: 10px;
  font-size: 18px;
}
.have-question-cards .card .icon img {
  width: 34px;
}

.contact-us-page {
  background: var(--light);
}
.contact-us-page .form-box .form-wrapped,
.contact-us-page .form-box textarea {
  border-color: #4f4e4e;
  border-width: 1px;
}
.contact-us-page .form-box .form-wrapped:focus-within,
.contact-us-page .form-box textarea:focus {
  border-width: 1px;
}
.contact-us-page .form-box ::placeholder,
.contact-us-page .form-box .form-wrapped i {
  color: #4c4b4b !important;
}
.contact-us-page .image-box img {
  transform: scaleX(-1);
}
/* contact us page end */

/* faq page */
.faq-page.hero .heading {
  font-size: 35px;
  position: relative;
  width: fit-content;
}
.faq-page.hero .sub-heading {
  font-size: 28px;
  font-weight: 500;
}

.faq-page-section .faq-container .accordion .accordion-button {
  background: transparent;
}

.faq-page-section .faq-container .accordion .accordion-item {
  background: transparent;
}

/* faq page end */

/* login page */
.login-page .form-box {
  width: 80%;
  margin-left: auto;
}
.login-page .form-box .line {
  position: absolute;
  top: 50%;
  left: 55%;
  height: 100%;
  background: #e7e7e7;
  width: 1px;
  transform: translate(-50%, -50%);
}
.login-page .form-box .or {
  background: var(--light);
  position: absolute;
  top: 50%;
  left: 55%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
}
.login-page .form-box .or p {
  text-transform: uppercase;
  color: #6e6e6e;
  font-weight: 700;
}
.login-page .form-box .button {
  width: 100%;
  border-radius: 12px;
  padding: 12px 20px;
}
.login-page .form-box label {
  color: #6e6e6e;
  font-size: 14px;
  letter-spacing: 1.05px;
}
.login-page .form-box input {
  color: var(--black);
  font-size: 16px;
  border: none;
  border-radius: 0;
  padding: 10px 1px;
  box-shadow: none;
  border-bottom: 1.4px solid #e7e7e7;
  transition: 0.5s all ease;
}
.login-page .form-box input:focus-within {
  border-bottom: 1.4px solid var(--black);
}
.login-page .form-box input::placeholder {
  color: #6e6e6e;
  opacity: 0.8;
}

.form-box .password-box {
  position: relative;
}

.form-box .password-toggler {
  position: absolute;
  width: 40px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 10px;
  right: 0;
  cursor: pointer;
  background: var(--light);
}
.form-box .password-toggler svg {
  opacity: 1;
  width: 18px;
  height: 18px;
  color: var(--black);
  font-weight: 800px;
  transform: scale(1.2);
  /* transition: 0.5s all ease; */
}
.form-box .password-toggler svg g {
  stroke-width: 2px;
}
.form-box .password-toggler svg:last-child {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%) scale(1);
}
.form-box input[type="text"].show + .password-toggler svg {
  opacity: 0;
}
.form-box input[type="text"].show + .password-toggler svg:last-child {
  opacity: 1;
}

.login-page .form-box a {
  position: relative;
  display: block;
  color: #0e0e0e;
  font-weight: 700;
  font-size: 16px;
  width: fit-content;
  padding: 15px;
  margin: 0 auto;
  border-bottom: 1.4px solid var(--black);
  text-align: center;
}

.login-page .social-login-box {
  width: 60%;
  margin: 0 auto;
}
.login-page .social-login {
  display: flex;
  align-items: center;
  border: 1.4px solid var(--black);
  padding: 16px 20px;
  border-radius: 5px;
  gap: 20%;
}
.login-page .social-login .icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-page .social-login .icon-box img {
  width: 20px;
}
.login-page .social-login .text-box {
  width: calc(100% - 20px);
}
.login-page .social-login .text-box p {
  font-weight: 600;
  font-size: 14px;
}

/* login page end */

/* delivery address page */

.delivery-address-page .heading-button {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 74%;
}
.delivery-address-page .heading-button button {
  width: fit-content;
  background: transparent;
  color: var(--black);
  border-radius: 5px;
  padding: 8px 60px;
  font-size: 14px;
}
.delivery-address-page .heading-button p {
  font-size: 15px;
  color: #374151;
  font-weight: 400;
}

.delivery-address-page .product-cards .name-tag {
  display: flex;
  align-items: center;
  gap: 15px;
}
.delivery-address-page .product-cards .name {
  font-size: 15px;
  color: #2d2d2d;
  font-weight: 700;
}
.delivery-address-page .product-cards .tag {
  padding: 1px 5px;
  font-size: 14px;
  border-radius: 5px;
  border: 1px solid #3ab91a;
  color: #3ab91a;
}
.delivery-address-page .product-cards .address {
  color: #2d2d2d;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
}
.delivery-address-page .product-cards .mobile-number {
  color: #2d2d2d;
  font-weight: 400;
  font-size: 16px;
}

.delivery-address-page .product-cards .product-input input {
  width: 15px;
  height: 15px;
  accent-color: #da7e14;
  border: 1px solid var(--light);
}
.product-cards .address-label {
  display: flex;
  gap: 15px;
  width: 100%;
  padding: 15px 20px;
}

.delivery-address-page .product-summary .product-cards .product .text-box {
  width: 100%;
}
.delivery-address-page .product-cards .title {
  display: flex;
  justify-content: space-between;
}
.delivery-address-page .product-cards .edit {
  display: flex;
  gap: 10px;
}
.delivery-address-page .product-cards .edit i {
  color: #737373;
  width: 30px;
  text-align: center;
  cursor: pointer;
}

.address-modal .modal-dialog {
  max-width: 600px;
}
.address-modal .modal-body {
  padding: 25px;
}

.address-modal .form-box .form-wrapped {
  display: flex;
  gap: 10px;
  align-items: center;
  border: 2px solid #e8e8e8;
  padding: 10px 15px;
  border-radius: 6px;
  background: #ffffffb7;
  transition: 0.5s all ease;
}
.address-modal .form-box input {
  border: 0;
  box-shadow: none;
  background: transparent;
  padding: 0;
  font-family: var(--title-font);
  font-size: 13px;
}
.address-modal .form-box .form-wrapped:focus-within {
  border: 2px solid #0034595c;
}
.address-modal .modal-body .address-form h3 {
  font-weight: 700;
  font-size: 22px;
  color: var(--secondary);
}
.address-modal .address-form .title {
  font-weight: 700;
  font-size: 16px;
  color: var(--secondary);
}

.address-modal .address-form .input-button-wrapper {
  display: flex;
  gap: 25px;
}
.address-modal .address-form .input-button-wrapper label {
  display: flex;
  gap: 10px;
  align-items: center;
}
.address-modal .address-form label span {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
}
.address-modal .address-form label input {
  width: 18px;
  height: 18px;
  accent-color: var(--secondary);
}

.address-modal .address-form .input-button-wrapper label .custom-input {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background: transparent;
  color: #ffffff;
  font-size: 12px;
  border: 1px solid var(--grey);
}
.address-modal .address-form .input-button-wrapper label input:checked ~ .custom-input {
  background: var(--secondary);
}
.address-modal .address-form .input-button-wrapper label .custom-input i {
  font-size: 10px;
}
.address-modal .address-form .button-box {
  display: flex;
  gap: 10px;
}

/* delivery address page end */

/* order confirmed page */
.order-confirmed {
  overflow: unset;
}
.order-confirmed p {
  color: var(--secondary);
  font-weight: 400;
}
.order-confirmed .summary-list .list {
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: var(--secondary);
}
.order-confirmed .discount-card {
  margin-top: -110px;
}
.order-confirmed .discount-card .card {
  /* background: linear-gradient(89.669deg, #ffffff 0%, #f1ecec 37%, #f1ecec 66%, #ffffff 100%); */
  background: linear-gradient(89.669deg, #ffffff 0%, #f1ecec 52%, #ffffff 100%);
  border: 0;
  padding: 30px;
  margin-top: -20px;
  /* min-width: 560px; */
}
.order-confirmed .discount-card h5 {
  font-size: 15px;
  font-weight: 600;
}
.order-confirmed .discount-card h3 {
  font-size: 40px;
  letter-spacing: 2px;
  font-weight: 600;
  font-family: var(--title-font);
  color: var(--black);
}
.order-confirmed .discount-card p {
  font-size: 14px;
  font-weight: 500;
  color: #646464;
}
.order-confirmed .discount-card .shop-button {
  background-color: #f8c57a;
}
.order-confirmed .discount-card .image-box {
  text-align: center;
  position: relative;
  z-index: 3;
}
.order-confirmed .discount-card .image-box img {
  width: 150px;
}
/* order confirmed page end */

/* payment page */
.payment-page .product-cards .product-input {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.payment-page .payment-method .product-input input[type="radio"] {
  width: 15px;
  height: 15px;
  accent-color: #da7e14;
}
.payment-page .product-cards .card-body {
  padding: 0;
}
.payment-page .product-cards .card-body .address {
  color: #2d2d2d;
  font-size: 14px;
  font-weight: 500;
}

.payment-page .payment-card-inputs {
  display: none;
}

.payment-page input:checked ~ .payment-card-inputs {
  display: block;
}

.payment-page .payment-card-inputs input {
  font-size: 14px;
  border: 1px solid #d2d2d2;
  background: #f6f6f6;
  color: var(--black);
  padding: 12px 25px;
  box-shadow: none;
}
.payment-page .payment-card-inputs input::placeholder {
  font-size: 14px;
  color: #737373;
}

.payment-page .address-label .product .text-box {
  display: flex;
  gap: 100px;
  align-items: center;
}

.payment-page .address-label .payment-icons {
  display: flex;
  gap: 20px;
}
.payment-page .address-label .payment-icons img {
  width: 40px;
}
.payment-page .payment-method .payment-card-icons .icons-box {
  display: flex;
  gap: 10px;
  margin-left: 40px;
}
.payment-page .payment-method .payment-card-icons img {
  width: 60px;
}

/* payment page end */

/* ---- other page end ---- */

/* 08 - 10 - 2024  */

/* ------ dashboard pages ------- */
/* my account dashboard */

.my-account .dashboard-wrapper {
  display: flex;
}
.my-account .sidebar {
  width: 300px;
  background: #103559;
}
.my-account .dashboard {
  flex: 2;
  background: #e3e5e7;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.my-account .dashboard .item-container {
  border-radius: 10px;
  background: white;
  padding: 25px;
}

.my-account .dashboard .item-container2 {
  min-height: 800px;
}

.my-account .dashboard .item-container .content-box {
  padding-inline: 45px;
  height: 450px;
  overflow-x: hidden;
  overflow-y: auto;
}

.item-container .dashboard-order-summary {
  width: 300px;
  float: right;
  border: 1px solid #ada8a8;
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
  margin-right: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.item-container .dashboard-order-summary:hover {
  background-color: #e3e5e7;
}

.item-container .dashboard-order-summary h6 {
  font-weight: 500;
  font-size: 1.5vw;
  color: #0e0e0e;
}

.item-container .dashboard-order-summary p {
  color: #5f5959;
  font-weight: 500;
}

.item-container .dashboard-order-summary h4 {
  color: #5f5959;
  font-weight: 500;
}

.my-account .dashboard .dashboard-content .content-box .form-box label {
  color: #6e6e6e;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.05px;
}
.my-account .dashboard .dashboard-content .content-box .form-box input {
  box-shadow: none;
  border-radius: 0;
  border: 0;
  padding: 0;
  padding-bottom: 10px;
  border-bottom: 1.4px solid #0e0e0e;
}
.my-account .dashboard .dashboard-content .content-box .form-box input::placeholder {
  color: #103559;
  font-weight: 500;
}
.my-account .dashboard .dashboard-content .content-box .form-box .button {
  margin: 20px auto;
  transform: translateX(-45px);
  width: 300px;
}

.my-account .dashboard .dashboard-content .order-placed-at {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background-color: red; */
  width: 660px;
}

.my-account .dashboard .dashboard-content .order-placed-at a {
  color: #f44336;
  text-decoration: underline;
  font-weight: 600;
}

.breadcrumb-order-detail {
  width: 100%;
}

.breadcrumb-order-detail .col-lg-12 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.breadcrumb-order-detail button {
  background: #103559;
  color: white;
  cursor: pointer;
  border: none;
  border-radius: 12px;
  width: 122px;
  height: 42px;
  font-size: 15px;
  font-weight: 500;
}

.breadcrumb-order-detail button:hover {
  background: #103559ca;
}

.my-account .dashboard-wrapper .sidebar {
  position: relative;
  padding: 40px;
  padding-inline: 50px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.my-account .dashboard-wrapper .sidebar .menu-link {
  display: block;
  width: fit-content;
  margin-bottom: 25px;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
  color: var(--light);
  transition: 0.5s all ease;
}
.my-account .dashboard-wrapper .sidebar .menu-link.active,
.my-account .dashboard-wrapper .sidebar .menu-link:hover {
  border-color: #ffbd59;
}
.my-account .dashboard-wrapper .sidebar .image-box {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: -15px;
}

/* my account dashboard end*/

/* my account dashboard manage address page */
.my-account .dashboard-wrapper .delivery-address-page .product-cards label {
  padding: 0;
}
.my-account .dashboard-wrapper .delivery-address-page .product-cards .card {
  border-radius: 7px;
}
.my-account .dashboard-wrapper .dashboard-content .heading-button {
  display: flex;
  justify-content: space-between;
}
.my-account .dashboard-wrapper .dashboard-content .heading-button .button {
  width: 250px;
}

.subscription-modal .modal-body {
  padding: 25px;
  padding-inline: 35px;
}
.subscription-modal .button-box button {
  padding: 8px 12px;
  font-size: 14px;
}
.subscription-modal .modal-body input,
.subscription-modal .modal-body select {
  border: 2px solid #e8e8e8;
  padding: 8px 15px;
  border-radius: 6px;
  transition: 0.5s all ease;
  box-shadow: none;
  font-family: var(--title-font);
  font-size: 14px;
}

.subscription-modal .modal-body input {
  background: #ffffffb7;
}

.subscription-modal .modal-body input:focus,
.subscription-modal .modal-body select:focus {
  border: 2px solid #0034595c;
}
/* my account dashboard manage address page end */

/* my account dashboard order history page */

.my-account.my-account-order .product-summary {
  height: 450px;
}
.my-account.my-account-order .product-summary .card {
  padding: 0;
  border: 0;
  border-bottom: 1px solid #ada8a8;
  border-radius: 0;
}
.my-account.my-account-order .product-summary .card-body {
  padding: 15px 45px;
}

.my-account.my-account-order .product-summary .product-cards .product {
  align-items: center;
}
.my-account.my-account-order .product-summary .product-cards .product .sub-heading {
  font-weight: 500;
}

.my-account.my-account-order .product-summary .product-cards .product .size {
  font-size: 15px;
}
.weight-550 {
  font-weight: 550;
}

.my-account .dashboard-wrapper .empty-box {
  text-align: center;
}
.my-account .dashboard-wrapper .empty-box img {
  max-width: 200px;
}
.my-account .dashboard-wrapper .empty-box p {
  color: #6e6e6e;
  font-weight: 600;
  letter-spacing: 1.02px;
}
.my-account .dashboard-wrapper .empty-box button {
  margin-top: 35px;
  width: 260px;
  padding: 10px 20px;
}

/* my account dashboard order history page end */

/* my account dashboard manage subscription page */
.my-account.my-account-order .delivery-charges {
  max-width: 100%;
  padding-inline: 50px;
}
.my-account.my-account-order .delivery-charges .icon img {
  width: 35px;
}
.my-account.my-account-order .delivery-charges .text p {
  font-weight: 600;
}
.my-account.my-account-order .delivery-charges .cancel {
  font-size: 14px;
}
/* my account dashboard manage subscription page end */

/* my account dashboard wish list page */
.my-account.my-account-wish .product-card .image-box img {
  height: 190px;
}
.my-account.my-account-wish .product-card .card .card-body {
  padding: 8px;
}

/* my account dashboard wish list page end*/

/* my account dashboard contact support */
.my-account.my-contact-support .dashboard-content .supports-container .support {
  border-bottom: 1px solid #ada8a8;
  /* padding-bottom: 20px; */
}
.my-account.my-contact-support .dashboard-content .supports-container .support:last-child {
  border-bottom: none;
  /* padding-bottom: 20px; */
}
.my-account.my-contact-support .dashboard-content .supports-container .support {
  padding-inline: 45px;
}
.my-account.my-contact-support .dashboard-content .support .title {
  font-size: 22px;
  font-weight: 550;
  color: var(--text-color);
}
.my-account.my-contact-support .dashboard-content .support .content-button {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
}
.my-account.my-contact-support .dashboard-content .support h6 {
  text-transform: capitalize;
}
.my-account.my-contact-support .dashboard-content .support h6 a {
  color: #103559;
  text-decoration: underline;
  display: inline-block;
}

/* my account dashboard contact support end*/

/* ------ dashboard pages end ------- */

/* ---- upper edits ---- */

/* shop page edit */
.product-category-section .categories-box .accordion-item .accordion-button::after {
  content: "\f078";
  font-family: "Font Awesome 5 Pro";
  background: transparent;
  transition: 0.5s all ease;
  color: #6a6a6a;
}
.product-category-section .categories-box .accordion-item .accordion-button:not(.collapsed)::after {
  content: "\f2d1";
  background: transparent;
  line-height: 7px;
}
/* shop page edit end */

/* ---- upper edits end---- */

/* Responsive */
@media (max-width: 1404px) {
  .navbar .navbar-brand .logo-text {
    font-size: 16px;
  }
  .nav-link {
    font-size: 14px;
  }
  .navbar .navbar-nav .wish-cart img {
    width: 16px;
  }

  .navbar .navbar-nav .search-input {
    padding: 8px 16px;
  }
  .navbar .navbar-nav .search-input .search-button {
    width: 20px;
    height: 20px;
  }
  .navbar .navbar-nav .search-input .search-button i {
    font-size: 10px;
  }
  .navbar .navbar-nav .nav-item:nth-child(3) .wish-cart img {
    width: 28px;
  }

  .navbar .navbar-nav .nav-item .wish-cart i {
    font-size: 16px;
  }

  .navbar .collapse .navbar-nav1 {
    justify-content: flex-start;
  }

  .navbar .navbar-nav .notification-count {
    width: 16px;
    height: 16px;
    font-size: 12px;
  }
  .navbar .navbar-nav-2 {
    gap: 24px;
  }

  .hero .heading {
    font-size: 50px;
  }
  .hero .sub-heading {
    font-size: 40px;
  }

  .pet-card-container .text-box .text {
    font-size: 60px;
  }

  .image-products .pointers-box .plot {
    width: 25px;
    height: 25px;
  }
  .image-products .pointers-box .plot::after {
    width: 9px;
    height: 9px;
  }

  .treat-your-pet .text-image .text-box .heading {
    font-size: 35px;
  }

  .product-card .image-box img {
    height: 210px;
  }

  .pet-products .product-card {
    width: 100%;
  }

  .payment-policy .card {
    padding: 0;
  }
  .payment-policy .icon-text .text h5 {
    font-size: 18px;
  }
  .payment-policy .icon-text .text p {
    font-size: 14px;
  }
  .contact-us .form-box textarea {
    height: 190px;
  }
  .footer .news-letter p {
    font-size: 14px;
  }

  /* shop page */
  .hero.other-pages .image-box {
    width: 33%;
  }

  /* shop page */
  .product-category-section .product-card .image-box img {
    height: 160px;
  }
  .product-card .product-details h4 {
    font-size: 12px;
  }
  .product-card .card .card-body {
    padding: 8px;
  }
  /* shop page end */

  /* cart pages */
  .product-summary .product-cards .product img {
    max-width: 125px;
  }
  .product-summary .product-cards .product-input input {
    width: 16px;
    height: 16px;
  }
  .product-summary .product-cards .stock-price .stock-tag {
    padding: 4px 18px;
    font-size: 12px;
  }
  .product-summary .product-cards .product .sub-heading {
    font-size: 20px;
  }
  .product-summary .product-cards .product .size,
  .product-summary .product-cards .product .purchase-type {
    font-size: 14px;
  }
  .product-summary .product-cards .delivery-info p {
    font-size: 14px;
  }
  .product-cards .quantity-button .quantity-text {
    font-size: 12px;
  }
  .product-cards .quantity-button {
    padding: 3px 12px;
  }

  .product-cards .quantity-button button {
    font-size: 16px;
  }

  .checkout-card .apply-coupoun input {
    padding: 6px 10px;
    font-size: 13px;
  }
  .checkout-card .apply-coupoun button {
    width: 80px;
    font-size: 14px;
  }
  .checkout-card .available-copoun button {
    font-size: 13px;
  }
  .checkout-card .order-summary .list h5 {
    font-size: 18px;
  }
  .checkout-card .order-summary .list p {
    font-size: 13px;
  }
  .checkout-card .order-summary .list h5 {
    font-size: 18px;
  }
  .checkout-card .order-summary button {
    padding: 8px 24px;
  }
  .checkout-card .card-body {
    padding: 25px 28px !important;
  }
  .checkout-card .apply-coupoun input {
    padding: 6px 12px;
    font-size: 14px;
    width: calc(100% - 80px);
  }
  .checkout-card .apply-coupoun button {
    width: 80px;
    font-size: 14px;
  }

  .checkout-card .order-summary button {
    font-size: 14px;
  }
  .delivery-address-page .product-cards .address {
    font-size: 14px;
  }
  .delivery-address-page .product-cards .mobile-number {
    font-size: 14px;
  }
  /* cart pages end*/

  /* my account dashboard wish list page */
  .my-account.my-account-wish .product-card .image-box img {
    height: 140px;
  }
  .my-account.my-account-wish .product-card .product-details h4 {
    font-size: 12px;
  }
  .my-account.my-account-wish .product-card .product-details h3 {
    font-size: 14px;
  }

  /* my account dashboard wish list page end*/

  /* home page edit*/
  .hero p {
    font-size: 16px;
  }
  .product-card .out-of-stock {
    padding: 8px 12px;
    min-width: 115px;
  }
  .product-card .out-of-stock h4 {
    font-size: 14px;
  }

  .product-card .tag {
    padding: 6px 14px;
  }
  .product-card .tag h4 {
    font-size: 12px;
  }
  /* home page edit end*/
}

@media (max-width: 1280px) {
}
@media (max-width: 1200px) {
}
@media (max-width: 1199px) {
}
@media (max-width: 992px) {
}
@media (max-width: 767px) {
  .g-5,
  .gx-5 {
    --bs-gutter-x: 0 !important;
  }
}
@media (max-width: 600px) {
}

/* 08 - 10 - 2024 end */
