@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Press+Start+2P&family=Rubik+Bubbles&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Press+Start+2P&family=Rubik+Bubbles&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

html {
  font-family: var(--font-body-family);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading-family);
  font-weight: 600;
}
:root {
  --font-heading-family: "Playfair Display", serif;
  --font-heading-weight: 500;
  --font-heading-scale: 1;
  --font-body-family: "Source Sans Pro", sans-serif;
  --font-body-weight: 400;
  --font-body-weight-bold: 700;
  --font-body-scale: 1;
  --font-additional-heading-weight: 400;
  --color-base-text: 255, 255, 255;
  --color-shadow: 255, 255, 255;
  --color-base-background-1: 3, 13, 29;
  --color-base-background-2: 0, 0, 0;
  --color-base-background-3: 14, 29, 85;
  --color-base-solid-button-labels: 52, 52, 53;
  --color-base-outline-button-labels: 204, 164, 113;
  --color-base-accent-1: 170, 170, 170;
  --color-base-accent-2: 204, 164, 113;
  --color-base-accent-3: 255, 255, 255;
  --color-overlay: 255, 255, 255;
  --color-product-bg: 52, 53, 58;
  --payment-terms-background-color: #030d1d;
  --gradient-base-background-1: #030d1d;
  --gradient-base-background-2: #000000;
  --gradient-base-background-3: #0e1d55;
  --gradient-base-accent-1: #aaaaaa;
  --gradient-base-accent-2: #cca471;
  --gradient-base-accent-3: #ffffff;
  --card-corner-radius: 0rem;
  --card-text-alignment: center;
  --card-shadow-opacity: 0;
  --grid-desktop-vertical-spacing: 42px;
  --grid-desktop-horizontal-spacing: 42px;
  --grid-mobile-vertical-spacing: 21px;
  --grid-mobile-horizontal-spacing: 21px;
  --buttons-radius: 0px;
  --buttons-border-width: 0px;
  --buttons-shadow-opacity: 0;
  /* Font Sizes */
  --fs-base: 1rem;
  /* 16px */
  --fs-xs: 0.875rem;
  /* 14px */
  --fs-small: 0.938rem;
  /* 15px */
  --fs-medium: 1.125rem;
  /* 18px */
  --fs-large: 1.875rem;
  /* 30px */
  --fs-xl: 3.5rem;
  /* 56px */
  --fs-xxl: 4.75rem;
  /* 76px */

  /* Spacing */
  --spacing-xs: 15px;
  --spacing-sm: 25px;
  --spacing-md: 30px;
  --spacing-lg: 45px;
  --spacing-xl: 60px;
  --spacing-xxl: 85px;

  /* Sizes */
  --button-padding: 32px 65px;
  --border-radius: 4px;
}
/* start loader */
#loader {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 1s ease;
}

#loader img {
  opacity: 1;
  transition: opacity 0.7s ease 1s;
}

#loader.fade-bg {
  opacity: 0;
}

#loader.fade-img img {
  opacity: 0;
}

.content {
  display: none;
}

/* end loader */

/* Start nav  */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: rgb(var(--color-base-background-3));
  position: relative;
}
.header-logo img {
  height: 35px;
  width: auto;
}

.hamburger {
  display: none;
  font-size: var(--fs-medium);
  cursor: pointer;
  color: rgb(var(--color-base-accent-1));
  transition: color 0.3s;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links li a {
  color: rgb(var(--color-base-accent-1));
  font-family: var(--font-body-family);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: var(--fs-medium);
  font-weight: var(--font-body-weight);
  transition: color 0.2s;
}

.nav-links li a:hover,
.hamburger:hover {
  color: rgb(var(--color-base-accent-2));
}
.header-icons {
  display: flex;
  align-items: center;
}
.header-icons a {
  margin-left: 15px;
  color: rgb(var(--color-base-accent-1));
  font-size: 1.2rem;
  transition: color 0.3s;
}

.header-icons a:hover {
  color: rgb(var(--color-base-accent-2));
}

/* sidebar */
.nav-sidebar {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background-color: rgb(var(--color-base-background-3));
  padding-top: 60px;
  padding-left: 20px;
  transition: 0.3s;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.close-btn {
  font-size: 2rem;
  color: rgb(var(--color-base-accent-1));
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 20px;
}

.close-btn:hover {
  color: rgb(var(--color-base-accent-2));
}

.nav-sidebar ul {
  padding: 0;
}

.nav-sidebar ul li {
  padding: 15px 0;
}

.nav-sidebar ul li a {
  color: rgb(var(--color-base-accent-1));
  font-size: var(--fs-medium);
}

.nav-sidebar ul li a:hover {
  color: rgb(var(--color-base-accent-2));
}

/* Sidebar Icons */
.sidebar-icons {
  display: flex;
  gap: 15px;
  padding-bottom: 20px;
}

.sidebar-icons a {
  color: rgb(var(--color-base-accent-1));
  font-size: var(--fs-medium);
}

.sidebar-icons a:hover {
  color: rgb(var(--color-base-accent-2));
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 900;
  display: none;
}

/* End nav */
/* start user menue */
#userMenu {
  position: relative;
  display: inline-block;
}

#userMenu .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  min-width: 120px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  list-style: none;
  padding: 0;
  margin: 5px 0 0 0;
  z-index: 1000;
}

#userMenu .dropdown li a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: #333;
}

#userMenu .dropdown li a:hover {
  background: #f5f5f5;
}

#userMenu .dropdown.show {
  display: block;
}

/* start user  menue*/

/* start hero section */

