@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f5f5;
}

.banner {
  width: 100%;
  height: 100px;
  padding: 1rem 10vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
  z-index: 100;
}
.banner img {
  height: 75%;
  width: auto;
  display: block;
  cursor: pointer;
}
.banner .search {
  display: flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.banner .search:focus-within {
  border-color: rgba(0, 153, 255, 0.829);
  box-shadow: 0 0 0 3px rgba(0, 153, 255, 0.1);
}
.banner .search input {
  border: none;
  padding: 0.5rem 1rem;
  outline: none;
  width: 200px;
}
.banner .search button {
  background-color: rgba(0, 153, 255, 0.829);
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}
.banner .search button img {
  height: 1.2rem;
  width: 1.2rem;
  filter: invert(100%) sepia(100%) grayscale(100%);
}
.banner .userCart {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
}
.banner .userCart .user,
.banner .userCart .cart {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.6rem;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.15s ease-in-out;
  color: rgba(0, 0, 0, 0.7);
}
.banner .userCart .user img,
.banner .userCart .cart img {
  height: 1.3rem;
  width: 1.3rem;
  opacity: 0.85;
  transition: 0.2s cubic-bezier(0.2, 0, 0, 1);
}
.banner .userCart .user:hover,
.banner .userCart .cart:hover {
  background-color: rgba(0, 153, 255, 0.08);
  color: rgba(0, 153, 255, 0.829);
}
.banner .userCart .user:hover img,
.banner .userCart .cart:hover img {
  filter: invert(31%) sepia(93%) saturate(2872%) hue-rotate(196deg);
  transform: scale(1.15);
}
.banner .userCart p {
  font-weight: 500;
  white-space: nowrap;
}

nav {
  width: 100vw;
  height: 50px;
  font-size: 1rem;
  border-radius: 5px;
  position: sticky;
  top: 0;
  z-index: 5;
}
nav .navItems {
  background: linear-gradient(125deg, rgba(0, 40, 120, 0.95), rgba(0, 90, 200, 0.95));
  display: flex;
  align-items: center;
  color: white;
  position: relative;
}
nav .navItems .navBtn {
  padding: 1rem 2rem;
  transition: 0.15s ease-in-out;
  cursor: pointer;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
nav .navItems .navBtn.last {
  margin-left: auto;
  margin-right: 10vw;
  background-color: rgba(0, 153, 255, 0.829);
  padding: 1rem 1rem;
}
nav .navItems .navBtn.last img {
  height: 1.2rem;
  width: 1.2rem;
  filter: invert(100%);
  margin-right: 0.5rem;
}
nav .navItems .navBtn .subMenu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  color: rgba(0, 0, 0, 0.7);
  min-width: 150px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
}
nav .navItems .navBtn .subMenu .subMenuItem {
  padding: 0.8rem 1rem;
  transition: 0.15s ease-in-out;
  text-wrap: nowrap;
}
nav .navItems .navBtn .subMenu .subMenuItem:hover {
  background-color: rgba(0, 153, 255, 0.829);
  color: white;
}
nav .navItems .navBtn.active {
  background-color: rgba(255, 255, 255, 0.1);
}
nav .navItems .navBtn.active .subMenu {
  display: flex;
}
nav .menuTrigger {
  display: flex;
  align-items: center;
  background-color: rgba(0, 153, 255, 0.829);
  padding: 1rem;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  width: 250px;
  margin-left: 10vw;
  cursor: pointer;
}
nav .menuTrigger .hamburger {
  height: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
nav .menuTrigger .hamburger .line {
  width: 1.2rem;
  height: 2px;
  background-color: white;
}
nav .menuTrigger p {
  margin-left: 0.5rem;
  color: white;
  font-weight: 600;
}
@keyframes fromLeft {
  from {
    opacity: 0;
    transform: translateX(-1rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
nav ul {
  list-style: none;
  margin-left: 10vw;
  width: 250px;
  background-color: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  z-index: 50;
  position: relative;
  text-transform: capitalize;
}
nav ul .subCat {
  display: none;
}
nav ul li {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1rem;
  position: static !important;
}
nav ul li a {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: inherit;
  width: 100%;
}
nav ul li a::after {
  content: "›";
  margin-left: auto;
  transition: transform 0.2s;
}
nav ul li a:hover {
  background-color: rgba(0, 153, 255, 0.829);
  color: white;
}
nav ul li.active {
  background-color: rgba(0, 153, 255, 0.829);
  color: white;
  cursor: pointer;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
}
nav ul li.active a::after {
  transform: rotate(90deg);
}
nav ul li.active img {
  filter: invert(100%) sepia(100%) grayscale(100%);
}
nav ul .subCat {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 250px;
  min-width: 250px;
  background-color: white;
  align-items: flex-start;
  justify-content: flex-start;
  animation: fromLeft 0.3s ease-in-out;
  z-index: 49;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  border-left: 2px solid rgba(0, 153, 255, 0.829);
}
nav ul .subCat a {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: inherit;
  width: 100%;
}
nav ul .subCat a:hover {
  background-color: rgba(0, 153, 255, 0.829);
  color: white;
}
nav ul .subCat.active {
  display: flex;
}

#products {
  position: relative;
  left: calc(10vw + 250px);
  width: calc(80vw - 250px);
  display: flex;
  flex-direction: column;
}
#products .siteMap {
  padding: 0.5rem 2rem;
  margin-top: 1rem;
  opacity: 0.7;
}
#products .cardContainer {
  position: relative;
  width: 100%;
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 1rem;
}
#products .productCard {
  background: #fff;
  border-radius: 10px;
  padding: 1rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04), 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.4s cubic-bezier(0.2, 0, 0, 1);
  cursor: pointer;
}
#products .productCard:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}
#products .productCard img {
  width: 100%;
  height: 180px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 10px;
}
#products .productCard .textContainer {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
#products .productCard .cardName {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  color: #222;
  display: -webkit-box;
  overflow: hidden;
  min-height: 40px;
}
#products .productCard .stock {
  font-size: 13px;
  font-weight: 500;
}
#products .productCard .inStoc {
  color: #1a7f37;
}
#products .productCard .limitedStock {
  color: #d97706;
}
#products .productCard .outOfStock {
  color: #d11a2a;
}
#products .productCard .prodPrice {
  margin-top: 6px;
  font-size: 20px;
  font-weight: 700;
  color: #000;
}
#products .productCard .prodPrice .price {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-right: 2px;
}
#products .productCard .prodPrice .decimal {
  font-size: 16px;
  font-weight: 600;
  vertical-align: top;
  position: relative;
  top: 2px;
  letter-spacing: -0.5px;
}
#products .productCard .prodPrice::after {
  content: " lei";
  font-size: 14px;
  font-weight: 500;
  color: #555;
}
#products .productCard .buyBtn {
  margin-top: 10px;
  padding: 10px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  background: rgba(0, 153, 255, 0.829);
  color: white;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}
