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

html {
  scroll-padding-top: 100px;
}

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

#fallbackBanner {
  background-color: #fff5f5;
  border-bottom: 1px solid #feb2b2;
  padding: 0.8rem 1rem;
  position: relative;
  z-index: 30000;
}
#fallbackBanner.hidden {
  display: none;
}
#fallbackBanner .bannerContent {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
#fallbackBanner .bannerContent img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  padding: 0;
  background: transparent;
  filter: none;
}
#fallbackBanner .bannerContent p {
  font-size: 0.9rem;
  color: #c53030;
  line-height: 1.4;
  margin: 0;
  flex: 1;
}
#fallbackBanner .bannerContent p span {
  text-decoration: underline;
  cursor: pointer;
  font-weight: 700;
}
#fallbackBanner .bannerContent p span:hover {
  color: #9b2c2c;
}
#fallbackBanner .bannerContent button {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #c53030;
  cursor: pointer;
  padding: 0 0.5rem;
  line-height: 1;
}
#fallbackBanner .bannerContent button:hover {
  opacity: 0.7;
}

.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;
  position: relative;
  overflow: visible;
}
.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: visible;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
.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 .search .searchResults {
  position: absolute;
  top: 100%;
  right: 0;
  width: 450px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  max-height: 500px;
  overflow-y: auto;
  margin-top: 10px;
}
.banner .search .searchResults::-webkit-scrollbar {
  width: 6px;
}
.banner .search .searchResults::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.banner .search .searchResults::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}
.banner .search .searchResults .searchResultItem {
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: background 0.2s;
  border-bottom: 1px solid #f0f0f0;
}
.banner .search .searchResults .searchResultItem:last-child {
  border-bottom: none;
}
.banner .search .searchResults .searchResultItem:hover {
  background: #f8f9fa;
}
.banner .search .searchResults .searchResultItem img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  background: #fff;
}
.banner .search .searchResults .searchResultItem .resInfo {
  flex: 1;
}
.banner .search .searchResults .searchResultItem .resInfo .resName {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.banner .search .searchResults .searchResultItem .resInfo .resPrice {
  font-size: 0.85rem;
  color: rgba(0, 153, 255, 0.829);
  font-weight: 700;
}
.banner .search .searchResults .searchNoResults, .banner .search .searchResults .searchLoading {
  padding: 15px;
  text-align: center;
  color: #777;
  font-size: 0.9rem;
}
.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 .mobileMenuHeader {
  display: none;
}
nav ul .mobileNavLink {
  display: none;
}
nav ul .menuDivider {
  display: none;
}
nav ul .mobileMenuFooter {
  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));
  position: relative;
}
nav ul li.active a::after {
  transform: rotate(90deg);
}
nav ul li.active::before {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid rgba(0, 153, 255, 0.829);
  z-index: 51;
  display: block;
}
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: 300px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  background-color: white;
  align-items: flex-start;
  justify-content: flex-start;
  animation: fromLeft 0.3s ease-in-out;
  z-index: 49;
  box-shadow: 15px 10px 30px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 0;
  border-left: 1px solid #f0f0f0;
}
nav ul .subCat::-webkit-scrollbar {
  width: 6px;
}
nav ul .subCat::-webkit-scrollbar-track {
  background: #f1f1f1;
}
nav ul .subCat::-webkit-scrollbar-thumb {
  background: rgba(0, 153, 255, 0.829);
  border-radius: 10px;
}
nav ul .subCat::-webkit-scrollbar-thumb:hover {
  background: rgba(147, 212, 255, 0.95);
}
nav ul .subCat .subCatHeader {
  padding: 0 1.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(0, 153, 255, 0.829);
  border-bottom: 1px solid #f5f5f5;
  margin-bottom: 0.8rem;
  width: 100%;
}
nav ul .subCat a {
  display: flex;
  align-items: center;
  padding: 0.7rem 1.5rem;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.7);
  width: 100%;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}
nav ul .subCat a:hover {
  background-color: #f9f9f9;
  color: rgba(0, 153, 255, 0.829);
  padding-left: 2rem;
}
nav ul .subCat.active {
  display: flex;
}