.hero {
  background: url(../images/slider__3_2000x_1.jpg) no-repeat left center/cover;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--gradient-base-background-1);
  background-position: top left;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--color-base-accent-3));
  z-index: 1;
  opacity: 0.8;
}
.hero .text {
  position: relative;
  z-index: 2;
}

.hero .text h1 {
  font-size: var(--fs-xl);
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
}
.hero span {
  font-size: var(--fs-medium);
}
.hero span a {
  color: #333;
  text-decoration: none;
  transition: text-decoration 0.3s;
}
.hero span a:hover {
  text-decoration: underline;
}

/* end hero section */

/* start register form */

.form-container {
  padding: 20px 30px;
  background-color: rgb(var(--color-base-background-1));
  box-shadow: 0 4px 8px rgb(var(--color-shadow));
}

.form-container h2 {
  text-align: center;
  margin: 70px 0px;
  color: rgb(var(--color-base-accent-3));
  font-size: var(--fs-large);
  font-family: var(--font-heading-family);
}
#togglePassword {
  color: rgb(var(--color-base-accent-1));
  position: absolute;
  right: 33%;
  top: 15px;
  cursor: pointer;
}
.form-container input {
  display: block;
  outline: none;
  width: 40%;
  padding: 15px;
  margin: 15px auto;
  color: rgb(var(--color-base-accent-1));
  font-size: var(--fs-medium);

  border: 1px solid #ccc;
  border-radius: 3px;
  transition: border-color 0.3s, box-shadow 0.3s, background-color 0.3s;

  background-color: var(--color-base-background-1);
}

.form-container input:focus {
  border-color: rgb(var(--color-base-accent-2));
  box-shadow: 0 0 2px rgb(var(--color-base-accent-3));
}
.error-message {
  width: 40%;
  margin: 10px auto;
  font-size: 12px;
  color: red;
  display: none;
}
#strengthMessage {
  font-size: 14px;
  margin: 5px auto;
  width: 40%;
  text-align: left;
}

.form-container button {
  position: relative;
  display: block;
  width: 10%;
  padding: 15px;
  margin: 20px auto;
  border: none;
  border-radius: 3px;
  background-color: rgba(var(--color-base-solid-button-labels));
  color: #fff;
  font-size: var(--fs-medium);
  cursor: pointer;
  overflow: hidden;
  transition: color 0.3s ease;
}

.form-container button::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgb(var(--color-base-accent-2)) 0%,
    rgb(var(--color-base-accent-2)) 100%
  );
  transition: top 0.5s ease;
  z-index: 0;
}

.form-container button:hover::before {
  top: 0;
}

.form-container button span {
  position: relative;
  z-index: 1;
}

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  color: rgb(var(--color-base-background-1));
}

.popup.show {
  display: block;
  opacity: 1;
}

/* end register form */
/* start help services */

.help-services {
  padding: 50px 20px;
  font-family: var(--font-body-family);
  color: rgb(var(--color-base-accent-1));
  background-size: cover;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../images/footer-img_052c2e02-57e9-473b-a7a4-2668c5104fbd.jpg);
  background-position: center;
}
.help-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-around;
  font-size: var(--fs-medium);
}

.help-column {
  flex: -1 1 300px;
}
.help-column h4 {
  margin-bottom: 15px;
  font-size: var(--fs-large);
  display: inline-block;
  color: rgb(var(--color-base-accent-3));
  padding-bottom: 5px;
  font-family: var(--font-heading-family);
}

.help-column ul li {
  margin-bottom: 20px;
}

.help-column ul li a {
  color: rgb(var(--color-base-accent-1));
  transition: color 0.3s;
}

.help-column ul li a:hover {
  color: rgb(var(--color-base-accent-2));
}

.help-column p {
  margin: 20px 0;
  font-size: var(--fs-medium);
}

/* end help services */

/* footer */
footer {
  position: relative;
  background-color: rgb(var(--color-base-background-3));
  color: rgb(var(--color-base-accent-1));
  font-size: var(--fs-large);
  text-align: center;
  padding: 20px 0;
}
#backToTop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: rgba(var(--color-base-solid-button-labels));
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.3s ease;
}

#backToTop::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgb(var(--color-base-accent-2)) 0%,
    rgb(var(--color-base-accent-2)) 100%
  );
  transition: top 0.5s ease;
  z-index: 0;
}

#backToTop:hover::before {
  top: 0;
}

#backToTop span {
  position: relative;
  z-index: 1;
  display: block;
  line-height: 50px;
  text-align: center;
}
/* start login form */
.links-row {
  margin-top: 15px;
  display: flex;
  justify-content: space-evenly;
  font-size: var(--fs-medium);
  position: relative;
  padding-top: 10px;
  padding-bottom: 60px;
}
.links-row::before {
  content: "";
  top: -7px;
  left: 29%;
  width: 43%;
  position: absolute;
  border-top: 1px solid rgb(var(--color-base-accent-1));
}

.links-row a {
  color: rgb(var(--color-base-accent-1));
  text-decoration: none;
  transition: color 0.3s;
}

.links-row a:hover {
  color: rgb(var(--color-base-accent-2));
  text-decoration: underline;
}
/* end login form */
/* start Forget Password Popup */
/* popup background */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
}

/* popup box */
.popup-box {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  width: 50%;

  text-align: center;
}

.popup-box h3 {
  margin: 20px 0;
  font-family: var(--font-heading-family);
  font-size: var(--fs-large);
}