#products .productCard .buyBtn:hover {
  background: #0b5ed7;
}
#products .productCard .buyBtn:active {
  transform: scale(0.97);
}
#products .productCard .addToCartBtn {
  margin-top: 8px;
  padding: 10px;
  border: 1px solid rgba(0, 153, 255, 0.829);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  background: white;
  color: rgba(0, 153, 255, 0.829);
  cursor: pointer;
  transition: all 0.2s ease;
}
#products .productCard .addToCartBtn:hover {
  background: rgba(0, 153, 255, 0.829);
  color: white;
}
#products .productCard .addToCartBtn:active {
  transform: scale(0.97);
}

.heroContainer {
  position: relative;
  height: 60vh;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  left: 0;
  width: calc(80vw - 250px);
}
.heroContainer .slidesWrapper {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease-in-out;
}
.heroContainer .slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.heroContainer .slide.active img {
  transform: scale(1.1);
}
.heroContainer img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  transition: transform 6s linear;
}
.heroContainer .slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.15));
  z-index: 1;
}
.heroContainer .slideContent {
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 600px;
  filter: drop-shadow(0 0 10px black);
}
.heroContainer .slideContent h1,
.heroContainer .slideContent p,
.heroContainer .slideContent button {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.heroContainer .slide.active .slideContent h1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}
.heroContainer .slide.active .slideContent p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}
.heroContainer .slide.active .slideContent button {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}
.heroContainer h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.6rem;
}
.heroContainer p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: 1.2rem;
}
.heroContainer button {
  background-color: rgba(0, 153, 255, 0.829);
  border: none;
  color: white;
  padding: 0.9rem 1.6rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.15s ease;
}
.heroContainer button:hover {
  transform: translateY(-1px);
  filter: brightness(1.1);
}
.heroContainer .heroProgress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
}
.heroContainer .heroProgress .bar {
  width: 0%;
  height: 100%;
  background: rgba(0, 153, 255, 0.829);
  transition: width linear;
}
.heroContainer .heroBullets {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.heroContainer .heroBullets div {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}
.heroContainer .heroBullets div.active {
  background: rgba(0, 153, 255, 0.829);
  transform: scale(1.2);
}
.heroContainer .heroBullets div:hover {
  transform: scale(1.1);
}

section {
  margin-left: calc(10vw + 250px);
  width: calc(80vw - 250px);
  padding: 2rem;
}
section.heroContainer {
  padding: 0;
}
section h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: rgba(0, 0, 0, 0.7);
  position: relative;
  margin-bottom: 2rem;
}
section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: rgba(0, 153, 255, 0.829);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

