@import url("https://fonts.googleapis.com/css?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none;
  scroll-behavior: smooth;
  font-family: "Poppins";
}

/* Customizing the title */
.swal-title {
  color: #000000 !important; /* Change title color */
}

/* Customizing the text */
.swal-text {
  color: #000000 !important; /* Change text color */
}

/* Customizing the button */
.swal-button {
  background-color: #053314 !important; /* Change button background color */
  color: #ffffff !important; /* Change button text color */
}

/* Customizing the button on hover */
.swal-button:hover {
  background-color: #0e4b16 !important; /* Change button hover background color */
}
:root {
  --bg-color: #053314;
  --second-color: #064b10;
  --txt-color: #fff;
  --main-color: rgb(192, 223, 100);
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  background-image: url(https://wallpaperbat.com/img/323465-wallpapermisc-green-grass-hd-wallpaper-13-2560-x-1600-free-top.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: var(--txt-color);
  background-attachment: fixed;
  background-size: cover;
}
body::-webkit-scrollbar {
  display: none;
}
body {
  scrollbar-width: none;
}
section {
  min-height: 100vh;
  padding: 10rem 9% 2rem;
}

.header img {
  height: 6rem;
  margin-right: 2rem;
}
.logo {
  font-size: 2vmax;
  color: var(--txt-color);
  font-weight: 600;
  margin-right: 0;
  cursor: default;
}
.navbar a {
  font-size: 1.5vmax;
}
@media (max-width: 768px) {
  .navbar.active {
    display: block;
    height: 60vh !important;
  }
}

section {
  min-height: 100vh;
  padding: 10rem 9% 2rem;
}
.header {
  position: fixed;
  opacity: 0.8;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 9%;
  background-color: var(--bg-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transition: all 0.8s;
}
.header.sticky {
  opacity: 0.9;
  padding: 2rem 10% 2rem 5%; /* Adjusted padding to ensure space for the sign-in button */
  background-color: rgb(4, 125, 18);
  box-shadow: 0 0 1.5px 2px rgb(14, 14, 14, 0.8);
}

nav {
  margin-right: 10px;
  display: flex;
}

.logo {
  font-size: 2.5rem;
  color: var(--txt-color);
  font-weight: 600;
  cursor: default;
}
.navbar a {
  /* position: relative; */
  font-size: 1.4rem;
  /* left: 118px; */
  color: var(--txt-color);
  margin-right: 3.1rem;
  transition: 0.3s;
}
.navbar a:hover {
  color: var(--main-color);
  animation: blink 1s infinite;
  transform: scale(1.1);
  text-shadow: 1px 1px 5px rgba(255, 255, 255, 0.1);
}

@keyframes blink {
  0%,
  100% {
    color: var(--main-color);
  }
  50% {
    color: transparent;
  }
}

.navbar a:not(.active):hover {
  color: var(--main-color);
}

.navbar a.active,
.navbar a.active:hover {
  color: var(--main-color);
}
.navbar.active {
  display: block;
}
.navbar a {
  position: relative;
  font-size: 1.5rem;
  color: var(--txt-color);
  margin-right: 3.1rem;
  transition: 0.3s;
}

.navbar a:hover::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px; /* Adjust height as needed */
  background-color: rgb(255, 255, 255); /* Change to the desired color */
  left: 0;
  bottom: -5px; /* Adjust position as needed */
}

.navbar a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px; /* Adjust height as needed */
  background-color: rgb(255, 255, 255); /* Change to the desired color */
  left: 0;
  bottom: -5px; /* Adjust position as needed */
  transition: width 0.5s;
}
/* styling the search bar */
.searchbar {
  width: 100%;
  padding: 10px 15px;
  font-size: 16px;
  border: 2px solid #ccc;
  border-radius: 20px;
  outline: none;
  /* transition: border-color 0.3s ease, box-shadow 0.3s ease; */
  /* z-index: 1; */

  /* position: absolute;
    top: 150px;
    left: 550px; */
}
.productsearch {
  position: relative;
  display: flex;
  align-items: center;
  width: 300px;
  max-width: 100%;
  margin: 0 auto;
  justify-content: center;
  top: 200px;
  /* background-color: green; */
}
.glass {
  background-color: #28a745;
  height: 40px;
  width: 40px;
  text-align: center;
  border-radius: 50px;
  /* position: relative; */
  position: absolute;
  left: 85%;
  padding: 9px 15px;
  font-size: large;
}
.glass:hover {
  color: red;
  cursor: pointer;
}

.navbar a:hover::after {
  width: 100%;
}

.logoImg {
  width: 80px;
  height: auto; /* Use auto to maintain aspect ratio */
  max-width: 100%;

  margin-right: 5px; /* Adjust margin as needed */
}