.popup-box input {
  width: 90%;
  padding: 10px;
  margin: 20px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.popup-box button {
  margin: 20px 0;
  padding: 5px 8px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.popup-box .restbtn {
  background: rgb(var(--color-base-background-3));
  color: #fff;
  margin-right: 10px;
  padding: 15px 20px;
  font-size: var(--fs-medium);
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
  border: none;
}

.popup-box .restbtn::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgb(var(--color-base-accent-2)) 0%,
    rgb(var(--color-base-accent-2)) 100%
  );
  transition: top 0.5s ease;
  z-index: 0;
}
.popup-box .restbtn:hover span {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
}
.popup-box .restbtn:hover::before {
  top: 0;
}

.popup-box .close-btn {
  background: #ba0505;
  color: #fff;
  font-size: var(--fs-medium);
}
.popup-overlay.show {
  display: block;
}

.popup-box.show {
  display: block;
}
.popup-box .error-message {
  color: red;
  font-size: 13px;
  display: none;
}

.popup-box .result-message {
  margin-top: 10px;
  font-size: 14px;
  font-weight: bold;
  display: none;
}

/* end Forget Password Popup */

/* start home slider */
.slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slides-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

.slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
}

.slide.active {
  /* transform: translateX(0); */
  opacity: 1;
  z-index: 2;
  left: 0;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide .content-text {
  position: absolute;
  top: 50%;
  transform: translate(50%, -50%);
  color: rgb(var(--color-base-accent-3));
  padding: 20px;
  max-width: 500px;
}

.content-text h2 {
  font-size: var(--fs-xl);
}
.content-text h2::after {
  content: "";
  display: block;
  width: 50%;
  height: 4px;
  background: rgb(var(--color-base-accent-2));
  margin: -10px 0;
}
.content-text h3 {
  font-size: var(--fs-large);
  margin: 30px 0;
  color: rgb(var(--color-base-accent-2));
}
.content-text p {
  margin-bottom: 15px;
  line-height: 1.5;
  font-size: var(--fs-medium);
  font-family: var(--font-body-family);
  color: rgb(var(--color-base-accent-1));
}
.content-text .price {
  font-weight: bold;
  font-size: var(--fs-medium);
  font-family: var(--font-body-family);
  margin-bottom: 30px;
  color: rgb(var(--color-base-accent-1));
}
.content-text .price span {
  color: rgb(var(--color-base-accent-2));
  font-size: var(--fs-large);
  margin-left: 30px;
}

.controls {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  z-index: 100;
  justify-content: space-between;
  padding: 0 20px;
}
.controls button,
.slide button {
  background-color: rgba(var(--color-base-solid-button-labels));
  color: #fff;
  margin-right: 10px;
  padding: 10px 15px;
  font-size: var(--fs-medium);
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
  border: none;
  cursor: pointer;
  border-radius: 3px;
}

.controls button::before,
.slide button::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgb(var(--color-base-accent-2)) 0%,
    rgb(var(--color-base-accent-2)) 100%
  );
  transition: top 0.5s ease;
  z-index: 0;
}

.controls button:hover::before,
.slide button:hover::before {
  top: 0;
}

.controls button span,
.slide button span {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
}
.dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.dots span {
  width: 12px;
  height: 12px;
  background: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}
.dots span.active {
  background: rgb(var(--color-base-accent-2));
}

/* end home slider */
/* start banner */
.grid-banner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 50px 20px;
  width: 100%;
  box-sizing: border-box;
  background-color: rgb(var(--color-base-background-2));
}

.banner-image {
  overflow: hidden;
  /* width: 450px;
  height: 250px; */
  border: 5px solid rgb(var(--color-base-accent-1));
}

.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.banner-block {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  height: 250px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.banner-block:hover .overlay {
  opacity: 1;
  transform: scale(1.1);
}
.banner-text {
  color: #fff;
  text-align: center;
  z-index: 2;
  position: relative;
}

.banner-text h5 {
  font-size: 1rem;
  margin: 0;
  color: rgb(var(--color-base-accent-2));
}

.banner-text h4 {
  font-size: 1.5rem;
  margin: 5px 0;
}

.banner-text p {
  font-size: 1rem;
  margin: 0;
  color: rgb(var(--color-base-accent-1));
}
/* end banner */
/* start product category */
.product-category {
  padding: 50px 20px;
  background-color: rgb(var(--color-base-background-2));
}

.product-category h3 {
  text-align: center;
  margin-bottom: 40px;
  color: rgb(var(--color-base-accent-3));
  font-size: var(--fs-large);
  font-family: var(--font-heading-family);
}

.product-category-nav ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  font-size: var(--fs-medium);
}

.product-category-nav ul li a {
  color: rgb(var(--color-base-accent-1));
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 15px;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease-in;
}
.product-category-nav ul li a:hover,
.product-category-nav ul li a.active {
  color: rgb(var(--color-base-accent-2));
}

.product-category-nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: rgb(var(--color-base-accent-2));
  transition: all 0.3s ease-in-out;
}

.product-category-nav ul li a:hover::after,
.product-category-nav ul li a.active::after {
  left: 0;
  width: 90%;
}
.product-category-nav ul li a:hover::after,
.product-category-nav ul li a.active::after {
  animation: borderGrow 1.5s infinite alternate ease-in-out;
}

@keyframes borderGrow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.product-category-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.product-box {
  position: relative;
  padding: 15px;
  text-align: center;
  border-radius: var(--card-corner-radius);
  box-shadow: 0 4px 8px rgba(0, 0, 0, var(--card-shadow-opacity));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.product-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: rgba(var(--color-base-accent-1), 0.4);
  border-top-left-radius: var(--card-corner-radius);
  border-top-right-radius: var(--card-corner-radius);
  transition: height 0.8s ease, background-color 0.5s ease;
  z-index: 1;
}