@keyframes fromBottom {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
#services {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
#services .cardsContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  position: relative;
}
#services .cardsContainer .card {
  animation: fromBottom 0.5s ease forwards;
  flex: 1 1 calc((100% - 3rem) / 3);
  background-color: white;
  padding: 1.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: 0.3s;
  cursor: pointer;
}
#services .cardsContainer .card .cardText {
  align-items: center;
  text-align: center;
  color: rgba(0, 0, 0, 0.7);
  margin-top: 1rem;
}
#services .cardsContainer .card .cardText h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}
#services .cardsContainer .card .cardText p {
  color: rgba(0, 0, 0, 0.7);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}
#services .cardsContainer .card img {
  width: 50%;
  margin-bottom: 1rem;
  transition: 0.3s;
}
#services .cardsContainer .card button {
  background-color: rgba(0, 153, 255, 0.829);
  border: none;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.15s ease;
}
#services .cardsContainer .card button:hover {
  transform: translateY(-1px);
  filter: brightness(1.1);
}
#services .cardsContainer .card .cardDetails {
  display: none;
}
#services .cardsContainer .card:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}
#services .cardsContainer .card:hover img {
  transform: scale(1.05);
}
#services .cardsContainer .card.active {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}
#services .cardsContainer .card.active img, #services .cardsContainer .card.active .cardText {
  width: 33%;
  align-self: flex-start;
}
#services .cardsContainer .card.active img {
  width: 33%;
  aspect-ratio: 1/0.9;
}
#services .cardsContainer .card.active .cardDetails {
  position: absolute;
  top: 0;
  left: calc(33% + 3rem);
  width: calc(67% - 3rem);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 3rem;
}
#services .cardsContainer .card.active .cardDetails p {
  padding: 0.6rem 0;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.7);
  max-width: 900px;
}
#services .cardsContainer .card.active .cardDetails p.title {
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(0, 153, 255, 0.829);
  margin-bottom: 0.8rem;
  text-align: left;
  align-self: flex-start;
}
#services .cardsContainer .card.active .cardDetails p:last-child {
  font-weight: 600;
  color: #fff;
}

#gallery {
  display: flex;
  flex-direction: column;
}
#gallery .galleryContainer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}
#gallery .galleryContainer img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
  animation: fromBottom 0.5s ease forwards;
  transition: 0.3s;
}
#gallery .galleryContainer img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