#menu-icon {
  font-size: 3.6rem;
  color: var(--txt-color);
  display: none;
}

#menu-icon {
  font-size: 3.6rem;
  color: var(--txt-color);
  display: none;
}

/* cart button  */
.cart {
  position: fixed;
  right: 20px;
  top: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: rgb(42, 137, 18);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s, box-shadow 0.3s;
  z-index: 1000;
}

.cart-image {
  position: absolute;
  top: 15px;
  width: 40px;
  height: auto;
  border-radius: 100px;
  transition: transform 0.1s;
}

.cart:hover .cart-image {
  transform: scale(1.05);
  border-radius: 100px;
}

.mini-cart {
  display: none;
}

.note {
  width: 200px;
  height: 50px;
  background: #fff;
  color: #000000;
  font-weight: 500;
  font-size: large;
  display: flex;
  margin: 15px 0;
  z-index: 255;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  align-items: center;
  justify-content: center;
  position: fixed;
  transform: translateX(100%);
  animation: moveleft 0.5s linear forwards;
}

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

.note i {
  color: green;
}

.note::after {
  content: "";
  position: absolute;
  left: 00;
  bottom: 0;
  width: 80%;
  height: 5px;
  background: green;
  animation: anim 2s linear forwards;
}

@keyframes anim {
  100% {
    width: 0;
  }
}

.notify {
  position: absolute;
  bottom: 230px;
  right: 30px;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  overflow: hidden;
  padding: 20px;
}

.cart-see {
  display: block;
  position: fixed;
  bottom: 200px;
  right: 90px;
  top: 150px;
  border: 1px solid #ddd;
  background-color: #064b10;
  padding: 12px;
  border-radius: 4px;
  width: 300px;
  cursor: move;
  max-height: 380px;
  overflow-y: auto;
  height: 150px;
  /* Initial height */
  border-width: 4px;
  font-size: 13px;
}

/* Theme Toggle Button */
.theme-toggle {
  position: fixed;
  top: 26px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: yellow;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s, box-shadow 0.3s;
  z-index: 1000;
}

.theme-toggle i {
  font-size: 20px;
  color: rgb(3, 3, 38);
}

.theme-toggle .fa-moon {
  display: none;
}

/* Dark Theme Styles */
body.dark-theme {
  background-color: #121212;
  background-image: url(https://img.freepik.com/premium-photo/green-field-background-night-sky-elements-this-image-furnished-by-nasa_180633-3322.jpg);
  color: #ffffff;
}

body.dark-theme .header,
body.dark-theme .footer,
body.dark-theme .navbar {
  background-color: black;
  color: #ffffff;
}

body.dark-theme .theme-toggle {
  background-color: rgb(3, 3, 38);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
}

body.dark-theme .theme-toggle .fa-sun {
  display: none;
}

body.dark-theme .theme-toggle .fa-moon {
  display: inline;
  color: #f1c40f;
}

body.dark-theme a {
  color: #f1c40f;
}

body.dark-theme button {
  background-color: black;
  color: #ffffff;
}

body.dark-theme input,
body.dark-theme textarea {
  background-color: black;
  color: #ffffff;
  border: 1px solid black;
}
body.dark-theme .mini-cart {
  background-color: black;
}
body.dark-theme .product:hover {
  background-color: #000000c3;
}
body.dark-theme .add-to-cart {
  background-color: white;
  color: #000000;
}
body.dark-theme .add-to-cart:hover {
  background-color: rgb(0, 177, 74);
  color: #ffffff;
}
@keyframes floatImage {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2.4rem);
  }
  100% {
    transform: translateY(0);
  }
}

.email-link {
  position: relative;
  display: inline-block;
}

.email-link::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 5px;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.email-link:hover::after {
  opacity: 1;
  visibility: visible;
}

.btn-cv-res {
  display: inline-block;
  padding: 1rem 2.8rem;
  background: var(--main-color);
  border-radius: 4rem;
  box-shadow: 0 0 1rem var(--main-color);
  font-size: 1.6rem;
  color: var(--second-color);
  letter-spacing: 0.1rem;
  font-weight: 600;
  transition: 0.5sec ease;
  margin-bottom: 15px;
  margin-right: 15px;
}

.btn2 {
  margin-left: 9px;
  display: inline-block;
  padding: 1rem 2.8rem;
  background: var(--main-color);
  border-radius: 4rem;
  box-shadow: 0 0 1rem var(--main-color);
  font-size: 1.6rem;
  color: var(--second-color);
  letter-spacing: 0.1rem;
  font-weight: 600;
  transition: 0.5sec ease;
}

.btn:hover {
  box-shadow: none;
}
.btn2:hover {
  box-shadow: none;
}
.space {
  display: block;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: wrap;
  flex-direction: column;
  padding: 1rem;
  background: #053314;
  min-height: 25rem;
}