.product-box img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--card-corner-radius);
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.product-box:hover::before {
  height: 100%;
  background-color: rgba(var(--color-base-accent-1), 0.7);
}
.product-info h4 {
  position: relative;
  z-index: 3;
  font-size: var(--fs-medium);
  color: rgb(var(--color-base-accent-3));
  margin-bottom: 10px;
}
.product-info h4 a {
  color: rgb(var(--color-base-accent-3));
  transition: color 0.3s;
}
.product-info h4 a:hover {
  color: rgb(var(--color-base-accent-2));
}

/* end product category */
/* start counter */
.counter {
  text-align: center;
  padding: 50px 20px;
  background-image: url(../images/Bg1full.jpg);
  background-attachment: fixed;
  background-size: cover;
}
.counter h3 {
  font-size: var(--fs-xl);
  color: rgb(var(--color-base-accent-3));
  font-family: var(--font-heading-family);

  margin-bottom: 40px;
}
.counter-boxes {
  text-align: center;
  color: rgb(var(--color-base-accent-3));
  font-size: var(--fs-large);
  display: flex;
  justify-content: center;
  gap: 30px;
  height: 150px;
  width: 100%;
}

.counter-box {
  background-color: rgb(var(--color-base-accent-2));
  align-items: center;
  width: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 20px;
}

.counter-box p {
  font-size: var(--fs-xl);
}

.counter-box span {
  font-size: var(--fs-medium);
}
.counter .shop-btn {
  margin-top: 40px;
  padding: 15px 30px;
  font-size: var(--fs-medium);
  background-color: rgba(var(--color-base-solid-button-labels));
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
}
.counter .shop-btn::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgb(var(--color-base-accent-2)) 0%,
    rgb(var(--color-base-accent-2)) 100%
  );
  transition: top 0.5s ease;
  z-index: 0;
}

.counter .shop-btn:hover::before {
  top: 0;
}
.counter .shop-btn span {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
}

.counter .shop-btn:hover span {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
}
/* end counter */
/* start clock-text */
.clock-text {
  padding: 50px 20px;
  background-image: url(../images/Bg2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center left;
}
.clock-text h3 {
  font-size: var(--fs-large);
  color: rgb(var(--color-base-accent-3));
  font-family: var(--font-heading-family);
  margin-bottom: 20px;
}
.clock-text p {
  font-size: var(--fs-medium);
  color: rgb(var(--color-base-accent-1));
  max-width: 800px;
  line-height: 1.6;
}

.clock-text .shop-btn {
  margin-top: 40px;
  padding: 15px 30px;
  font-size: var(--fs-medium);
  background-color: rgba(var(--color-base-solid-button-labels));
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
}
.clock-text .shop-btn::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgb(var(--color-base-accent-2)) 0%,
    rgb(var(--color-base-accent-2)) 100%
  );
  transition: top 0.5s ease;
  z-index: 0;
}

.clock-text .shop-btn:hover::before {
  top: 0;
}
.clock-text .shop-btn span {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
}
.clock-text .shop-btn:hover span {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
}

/* end clock-text */
/* start collection */
.collection {
  width: 100%;
}

.collection-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.collection-card {
  position: relative;
  flex: 1 1 33.33%;
  overflow: hidden;
  min-height: 360px;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.collection-card:hover img {
  transform: scale(1.4);
}

.collection-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
  width: 80%;
  line-height: 1.8;
}

.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.collection-card:hover::after {
  opacity: 1;
}

.collection-card:hover .collection-text {
  opacity: 1;
}

.collection-text h4 {
  font-size: var(--fs-large);
  font-family: var(--font-heading-family);
  margin-bottom: 10px;
}

.collection-text p {
  font-size: var(--fs-medium);
  color: rgb(var(--color-base-accent-1));
}

.collection-text .shop-btn {
  margin-top: 40px;
  padding: 15px 30px;
  font-size: var(--fs-medium);
  background-color: rgba(var(--color-base-solid-button-labels));
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
}
.collection-text .shop-btn::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgb(var(--color-base-accent-2)) 0%,
    rgb(var(--color-base-accent-2)) 100%
  );
  transition: top 0.5s ease;
  z-index: 0;
}

.collection-text .shop-btn:hover::before {
  top: 0;
}
.collection-text .shop-btn span {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
}
.collection-text .shop-btn:hover span {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
}

/* end collection */
/* start quote slider */

.quote-slides-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.quote-slider {
  overflow: hidden;
  padding: 50px 0;
  position: relative;
  width: 100%;
  background-color: rgb(var(--color-base-background-1));
}
.quote-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.quote-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 20px;
  text-align: center;
  color: rgb(var(--color-base-accent-1));
}
.quote-slide p {
  width: 70%;
  margin: 20px auto;
  font-size: var(--fs-large);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}
.quote-slide h4 {
  font-size: var(--fs-large);
  color: rgb(var(--color-base-accent-2));
  font-family: var(--font-heading-family);
}
.quote-controls {
  position: absolute;
  top: 50%;
  display: flex;
  width: 100%;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 50px;
}
.quote-controls button {
  background-color: rgba(var(--color-base-solid-button-labels));
  color: #fff;
  margin-right: 10px;
  padding: 10px 15px;
  font-size: var(--fs-medium);
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
  border: none;
  cursor: pointer;
  border-radius: 3px;
}
.quote-controls button::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgb(var(--color-base-accent-2)) 0%,
    rgb(var(--color-base-accent-2)) 100%
  );
  transition: top 0.5s ease;
  z-index: 0;
}
.quote-controls button:hover::before {
  top: 0;
}
.quote-controls button span {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
}
.quote-controls button:hover span {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
}
/* end quote slider */
/* start product section */
#cart-count {
  background: rgb(var(--color-base-accent-2));
  padding: 1px 7px;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  position: absolute;
  width: 20px;
  height: 20px;
}