#contact {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
#contact h2 {
  font-size: 2.2rem;
  font-weight: 700;
}
#contact .contactGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}
#contact .contactInfo {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: rgba(0, 0, 0, 0.7);
  animation: fromBottom 0.3s ease-in-out;
}
#contact .contactInfo .title {
  font-size: 1.4rem;
  font-weight: 600;
}
#contact .contactInfo .cta {
  font-size: 1.05rem;
  line-height: 1.6;
}
#contact .contactInfo .contactDetails {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  opacity: 0.9;
}
#contact .contactInfo .contactDetails p {
  display: flex;
  align-items: center;
}
#contact .contactInfo .contactDetails p img {
  height: 1.4rem;
  width: auto;
  margin-right: 0.5rem;
}
#contact .contactInfo .map {
  margin-top: 1rem;
  border-radius: 0.8rem;
  overflow: hidden;
  height: 220px;
}
#contact .contactInfo .map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
#contact .contactForm {
  background: white;
  padding: 2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  animation: fromBottom 0.3s ease-in-out;
}
#contact .contactForm form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
#contact .contactForm .inputGroup {
  position: relative;
}
#contact .contactForm .inputGroup input, #contact .contactForm .inputGroup textarea {
  width: 100%;
  padding: 1.5rem 1rem 0.6rem;
  border-radius: 0.6rem;
  border: 1px solid #ddd;
  font-size: 1rem;
  background: transparent;
  outline: none;
}
#contact .contactForm .inputGroup input:hover, #contact .contactForm .inputGroup textarea:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}
#contact .contactForm .inputGroup input:focus, #contact .contactForm .inputGroup textarea:focus {
  border-color: rgba(0, 153, 255, 0.829);
}
#contact .contactForm .inputGroup input.hasValue + label,
#contact .contactForm .inputGroup textarea.hasValue + label,
#contact .contactForm .inputGroup input:focus + label,
#contact .contactForm .inputGroup textarea:focus + label {
  top: -0.5rem;
  font-size: 0.75rem;
  color: rgba(0, 153, 255, 0.829);
}
#contact .contactForm .inputGroup label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  font-size: 0.95rem;
  color: #777;
  pointer-events: none;
  transition: 0.2s ease;
  background: white;
  padding: 0 0.25rem;
}
#contact .contactForm button {
  padding: 1rem;
  background: rgba(0, 153, 255, 0.829);
  border: none;
  border-radius: 0.6rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.15s ease;
  color: white;
}
#contact .contactForm button:hover {
  background: rgba(147, 212, 255, 0.95);
}

.gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.gallery-lightbox img {
  max-width: 90%;
  max-height: 90%;
  cursor: pointer;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.2));
}
.gallery-lightbox button {
  position: absolute;
  font-size: 2rem;
  background: rgba(0, 153, 255, 0.829);
  border: none;
  color: white;
  padding: 0.5rem 1rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.2));
}
.gallery-lightbox button:hover {
  background: rgba(147, 212, 255, 0.95);
}
.gallery-lightbox .gallery-prev {
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
}
.gallery-lightbox .gallery-next {
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}
.gallery-lightbox .gallery-close {
  top: 1rem;
  right: 1rem;
  font-size: 2.5rem;
  padding: 0.2rem 0.5rem;
}

@keyframes fromExtremeRight {
  from {
    right: -100%;
  }
  to {
    right: 0;
  }
}
#social {
  position: fixed;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  background-color: white;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
  padding: 1rem;
  gap: 1rem;
  animation: fromExtremeRight 0.3s ease-in-out;
}
#social a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
}
#social a img {
  height: 1.7rem;
  margin-right: 0.5rem;
}

#mobileDrawer {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  z-index: 999;
  visibility: hidden;
}

#mobileBackdrop {
  display: none;
}

.mainContentWrapper {
  display: flex;
}

.contentArea {
  flex: 1;
  min-width: 0;
}