#breadcrumbContainer,
.siteMap {
  position: relative;
  left: calc(10vw + 250px);
  width: calc(80vw - 250px);
  padding: 0.8rem 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 0;
  font-size: 14px;
  background: #f8f9fa;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: #666;
}
@media (max-width: 768px) {
  #breadcrumbContainer,
  .siteMap {
    left: 0;
    width: 100%;
    margin-top: 1rem;
    border-radius: 0;
  }
}
#breadcrumbContainer .siteMap,
.siteMap .siteMap {
  padding: 0;
  margin: 0;
  left: 0;
  width: 100%;
  background: transparent;
  border: none;
  box-shadow: none;
}
#breadcrumbContainer .breadcrumb-item,
.siteMap .breadcrumb-item {
  text-transform: capitalize;
}
#breadcrumbContainer .breadcrumb-item.clickable,
.siteMap .breadcrumb-item.clickable {
  color: rgba(0, 153, 255, 0.829);
  cursor: pointer;
  font-weight: 600;
  transition: color 0.2s ease;
}
#breadcrumbContainer .breadcrumb-item.clickable:hover,
.siteMap .breadcrumb-item.clickable:hover {
  color: rgba(0, 107.1, 178.5, 0.829);
  text-decoration: underline;
}
#breadcrumbContainer .breadcrumb-item:last-child,
.siteMap .breadcrumb-item:last-child {
  color: #333;
  font-weight: 500;
}

#products {
  position: relative;
  left: calc(10vw + 250px);
  width: calc(80vw - 250px);
  display: flex;
  flex-direction: column;
}
#products .cardContainer {
  position: relative;
  width: 100%;
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 1rem;
}
#products .emptyCategory {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  margin: 2rem;
}
#products .emptyCategory img {
  width: 80px;
  height: 80px;
  margin-bottom: 2rem;
  opacity: 0.2;
  filter: grayscale(1);
}
#products .emptyCategory h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 1rem;
}
#products .emptyCategory p {
  font-size: 1.1rem;
  color: #666;
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
#products .emptyCategory .buyBtn {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  background: rgba(0, 153, 255, 0.829);
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
}
#products .emptyCategory .buyBtn:hover {
  background: rgba(0, 122.4, 204, 0.829);
  transform: translateY(-2px);
}
#products .emptyCategory .buyBtn:active {
  transform: translateY(0);
}
#products .emptyCategory .buyBtn.secondary {
  background: #f0f0f0;
  color: #333;
  margin-left: 0;
}
#products .emptyCategory .buyBtn.secondary:hover {
  background: #e0e0e0;
  color: #000;
}
#products .emptyCategory .emptyContact {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #fcfcfc;
  border-radius: 8px;
  border: 1px solid #f0f0f0;
}
#products .emptyCategory .emptyContact p {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
#products .emptyCategory .emptyContact .emptyContactInfo {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 1rem;
}
#products .emptyCategory .emptyContact .emptyContactInfo span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: rgba(0, 153, 255, 0.829);
}
#products .emptyCategory .emptyContact .emptyContactInfo span img {
  width: 18px;
  height: 18px;
  margin-bottom: 0;
  opacity: 1;
  filter: none;
}
#products .emptyCategory .emptyActions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
#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);
}

#homeSeo {
  margin-left: calc(10vw + 250px);
  width: calc(80vw - 250px);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  background-color: white;
  border-bottom: 1px solid #eee;
}
#homeSeo.hidden, .heroContainer.hidden ~ #homeSeo {
  display: none;
}
#homeSeo .statsContainer {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
}
#homeSeo .statsContainer .statItem {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  min-width: 250px;
  padding: 1.5rem;
  background: #fcfcfc;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}