.products {
  padding: 50px 20px;
  background-color: rgb(var(--color-base-background-1));
}
.products h2 {
  text-align: center;
  margin-bottom: 40px;
  color: rgb(var(--color-base-accent-3));
  font-size: var(--fs-xl);
  font-family: var(--font-heading-family);
}
.container {
  display: flex;
  gap: 20px;
  padding: 20px;
  font-family: var(--font-body-family);
}

/* Filters */
.filters {
  width: 250px;
  background: #fff;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
}
.filter-group {
  margin-bottom: 15px;
}
.filter-group h4 {
  margin-bottom: 10px;
  font-size: 16px;
}

/* Products Grid */
.products-grid {
  /* flex: 1; */
  display: grid;
  grid-template-columns: rep0eat(auto-fill, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.products {
  background-color: rgb(var(--color-base-background-1));
}
.products h2 {
  text-align: center;
  margin-bottom: 40px;
  color: rgb(var(--color-base-accent-3));
  font-size: var(--fs-xl);
  font-family: var(--font-heading-family);
}
.products .container {
  display: flex;
  gap: 20px;
  padding: 20px;
  font-family: var(--font-body-family);
}
.products .filters {
  width: 250px;
  background: rgb(var(--color-base-background-1));
  padding: 15px;
  border: 1px solid rgb(var(--color-base-accent-2));
  border-radius: 8px;
}
.products .filters h3 {
  text-align: center;
  margin-bottom: 20px;
  color: rgb(var(--color-base-accent-3));
  font-size: var(--fs-medium);
  font-family: var(--font-heading-family);
}
.products .filter-group {
  margin-bottom: 15px;
}

.products .filter-group h4 {
  margin-bottom: 10px;
  font-size: var(--fs-medium);
  color: rgb(var(--color-base-accent-3));
}
.filter-group label {
  display: flex;
  align-items: center;
  font-size: var(--fs-small);
  color: rgb(var(--color-base-accent-1));
  margin-bottom: 8px;
  margin-left: 20px;
  cursor: pointer;
  transition: color 0.3s ease;
}
.filter-group label:hover {
  color: rgb(var(--color-base-accent-2));
}
.filter-group input[type="checkbox"] {
  accent-color: rgb(var(--color-base-accent-2));
  margin-right: 10px;
  transform: scale(1.1);
  cursor: pointer;
}
.filter-group input[type="range"] {
  width: 100%;
  margin-top: 10px;
  cursor: pointer;
  accent-color: rgb(var(--color-base-accent-2));
}
.filter-group #priceValue {
  color: rgb(var(--color-base-accent-1));
}
.products .products-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.products .product-card {
  position: relative;
  background: rgb(var(--color-base-background-1));
  border-radius: var(--card-corner-radius);
  box-shadow: 0 4px 8px rgba(0, 0, 0, var(--card-shadow-opacity));
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.products .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.products .product-img {
  position: relative;
  overflow: hidden;
  border-radius: var(--card-corner-radius);
  box-shadow: 0 4px 8px rgba(0, 0, 0, var(--card-shadow-opacity));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.products .product-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  z-index: 2;
  position: relative;
}

.products .product-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: rgba(var(--color-base-accent-1), 0.4);
  border-top-left-radius: var(--card-corner-radius);
  border-top-right-radius: var(--card-corner-radius);
  transition: height 0.8s ease, background-color 0.5s ease;
  z-index: 1;
}
.products .product-img:hover::before {
  height: 100%;
  background-color: rgba(var(--color-base-accent-1), 0.7);
}

.product-img .product-detail {
  padding: 10px 15px;
  font-size: var(--fs-medium);
  background-color: rgba(var(--color-base-solid-button-labels));
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  z-index: 3;
  position: relative;
  left: 80%;
  overflow: hidden;
  margin-bottom: 20%;
  transition: color 0.3s ease;
}
.product-img .product-detail::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgb(var(--color-base-accent-2)) 0%,
    rgb(var(--color-base-accent-2)) 100%
  );
  transition: top 0.5s ease;
  z-index: 0;
}

.product-img .product-detail:hover::before {
  top: 0;
}
.product-img .product-detail span {
  position: relative;
  z-index: 4;
  display: block;
  text-align: center;
}

.product-img .product-detail:hover span {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
}

.product-info {
  padding: 15px;
  text-align: center;
  position: relative;
  z-index: 3;
}
.product-info h4 {
  margin: 10px 0;
  font-size: var(--fs-medium);
  color: rgb(var(--color-base-accent-3));
}
.product-info .company {
  color: rgb(var(--color-base-accent-1));
  font-size: var(--fs-small);
}
.product-info .price {
  font-size: var(--fs-medium);
  font-weight: bold;
  margin: 10px 0;
  color: rgb(var(--color-base-accent-1));
}
.product-info .rating {
  color: rgb(var(--color-base-accent-2));
  margin: 10px 0;
  border: none;
}
.product-info .quantity {
  margin: 10px 0px;
  color: rgb(var(--color-base-accent-1));
}