@keyframes badgePop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.4);
  }
  100% {
    transform: scale(1);
  }
}
.cartIconWrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.cartIconWrapper .cartBadge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: rgba(0, 153, 255, 0.829);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 10px;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.cartIconWrapper .cartBadge.pop {
  animation: badgePop 0.3s ease-out;
}

#cartSection .cartContainer {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  align-items: flex-start;
}
#cartSection .cartItemsList {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
}
#cartSection .cartItemsList .emptyCartSection {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 5rem;
}
#cartSection .cartItemsList .emptyCartSection button {
  margin-top: 1rem;
  font-size: 1.3rem;
  background: rgba(0, 153, 255, 0.829);
  border: none;
  color: white;
  padding: 0.5rem 1rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.2));
}
#cartSection .cartItemsList .emptyCartSection button:hover {
  background: rgba(147, 212, 255, 0.95);
}
#cartSection .cartItemsList .cartSectionItem {
  display: flex;
  align-items: center;
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  gap: 1.5rem;
}
#cartSection .cartItemsList .cartSectionItem img {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
#cartSection .cartItemsList .cartSectionItem .itemInfo {
  flex: 1;
}
#cartSection .cartItemsList .cartSectionItem .itemInfo h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: #222;
}
#cartSection .cartItemsList .cartSectionItem .itemInfo .unitPrice {
  font-weight: 500;
  color: #777;
  font-size: 0.9rem;
}
#cartSection .cartItemsList .cartSectionItem .itemActions {
  display: flex;
  align-items: center;
  gap: 2rem;
}
#cartSection .cartItemsList .cartSectionItem .itemActions .qtySelector {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}
#cartSection .cartItemsList .cartSectionItem .itemActions .qtySelector button {
  background: #eee;
  border: none;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-weight: bold;
}
#cartSection .cartItemsList .cartSectionItem .itemActions .qtySelector button:hover {
  background: #ddd;
}
#cartSection .cartItemsList .cartSectionItem .itemActions .qtySelector input {
  width: 40px;
  text-align: center;
  font-weight: 600;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  outline: none;
  -moz-appearance: textfield;
}
#cartSection .cartItemsList .cartSectionItem .itemActions .qtySelector input::-webkit-outer-spin-button, #cartSection .cartItemsList .cartSectionItem .itemActions .qtySelector input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#cartSection .cartItemsList .cartSectionItem .itemActions .itemSubtotal {
  font-weight: 700;
  color: rgba(0, 153, 255, 0.829);
  min-width: 100px;
  text-align: right;
  font-size: 1.1rem;
}
#cartSection .cartItemsList .cartSectionItem .itemActions .removeBtn {
  background: none;
  border: none;
  color: #d11a2a;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
}
#cartSection .cartItemsList .cartSectionItem .itemActions .removeBtn:hover {
  text-decoration: underline;
}
#cartSection .cartSummary {
  flex: 1;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 70px;
}
#cartSection .cartSummary h3 {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
}
#cartSection .cartSummary .summaryRow {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
#cartSection .cartSummary .summaryRow.total {
  font-weight: 800;
  font-size: 1.4rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 2px solid #eee;
  color: #000;
}
#cartSection .cartSummary .cartNote {
  font-size: 0.85rem;
  color: #777;
  margin: 1.5rem 0;
  font-style: italic;
}
#cartSection .cartSummary .cartSectionActions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
#cartSection .cartSummary .cartSectionActions button {
  padding: 1rem;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}
#cartSection .cartSummary .cartSectionActions button.checkoutBtn {
  background: rgba(0, 153, 255, 0.829);
  color: white;
  font-size: 1.1rem;
}
#cartSection .cartSummary .cartSectionActions button.checkoutBtn:hover {
  background: rgba(147, 212, 255, 0.95);
}
#cartSection .cartSummary .cartSectionActions button.clearBtn {
  background: #f8f8f8;
  color: #777;
  border: 1px solid #ddd;
}
#cartSection .cartSummary .cartSectionActions button.clearBtn:hover {
  background: #eee;
  color: #333;
}