#homeSeo .statsContainer .statItem:hover {
  transform: translateY(-5px);
}
#homeSeo .statsContainer .statItem img {
  height: 3.5rem;
  width: 3.5rem;
  padding: 0.8rem;
  background: rgba(0, 153, 255, 0.829);
  border-radius: 50%;
  filter: invert(100%);
}
#homeSeo .statsContainer .statItem .statText {
  display: flex;
  flex-direction: column;
}
#homeSeo .statsContainer .statItem .statText .statNumber {
  font-size: 2rem;
  font-weight: 800;
  color: rgba(0, 153, 255, 0.829);
  line-height: 1;
}
#homeSeo .statsContainer .statItem .statText .statLabel {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
#homeSeo .seoContent {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
#homeSeo .seoContent h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #333;
  text-align: center;
}
#homeSeo .seoContent h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: rgba(0, 153, 255, 0.829);
  margin: 0.8rem auto 0;
}
#homeSeo .seoContent p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 1.2rem;
}
#homeSeo .seoContent p strong {
  color: rgba(0, 153, 255, 0.829);
}
#homeSeo .seoContent .seoGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  text-align: left;
}
#homeSeo .seoContent .seoGrid .seoFeature {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 10px;
  border-top: 4px solid rgba(0, 153, 255, 0.829);
}
#homeSeo .seoContent .seoGrid .seoFeature h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #222;
}
#homeSeo .seoContent .seoGrid .seoFeature p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}
#homeSeo .seoContent .seoFinal {
  font-weight: 700;
  color: rgba(0, 153, 255, 0.829);
  font-size: 1.2rem;
  margin-top: 2rem;
}

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;
  padding: 2rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
#gallery .galleryContainer {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}
#gallery .galleryContainer img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
  border-radius: 8px;
  animation: fromBottom 0.5s ease forwards;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
#gallery .galleryContainer img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  z-index: 10;
}
@media (max-width: 1200px) {
  #gallery {
    margin-left: calc(5vw + 250px + 1rem);
    width: calc(90vw - 250px - 1rem);
  }
}
@media (max-width: 768px) {
  #gallery {
    margin-left: 1rem;
    margin-right: 1rem;
    width: calc(100% - 2rem);
    padding: 1rem;
  }
  #gallery .galleryContainer {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
  }
  #gallery .galleryContainer img {
    height: 140px;
  }
}

#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.92);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  backdrop-filter: blur(5px);
}
.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.gallery-lightbox img {
  max-width: 85%;
  max-height: 85%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: transform 0.3s ease;
}
.gallery-lightbox .gallery-prev,
.gallery-lightbox .gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10000;
}
.gallery-lightbox .gallery-prev:hover,
.gallery-lightbox .gallery-next:hover {
  background: rgba(0, 153, 255, 0.829);
  transform: translateY(-50%) scale(1.1);
}
@media (max-width: 768px) {
  .gallery-lightbox .gallery-prev,
  .gallery-lightbox .gallery-next {
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.25);
  }
}
.gallery-lightbox .gallery-prev {
  left: 2.5rem;
}
@media (max-width: 768px) {
  .gallery-lightbox .gallery-prev {
    left: 0.5rem;
  }
}
.gallery-lightbox .gallery-next {
  right: 2.5rem;
}
@media (max-width: 768px) {
  .gallery-lightbox .gallery-next {
    right: 0.5rem;
  }
}
.gallery-lightbox .gallery-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  line-height: 1;
}
.gallery-lightbox .gallery-close:hover {
  background: #e03131;
  transform: rotate(90deg);
}
@media (max-width: 768px) {
  .gallery-lightbox .gallery-close {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 2rem;
  }
}

@keyframes fromExtremeRight {
  from {
    right: -100%;
  }
  to {
    right: 0;
  }
}
#social {
  position: fixed;
  bottom: 20px; /* Slightly lifted from the very bottom */
  right: 0; /* Stick to the absolute right edge */
  display: flex;
  flex-direction: column;
  align-items: center; /* Align children to the right */
  background-color: rgba(255, 255, 255, 0.9); /* Slightly transparent background */
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.1)); /* Softer shadow */
  padding: 12px;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  gap: 8px;
  animation: fromExtremeRight 0.3s ease-in-out;
  z-index: 100; /* Ensure it stays on top */
}
#social a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  padding: 8px 12px; /* More padding for easier clicking */
  border-radius: 8px; /* Rounded corners for links */
  transition: background-color 0.2s ease, transform 0.2s ease;
}
#social a img {
  height: 1.7rem;
  margin-right: 0.5rem; /* User requested margin-right to be 0 */
  transition: transform 0.2s ease;
}
#social a:hover {
  background-color: rgba(147, 212, 255, 0.95); /* Use a defined hover color */
  transform: translateY(-2px); /* Subtle lift on hover */
}
#social a:hover img {
  transform: scale(1.1); /* Slightly enlarge icon on hover */
}