.product-info .quantity input {
  width: 60px;
  margin-left: 20px;
  padding: 5px;
  color: rgb(var(--color-base-accent-1));
  border: 1px solid rgb(var(--color-base-accent-2));
  border-radius: 5px;
  outline: none;
  background-color: rgb(var(--color-base-background-1));
}

.product-card .add-cart-btn {
  padding: 10px 15px;
  font-size: var(--fs-medium);
  background-color: rgba(var(--color-base-solid-button-labels));
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  z-index: 3;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
  transition: color 0.3s ease;
}
.product-card .add-cart-btn::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgb(var(--color-base-accent-2)) 0%,
    rgb(var(--color-base-accent-2)) 100%
  );
  transition: top 0.5s ease;
  z-index: 0;
}

.product-card .add-cart-btn:hover::before {
  top: 0;
}
.product-card .add-cart-btn span {
  position: relative;
  z-index: 4;
  display: block;
  text-align: center;
}

.product-card .add-cart-btn:hover span {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 30px 0;
}

.pagination button {
  padding: 8px 14px;
  border: 1px solid rgb(var(--color-base-accent-2));
  background-color: #fff;
  color: rgb(var(--color-base-accent-2));
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.pagination button.active {
  background-color: rgb(var(--color-base-accent-2));
  color: #fff;
  font-weight: bold;
}

.pagination button:hover:not(.active) {
  background-color: rgba(var(--color-base-accent-2), 0.1);
}

/* end product section */

/* start product details */

.product-details {
  padding: 50px 20px;
  background-color: rgb(var(--color-base-background-1));
}
.product-details .container {
  width: 90%;
  max-width: 1200px;
  margin: 30px auto;
}
.details-card {
  display: flex;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, var(--card-shadow-opacity));
}
.details-card img {
  max-width: 500px;
  width: 100%;
  border-radius: 12px;
  margin-right: 30px;
  flex: 1 1 400px;
  transition: transform 0.3s ease;

  border: 1px solid rgb(var(--color-base-accent-2));
}
.details-card img:hover {
  transform: scale(1.05);
}
.details-card .details-info {
  flex: 1;
  padding: 60px 30px;
}
.details-card h2 {
  font-size: var(--fs-xl);
  margin-bottom: 15px;
  color: rgb(var(--color-base-accent-3));
  font-family: var(--font-heading-family);
}
.details-card p {
  font-size: var(--fs-medium);
  margin-bottom: 20px;
  color: rgb(var(--color-base-accent-1));
  line-height: 1.6;
  font-family: var(--font-body-family);
}
.details-info i {
  color: rgb(var(--color-base-accent-2));
  margin-right: 8px;
}
.details-card input[type="number"] {
  width: 70px;
  padding: 5px 10px;
  margin: 10px 0;
  border-radius: 6px;
  border: 1px solid rgb(var(--color-base-accent-2));
  outline: none;
  background-color: rgb(var(--color-base-background-1));
  color: rgb(var(--color-base-accent-1));
  margin: 0 20px;
}
.details-card button {
  background-color: rgba(var(--color-base-solid-button-labels));
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: var(--fs-medium);
  transition: color 0.3s ease;
  position: relative;
  overflow: hidden;
  margin: 20px 40px;
}
.details-card button::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgb(var(--color-base-accent-2)) 0%,
    rgb(var(--color-base-accent-2)) 100%
  );
  transition: top 0.5s ease;
  z-index: 0;
}
.details-card button:hover::before {
  top: 0;
}
.details-card button span {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
}

/* end product details */
/* start Product Tabbed Content  */

.product-tabs {
  padding: 50px 20px;
  color: rgb(var(--color-base-accent-1));
  background-color: rgb(var(--color-base-background-1));
}
.product-tabs .tabs {
  margin: 10px auto;
  text-align: center;
}

.product-tabs .tab-btn {
  background-color: transparent;
  border: 2px solid rgb(var(--color-base-accent-2));
  color: rgb(var(--color-base-accent-2));
  padding: 10px 20px;
  font-size: var(--fs-medium);
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
  margin: 0 5px;
}
.product-tabs .tab-btn.active,
.product-tabs .tab-btn:hover {
  background-color: rgb(var(--color-base-accent-2));
  color: #fff;
}
.product-tabs .tab-panels {
  width: 70%;
  margin: auto;
  border: 1px solid rgb(var(--color-base-accent-2));
  border-radius: 10px;
  padding: 20px 30px;
}
.product-tabs .tab-panel {
  /* display: none; */
  animation: fade 180ms ease;
  line-height: 1.6;
  color: rgb(var(--color-base-accent-1));
}
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-tabs .tab-panel.active {
  display: block;
}