.footer p {
  font-size: 1.6rem;
  font-weight: bold;
}
/* .footerUpperPart {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  width: 90vw;
  min-height: 15rem;
  margin-top: 15px;
} */

.footer-title {
  font-weight: 500;
  font-size: 20px;
}

.footer-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-iconTop a {
  display: grid;
  justify-content: center;
  align-items: center;
  padding: 0.8rem;
  background: var(--main-color);
  border-radius: 0.8rem;
  transition: 0.5s ease;
}
.footer-iconTop a:hover {
  box-shadow: 0 0 1rem var(--main-color);
}
.footer-iconTop a i {
  font-size: 2.4rem;
  color: var(--second-color);
}

@media (max-width: 1350px) {
  .header {
    padding: 3rem 3%;
  }
}

@media (max-width: 991px) {
  .header {
    padding: 3vmax 4vmax;
  }
  .section {
    padding: 10rem 3% 2rem;
  }
  .footer {
    padding: 2rem 3%;
  }
}

@media (max-width: 1216px) {
  .logo {
    font-size: 2.6vmax;
  }
  .theme-toggle {
    margin-top: 10rem; /* Ensure theme toggle is below the menu icon */
  }
  #menu-icon {
    display: block;
    font-size: 5vmax;
  }
  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem 1%;
    background: var(--bg-color);
    border-top: 0.1rem solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
    height: 500px;
    display: block;
  }
  .navbar.active {
    display: block;
    display: none;
  }
  .navbar a {
    display: block;
    font-size: 2.8vmax;
    margin: 3rem 0;
    margin-left: 8vmax;
  }
  .navbar a i {
    margin-right: 2vmax;
  }
  .navbar a.active {
    color: var(--txt-color);
    font-size: 2.5vmax;
  }
  .slide_viewer {
    display: none;
  }
  .footer-left {
    margin-top: 0.8rem;
  }
}
@media (max-width: 365px) {
  .footer {
    flex-direction: column;

    p {
      font-weight: bold;
    }
  }
  .footerUpperPart {
    flex-direction: column-reverse;
  }
  .footer p {
    text-align: center;
    margin-top: 2rem;
  }
}

.footer-left {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.socialIcons {
  padding: 1.2rem;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.socialIcons i {
  color: var(--second-color);

  font-size: 22px;
  /* margin-left:25px;
 margin-right:25px; */

  font-size: 22px;
}
.socialIcons a {
  display: grid;
  justify-content: center;
  align-items: center;
  padding: 1.3rem;
  background: var(--main-color);
  border-radius: 100%;
  /* transition: 0.5s ease; */
  margin: 15px;
}

.socialIcons a:hover {
  transform: scale(1.3);
  transition: 0.3s;
}
.footer-right {
  text-align: center;
}

.services-box a {
  text-decoration: none; /* Remove underline */
  color: inherit; /* Inherit the color from the parent */
  cursor: pointer; /* Show pointer cursor on hover */
}

.services-box a:hover {
  text-decoration: underline; /* Add underline on hover if needed */
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
  color: none;
  background-color: none;
  display: none;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: grey;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgb(192, 223, 100);
}

.footer {
  padding: 20px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
    url("../images/istockphoto-1465642013-170667a.webp");
  background-size: cover; /* Ensure the background image covers the entire container */
  background-position: center; /* Center the background image */
  background-repeat: no-repeat; /* Prevent the background image from repeating */
  color: #fff;
}

.footer-grid {
  /* display: grid;
  align-items: center;
  justify-content: center;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; */
  display: flex;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-items: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
}

.footer-title,
.footer-icons,
.footer-iconTop {
  text-align: center;
}
#backtoTop {
  position: fixed;
  bottom: 90px;
  right: 24px;
  height: 60px;
  width: 60px;
  background-color: #b19222;
  border-radius: 50%;
  margin-bottom: 10px;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  display: none;
  transition: background-color 0.5s ease-in 0.3s;
}
#backtoTop a {
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transition: 0.5s ease;
  padding: 1.2rem;
}
#backtoTop a:hover {
  background-color: #a48613;
}
#backtoTop a i {
  font-size: 36px;
  color: white;
}
.footer-iconTop a {
  display: inline-block;
  width: max-content;
  padding: 0.8rem;
  background: var(--main-color);
  border-radius: 0.8rem;
  transition: 0.5s ease;
}
.footer-iconTop a:hover {
  box-shadow: 0 0 1rem var(--main-color);
}

.footer-iconTop a i {
  font-size: 2.4rem;
  color: var(--second-color);
}
.socialIcons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-text {
  text-align: center;
  margin-top: 10px;
}