#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 .orderItem {
  border: 1px solid #eee;
  padding: 1.2rem;
  border-radius: 10px;
  transition: all 0.2s;
  cursor: pointer;
}
#cartSection .orderItem:hover {
  border-color: rgba(0, 153, 255, 0.829);
  background: #fcfcfc;
  transform: translateX(4px);
}
#cartSection .orderItem.active {
  border-color: rgba(0, 153, 255, 0.829);
}
#cartSection .orderItem.active .orderProducts {
  display: block;
}
#cartSection .orderItem.active .toggleDetails::after {
  transform: rotate(180deg);
}
#cartSection .orderItem .orderHeader {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}
#cartSection .orderItem .orderHeader .orderId {
  font-weight: 700;
  color: #333;
  font-size: 1.05rem;
}
#cartSection .orderItem .orderHeader .orderDate {
  font-size: 0.85rem;
  color: #777;
}
#cartSection .orderItem .orderTotal {
  margin-bottom: 0.5rem;
  color: #444;
}
#cartSection .orderItem .orderStatus {
  font-size: 0.9rem;
}
#cartSection .orderItem .orderStatus .statusBadge {
  background: #fff8e1;
  color: #f57c00;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.8rem;
}
#cartSection .orderItem .toggleDetails {
  font-size: 0.85rem;
  color: rgba(0, 153, 255, 0.829);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.4rem 0.8rem;
  background: #f0f7ff;
  border-radius: 4px;
  transition: all 0.2s;
}
#cartSection .orderItem .toggleDetails::after {
  content: "▼";
  font-size: 0.6rem;
  transition: transform 0.3s;
}
#cartSection .orderItem .toggleDetails:hover {
  background: rgba(0, 153, 255, 0.829);
  color: white;
}
#cartSection .orderItem.active .toggleDetails {
  background: rgba(0, 153, 255, 0.829);
  color: white;
}
#cartSection .orderItem.active .toggleDetails::after {
  transform: rotate(180deg);
}
#cartSection .orderItem .orderProducts {
  display: none;
  margin-top: 1.2rem;
  padding: 1rem;
  background: #fdfdfd;
  border: 1px solid #f0f0f0;
  border-radius: 6px;
}
#cartSection .orderItem .orderProducts .productRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  padding: 0.6rem 0;
  color: #444;
  border-bottom: 1px solid #f5f5f5;
}
#cartSection .orderItem .orderProducts .productRow:last-child {
  border-bottom: none;
}
#cartSection .orderItem .orderProducts .productRow img {
  display: none;
}
#cartSection .orderItem .orderProducts .productRow .pName {
  flex: 1;
  padding-right: 1rem;
  font-weight: 500;
}
#cartSection .orderItem .orderProducts .productRow .pQty {
  color: #888;
  margin-right: 1.5rem;
  white-space: nowrap;
  font-size: 0.85rem;
}
#cartSection .orderItem .orderProducts .productRow .pPrice {
  font-weight: 700;
  color: rgba(0, 153, 255, 0.829);
  white-space: nowrap;
}
#cartSection .orderItem .orderProducts .productRow.loading {
  color: #aaa;
}
#cartSection .orderItem .orderProducts .productRow.loading .pName {
  position: relative;
  overflow: hidden;
}
#cartSection .orderItem .orderProducts .productRow.loading .pName::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  animation: loading-shimmer 1.5s infinite;
}
@keyframes loading-shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
#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;
}

