@import url(https://fonts.googleapis.com/earlyaccess/scheherazade.css);
@import url("https://fonts.googleapis.com/css2?family=Playwrite+PL:wght@100..400&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* root */
:root {
  --main_color: #fd4646;
  --text_color: #171427;
  --bag_color: #fff;
}

/* Global Values */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  padding: 0;
  margin: 0;
}

body {
  background-color: rgb(207, 201, 201);
}

/* ----------------------------Container Style------------------------------------------- */
.Container {
  padding: 0 5%;
  margin-left: auto;
  margin-right: auto;
}

.Container .Mn_Title {
  font-size: 50px;
  color: rgb(75, 71, 71);
  font-weight: 800;
  text-align: center;
  letter-spacing: -3px;
  margin-bottom: 7rem;
}

.Container .Mn_Title span {
  font-size: 100px;
  color: gold;
  text-shadow: -1px -1px 0 goldenrod, 1px -1px 0 goldenrod, -1px 1px 0 goldenrod,
    1px 1px 0 goldenrod;

  font-weight: 800;
  text-align: center;
  letter-spacing: -3px;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .Container .Mn_Title {
    font-size: 17px;
    margin-top: 50px;
  }
  .Container .Mn_Title span {
    font-size: 70px;
  }
}

/* -----------------------------------line trick Section---------------- */
.trick {
  width: 100%;
  height: 40px;
  background-color: #212024;
  color: #ffffff;
  font-size: 25px;
}

.trick .newsTicker {
  width: 100%;
  overflow: hidden;
}

.trick .newsTicker .swiper-wrapper {
  transition-timing-function: linear !important;
  text-align: center;
  margin-top: 5px;
}
/* -----------------------------------------Ads style-------------- */
.Ads {
  display: flex;
  background-color: #171427;
  color: silver;
  height: 35px;
  width: 100%;
  padding: 10px;
  justify-content: center;
  align-items: center;
}
.Ads span {
  margin-right: 20px;
  font-weight: 400;
  font-family: "Noto Kufi Arabic", sans-serif;
  font-size: 17px;
  animation: Moving 3s infinite ease-out alternate;
}

@keyframes Moving {
  0% {
    margin-right: 20px;
  }
  100% {
    margin-right: 200px;
  }
}

/* ----------------------------------------Nav Bar style -----------------------*/
.Navb {
  display: flex;
  background-color: #940707;
  height: 78px;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

/* .Navb img {
  height: 235px;
  width: 200px;
  z-index: 100;
} */

/* Small Bar Section */

.Navb .Small_bar {
  display: none;
  font-size: 25px;
  color: #f7f2f2;
}

.ULlist {
  display: none;
}

.ULlist.active {
  display: flex;
}

.Navb .Small_bar .ULlist {
  flex-direction: column;
  align-content: center;
  justify-content: center;
  list-style: none;
  background-color: #857878b6;
  height: 100vh;
  position: fixed;
  right: 0;
  top: 0;
  margin: 0;
  min-width: 280px;
  z-index: 5;
}

.Navb .Small_bar ul a {
  display: block;
  text-align: center;
  padding: 20px;
  text-decoration: none;
  color: black;
  /* font-family: "Noto Kufi Arabic", sans-serif; */
  transition: 0.2s ease;
}

.Navb .Small_bar ul a:hover {
  background-color: #fd4646;
  padding-left: 30px;
}

.Navb .Small_bar ul li:not(:last-child) a {
  border-bottom: 2px solid gray;
}

/* Big list section -------- */

.Navb .BigList {
  display: none;
  justify-content: center;
  align-items: center;
  padding: 5px;
  width: 50%;
}

.BigList .bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.Navb .BigList a {
  list-style: none;
  color: rgb(243, 238, 238);
  padding: 15px;
  margin-left: 10px;
  font-size: 17px;
  font-weight: 900;
  font-family: "Playwrite PL", cursive;
}

.Navb .BigList a:hover {
  color: #241f25;
  text-decoration: underline;
}

.Navb #Card_icon {
  font-size: 25px;
  color: gold;
  text-shadow: -1px -1px 0 goldenrod, 1px -1px 0 goldenrod, -1px 1px 0 goldenrod,
    1px 1px 0 goldenrod;
}

.Navb #Card_icon:hover {
  color: rgb(10, 223, 28);
}