@media (max-width: 1200px) {
  .banner {
    height: 80px;
    padding: 0.5rem 5vw;
  }
  .banner img {
    height: 65%;
  }
  .banner .search input {
    width: 150px;
  }
  nav .navItems .navBtn {
    padding: 1rem;
    font-size: 0.95rem;
  }
  nav .navItems .navBtn.last {
    margin-right: 0;
  }
  nav .menuTrigger {
    width: 200px;
    margin-left: 0;
  }
  nav .menuTrigger p {
    font-size: 0.9rem;
  }
  nav .menuTrigger .hamburger {
    height: 0.95rem;
  }
  nav .menuTrigger .hamburger .line {
    width: 1rem;
  }
  nav ul {
    margin-left: 0;
    width: 250px;
  }
  nav ul li a {
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
  }
  nav ul .subCat a {
    font-size: 0.95rem;
  }
  .heroContainer {
    left: 250px;
    width: calc(100vw - 250px);
  }
  #products {
    left: 250px;
    width: calc(100vw - 250px);
  }
  #products .cardContainer {
    grid-template-columns: repeat(3, 1fr);
  }
  #products .productCard .prodPrice {
    margin-top: 4px;
  }
  #products .productCard .prodPrice .price {
    font-size: 22px;
  }
  #products .productCard .prodPrice .decimal {
    font-size: 14px;
  }
  section {
    margin-left: 250px;
    width: calc(100vw - 250px);
  }
  section.heroContainer {
    margin-left: 0;
  }
}
@media (max-width: 900px) {
  .banner {
    padding: 1rem;
    justify-content: space-between;
  }
  .banner .search {
    display: none;
  }
  .banner .userCart {
    gap: 0.5rem;
  }
  .banner .userCart .user, .banner .userCart .cart {
    padding: 0.4rem 0.5rem;
  }
  .banner .userCart .user img, .banner .userCart .cart img {
    height: 1rem;
    width: 1rem;
  }
  .banner .userCart p {
    display: none;
  }
  #contact .contactGrid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  nav {
    height: 0;
  }
  nav .menu {
    position: absolute;
    top: 0;
    left: 0;
  }
  nav .navItems {
    flex-wrap: wrap;
  }
  nav .navItems .navBtn {
    display: none;
  }
  nav .navItems .navBtn.last {
    display: flex;
    margin-left: auto;
    margin-right: 0;
  }
  nav .menuTrigger {
    width: auto;
    flex: 1;
    margin-left: 0;
    padding: 1rem 1rem;
  }
  nav ul {
    width: 50%;
    margin-left: 0;
    transform: translateX(-100%);
  }
  nav ul li:hover .subCat {
    position: static;
    left: auto;
    top: auto;
    animation: none;
    box-shadow: none;
  }
  nav ul li:hover .subCat a {
    padding-left: 2rem;
  }
  section {
    margin-left: 0 !important;
    width: 100% !important;
    padding: 1.5rem 1rem;
  }
  .heroContainer {
    left: 0 !important;
    width: 100% !important;
    height: 75vh;
  }
  .heroContainer .slideContent {
    left: 0;
    padding: 1.5rem;
    max-width: 100%;
  }
  .heroContainer h1 {
    font-size: 1.6rem;
  }
  .heroContainer p {
    font-size: 0.9rem;
  }
  #products {
    left: 0 !important;
    width: 100% !important;
    margin-top: 4rem;
  }
  #products .cardContainer {
    grid-template-columns: repeat(2, 1fr);
  }
  #services .cardsContainer .card {
    flex: 1 1 calc(50% - 0.75rem);
  }
  #services .cardsContainer .card.active {
    position: relative;
    flex-direction: column;
  }
  #services .cardsContainer .card.active img, #services .cardsContainer .card.active .cardText {
    width: 100%;
    align-self: center;
  }
  #services .cardsContainer .card.active img {
    aspect-ratio: auto;
  }
  #services .cardsContainer .card.active .cardDetails {
    position: static;
    left: auto;
    width: 100%;
    padding: 1.5rem 1rem;
  }
}
@media (max-width: 600px) {
  nav ul li a {
    padding: 0.8rem;
    font-size: 0.95rem;
  }
  .menuTrigger p {
    font-size: 0.9rem;
  }
  #products .cardContainer {
    grid-template-columns: 1fr;
    margin-left: 0 !important;
  }
  #services .cardsContainer .card {
    flex: 1 1 100%;
  }
  #social {
    padding: 0.6rem;
    gap: 0.6rem;
  }
  #social a {
    font-size: 0;
  }
  #social a img {
    height: 1.5rem;
    margin-right: 0;
  }
  #contact .contactInfo {
    padding: 1rem 0;
  }
  #contact .contactForm {
    padding: 1.2rem;
  }
}
@media (max-width: 480px) {
  nav .navItems .navBtn.last {
    margin-right: auto;
  }
  nav #menu {
    width: 50vw;
    transform: translateX(-100%);
    transition: 0.3s;
  }
  nav #menu.active {
    transform: translateX(0);
  }
  nav #menu .subCat {
    left: 50vw;
  }
  .banner {
    height: 60px;
    padding: 0.5rem 0.8rem;
  }
  .banner img {
    height: 60%;
  }
  #contact h2 {
    font-size: 1.6rem;
  }
}
/* =================================== */
/* Account Section & Modals (SCSS)     */
/* =================================== */
.hidden {
  display: none !important;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.modal.active {
  opacity: 1;
  visibility: visible;
}
.modal.active .modalContent {
  animation: modalSlideUp 0.3s ease-out forwards;
}

.modalContent {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

@keyframes modalSlideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.closeModal {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  cursor: pointer;
  color: #777;
  transition: 0.2s;
}
.closeModal:hover {
  color: #333;
}

.checkoutInfo {
  background: #f0f9ff;
  border-left: 4px solid rgba(0, 153, 255, 0.829);
  padding: 1rem;
  margin-bottom: 2rem;
  border-radius: 0 4px 4px 0;
}
.checkoutInfo p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.checkoutInfo p:last-child {
  margin-bottom: 0;
}

#checkoutForm {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
#checkoutForm .inputGroup {
  position: relative;
}
#checkoutForm .inputGroup input {
  width: 100%;
  padding: 1.2rem 1rem 0.5rem;
  border: 1.5px solid #eee;
  border-radius: 8px;
  font-size: 1rem;
  background: #fcfcfc;
  outline: none;
  transition: all 0.2s ease;
  color: #333;
}
#checkoutForm .inputGroup input:hover {
  border-color: #ddd;
}
#checkoutForm .inputGroup input:focus {
  border-color: rgba(0, 153, 255, 0.829);
  background: white;
  box-shadow: 0 0 0 4px rgba(0, 153, 255, 0.1);
}
#checkoutForm .inputGroup label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  font-size: 1rem;
  color: #999;
  pointer-events: none;
  transition: all 0.2s cubic-bezier(0.2, 0, 0, 1);
  background: transparent;
}
#checkoutForm .inputGroup input:focus + label,
#checkoutForm .inputGroup input.hasValue + label {
  top: 0.4rem;
  left: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(0, 153, 255, 0.829);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.confirmBtn {
  background: rgba(0, 153, 255, 0.829);
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
  margin-top: 0.5rem;
}
.confirmBtn:hover {
  background: #0b5ed7;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 153, 255, 0.3);
}