.product-tabs .tab-panel p {
  font-size: var(--fs-small);
  color: rgb(var(--color-base-accent-1));
  line-height: 1.9;
  margin-bottom: 20px;
  font-family: var(--font-body-family);
}
.product-tabs .tab-panel h4 {
  font-size: var(--fs-medium);
  color: rgb(var(--color-base-accent-2));
  font-family: var(--font-heading-family);
  margin-bottom: 20px;
}
.product-tabs .tab-panel ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}
.product-tabs .tab-panel ol {
  margin-left: 20px;
  margin-bottom: 20px;
}
.product-tabs .tab-panel li {
  margin-bottom: 10px;
  font-size: var(--fs-small);
  color: rgb(var(--color-base-accent-1));
  line-height: 1.6;
}
.product-tabs .tab-panel .reviews-list {
  margin-bottom: 18px;
}
.product-tabs .tab-panel .review {
  padding: 12px;
  border-bottom: 1px dashed rgb(var(--color-base-accent-2));
}
.product-tabs .tab-panel .review strong {
  display: block;
  margin-bottom: 6px;
  color: rgb(var(--color-base-accent-2));
}
.product-tabs .tab-panel .review .rating {
  color: rgb(var(--color-base-accent-2));
}
.product-tabs .tab-panel .review-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 640px;
}
.product-tabs .tab-panel .review-form input,
.product-tabs .tab-panel .review-form textarea,
.product-tabs .tab-panel .review-form select {
  padding: 8px 10px;
  border: 1px solid rgb(var(--color-base-accent-2));
  border-radius: 6px;
  font-size: var(--fs-small);
  color: rgb(var(--color-base-accent-1));
  background-color: rgb(var(--color-base-background-1));
}
.product-tabs .tab-panel .btn-submit {
  width: fit-content;
  padding: 10px 16px;
  background: rgba(var(--color-base-solid-button-labels));
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: var(--fs-medium);
  transition: color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.product-tabs .tab-panel .btn-submit::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgb(var(--color-base-accent-2)) 0%,
    rgb(var(--color-base-accent-2)) 100%
  );
  transition: top 0.5s ease;
  z-index: 0;
}
.product-tabs .tab-panel .btn-submit:hover::before {
  top: 0;
}
.product-tabs .tab-panel .btn-submit span {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
}
.product-tabs .tab-panel .btn-submit:hover span {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
}

/* end Product Tabbed Content  */
/* start cart sidebar */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  background-color: rgb(var(--color-base-background-1));
  box-shadow: -2px 0 5px rgba(0, 0, 0, var(--card-shadow-opacity));
  transition: right 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}
.cart-sidebar.open {
  right: 0;
}
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgb(var(--color-base-accent-2));
}
.cart-header h3 {
  font-size: var(--fs-large);
  color: rgb(var(--color-base-accent-3));
  font-family: var(--font-heading-family);
}
.cart-header #close-cart {
  background: none;
  border: none;
  font-size: var(--fs-xl);
  cursor: pointer;
  color: rgb(var(--color-base-accent-2));
}
.cart-header #close-cart:hover {
  color: rgb(var(--color-base-accent-3));
}
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  border-bottom: 1px solid rgb(var(--color-base-accent-2));
  padding-bottom: 10px;
}
.cart-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 10px;
}
.cart-item-details {
  flex: 1;
}
.cart-item-details h4 {
  font-size: var(--fs-medium);
  color: rgb(var(--color-base-accent-3));
  margin-bottom: 5px;
}
.cart-item-details p {
  font-size: var(--fs-small);
  color: rgb(var(--color-base-accent-1));
}
.cart-item .remove-btn {
  background: none;
  border: none;
  color: rgb(var(--color-base-accent-2));
  cursor: pointer;
  font-size: var(--fs-large);
}
.cart-footer {
  padding: 20px;
  border-top: 1px solid rgb(var(--color-base-accent-2));
}
.cart-footer h4 {
  font-size: var(--fs-medium);
  color: rgb(var(--color-base-accent-3));
  margin-bottom: 10px;
}
.cart-footer p {
  font-size: var(--fs-medium);
  color: rgb(var(--color-base-accent-1));
  margin-bottom: 20px;
}
.cart-item-details .actions {
  display: flex;
  justify-content: space-between;
}
.cart-item-details .actions button {
  background-color: rgba(var(--color-base-solid-button-labels));
  color: #fff;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: var(--fs-small);
  transition: color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.cart-item-details .actions button::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgb(var(--color-base-accent-2)) 0%,
    rgb(var(--color-base-accent-2)) 100%
  );
  transition: top 0.5s ease;
  z-index: 0;
}
.cart-item-details .actions button:hover::before {
  top: 0;
}
.cart-item-details .actions button span {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
}
.cart-item-details .actions button:hover span {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
}

.cart-footer #go-to-cart {
  width: 100%;
  padding: 15px;
  background-color: rgba(var(--color-base-solid-button-labels));
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: var(--fs-medium);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
}
.cart-footer #go-to-cart::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgb(var(--color-base-accent-2)) 0%,
    rgb(var(--color-base-accent-2)) 100%
  );
  transition: top 0.5s ease;
  z-index: 0;
}
.cart-footer #go-to-cart:hover::before {
  top: 0;
}
.cart-footer #go-to-cart span {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
}
.cart-footer #go-to-cart:hover span {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
}

/* end cart sidebar */
/* start cart page */

.cart-page {
  padding: 50px 20px;
  background-color: rgb(var(--color-base-background-1));
}
.cart-page p {
  font-size: var(--fs-medium);
  color: rgb(var(--color-base-accent-1));
}
.cart-item input[type="number"] {
  width: 60px;
  padding: 5px;
  margin-left: 20px;
  border-radius: 5px;
  border: 1px solid rgb(var(--color-base-accent-2));
  outline: none;
  background-color: rgb(var(--color-base-background-1));
  color: rgb(var(--color-base-accent-1));
}
.cart-page .container {
  width: 80%;
  margin: 30px auto;
}
.cart-page h2 {
  margin-bottom: 40px;
  color: rgb(var(--color-base-accent-3));
  font-size: var(--fs-xl);
  font-family: var(--font-heading-family);
}
.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}
.cart-table th,
.cart-table td {
  border: 1px solid rgb(var(--color-base-accent-2));
  padding: 12px;
  text-align: center;
}
.cart-table th {
  background-color: rgb(var(--color-base-accent-2));
  color: #fff;
}
.cart-table td img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}
.cart-table td h4 {
  font-size: var(--fs-medium);
  color: rgb(var(--color-base-accent-3));
  margin-bottom: 5px;
}
.cart-table td p {
  font-size: var(--fs-small);
  color: rgb(var(--color-base-accent-1));
  text-align: left;
}
.remove-btn {
  background: none;
  border: none;
  color: rgb(var(--color-base-accent-2));
  cursor: pointer;
  font-size: var(--fs-large);
  margin-left: 50px;
  margin-right: 20px;
}