/* =================================== */
/* 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.5rem 1rem 0.6rem;
  border: 1px solid #ddd;
  border-radius: 0.6rem;
  font-size: 1rem;
  background: transparent;
  outline: none;
  transition: all 0.2s ease;
  color: #333;
}
#checkoutForm .inputGroup input:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}
#checkoutForm .inputGroup input:focus {
  border-color: rgba(0, 153, 255, 0.829);
  background: white;
}
#checkoutForm .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;
}
#checkoutForm .inputGroup input:focus + label,
#checkoutForm .inputGroup input.hasValue + label {
  top: -0.5rem;
  font-size: 0.75rem;
  color: rgba(0, 153, 255, 0.829);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.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;
  justify-content: center;
}

.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;
  margin-left: auto;
  margin-right: auto;
}

.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;
}

.authMessage {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  display: none;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.authMessage.visible {
  display: block;
}
.authMessage.error {
  background: #fff5f6;
  color: #d11a2a;
  border: 1px solid #ffcfd4;
}
.authMessage.success {
  background: #f0fdf4;
  color: #166534;
  border: 2px solid #bbf7d0;
  font-size: 1.1rem;
  padding: 2rem;
  animation: fadeInScale 0.4s ease-out;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.authForm h2 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  text-align: left;
}
.authForm h2::after {
  margin-left: 0;
}
.authForm .inputGroup {
  position: relative;
  margin-bottom: 1.5rem;
}
.authForm .inputGroup input {
  width: 100%;
  padding: 1.5rem 1rem 0.6rem;
  border-radius: 0.6rem;
  border: 1px solid #ddd;
  font-size: 1rem;
  background: transparent;
  outline: none;
  transition: all 0.2s ease;
  color: #333;
}
.authForm .inputGroup input:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}
.authForm .inputGroup input:focus {
  border-color: rgba(0, 153, 255, 0.829);
  background: white;
}
.authForm .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;
}
.authForm .inputGroup input:focus + label,
.authForm .inputGroup input.hasValue + label {
  top: -0.5rem;
  font-size: 0.75rem;
  color: rgba(0, 153, 255, 0.829);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.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;
}
#userAccount .accountDashboard #accountCartPrompt .checkoutBtn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
  background: rgba(0, 153, 255, 0.829);
  color: white;
  font-size: 1.1rem;
  margin-top: 1rem;
}
#userAccount .accountDashboard #accountCartPrompt .checkoutBtn:hover {
  background: rgba(147, 212, 255, 0.95);
}
#userAccount .accountDashboard #orderHistoryContainer .ordersList .orderItem .orderProducts .productRow .pImg {
  width: 40px;
  height: 40px;
  margin-right: 0.5rem;
}

.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;
  cursor: pointer;
}
.accountCard .ordersList .orderItem:hover {
  border-color: rgba(0, 153, 255, 0.829);
  background: #fcfcfc;
  transform: translateX(4px);
}
.accountCard .ordersList .orderItem.active {
  border-color: rgba(0, 153, 255, 0.829);
}
.accountCard .ordersList .orderItem.active .orderProducts {
  display: block;
}
.accountCard .ordersList .orderItem.active .toggleDetails::after {
  transform: rotate(180deg);
}
.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 {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.accountCard .ordersList .orderItem .orderStatus .statusBadge.status-pending {
  background: #fef3c7;
  color: #92400e;
}
.accountCard .ordersList .orderItem .orderStatus .statusBadge.status-confirmed {
  background: #e0f2fe;
  color: #0369a1;
}
.accountCard .ordersList .orderItem .orderStatus .statusBadge.status-pickedup {
  background: #dcfce7;
  color: #166534;
}
.accountCard .ordersList .orderItem .orderStatus .statusBadge.status-canceled {
  background: #fee2e2;
  color: #991b1b;
}
.accountCard .ordersList .orderItem .toggleDetails {
  font-size: 0.85rem;
  color: rgba(0, 153, 255, 0.829);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.4rem 0.8rem;
  background: #f0f7ff;
  border-radius: 4px;
  transition: all 0.2s;
}
.accountCard .ordersList .orderItem .toggleDetails::after {
  content: "▼";
  font-size: 0.6rem;
  transition: transform 0.3s;
}
.accountCard .ordersList .orderItem .toggleDetails:hover {
  background: rgba(0, 153, 255, 0.829);
  color: white;
}
.accountCard .ordersList .orderItem.active .toggleDetails {
  background: rgba(0, 153, 255, 0.829);
  color: white;
}
.accountCard .ordersList .orderItem.active .toggleDetails::after {
  transform: rotate(180deg);
}
.accountCard .ordersList .orderItem .orderProducts {
  display: none;
  margin-top: 1.2rem;
  padding: 1rem;
  background: #fdfdfd;
  border: 1px solid #f0f0f0;
  border-radius: 6px;
}
.accountCard .ordersList .orderItem .orderProducts .productRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  padding: 0.6rem 0;
  color: #444;
  border-bottom: 1px solid #f5f5f5;
}
.accountCard .ordersList .orderItem .orderProducts .productRow:last-child {
  border-bottom: none;
}
.accountCard .ordersList .orderItem .orderProducts .productRow .pName {
  flex: 1;
  padding-right: 1rem;
  font-weight: 500;
}
.accountCard .ordersList .orderItem .orderProducts .productRow .pQty {
  color: #888;
  margin-right: 1.5rem;
  white-space: nowrap;
  font-size: 0.85rem;
}
.accountCard .ordersList .orderItem .orderProducts .productRow .pPrice {
  font-weight: 700;
  color: rgba(0, 153, 255, 0.829);
  white-space: nowrap;
}
.accountCard .ordersList .orderItem .orderProducts .productRow.loading {
  color: #aaa;
}
.accountCard .ordersList .orderItem .orderProducts .productRow.loading .pName {
  position: relative;
  overflow: hidden;
}
.accountCard .ordersList .orderItem .orderProducts .productRow.loading .pName::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  animation: loading-shimmer 1.5s infinite;
}
@keyframes loading-shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.mainFooter {
  background-color: #fff;
  border-top: 1px solid #eee;
  padding: 4rem 2rem 2rem;
  margin-top: 4rem;
  color: #444;
  z-index: 51;
  position: relative;
}
.mainFooter .footerGrid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.mainFooter .footerInfo img {
  height: 50px;
  width: auto;
  margin-bottom: 1.5rem;
}
.mainFooter .footerInfo p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  color: #666;
}
.mainFooter .footerInfo strong {
  color: #333;
}
.mainFooter h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #222;
  position: relative;
}
.mainFooter h3::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background-color: rgba(0, 153, 255, 0.829);
  margin-top: 0.5rem;
  border-radius: 2px;
}
.mainFooter ul {
  list-style: none;
  margin-left: 0;
  width: 100%;
  box-shadow: none;
}
.mainFooter ul li {
  margin-bottom: 0.8rem;
}
.mainFooter ul li a {
  text-decoration: none;
  color: #666;
  font-size: 0.95rem;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
  padding: 0;
}
.mainFooter ul li a::after {
  content: none;
}
.mainFooter ul li a:hover {
  color: rgba(0, 153, 255, 0.829);
  padding-left: 5px;
  background: none;
}
.mainFooter .footerContact p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
  color: #666;
}
.mainFooter .footerContact p strong {
  color: #333;
}
.mainFooter .footerBottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
  text-align: center;
}
.mainFooter .footerBottom p {
  font-size: 0.85rem;
  color: #999;
}

.inputGroupCheckbox a {
  color: rgba(0, 153, 255, 0.829);
  text-decoration: underline;
  font-weight: 600;
}

@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, #homeSeo {
    margin-left: 250px;
    width: calc(100vw - 250px);
  }
  section.heroContainer, #homeSeo.heroContainer {
    margin-left: 0;
  }
}
@media (max-width: 900px) {
  #cartSection .cartContainer {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }
  .cartSummary {
    position: static;
    width: 100%;
  }
  #homeSeo {
    padding: 2rem 1rem;
    gap: 2rem;
  }
  #homeSeo .statsContainer .statItem {
    min-width: 100%;
  }
  .userCart.sticky-cart {
    position: fixed;
    top: 52px;
    right: 0;
    background: white;
    padding: 5px 15px;
    border-radius: 0 0 0 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: cartSlideIn 0.3s ease-out;
  }
  @keyframes cartSlideIn {
    from {
      transform: translateY(-20px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  .userCart.sticky-cart .user, .userCart.sticky-cart .cart {
    padding: 0.4rem 0.5rem;
  }
  .userCart.sticky-cart .user img, .userCart.sticky-cart .cart img {
    height: 1.2rem;
    width: 1.2rem;
  }
  .userCart.sticky-cart p {
    display: none;
  }
  nav {
    z-index: 10000;
  }
  .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;
  }
  .mainFooter .footerGrid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .banner .search .searchResults {
    width: calc(100vw - 40px);
    right: -40px;
  }
  nav ul .mobileMenuHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    background-color: white;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1001;
  }
  nav ul .mobileMenuHeader .menuLogo {
    height: 40px;
    width: auto;
  }
  nav ul .mobileMenuHeader .menuCloseBtn {
    background: transparent;
    color: rgba(255, 0, 0, 0.5);
    border: none;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 0, 0, 0.5);
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
  }
  nav ul .mobileNavLink {
    display: block;
    background-color: white;
  }
  nav ul .mobileNavLink a {
    font-weight: 600;
    color: #333;
    border-left: 4px solid transparent;
    transition: all 0.2s;
  }
  nav ul .mobileNavLink a::after {
    content: none;
  }
  nav ul .mobileNavLink a:hover {
    border-left-color: rgba(0, 153, 255, 0.829);
    background-color: #f9f9f9;
  }
  nav ul .menuDivider {
    display: block;
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 1px;
    background-color: #fcfcfc;
  }
  nav ul .mobileMenuFooter {
    display: block;
    padding: 3rem 1.5rem 6rem;
    background-color: #fafafa;
    border-top: 1px solid #f0f0f0;
  }
  nav ul .mobileMenuFooter .menuFooterDivider {
    width: 40px;
    height: 3px;
    background: rgba(0, 153, 255, 0.829);
    margin-bottom: 1.5rem;
    border-radius: 2px;
  }
  nav ul .mobileMenuFooter .menuFooterContent p {
    font-size: 0.85rem;
    color: #888;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  nav ul .mobileMenuFooter .menuFooterContent .menuSocialLinks {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  nav ul .mobileMenuFooter .menuFooterContent .menuSocialLinks a {
    padding: 0;
    width: auto;
    display: inline-block;
    font-size: 0;
  }
  nav ul .mobileMenuFooter .menuFooterContent .menuSocialLinks a::after {
    display: none;
  }
  nav ul .mobileMenuFooter .menuFooterContent .menuSocialLinks a:hover {
    background: transparent;
  }
  nav ul .mobileMenuFooter .menuFooterContent .menuSocialLinks a img {
    height: 2rem;
    width: auto;
    transition: transform 0.2s;
    display: block;
    margin-right: 0;
  }
  nav ul .mobileMenuFooter .menuFooterContent .menuSocialLinks a:hover img {
    transform: scale(1.1);
  }
  nav ul .mobileMenuFooter .menuFooterContent .menuFooterCopy {
    font-size: 0.75rem;
    color: #bbb;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    margin-bottom: 0;
  }
  ul li.active::before {
    display: none;
  }
  ul .subCat {
    position: static;
    width: 100vw;
    min-width: 100vw;
    max-height: none;
    overflow-y: visible;
    box-shadow: none;
    border-left: none;
    border-top: 1px solid #f0f0f0;
    padding: 1rem 0;
    animation: none;
    background-color: #fafafa;
  }
  ul .subCat .subCatHeader {
    padding: 0 1.5rem 0.8rem;
    font-size: 0.9rem;
  }
  ul .subCat a {
    padding: 0.8rem 2.5rem;
    font-size: 1rem;
  }
  nav {
    z-index: 10000;
  }
  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: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    margin-left: 0;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding-top: 0;
    z-index: 20000;
  }
  nav ul.active {
    transform: translateX(0);
  }
  nav ul .mobileMenuFooter {
    display: block;
    padding: 3rem 1.5rem 1rem;
    background-color: #fafafa;
    border-top: 1px solid #f0f0f0;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  nav ul .mobileMenuFooter {
    display: block;
  }
}
@media (max-width: 768px) {
  nav ul .mobileMenuFooter .menuFooterDivider {
    width: 40px;
    height: 3px;
    background: rgba(0, 153, 255, 0.829);
    margin-bottom: 1.5rem;
    border-radius: 2px;
  }
  nav ul .mobileMenuFooter .menuFooterContent p {
    font-size: 0.85rem;
    color: #888;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  nav ul .mobileMenuFooter .menuFooterContent .menuSocialLinks {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  nav ul .mobileMenuFooter .menuFooterContent .menuSocialLinks a {
    padding: 0;
    width: auto;
    display: inline-block;
    font-size: 0;
  }
  nav ul .mobileMenuFooter .menuFooterContent .menuSocialLinks a::after {
    display: none;
  }
  nav ul .mobileMenuFooter .menuFooterContent .menuSocialLinks a:hover {
    background: transparent;
  }
  nav ul .mobileMenuFooter .menuFooterContent .menuSocialLinks a img {
    height: 2rem;
    width: auto;
    transition: transform 0.2s;
    display: block;
    margin-right: 0;
  }
  nav ul .mobileMenuFooter .menuFooterContent .menuSocialLinks a:hover img {
    transform: scale(1.1);
  }
  nav ul .mobileMenuFooter .menuFooterContent .menuFooterCopy {
    font-size: 0.75rem;
    color: #bbb;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    margin-bottom: 0;
  }
  nav ul li {
    width: 100%;
    border-bottom: 1px solid #f5f5f5;
  }
  nav ul li a {
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
  }
  section, #homeSeo {
    margin-left: 0 !important;
    width: 100% !important;
    padding: 4rem 1rem 1.5rem;
  }
  .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: 5rem;
  }
  #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;
  }
  #accountSection {
    padding: 2rem 1rem !important;
  }
  #userAccount {
    margin: 1rem auto;
  }
  .accountHeader {
    flex-direction: column;
    padding: 1.5rem;
    text-align: center;
    gap: 1.5rem;
  }
  .accountHeader h2 {
    text-align: center;
    font-size: 1.3rem;
  }
  .accountHeader #logoutBtn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  #cartSection .cartItemsList .cartSectionItem {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
  }
  #cartSection .cartItemsList .cartSectionItem img {
    width: 60px;
    height: 60px;
  }
  #cartSection .cartItemsList .cartSectionItem .itemInfo {
    width: 100%;
    padding-right: 4.5rem;
  }
  #cartSection .cartItemsList .cartSectionItem .itemActions {
    width: 100%;
    justify-content: space-between;
    border-top: 1px solid #f9f9f9;
    padding-top: 0.8rem;
  }
  #cartSection .cartItemsList .cartSectionItem .itemActions .itemSubtotal {
    min-width: auto;
  }
  #cartSection .cartItemsList .cartSectionItem .itemActions .removeBtn {
    position: absolute;
    top: 1rem;
    right: 1rem;
  }
  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;
  }
  .mainFooter {
    padding: 3rem 1rem 2rem;
  }
  .mainFooter .footerGrid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 480px) {
  #cartSection .orderItem .orderHeader {
    flex-direction: column;
    gap: 0.3rem;
  }
  .cartSummary {
    padding: 1.5rem;
  }
  nav .navItems .navBtn.last {
    margin-right: auto;
  }
  nav #menu {
    width: 100vw;
    padding-bottom: 1rem;
    transform: translateX(-100%);
    transition: 0.3s;
  }
  nav #menu.active {
    transform: translateX(0);
  }
  nav #menu .subCat {
    position: static;
    width: 100vw;
  }
  .banner {
    height: 60px;
    padding: 0.5rem 0.8rem;
  }
  .banner img {
    height: 60%;
  }
  #contact h2 {
    font-size: 1.6rem;
  }
  .authWrapper {
    padding: 1.5rem;
    box-shadow: none;
    border: 1px solid #eee;
  }
  .authTabs button {
    font-size: 1rem;
    padding: 0.8rem 0.5rem;
  }
  .authForm h2 {
    font-size: 1.3rem;
  }
  .accountCard {
    padding: 1.2rem;
  }
  .accountCard h3 {
    font-size: 1.1rem;
  }
  .accountCard .ordersList .orderItem .orderHeader {
    flex-direction: column;
    gap: 0.3rem;
  }
}/*# sourceMappingURL=style.css.map */