#accountSection {
  align-items: center;
  min-height: 60vh;
}

.authWrapper {
  background: white;
  width: 100%;
  max-width: 450px;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-top: 2rem;
}

.authTabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid #eee;
}
.authTabs button {
  flex: 1;
  padding: 1rem;
  border: none;
  background: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: #777;
  cursor: pointer;
  transition: 0.2s;
}
.authTabs button.active {
  color: rgba(0, 153, 255, 0.829);
  border-bottom: 2px solid rgba(0, 153, 255, 0.829);
  margin-bottom: -2px;
}

.authForm h2 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  text-align: left;
}
.authForm h2::after {
  margin-left: 0;
}
.authForm .authMessage {
  padding: 0.8rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  display: none;
}
.authForm .authMessage.visible {
  display: block;
}
.authForm .authMessage.error {
  background: #fff5f6;
  color: #d11a2a;
  border: 1px solid #ffcfd4;
}
.authForm .authMessage.success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}
.authForm .inputGroup {
  position: relative;
  margin-bottom: 1.5rem;
}
.authForm .inputGroup input {
  width: 100%;
  padding: 1.2rem 1rem 0.5rem;
  border: 1.5px solid #eee;
  border-radius: 8px;
  font-size: 1rem;
  background: #fcfcfc;
  outline: none;
  transition: all 0.2s ease;
  color: #333;
}
.authForm .inputGroup input:hover {
  border-color: #ddd;
}
.authForm .inputGroup input:focus {
  border-color: rgba(0, 153, 255, 0.829);
  background: white;
  box-shadow: 0 0 0 4px rgba(0, 153, 255, 0.1);
}
.authForm .inputGroup label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  font-size: 1rem;
  color: #999;
  pointer-events: none;
  transition: all 0.2s cubic-bezier(0.2, 0, 0, 1);
  background: transparent;
}
.authForm .inputGroup input:focus + label,
.authForm .inputGroup input.hasValue + label {
  top: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(0, 153, 255, 0.829);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.authForm button {
  width: 100%;
  padding: 1rem;
  background: rgba(0, 153, 255, 0.829);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 153, 255, 0.2);
}
.authForm button:hover {
  background: #0b5ed7;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 153, 255, 0.3);
}
.authForm button:active {
  transform: translateY(0);
}