.cart-summary {
  text-align: center;
  margin: 40px auto;
  color: rgb(var(--color-base-accent-2));
  font-size: var(--fs-large);
}

.cart-summary h4 {
  font-size: var(--fs-medium);
  color: rgb(var(--color-base-accent-3));
  margin-bottom: 10px;
}

.cart-summary p {
  font-size: var(--fs-medium);
  color: rgb(var(--color-base-accent-1));
  margin-bottom: 20px;
}
.cart-summary #checkout-btn {
  padding: 15px 30px;
  background-color: rgba(var(--color-base-solid-button-labels));
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: var(--fs-medium);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
}
.cart-summary #checkout-btn::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgb(var(--color-base-accent-2)) 0%,
    rgb(var(--color-base-accent-2)) 100%
  );
  transition: top 0.5s ease;
  z-index: 0;
}

.cart-summary #checkout-btn:hover::before {
  top: 0;
}
.cart-summary #checkout-btn span {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
}
.cart-summary #checkout-btn:hover span {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
}

/* end cart page */
/* start contact page */

.contact-page {
  padding: 50px 20px;
  background-color: rgb(var(--color-base-background-1));
}

.contact-page h2 {
  text-align: center;
  font-size: var(--fs-xl);
  margin-bottom: 30px;
  color: rgb(var(--color-base-accent-3));
  font-family: var(--font-heading-family);
}
.contact-page .container {
  flex-direction: column;
}
.map-container {
  width: 100%;
  height: 350px;
  margin-bottom: 40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-content {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
}

.contact-form {
  flex: 1;
  width: 70%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid rgb(var(--color-base-accent-2));
  border-radius: 8px;
  font-size: var(--fs-medium);
  font-family: var(--font-body-family);
  color: rgb(var(--color-base-accent-1));
  background-color: rgb(var(--color-base-background-1));
}

.contact-form button {
  padding: 15px;
  border: none;
  border-radius: 8px;
  background-color: rgba(var(--color-base-solid-button-labels));
  color: #fff;
  font-size: var(--fs-medium);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  width: fit-content;
}

.contact-form button::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgb(var(--color-base-accent-2)) 0%,
    rgb(var(--color-base-accent-2)) 100%
  );
  transition: top 0.4s ease;
  z-index: 0;
}

.contact-form button:hover::before {
  top: 0;
}

.contact-form button span {
  position: relative;
  z-index: 1;
}

.contact-info {
  flex: 1;
  min-width: 250px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.contact-info .info-item {
  display: flex;
  align-items: center;
  border: 1px solid rgb(var(--color-base-accent-2));
  gap: 15px;
  font-size: var(--fs-medium);
  flex-direction: column;
  padding: 40px;
  color: rgb(var(--color-base-accent-3));
}

.contact-info .info-item:hover {
  border-color: rgb(var(--color-base-accent-3));
  color: rgb(var(--color-base-accent-3));
}

.contact-info .info-item i {
  font-size: var(--fs-large);
  color: rgb(var(--color-base-accent-2));
}

/* end contact page */
/* start about page  */
/* About Section */
.about-page {
  padding: 60px 20px;
  background-color: rgb(var(--color-base-background-1));
  text-align: center;
}
.team-section .container {
  flex-direction: column;
}

.about-page h2 {
  font-size: var(--fs-xl);
  margin-bottom: 20px;
  color: rgb(var(--color-base-accent-3));
  font-family: var(--font-heading-family);
}

.about-intro {
  font-size: var(--fs-medium);
  color: rgb(var(--color-base-accent-1));
  line-height: 1.6;
  max-width: 800px;
  margin: auto;
}

.team-section {
  padding: 60px 20px;
  background-color: rgb(var(--color-base-background-1));
  text-align: center;
}

.team-members {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  color: rgb(var(--color-base-accent-1));
}
.team-section h2 {
  font-size: var(--fs-xl);
  margin-bottom: 20px;
  color: rgb(var(--color-base-accent-3));
  font-family: var(--font-heading-family);
}

.team-intro {
  font-size: var(--fs-medium);
  color: rgb(var(--color-base-accent-1));
  margin-bottom: 50px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.team-member {
  position: relative;
  flex: 1 1 250px;
  max-width: 280px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.team-member img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* overlay links */
.team-member .overlay-links {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-member:hover .overlay-links {
  opacity: 1;
}

.overlay-links .social-links {
  display: flex;
  gap: 15px;
}

.overlay-links .social-links a {
  font-size: var(--fs-medium);
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px;
  border-radius: 50%;
  transition: background 0.3s ease, transform 0.3s ease;
}

.overlay-links .social-links a:hover {
  background: rgb(var(--color-base-accent-2));
  transform: scale(1.2);
}

/* text */
.team-member h4,
.team-member p {
  text-align: center;
  margin-top: 15px;
  position: relative;
  z-index: 5;
}

/* end about page  */
.cart-message {
  position: fixed;
  top: 50px;
  left: 45%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  opacity: 0.95;
  z-index: 1000;
  min-width: 220px;
  text-align: center;
  font-size: var(--fs-medium);
}

.cart-message.success {
  background-color: green;
}

.cart-message.error {
  background-color: red;
}