.quick-links {
  text-align: center;
  width: 50vw;
  padding: 20px;
  p {
    font-weight: bold;
  }
}

.quick-links h2 {
  font-size: 20px;
  margin-bottom: 15px;
}

.quick-links ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.quick-links li {
  margin-bottom: 8px;
}

.quick-links a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.quick-links a:hover {
  color: #abf5c0; /* Change color on hover */
  /* text-decoration: underline; */
  animation: blink 1s step-start infinite;
  text-shadow: 0 0 5px currentColor;
}

@keyframes blink {
  50% {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
      /* White glow */ 0 0 20px rgba(255, 0, 0, 0.7),
      /* Red glow */ 0 0 30px rgba(255, 0, 255, 0.6); /* Pink glow */
  }
  100% {
    text-shadow: none;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr; /* Single column layout for smaller screens */
  }
  *
    Places
    these
    items
    above
    the
    icons
    in
    the
    single
    column
    layout
    */
    .socialIcons {
    gap: 0;
    padding: 1rem;
  }
  .quick-links li {
    margin-bottom: 0;
  }
  .quick-links ul {
    flex-direction: column;
  }
}
/*login/register button css starts*/
.login-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--main-color);
  border-radius: 4rem;
  box-shadow: 0 0 1rem var(--main-color);
  font-size: 1.4rem;
  color: var(--second-color);
  letter-spacing: 0.1rem;
  font-weight: 600;
  transition: 0.5s ease;
  position: fixed;
  margin-top: -10px;
  margin-left: auto;
  cursor: pointer;
  transition: 5s;
}
.login-btn:hover {
  box-shadow: none;
}
/*login/register button css ends*/

/* Preloader Css */

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
}

#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background: white;
  z-index: 1000;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

#loader-wrapper .loader-section.section-left {
  left: 0;
}

#loader-wrapper .loader-section.section-right {
  right: 0;
}

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #b7b597;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  z-index: 99999;
}

#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #254336;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}

#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #6b8a7a;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

.loaded #loader-wrapper {
  visibility: hidden;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.3s 1s ease-out;
  transition: all 0.3s 1s ease-out;
}

.loaded #loader-wrapper .loader-section.section-left {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Preloader Css Ends */
.container {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  justify-content: space-around;
  position: relative;
  top: 70px;
}

.product {
  border: 1px solid #ddd;
  border-radius: 10px;
  margin: 20px;
  width: 300px;
  height: 350px;
  text-align: center;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1); /* Smooth uplift transition */
}
.product:hover {
  transform: translateY(-10px); /* Uplift effect on hover */
  background-color: #064b10;
}

.product img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  width: 300px;
  height: 180px;
}

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

/*ADD TO CART CSS*/

.add-to-cart {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
}

.add-to-cart:hover {
  background-color: #218838;
}

#no-results-message {
  display: none;
  color: rgb(226, 241, 152);
  text-align: center;
  margin: 70px 0;
  font-size: large;
}

/* .mini-cart {
    position: fixed;
    bottom: 200px;
    right: 10px;
    border: 1px solid #ddd;
    background-color: #46785f;
    padding: 12px;
    border-radius: 4px;
    width: 300px;
    cursor: move;
    max-height: 70%;
    overflow-y: auto;
    height: 150px; 
    Initial height 
    border-width:4px ;
    font-size: 13px;
} */
.mini-cart h3 {
  margin-top: 0;
}

.mini-cart ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.mini-cart ul li {
  border-bottom: 1px solid #ddd;
  padding: 5px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-cart ul li img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.mini-cart ul li .quantity-controls {
  display: flex;
  align-items: center;
}

.mini-cart ul li .quantity-controls button {
  background-color: #ccc;
  border: none;
  padding: 5px;
  cursor: pointer;
  margin: 0 5px;
}
p {
  font-size: medium;
}
.info h3 {
  font-size: large;
}
.socialIcons #mail:hover {
  background: #bd4b39;
}
#mail:hover i {
  color: white;
}
.socialIcons #inst:hover {
  background: linear-gradient(45deg, #833ab4, #e1306c, #fd1d1d, #fdcb5d);
}
#inst:hover i {
  color: white;
}
.socialIcons #twit:hover {
  background: black;
}
#twit:hover i {
  color: white;
}
.socialIcons #fb:hover {
  background: #1877f2;
}
#fb:hover i {
  color: white;
}

#checkout {
  padding: 10px 20px;
  border-radius: 5px;
}

#checkout:hover {
  background-color: #28a745;
  color: #fff;
}

body.dark-theme #checkout {
  background-color: #fff;
  color: #000;
}
body.dark-theme #checkout:hover {
  background-color: var(--second-color);
  color: #fff;
}