.authSwitch {
  margin-top: 1.5rem;
  text-align: center;
  color: #777;
  font-size: 0.95rem;
}
.authSwitch span {
  color: rgba(0, 153, 255, 0.829);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.authSwitch span:hover {
  color: #0b5ed7;
}

#userAccount {
  width: 100%;
  max-width: 900px;
  margin: 2rem auto;
}

.accountHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  width: 100%;
  background: white;
  padding: 1.5rem 2.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
}
.accountHeader h2 {
  margin-bottom: 0;
  text-align: left;
  font-size: 1.5rem;
  color: #333;
}
.accountHeader h2 span {
  color: rgba(0, 153, 255, 0.829);
  font-weight: 700;
}
.accountHeader h2::after {
  display: none;
}
.accountHeader #logoutBtn {
  background: white;
  color: #d11a2a;
  border: 1.5px solid #ffcfd4;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.accountHeader #logoutBtn:hover {
  background: #fff5f6;
  border-color: #d11a2a;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(209, 26, 42, 0.1);
}
.accountHeader #logoutBtn:active {
  transform: translateY(0);
}

.accountCard {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.accountCard h3 {
  margin-bottom: 1rem;
  color: #333;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
}
.accountCard .ordersList {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
.accountCard .ordersList .orderItem {
  border: 1px solid #eee;
  padding: 1.2rem;
  border-radius: 10px;
  transition: all 0.2s;
}
.accountCard .ordersList .orderItem:hover {
  border-color: rgba(0, 153, 255, 0.829);
  background: #fcfcfc;
  transform: translateX(4px);
}
.accountCard .ordersList .orderItem .orderHeader {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}
.accountCard .ordersList .orderItem .orderHeader .orderId {
  font-weight: 700;
  color: #333;
  font-size: 1.05rem;
}
.accountCard .ordersList .orderItem .orderHeader .orderDate {
  font-size: 0.85rem;
  color: #777;
}
.accountCard .ordersList .orderItem .orderTotal {
  margin-bottom: 0.5rem;
  color: #444;
}
.accountCard .ordersList .orderItem .orderStatus {
  font-size: 0.9rem;
}
.accountCard .ordersList .orderItem .orderStatus .statusBadge {
  background: #fef3c7;
  color: #92400e;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}/*# sourceMappingURL=style.css.map */