.Navb .logoDiv {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.Navb .logoDiv a {
  color: gold;
  text-shadow: -1px -1px 0 goldenrod, 1px -1px 0 goldenrod, -1px 1px 0 goldenrod,
    1px 1px 0 goldenrod;
  font-size: 42px;
  font-weight: 900;
  font-style: italic;
}

/* Navbar  Media */
@media (max-width: 1276px) {
  .Navb {
    height: 100px;
  }
}


.Navb .SearchBar {
  position: relative;
  z-index: 2;
  width: 30%;
  height: 44px;
}

.Navb .SearchBar #SearchIn {
  position: absolute;
  background-color: rgb(255, 255, 255);
  border: 3px solid #9a9ad1;
  height:70%;
  width: 100%;
  padding: 18px;
  border-radius: 25px;
}

.SearchBar #SearchIn:focus {
  outline: none;
  border: 1px solid #b1b1b8;
}

.Navb .SearchBar #Search_icon {
  position: absolute;
  color: #071170;
  font-size: 25px;
  right: 30px;
  top: 5px;
  padding: 2px;
  border: 1px solid transparent;
  border-radius: 15px;
  cursor: pointer;
}

.SearchBar i:hover {
  background-color: rgb(15, 163, 231);
}

/* search hight line */
.highlight {
  background-color: yellow;
}

/* Responsive code */
@media (max-width: 833px) {
  .Navb .bar {
    display: none;
  }
  .Navb .BigList {
    width: 30%;
  }
  .Navb .Small_bar {
    display: block;
  }
  .Navb .logoDiv a {
    font-size: 16px;
  }
  .Navb .SearchBar #Search_icon {
    font-size: 17px;
    top: 7px;
    right: 8px;
  }
  .SearchBar #SearchIn {
    width: 105%;
  }
}

/* ------------------------------------Slider style------------------------------------------ */
.slider {
  position: relative;
  display: flex;
  margin: 0 auto;
  width: 100%;
  height: 150px;
  overflow: hidden;
}

.slider .Holder {
  display: grid;
  grid-template-columns: repeat(6, 100%);
  width: 100%;
  height: 100%;
  animation: slider 20s infinite ease-out alternate;
}

.slider .Holder #img-1 {
  background-image: url(../imgs/royel.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.slider .Holder #img-2 {
  background-image: url(../imgs/w1.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.slider .Holder #img-3 {
  background-image: url(../imgs/Stok1.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.slider .Holder #img-4 {
  background-image: url(../imgs/px3.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.slider .Holder #img-5 {
  background-image: url(../imgs/keke_n.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@keyframes slider {
  0% {
    transform: translateX(0%);
  }

  10% {
    transform: translateX(-100%);
  }

  20% {
    transform: translateX(-100%);
  }

  30% {
    transform: translateX(-200%);
  }

  40% {
    transform: translateX(-200%);
  }

  50% {
    transform: translateX(-200%);
  }

  60% {
    transform: translateX(-200%);
  }

  70% {
    transform: translateX(-300%);
  }

  80% {
    transform: translateX(-300%);
  }

  90% {
    transform: translateX(-400%);
  }
  100% {
    transform: translateX(-400%);
  }
}

/* ----------------------------pets section------------------------------- */

.Pets {
  margin-top: 10px;
  padding-top: 10px;
  padding-bottom: 20px;
}

/* .Pets .Pets_box {
  display: flex;
  flex-wrap: wrap;
  user-select: none;
  justify-content: space-between;
  align-items: center;
} */

.Pets .Pets_box {
  margin: auto;
  width: 90%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  row-gap: 2rem;
  column-gap: 1rem;
  padding: 10px;
}

.pet-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.Pets .pet-card img {
  height: 130px;
  width: 200px;
}

.Pets .pet-card img:hover {
  border: 2px solid whitesmoke;
  padding: 5px;
}

.pet-card h1 {
  font-size: 20px;
}

.Pets .pet-card:hover h1 {
  color: #071170;
}

@media (max-width: 768px) {
  .Pets .Pets_box {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
}

/*------------------- ------------------------Best Box section ---------------*/

.Best {
  background-color: #dedefd;
  position: relative;
  padding: 90px;
}

/* .best-card {
	display: flex;
	flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
} */

.best-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  /* margin: auto; */
  max-width: 300px;
  margin-right: 25px;
  padding: 15px;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  color: #292727;
  font-size: 10px;
  background-color: #f0eceb;
  border: 3px solid #756e6e;
}

.best-box img {
  height: 150px;
  width: 150px;
}

.best-box:hover {
  background-color: #ceced8;
}

.Pro_title {
  font-size: 20px;
  color: rgb(53, 56, 43);
}

.Discount {
  position: absolute;
  padding: 0 10px;
  background-color: gold;
  font-size: 23px;
  text-align: center;
  color: black;
  left: 2px;
  top: 0;
}

.Discount span {
  text-decoration: line-through;
}

.Add-btn {
  display: flex;
  width: 70%;
  height: 50px;
  font-size: 18px;
  justify-content: center;
  align-items: center;
  background-color: rgb(3, 77, 77);
  border-radius: 15px;
  margin: 0 auto;
  color: white;
  transition: 0.3s ease;
  cursor: pointer;
}

.Add-btn:hover {
  background-color: rgb(36, 224, 11);
  color: #171427;
}

.Best .wave-top {
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: 1;
}

.swiper-pagination {
  margin-bottom: 30px;
}

.swiper-pagination-bullet {
  background: black;
  height: 15px;
  width: 15px;
}
.swiper-btn {
  color: black;
  margin-top: 90px;
  transition: 0.3s ease;
}

.swiper-btn:hover {
  color: green;
}

/* Media Swiper Service Section---  */

@media (max-width: 768px) {
  .swiper-btn {
    display: none;
  }
}

/* ----------------------------------------Fixed img-------------------------- */

.Fixed_box {
  margin: 0;
  display: flex;
  height: 200px;
  width: 100%;
  font-size: 30px;
  justify-content: center;
  align-items: center;
  background-image: url(../imgs/royel.webp);
  background-size: cover;
  background-attachment: fixed;
  border: 1px solid #ccc;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.Fixed_box .text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30%;
  text-align: center;
}

/* ------------------------------------Fixed Simba------------------------------- */

.Simba {
  display: none;
  padding: 10px;
  justify-content: center;
  align-items: center;
  background-image: url(../imgs/Funny.png);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  border-radius: 15px;
  margin: 400px 0;
}

.Simba-img {
  overflow: hidden;
  border-radius: 15%;
  width: 50%;
  height: 400px;
  border: 1px solid #ccc;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}

.Simba-img img {
  width: 100%;
  height: 100%;
}
/* --------------------------------Service box----------------------------------------------------------- */

.Service {
  width: 98%;
  /* background-color: rgb(39, 21, 143); */
}

.Service-box {
  margin: auto;
  width: 90%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  /* background-color: gray; */
  row-gap: 2rem;
  column-gap: 1rem;
  padding: 10px;
}

.Service-Card {
  display: flex;
  margin: auto;
  width: 65%;
  align-items: center;
  justify-content: center;
  /* border: 1px solid black; */
  /* background-color: #fd4646; */
}

.Service-Card .Service-Div img {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}

.Service-Card .Service-Div {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  background-color: #fafafa;
  padding: 30px;
  border-radius: 50%;
  border: 1px solid #ccc;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: 0.5s;
}

.Service-Card .Service-Div h2 {
  font-size: 16px;
}

.Service-Card .Service-Div:hover {
  background-color: rgb(155, 155, 255);
}

.Service-box .Service-Div:nth-child(1) img {
  animation: waveUpDown 1.5s ease-in-out infinite 0.2s;
}
.Service-box .Service-Div:nth-child(2) img {
  animation: waveUpDown 1.5s ease-in-out infinite 0.4s;
}
.Service-box .Service-Div:nth-child(3) img {
  animation: waveUpDown 1.5s ease-in-out infinite 0.6s;
}
.Service-box .Service-Div:nth-child(4) img {
  animation: waveUpDown 1.5s ease-in-out infinite 0.8s;
}
.Service-box .Service-Div:nth-child(5) img {
  animation: waveUpDown 1.5s ease-in-out infinite 1s;
}
.Service-box .Service-Div:nth-child(6) img {
  animation: waveUpDown 1.5s ease-in-out infinite 1.5s;
}

@keyframes waveUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

/*---------------------------Contact------------------------*/

.Contact {
  position: relative;
  background-color: #3498db;
  margin-top: 10px;
  padding: 50px;
  margin-top: 150px;
}

.Contact .wave-top {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: 1;
}

.Contact .Contact_box {
  height: 400px;
  width: 100%;
  z-index: 2;
  padding-top: 70px;
  color: white;
  text-align: center;
}

.Contact_box .Mn_Title {
  padding: 15px;
  margin: 0;
  font-size: 60px;
  color: #f1ecec;
}

.Contact_box .Mn_Title span {
  margin: 0;
  padding: 0;
  font-size: 70px;
}

.Contact_box .Mn_Title + p {
  font-size: 40px;
  color: #173f53;
  font-family: "Courier New", Courier, monospace;
  font-weight: 700;
}

.Contact .info {
  padding-top: 10px;
}

.Contact .info .label {
  font-weight: 800;
  color: white;
  letter-spacing: -2px;
  font-size: 40px;
  margin-bottom: 15px;
}

.Contact .info .link {
  display: block;
  margin: auto;
  /* width: 40%; */
  text-decoration: none;
  color: gold;
  font-weight: 800;
  font-size: 35px;
}
.Contact .info .link:hover {
  color: #071170;
  text-decoration: underline;
}

.Contact .info .social {
  display: flex;
  overflow: hidden;
  width: 30%;
  margin: 30px auto 0 auto;
  justify-content: space-between;
  /* border: 1px solid black; */
  font-size: 20px;
}
.Contact .info i {
  font-size: 1.8rem;
  padding: 13px 17px;
  color: #2c4755;
  border: 2px solid #2c4755;
  border-radius: 50%;
}

.Contact .info i:hover {
  color: white;
  background-color: #2c4755;
}

/* Footer Section */
.footer {
  background-color: #2c4755;
  text-align: center;
  padding: 10px 50px;
  color: white;
  font-size: 13px;
}

.footer span {
  font-weight: bold;
  color: gold;
}

/* responsive code */

@media (max-width: 768px) {
  .Contact .info .label {
    font-size: 30px;
  }
  .Contact .info .link {
    font-size: 25px;
  }

  .Container .Mn_Title span {
    font-size: 70px;
  }
  .Contact .info .social {
    width: 60%;
    margin: 5px auto 0 auto;
  }
  .Contact .info i {
    font-size: 15px;
    padding: 10px 15px;
  }
}

/*  ***************************************About Page Section************************************ */

.Form {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 50%;
  height: 100vh;
  margin: auto;
  background-color: #171427;
  color: #f7f2f2;
  padding: 20px;
  font-size: 20px;
}

/* ****************************************Card Page Section**************************************** */
.Card {
  display: flex;
  flex-direction: column;
  min-height: 80vh;
  width: 60%;
  margin: 20px auto;
  text-align: center;
  background-color: #ccc;
  border: 1px solid #f7f2f2;
  border-radius: 15px;
  color: rgb(116, 17, 71);
  /* text-shadow: -2px -1px 0 black, 1px -1px 0 black, -2px 1px 0 black,
    2px 3px 0 black; */
  font-size: 30px;
}

.Card .info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 280px;
  margin: auto;
  padding: 10px;
  font-size: 30px;
}

.Card .info p {
  color: black;
}

.Card .info .infodb {
  border: 1px solid goldenrod;
  border-radius: 15px;
  text-align: center;
  font-size: 16px;
  padding: 10px;
  width: 80%;
}

.Card .info .infodb::placeholder {
  font-size: 20px;
  color: #071170;
}

.Card_contant {
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  border: 2px solid black;
  margin-bottom: 50px;
}

.Card_contant img {
  width: 300px;
  height: 300px;
}

.Card_contant .card_remove {
  font-size: 30px;
  color: red;
}

.Card .Bay_btn {
  padding: 10px;
  background-color: gold;
  color: black;
  font-size: 20px;
  font-weight: 700;
  border: 1px solid goldenrod;
  border-radius: 15px;
}

.Card .Bay_btn:hover {
  background-color: green;
  color: white;
  padding: 15px;
  border: 1px solid goldenrod;
}

.cart_box.fade-out {
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(100%);
}

.payment {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 70%;
  height: 50px;
}

.payment label {
  color: white;
  font-size: 20px;
}

/* **********************************Cats page Section****************** */
.Cats {
  background-color: beige;
  position: relative;
  padding: 70px;
}
.Cats .wave-top {
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: 1;
}
.Cats-card {
  border: 2px solid var(--bag_color);
  border-radius: 15px;
  padding: 10px;
  background-color: rgb(245, 225, 185);
}

.Cats-card .best-box .over {
  width: 240px;
  height: 1.5rem;
  direction: rtl;
  overflow: hidden;
}

.Cats-card .best-box p {
  font-size: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.Cats-card .best-box:hover p {
  white-space: wrap;
}

.Cats-card .best-box:hover .over {
  overflow: visible;
  height: 4rem;
}

.Cats-card .SliderBox {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, auto));
  column-gap: 1rem;
  row-gap: 2.3rem;
}
