﻿@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/*  Main Css  */
.responsive-body {
  margin: 0 auto;
  padding: 1rem;
  width: 100%;
  max-width: 1200px; /* Adjust based on your design */
  box-sizing: border-box;
}

body {
  font-family: "Bebas Neue","Montserrat";
  margin: 0;
  padding: 0;
  min-height: 100dvh;
  overflow: hidden;
  color: #ffffff;
  background: url('../img/website backdrop.png') no-repeat;
  background-size: 200%;
  background-position: 60% 0;
  background-color: black;
}

h1 {
  font-family: "Bebas Neue";
  font-size: calc(.5rem + 1vw);
  outline: none;
  color: #fd7f20;
}

h2 {
  font-family: "Bebas Neue";
  font-size: calc(.5rem + 0.7vw);
  outline: none;
  color: #fd7f20;
}

h3 {
  font-family: "Bebas Neue";
  font-size: calc(.5rem + 0.6vw);
  outline: none;
  color: #fd7f20;
}

p {
  font-family: "Montserrat";
  font-size: calc(.5rem + 0.5vw);
  outline: none;
  color: #ffffff;
}
.currency-selector {
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.currency-selector select {
  border: 1px solid #747474;
  border-radius: 0.5rem;
  width: 7.25rem;
  min-width: 7.25rem;
  box-sizing: border-box;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

select {
  word-wrap: normal;
  background: #000000b2;
  color: #fd7f20;
  border: solid 1px #fd7f20;
  border-radius: 0;
  width: 55%;
  cursor:pointer;
  padding: 0.5rem;
}
  select option {
    background: #000000b2;
    color: #fd7f20;
    border: solid 1px #fd7f20;
    border-radius: 2rem;
    padding: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
  }

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem;
  height: 2vw;
  border-radius: 2rem;
  border: 1px solid #747474;
  background: #000000b2;
}
.category-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 1rem;
  position: relative;
  overflow-y: auto;
  flex: 1 1 auto;
  min-height: 0;
  height: auto;
  padding: 0.75rem;
  justify-items: center;
  align-items: start;
  top: -8px;
  border-radius: 2rem;
}

.grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.85rem;
  border: 1px solid #747474;
  border-radius: 2rem;
  background-color: #0000005e;
  box-shadow: 0 2px 4px #626262;
  width: 100%;
  max-width: 525px;
  max-height: 520px;
  height: 100%;
}

  .grid-item h3 {
    margin: 8px 0;
    font-size: 1.4em;
  }

  .grid-item p {
    margin: 4px 0;
    font-size: 1em;
  }
.product-image {
  width: 100%;
  height: auto;
  max-height: 80%;
  object-fit: cover;
  border-radius: 2rem;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 20px;
  justify-content: center;
}

.main-content {
  position: relative;
  height: auto;
  min-height: 0;
  flex: 1 1 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
  border-radius: 0;
  border: none;
  background: transparent;
  margin-bottom: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

/* When the logo roam easter egg is active, give .main-content an explicit z-index
   so the cloned logo (at z-index:5) can visibly pass behind the content panels. */
body.logo-roam-active .main-content {
  z-index: 10;
}

.main-content .left, .main-content .center, .main-content .right {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 0.6rem;
}

.product-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: block;
  font-size: calc(.25rem + 0.75rem) !important;
}
.main-cart-product-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: block;
  font-size: calc(.25rem + 1.75rem) !important;
}
.mini-cart-product-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: block;
  font-size: calc(.25rem + 1rem) !important;
}

  .product-link:visited,
  .product-link:active,
  .product-link:hover {
    color: inherit; 
    text-decoration: none;
  }
.main-cart-product-link:visited, .main-cart-product-link:active,
.main-cart-product-link:hover, .mini-cart-product-link:visited,
.mini-cart-product-link:active, .mini-cart-product-link:hover,
.product-link:visited, .product-link:active, .product-link:hover {
  color: inherit;
  text-decoration: none;
}
.product-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding: 1rem;
  height: 100%;
  min-height: 0;
  box-sizing: border-box;
  position: relative;
  overflow-y: hidden;
  justify-items: center;
  align-items: stretch;
}
.product-details-scroll {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  height: 100%;
  width: 100%;
  min-height: 0;
  flex: 1 1 auto;
  overflow-y: auto;
  background: transparent; /* Ensure no background color covers the image */
  border-radius: 2rem;
  padding: 1rem 1rem 2rem;
  box-sizing: border-box;
}
.product-title {
  font-size: 2rem;
  text-align: left;
  margin: 0;
}

.product-details-img {
  margin: 0 auto 1rem auto;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
  border-radius: 2rem;
  max-width: 40%;
}
.product-item {
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 2rem;
  text-align: center;
  background: #000000b0;
}
.load-more-btn {
  color: #fd7f20;
  text-align: center;
  text-decoration: none;
  font-size: 2rem;
  border-radius: 2rem;
  transition: background-color 0.5s linear;
  background: #000000b2;
  border: 1px solid #747474;
  margin: 2rem auto 0 auto;
  display: block;
  padding: 0.5rem;
}

  .load-more-btn:hover {
    background-color: #fd7f20;
    color: black;
    cursor: pointer;
    border-radius: 2rem;
    border: 1px solid #000000;
    transition: background-color 1s linear;
  }

.load-more-btn-container {
  transition: margin-top 2.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0;
  will-change: margin-top;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: calc(.25rem + 0.8vw);
}

.breadcrumbs-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  position: sticky;
  top: 0;
  z-index: 20;
  isolation: isolate;
  padding: 0.45rem 0.4rem;
}

.breadcrumbs-row::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 0.8rem;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.97) 0%, rgba(5, 5, 5, 0.94) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.breadcrumbs-row .breadcrumbs {
  margin-bottom: 0;
}

.breadcrumb-link {
  color: #fd7f20;
  text-decoration: none;
  cursor: pointer;
  font-weight: 500;
}

  .breadcrumb-link:hover {
    text-decoration: underline;
  }

.breadcrumb-separator {
  color: #fff;
}

.breadcrumb-current {
  color: #d7d7d7;
  font-weight: 600;
}

.breadcrumb-back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.45rem 0.9rem;
  position: relative;
  border-radius: 999px;
  background: #000000b2;
  color: #fd7f20;
  text-decoration: none;
  font-size: calc(.25rem + 0.75vw);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.35s ease-in-out, transform 0.35s ease-in-out;
}

.breadcrumb-back-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fd7f20 0%, #ff9e45 50%, #fd7f20 100%);
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease-in-out;
  z-index: -1;
}

.breadcrumb-back-link:hover,
.breadcrumb-back-link:focus-visible {
  color: #000000;
  text-decoration: none;
  transform: translateY(-1px);
}

.breadcrumb-back-link:hover::before,
.breadcrumb-back-link:focus-visible::before {
  transform: scaleX(1);
}

.breadcrumb-back-link:focus-visible {
  outline: none;
}

@media (max-width: 768px) {
  .breadcrumbs-row {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .breadcrumb-back-link {
    margin-left: auto;
  }
}
.product-main-columns {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.product-main-left {
  flex: 1 1 45%;
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.product-main-right {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.25rem;
  position: relative;
  z-index: 2;
}

.product-title {
  font-size: 2rem;
  margin: 0;
  text-align: left;
  color: #fd7f20;
}

.product-price-block {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.product-price-was-label,
.product-price-now-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: "Montserrat", Arial, sans-serif;
}

.product-price-was-label { color: #888; }
.product-price-now-label { color: #7fffb0; }

.product-price {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
}

.product-price-compare {
  font-size: 1.2rem;
  color: #888;
  text-decoration: line-through;
}

.product-gallery-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
}

.product-card-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid #747474;
}

/* ── Product ribbons ───────────────────────────────────── */
.product-ribbon {
  --ribbon-glow-soft: rgba(0, 0, 0, 0.25);
  --ribbon-glow-strong: rgba(0, 0, 0, 0.35);
  position: absolute;
  width: 220px;
  padding: 9px 0;
  color: #fff;
  text-align: center;
  font-size: clamp(0.6rem, 1vw, 0.78rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 11;
  pointer-events: none;
  box-shadow:
    0 3px 10px rgba(0, 0, 0, 0.6),
    0 0 10px var(--ribbon-glow-soft),
    0 0 18px var(--ribbon-glow-soft);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  font-family: 'Segoe UI', system-ui, sans-serif;
  transition: box-shadow 0.35s ease-in-out, filter 0.35s ease-in-out;
}

.product-card-image-container:hover .product-ribbon {
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.62),
    0 0 14px var(--ribbon-glow-strong),
    0 0 24px var(--ribbon-glow-strong);
  filter: saturate(1.05);
}

/* Corners */
.product-ribbon.ribbon-topright    { top: 38px;    right: -45px; transform: rotate(45deg);  }
.product-ribbon.ribbon-topleft     { top: 38px;    left:  -45px; transform: rotate(-45deg); }
.product-ribbon.ribbon-bottomright { bottom: 38px; right: -45px; transform: rotate(-45deg); }
.product-ribbon.ribbon-bottomleft  { bottom: 38px; left:  -45px; transform: rotate(45deg);  }

/* Colour themes */
.product-ribbon.ribbon-oos {
  background: rgba(160, 0, 0, 0.9);
  --ribbon-glow-soft: rgba(160, 0, 0, 0.28);
  --ribbon-glow-strong: rgba(160, 0, 0, 0.4);
}

.product-ribbon.ribbon-sale {
  background: rgba(175, 105, 0, 0.92);
  border-top:    1.5px solid rgba(255, 210, 80, 0.5);
  border-bottom: 1.5px solid rgba(100,  55, 0,  0.5);
  --ribbon-glow-soft: rgba(175, 105, 0, 0.28);
  --ribbon-glow-strong: rgba(175, 105, 0, 0.4);
}

.product-ribbon.ribbon-sale-other {
  background: rgba(10, 25, 70, 0.95);
  border-top:    1.5px solid rgba(100, 140, 255, 0.25);
  border-bottom: 1.5px solid rgba(5, 10, 40, 0.8);
  color: #fff;
  --ribbon-glow-soft: rgba(10, 25, 70, 0.28);
  --ribbon-glow-strong: rgba(10, 25, 70, 0.42);
}

.product-ribbon.ribbon-instock {
  background: rgba(0, 100, 40, 0.9);
  border-top:    1.5px solid rgba(100, 255, 150, 0.4);
  border-bottom: 1.5px solid rgba(0,   60,  20, 0.5);
  --ribbon-glow-soft: rgba(0, 100, 40, 0.28);
  --ribbon-glow-strong: rgba(0, 100, 40, 0.4);
}

.product-ribbon.ribbon-lowstock {
  background: rgba(120, 60, 0, 0.92);
  border-top:    1.5px solid rgba(255, 160, 60, 0.5);
  border-bottom: 1.5px solid rgba(80,   30,  0, 0.5);
  --ribbon-glow-soft: rgba(120, 60, 0, 0.28);
  --ribbon-glow-strong: rgba(120, 60, 0, 0.4);
}

.product-ribbon.ribbon-limited {
  background: rgba(0, 80, 120, 0.92);
  border-top:    1.5px solid rgba(80, 200, 255, 0.4);
  border-bottom: 1.5px solid rgba(0,  50,  80, 0.5);
  --ribbon-glow-soft: rgba(0, 80, 120, 0.28);
  --ribbon-glow-strong: rgba(0, 80, 120, 0.4);
}

.product-stock-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 10;
  pointer-events: none;
  padding: 0.35rem 0.9rem;
  border-radius: 2rem;
  font-size: clamp(0.75rem, 1.1vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Segoe UI', system-ui, sans-serif;
}

.product-stock-badge.in-stock {
  background: rgba(26, 58, 26, 0.85);
  color: #4caf50;
  border: 1px solid #4caf50;
}

.product-stock-badge.low-stock {
  background: rgba(58, 42, 0, 0.85);
  color: #fd7f20;
  border: 1px solid #fd7f20;
}

.product-stock-badge.out-of-stock {
  display: none;
}

.product-stock-indicator {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.product-stock-indicator.stock-low {
  color: #fd7f20;
}

.product-stock-indicator.stock-limited {
  color: #5bc4f5;
}

.selectors-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.product-accordion {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid #747474;
}

.product-accordion-summary {
  padding: 0.5rem 0.75rem;
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  user-select: none;
  letter-spacing: 0.01em;
  color: #fd7f20;
  border-radius: 1rem;
  transition: color 0.15s ease;
}

/* Force override browser default list-item display on <summary> */
summary.product-accordion-summary {
  display: flex;
}

.product-accordion-summary h2 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  letter-spacing: inherit;
}

.product-accordion-summary:hover {
  color: #ffaa55;
}

.product-accordion[open] > .product-accordion-summary {
  border-radius: 1rem 1rem 0 0;
  color: #fd7f20;
}

.product-accordion-summary::-webkit-details-marker {
  display: none;
}

.product-accordion-summary::after {
  content: '+';
  font-size: 1.25rem;
  color: #fd7f20;
  transition: color 0.15s ease;
}

.product-accordion-summary:hover::after {
  color: #ffaa55;
}

.product-accordion[open] .product-accordion-summary::after {
  content: '−';
}

.product-accordion-content {
  padding: 0.75rem 1.25rem 1rem;
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1.6;
  border-top: 1px solid #747474;
}

.product-accordion-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 0.5rem;
}

.product-accordion-content span {
  font-size: 0.9rem;
  line-height: 1.6;
}

.product-shipping-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.product-shipping-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

h5.product-shipping-label {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fd7f20;
  margin: 0;
}

.product-shipping-item p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #ffffff;
  margin: 0;
}

.product-reviews-section {
  width: 100%;
  background: #222;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 1rem;
}

.alternative-products-section {
  width: 100%;
  margin-top: 2rem;
}

.alternative-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  column-gap: 1rem;
  row-gap: 0;
  justify-items: center;
  align-items: start;
  padding: 0.75rem 0.75rem 0;
  width: 100%;
  grid-template-rows: auto;
  grid-auto-rows: 0;
  overflow: hidden;
}

.alternative-products-carousel {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  width: 100%;
  overflow: hidden;
  transition: opacity 0.3s ease;
}

.alternative-products-carousel.carousel-refreshing {
  opacity: 0.4;
  pointer-events: none;
}

.carousel-page {
  grid-row: 1;
  grid-column: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
  padding: 0.75rem 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* transition speed is set via inline style from the TransitionSeconds parameter */
}

.carousel-page.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.carousel-page > * {
  flex: 1 1 0;
  min-width: 0;
  max-width: 420px;
  max-height: 520px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #747474;
  border: 1px solid #747474;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.2s ease;
}

.carousel-dot.active {
  background: #ffffff;
  transform: scale(1.25);
}

.carousel-dot:hover {
  background: #aaaaaa;
}

.product-image-gallery {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-main-img-wrapper {
  position: relative;
  display: block;
  width: 100%;
  max-width: 400px;
  overflow: hidden;
  border-radius: 1rem;
  margin-bottom: 1rem;
  background: #fff;
}

/* ── Product status strips (shared by ProductCard and Products) ── */
.product-strips-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 5;
  border-radius: 1rem 1rem 0 0;
}

.product-strip {
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.product-strip.rsb-strip {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: opacity 2s ease-in-out;
}

.product-strip.rsb-active  { opacity: 1; }
.product-strip.rsb-inactive { opacity: 0; pointer-events: none; }

.rsb-sizer { visibility: hidden; pointer-events: none; }

.product-strip.strip-new     { background: rgba(20, 130, 70, 0.92); }
.product-strip.strip-sale    { background: rgba(175, 105, 0, 0.92); }
.product-strip.strip-sale-other { background: rgba(10, 25, 70, 0.95); color: #fff; }
.product-strip.strip-oos     { background: rgba(160, 0, 0, 0.92); }
.product-strip.strip-low     { background: rgba(180, 80, 0, 0.92); }
.product-strip.strip-limited { background: rgba(0, 80, 140, 0.92); }

.product-main-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 1rem;
  display: block;
  box-shadow: 0 2px 8px #222;
  cursor: crosshair;
}

/* Zoom lens — small box tracking the mouse on the main image */
.zoom-lens {
  display: none;
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid #fd7f20;
  background: rgba(253, 127, 32, 0.12);
  border-radius: 4px;
  pointer-events: none;
  z-index: 10;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.25);
}

/* Zoom result panel — fixed-positioned by JS, shown on hover */
.zoom-result {
  display: none;
  position: fixed;
  border: 2px solid #fd7f20;
  border-radius: 0.75rem;
  background-repeat: no-repeat;
  background-color: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
  z-index: 9999;
  pointer-events: none;
  overflow: hidden;
}

.product-thumbnails-scroll {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 400px;
  box-sizing: border-box;
  min-width: 320px;
}


.product-thumbnails-list {
  flex: 1 1 auto;
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #fd7f20 #222;
  max-width: 270px; /* or 100% if inside a restricted parent */
  box-sizing: border-box;
}


.product-thumb-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 0.5rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.2s;
  background: #fff;
}

  .product-thumb-img.active {
    border: 2px solid #fd7f20;
  }

.thumb-scroll-btn {
  flex: 0 0 60px; /* Fixed width for buttons */
  background: #000000b2;
  color: #fd7f20;
  border: solid 1px;
  border-radius: 50%;
  height: 60px;
  font-size: 2.5rem;
  cursor: pointer;
  margin: 0 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

  .thumb-scroll-btn:hover {
    background: #fd7f20;
    color: #000;
    border: solid 1px #000;
  }
.size-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
  justify-content: start;
  align-items: stretch;
}

.size-btn {
  background: #000000b2;
  color: #ffffff;
  border: 1px solid #fd7f20;
  border-radius: 0.5rem;
  padding: 0.55rem 0.75rem;
  min-width: 4.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  line-height: 1.2;
}

  .size-btn.active,
  .size-btn:hover {
    background: #fd7f20;
    color: #000;
    border: 1px solid #fd7f20;
  }

  .size-btn.active .size-btn-price,
  .size-btn:hover .size-btn-price {
    border-top-color: rgba(0, 0, 0, 0.2);
  }

  .size-btn.active .size-btn-was,
  .size-btn:hover .size-btn-was {
    color: rgba(0, 0, 0, 0.45);
  }

  .size-btn.active .size-btn-now,
  .size-btn:hover .size-btn-now {
    color: #000;
  }

.size-btn-name {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  padding-bottom: 0.3rem;
}

.size-btn-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 0.3rem;
  width: 100%;
  font-family: "Montserrat", sans-serif;
}

.size-btn-was {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.size-btn-now {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.selector-label {
  color: #fd7f20;
  font-size: 0.95rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: inline-block;
  letter-spacing: 0.03em;
}

.size-guide-link {
  background: transparent;
  border: 1px solid rgba(253, 127, 32, 0.35);
  border-radius: 2rem;
  color: rgba(253, 127, 32, 0.7);
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  padding: 0.25rem 0.75rem;
  margin-bottom: 0.75rem;
  display: block;
  width: fit-content;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.size-guide-link:hover {
  color: #fd7f20;
  border-color: rgba(253, 127, 32, 0.7);
  background: rgba(253, 127, 32, 0.08);
}

.color-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  justify-content: start;
}

.color-btn-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.color-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fd7f20;
  background: #000000b2;
  cursor: pointer;
  transition: border 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px #222;
  outline: none;
  padding: 0;
  position: relative;
}

  .color-btn.active,
  .color-btn:hover {
    border: 2px solid #fd7f20;
    box-shadow: 0 4px 16px #fd7f20;
  }

.color-tooltip {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  transform: none;
  background: rgba(0, 0, 0, 0.698);
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  z-index: 10;
  white-space: nowrap;
  box-shadow: 0 2px 8px #000;
  align-items: center;
  min-width: 80px;
}

.color-btn-wrapper:hover .color-tooltip {
  display: flex;
}


.color-preview-square {
  width: 8rem;
  height: 8rem;
  border-radius: 0.3rem;
  border: 2px solid #fd7f20;
  margin-right: 0.5rem;
}

.color-name {
  font-family: "Montserrat";
  font-size: 1rem;
  color: #fd7f20;
  font-weight: 600;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.quantity-btn {
  background: #000000b2;
  color: #fd7f20;
  border: 1px solid #fd7f20;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
  .quantity-btn:hover {
    background: #fd7f20;
    color: #000000b2;
    border: 1px solid #000000;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
  }

  .quantity-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

.quantity-value {
  min-width: 2rem;
  text-align: center;
  font-size: 1.2rem;
  color: #fd7f20;
  font-family: "Montserrat";
}

.zoom-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.zoomed-img {
  max-width: 80vw;
  max-height: 80vh;
  border-radius: 1rem;
  box-shadow: 0 4px 32px #fd7f20;
}
.modal-backdrop {
  position: fixed;
  inset: 0px;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}
.modal-dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgb(34, 34, 34);
  border-radius: 1rem;
  z-index: 1001;
  min-width: 300px;
  box-shadow: rgb(0, 0, 0) 0px 2px 16px;
}
.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background: rgba(0,0,0,0.8);
  background-clip: border-box;
  background-clip: padding-box;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: .3rem;
  outline: 0;
}
.modal-header h5 {
    margin: 0 0 1rem 0;
}
.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}
.validation-message {
  color: #fd7f20;
  font-size: 1rem;
  margin-top: 0.5rem;
}
.main-cart-panel {
  width: 100%;
  height: auto;
  padding: 0;
  font-size: calc(.25rem + 1.5vw);
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.cart-variant-row {
  display: flex;
  gap: 0.25rem;
}

.cart-price-was {
  font-size: 0.8em;
  color: #888;
  text-decoration: line-through;
  font-family: "Montserrat", Arial, sans-serif;
}

.cart-price-now {
  font-weight: 700;
  font-family: "Montserrat", Arial, sans-serif;
}

.main-cart-variant-detail {
  font-size: calc(.25rem + 1.5rem) !important;
  color: #fd7f20;
}
.mini-cart-variant-detail {
  font-size: calc(.25rem + 0.85rem) !important;
  color: #fd7f20;
}
.cart-page-layout {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: flex-start;
  gap: 2rem; 
}
.cart-breadcrumbs {
  margin-bottom: 1.5rem;
}
.cart-header-sticky {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 1rem 0 0.5rem 0;
  background: #000000f2;
  border-bottom: 1px solid rgba(253, 127, 32, 0.3);
  margin-bottom: 0.75rem;
}

.cart-header-sticky h4 {
  margin: 0;
}

.main-cart-panel .cart-header-sticky {
  display: none;
}

.main-cart-table thead th,
.mini-cart-table thead th {
  position: sticky;
  z-index: 10;
  border-bottom: solid 1px #fd7f20;
}
.main-cart-table thead th {
  padding-bottom: 0.75rem;
}
.scrollable-tbody {
  display: block;
  max-height: 30vw; 
  overflow-y: scroll;
  width: 100%;
}

.main-cart-table tbody tr {
  border-bottom: 1px solid rgba(253, 127, 32, 0.18);
}

.main-cart-table tbody td {
  padding: 0.85rem 0.5rem;
  vertical-align: middle;
}

.scrollable-table thead, .scrollable-table tbody tr {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.main-cart-table tfoot,
.main-cart-table tfoot tr {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.mini-cart-table tfoot,
.mini-cart-table tfoot tr {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.main-cart-table tfoot td {
  padding: 0.6rem 0.5rem 0.8rem;
  vertical-align: middle;
  border-bottom: 1px solid rgba(253, 127, 32, 0.22);
}

.mini-cart-table tfoot td {
  padding: 0.6rem 0.5rem 0.8rem;
  vertical-align: middle;
  border-bottom: 1px solid rgba(253, 127, 32, 0.22);
}

.main-cart-subtotal-label-cell {
  text-align: center;
  white-space: nowrap;
}

.main-cart-subtotal-cell {
  text-align: right;
  white-space: nowrap;
}

.mini-cart-subtotal-label-cell {
  text-align: center;
  white-space: nowrap;
}

.mini-cart-subtotal-cell {
  text-align: right;
  white-space: nowrap;
}

.mini-cart-subtotal-cell .subtotal-value {
  display: block;
  width: 100%;
  text-align: right;
}

.mini-cart-total-row {
  display: grid;
  grid-template-columns: 10fr 35fr 12fr 10fr 15fr;
  align-items: center;
  width: 100%;
  padding: 0.6rem 0.5rem 0.8rem;
  border-bottom: 1px solid rgba(253, 127, 32, 0.22);
  box-sizing: border-box;
}
/* Mini Cart Table Columns Widths*/
.mini-cart-table th:nth-child(1), .mini-cart-table td:nth-child(1) {
  width: 10%;
}

.mini-cart-table th:nth-child(2), .mini-cart-table td:nth-child(2) {
  width: 35%;
}

.mini-cart-table th:nth-child(3), .mini-cart-table td:nth-child(3) {
  width: 12%;
}

.mini-cart-table th:nth-child(4), .mini-cart-table td:nth-child(4) {
  width: 10%;
}

.mini-cart-table th:nth-child(5), .mini-cart-table td:nth-child(5) {
  width: 15%;
}

/*Main Cart Table Columns Widths*/
  .main-cart-table th:nth-child(1), .main-cart-table td:nth-child(1) {
    width: 10%;
  }

  .main-cart-table th:nth-child(2), .main-cart-table td:nth-child(2) {
    width: 40%;
  }

  .main-cart-table th:nth-child(3), .main-cart-table td:nth-child(3) {
    width: 12%;
  }

  .main-cart-table th:nth-child(4), .main-cart-table td:nth-child(4) {
    width: 10%;
  }

.main-cart-table th:nth-child(5), .main-cart-table td:nth-child(5) {
  width: 10%;
}
.cart-alternatives {
  flex: 1 1 0;
  min-width: 200px; 
}

.cart-main {
  flex: 1 0 35vw;
  max-width: 100%;
  margin-left: auto;
  height: auto;
  border-radius: 2rem;
}

.main-cart-table {
  width: 100%;
}
.main-cart-thumb {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 1rem;
  background: #000000;
  border: 1px solid rgba(253, 127, 32, 0.25);
  padding: 0.25rem;
}
.mini-cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 50;
  cursor: pointer;
}


.mini-cart-panel {
  position: absolute;
  top: 3.95vw;
  right: 2vw;
  width: 30vw;  
  background: #000000;
  z-index: 60;
  padding: 1rem;
  border-radius: 0 0 2rem 2rem;
  border: solid 1px #747474;
  border-top: none;
}
.mini-cart-thumb {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-right: 0.5rem;
  vertical-align: middle;
}
  .mini-cart-panel.grow-in {
    animation: growCartOpen 1s cubic-bezier(.4,0,.2,1) forwards;
    transform-origin: top right; /* Adjust to match your button's location */
  }

  .mini-cart-panel.grow-out {
    animation: growCartClose 1s cubic-bezier(.4,0,.2,1) forwards;
    transform-origin: top right;
  }
.mini-cart-table {

}
.mini-cart-items td {
  padding: 0.75rem;
}

@keyframes growCartOpen {
  from {
    transform: scale(0.2);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes growCartClose {
  from {
    transform: scale(1);
    opacity: 1;
  }

  to {
    transform: scale(0.2);
    opacity: 0;
  }
}

.mini-cart-items {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  height: auto;
  max-height: 20vw;
  overflow-y: auto;
}

  .mini-cart-items li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .5rem;
  }

.mini-cart-total {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.mini-cart-total p {
  margin: 0;
}

.subtotal-value {
  font-weight: 700;
}

.main-cart-panel .mini-cart-total {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(253, 127, 32, 0.22);
}

.main-cart-panel .mini-cart-actions {
  margin-top: 1rem;
}
.mini-cart-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.mini-cart-actions button {
  margin-right: .5rem;
}

.mini-cart-panel .cart-btn {
  background: #000000f2;
  border: none;
  transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out;
}

.main-cart-panel .cart-btn {
  background: #000000f2;
  border: none;
  transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out;
}

.mini-cart-panel .mini-cart-qty-btn {
  min-width: 2rem;
  padding: 0.35rem 0.55rem;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
}

.main-cart-panel .mini-cart-qty-btn {
  min-width: 2rem;
  padding: 0.35rem 0.55rem;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
}

.mini-cart-panel .cart-btn:not(:disabled):hover,
.mini-cart-panel .cart-btn:not(:disabled):focus-visible {
  background-color: #fd7f20;
  color: #000000;
  border: none;
  transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out;
}

.main-cart-panel .cart-btn:not(:disabled):hover,
.main-cart-panel .cart-btn:not(:disabled):focus-visible {
  background-color: #fd7f20;
  color: #000000;
  border: none;
  transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out;
}

.cart-badge {
  background: #000000b2;
  color: #fd7f20;
  border: 1px solid #fd7f20;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.5rem;
}
.cart {
  position: relative;
  display: inline-block;
  margin-right: 5%;
}

  .cart .fas {
    font-size: 24px;
  }

.cart-count {
  position: absolute;
  top: -10px;
  right: -10px;
  color: #fd7e14;
  padding: 2px 6px;
  font-size: 16px;
}
.cart-sidebar {
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  height: 100%;
  background-color: white;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
}

  .cart-sidebar.visible {
    transform: translateX(0);
  }

  .cart-sidebar.hidden {
    transform: translateX(100%);
  }

.cart-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
}

.cart-sidebar-content {
  padding: 10px;
}

#BGVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -10;
  animation: fadeInAnimation ease-in-out 1s;
}

.content {
  width: 100%;
  top: 5%;
  position: relative;
}
/* Place the navbar at the bottom of the page, and make it stick */
.navbar {
  height: 20%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 1000;

}

  /* Style the links inside the navigation bar */
  .navbar a {
    float: left;
    display: block;
    color: #fd7f20;
    text-align: center;
    text-decoration: none;
    font-size: 2vw;
    border-radius: 2rem;
    transition: background-color 0.5s linear;
    height: 100%;
    align-content: center;
    bottom: 0.75vw;
  }

    /* Change the color of links on hover */
    .navbar a:hover {
      background-color: #fd7f20;
      color: black;
      cursor: pointer;
      border-radius: 2rem;
      transition: background-color 1s linear;
    }
button .fas, button .fa {
  background: none; /* Remove any background */
  border: none; /* Remove any border */
  outline: none; /* Remove any outline */
  box-shadow: none; /* Remove any box shadow */
  color: inherit; /* Inherit the button's text color */
  font-size: inherit; /* Inherit the button's font size */
  margin: 0; /* Remove any margin */
  padding: 0; /* Remove any padding */
}
.pagination-btn {
  background-color: #000000d4;
  border: solid 2px #fd7f20;
  cursor: pointer;
  padding: 0.25rem;
  color: #fd7f20;
  font-size: calc(.5rem + 0.25vw);
  pointer-events: auto;
  border-radius: 0.2rem;
  margin: 0.25rem;
}

  .pagination-btn:hover {
    background-color: #fd7f20;
    color: #000000;
    transition: background-color 1s linear;
    transition: color 1s linear;
  }
.cart-btn {
  background-color: #000000d4;
  border: solid 2px #fd7f20;
  cursor: pointer;
  padding: 0.5rem;
  color: #fd7f20;
  font-size: 1rem;
  pointer-events: auto;
  border-radius: 2rem;
  outline: none; 
  box-shadow: none;
}
  .cart-btn:not(:disabled):hover {
    background-color: #fd7f20;
    color: #000000;
    transition: background-color 1s linear;
    transition: color 1s linear;
  }
  .cart-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
.nav-btns {
  display: flex;
  position: absolute;
  top: 20vw;
  left: 0%;
  bottom: 0%;
  right: 0%;
  width: 100%;
  height: 6vw;
  pointer-events: none; /* Ignore mouse events */
}

.nav-link {
  color: #fd7f20;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  text-decoration: none;
  right: 1%;
  position: inherit;
  max-width: 100%;
  top: 54%;
  font-size: calc(.5rem + 1vw);
}
  .nav-link:hover {
    color: #000000;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3rem;
    text-decoration: none;
    right: 1%;
    position: inherit;
    max-width: 100%;
    top: 54%;
    font-size: calc(.5rem + 1vw);
  }

.menu-item {
  position: relative;
  transition: transform 0.5s ease;
}

  .menu-item.active {
    background-color: #74747442;
    color: #fd7f2000;
    transition: transform 0.5s ease;
  }

.menu-img {
  height: 9vw;
  position: absolute;
  bottom: 0;
  left: 2vw;
  transform: translateY(140%);
  transition: transform 1s ease-in-out;
}

  .menu-img:hover {
    opacity: 0.25;
    transition: 0.2s ease-in-out
  }

.active-img {
  transform: translateY(0);
}

.inactive-img {
  transform: translateY(140%);
}

.mainlogo {
  opacity: 0.0;
  position: absolute;
  top: 2%;
  left: 35%;
  animation: fadeInOut 30s ease-in-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  width: 30%;
  height: 83%;
  justify-content: center;
  display: flex;
}

.logoimg {
  width: 100%;
  height: 100%;
}

#blazor-error-ui {
  background: rgba(0, 0, 0, 0.96);
  bottom: 0;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.45);
  display: none;
  left: 0;
  border-top: var(--jm-border-width, 1px) solid var(--jm-border-color-soft, #747474);
  padding: 0.6rem 1.25rem 0.7rem 1.25rem;
  position: fixed;
  width: 100%;
  z-index: 1000;
  color: #ffffff;
}

  #blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
  }

.blazor-error-boundary {
 background: rgba(0, 0, 0, 0.96);
 border: var(--jm-border-width, 1px) solid var(--jm-border-color-soft, #747474);
 border-radius: 1rem;
 padding: 1rem 1rem 1rem 3.7rem;
 color: #ffffff;
 box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.45);
}

.blazor-error-boundary::after {
  content: "An error has occurred."
}
/*  Containers  */

.container-merch {
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0%;
  left: 0%;
  max-width: 100%;
}

.socials-container {
  width: 79%;
  height: 65%;
  display: flex;
  position: absolute;
  top: 10%;
  left: 10%;
  border-radius: 2rem;
  background-color: #000000b2;
  padding: 1rem;
  border: 1px solid #747474;
}

.container-about {
  max-width: 100%;
  height: 100%;
  display: flex;
}

.container-irl {
  left: 50%;
  top: 44%;
  bottom: 20%;
  width: 39%;
  height: fit-content;
  display: flex;
  position: absolute;
  border-radius: 2rem;
  background-color: #000000b2;
  border: 1px solid #747474;
  padding: 0.5vw;
}

.top-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  z-index: 5;
  position: absolute;
  top: 1vw;
  height: fit-content;
  bottom: 0;
  left: 0%;
  right: 0%;
}

.content-container {
  height: 100%;
  max-width: 100%;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  width: 100%;
  overflow: hidden;
}

.footer-container {
  height: auto;
  display: flex;
  width: 100%;
  align-content: center;
  justify-content: center;
}

/*  Footer  */
.footer {
  width: 100%;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
}

.footer p {
  margin: 0;
}


/* Animation keyframes */
@keyframes slideAnimation {
  0% {
    transform: translateX(-100%) scale(0);
  }

  33% {
    transform: translateX(0%)scale(1);
  }

  66% {
    transform: translateX(0%)scale(1);
  }

  100% {
    transform: translateX(100%)scale(0);
  }
}

/* Animation Classes */

.fade-in {
  animation: fadeInAnimation ease-in-out 1s;
  animation-fill-mode: forwards;
}

.fade-out {
  animation: fadeOutAnimation ease-in-out 1s;
  animation-fill-mode: forwards;
}

.fade-in-out {
  animation: fadeInOut ease-in-out 30s;
  animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeOutAnimation {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}


/*  Animations  */

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  60% {
    opacity: 1;
  }

  70% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes spinning {
  0% {
    transform: rotate(0deg);
  }

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

@keyframes slideIn {
  0% {
    transform: translateX(-200%);
  }

  75% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes slideInScale {
  0% {
    transform: translateX(-200%) scale(0.2);
  }

  75% {
    transform: translateX(0) scale(1.2);
  }

  100% {
    transform: translateX(0) scale(1);
  }
}

@keyframes pulsate {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.5);
  }

  100% {
    transform: scale(1);
  }
}
/* Testing new socials cards carousel */


.container {
  width: 100%;
  max-width: 800px;
  max-height: 600px;
  height: 100%;
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.cards {
  position: relative;
  width: 100%;
  height: 100%;
}

.card {
  position: absolute;
  transition: transform .4s ease-in-out, opacity .4s ease-in-out;
  width: 60%;
  height: 100%;
  left: 20%;
  right: 20%;
  margin: auto;
  cursor: pointer;
  transform: scale(.8);
  opacity: .4;
  z-index: 0;
  border-radius: 1rem;
}

.nav-button {
  background-color: rgba(0, 0, 0, 0.83);
  border: solid 1px #fd7f20;
  cursor: pointer;
  position: absolute;
  top: 45%;
  color: #fd7f20;
  font-size: calc(.1rem + 2vw);
  pointer-events: auto;
  border-radius: 50%;
  width:10%;
  /* Add more styling as needed */
}
  .nav-button:hover {
    background-color: rgb(253, 127, 32);
    color: rgb(0, 0, 0);
    transition: color 1s linear;

  }

  .nav-button.left {
    left: 0;
    z-index: 3;
  }

  .nav-button.right {
    right: 0;
    z-index: 1;
  }
.nav-button-hidden {
  background-color: rgba(0, 0, 0, 0.00);
  border: hidden;
  cursor: pointer;
  position: absolute;
  top: 0%;
  width: 20%;
  height: 100%;
}
  .nav-button-hidden.left {
    left: 6%;
    z-index: 2;
    border-radius: 100% 0% 0% 10%;
  }

  .nav-button-hidden.right {
    right: 6%;
    z-index: 1;
    border-radius: 0% 100% 100% 0%;
  }
input[type="radio"] {
  display: none;
}
iframe{
  border-radius:1rem;
}
.loading-center {
  grid-column: 1 / -1; /* Span all columns */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 40vh; /* Adjust as needed */
  width: 100%;
}
.loading-spinner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100px;
    width: 100%;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 6px solid #fd7f20;
    border-top: 6px solid #222;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
.loader {
  color: #fd7f20;
  font-size: 45px;
  text-indent: -9999em;
  overflow: hidden;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  transform: translateZ(0);
  animation: spin 1.7s infinite ease, round 1.7s infinite ease;
}

@keyframes spin {
  0% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }

  5%, 95% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }

  10%, 59% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
  }

  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
  }

  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
  }

  100% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}
@keyframes round {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
/* Active card styles */
#item-1:checked ~ .cards .card:nth-of-type(1),
#item-2:checked ~ .cards .card:nth-of-type(2),
#item-3:checked ~ .cards .card:nth-of-type(3),
#item-4:checked ~ .cards .card:nth-of-type(4),
#item-5:checked ~ .cards .card:nth-of-type(5),
#item-6:checked ~ .cards .card:nth-of-type(1),
#item-7:checked ~ .cards .card:nth-of-type(2),
#item-8:checked ~ .cards .card:nth-of-type(3),
#item-9:checked ~ .cards .card:nth-of-type(4),
#item-10:checked ~ .cards .card:nth-of-type(5) {
  transform: translateX(0) scale(1);
  opacity: 1;
  z-index: 2; /* Ensure the active card is above others */
}

/* Positioning for the cards immediately next to the active card */
#item-1:checked ~ .cards .card:nth-of-type(2),
#item-2:checked ~ .cards .card:nth-of-type(3),
#item-3:checked ~ .cards .card:nth-of-type(4),
#item-4:checked ~ .cards .card:nth-of-type(5),
#item-5:checked ~ .cards .card:nth-of-type(1),
#item-6:checked ~ .cards .card:nth-of-type(2),
#item-7:checked ~ .cards .card:nth-of-type(3),
#item-8:checked ~ .cards .card:nth-of-type(4),
#item-9:checked ~ .cards .card:nth-of-type(5),
#item-10:checked ~ .cards .card:nth-of-type(1) {
  transform: translateX(20%) scale(.8);
  opacity: .9;
  z-index: 1;
}

#item-1:checked ~ .cards .card:nth-of-type(5),
#item-2:checked ~ .cards .card:nth-of-type(1),
#item-3:checked ~ .cards .card:nth-of-type(2),
#item-4:checked ~ .cards .card:nth-of-type(3),
#item-5:checked ~ .cards .card:nth-of-type(4),
#item-6:checked ~ .cards .card:nth-of-type(5),
#item-7:checked ~ .cards .card:nth-of-type(1),
#item-8:checked ~ .cards .card:nth-of-type(2),
#item-9:checked ~ .cards .card:nth-of-type(3),
#item-10:checked ~ .cards .card:nth-of-type(4) {
  transform: translateX(-20%) scale(.8);
  opacity: .9;
  z-index: 1;
}

/* Positioning for the cards two positions away from the active card */
#item-1:checked ~ .cards .card:nth-of-type(3),
#item-2:checked ~ .cards .card:nth-of-type(4),
#item-3:checked ~ .cards .card:nth-of-type(5),
#item-4:checked ~ .cards .card:nth-of-type(1),
#item-5:checked ~ .cards .card:nth-of-type(2),
#item-6:checked ~ .cards .card:nth-of-type(3),
#item-7:checked ~ .cards .card:nth-of-type(4),
#item-8:checked ~ .cards .card:nth-of-type(5),
#item-9:checked ~ .cards .card:nth-of-type(1),
#item-10:checked ~ .cards .card:nth-of-type(2) {
  transform: translateX(40%) scale(.6);
  opacity: .8;
  z-index: 0;
}

#item-1:checked ~ .cards .card:nth-of-type(4),
#item-2:checked ~ .cards .card:nth-of-type(5),
#item-3:checked ~ .cards .card:nth-of-type(1),
#item-4:checked ~ .cards .card:nth-of-type(2),
#item-5:checked ~ .cards .card:nth-of-type(3),
#item-6:checked ~ .cards .card:nth-of-type(4),
#item-7:checked ~ .cards .card:nth-of-type(5),
#item-8:checked ~ .cards .card:nth-of-type(1),
#item-9:checked ~ .cards .card:nth-of-type(2),
#item-10:checked ~ .cards .card:nth-of-type(3) {
  transform: translateX(-40%) scale(.6);
  opacity: .8;
  z-index: 0;
}

/*  Media Queries  */
@media only screen and (max-width: 768px) {
  .responsive-body {
    margin: 0 auto;
    padding: 1rem;
    width: 100%;
    max-width: 768px; /* Adjust based on your design */
    box-sizing: border-box;
  }

  .navbar {
    height: 10vh; /* Increase height for better touch targets */
    width: 90%; /* Increase width */
  }

    .navbar a {
      font-size: 4vw; /* Increase font size */
    }

  .p {
    font-family: "Montserrat";
    font-size: calc(.5rem + 0.5vw);
    outline: none
  }
}

@media only screen and (max-width: 600px) {
  .responsive-body {
    margin: 0 auto;
    padding: 1rem;
    width: 100%;
    max-width: 600px; /* Adjust based on your design */
    box-sizing: border-box;
  }

  .p {
    font-family: "Montserrat";
    font-size: calc(.5rem + 0.5vw);
    outline: none;
  }

  .navbar {
    flex-direction: column; /* Stack items vertically */
    height: auto; /* Adjust height automatically */
    padding: 2vh 0; /* Adjust padding */
  }

    .navbar a {
      font-size: 5vw; /* Further increase font size */
      margin: 1vh 0; /* Adjust margins for vertical layout */
    }
}

/* Add to the END of your existing CSS file */

/* ============================================
   MOBILE COMING SOON OVERLAY (Exact Copy from Main Site)
   ============================================ */

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  background-image: url('/img/website backdrop.png');
  background-size: cover;
  background-position: center;
  z-index: 10000;
  overflow-y: auto;
}

.mobile-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  min-height: 100vh;
  background: rgba(0, 0, 0, 0.85);
}

.mobile-logo {
  width: 60%;
  max-width: 250px;
  height: auto;
  margin-bottom: 2rem;
  animation: fadeInScale 1s ease-in-out;
}

.mobile-message h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 8vw, 3rem);
  color: #fd7f20;
  margin: 1rem 0;
  line-height: 1.2;
}

.mobile-message p {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 4vw, 1.2rem);
  color: #ffffff;
  margin: 1rem 0;
  max-width: 400px;
  line-height: 1.6;
}

.mobile-subtitle {
  font-size: clamp(0.9rem, 3.5vw, 1rem) !important;
  color: #cccccc !important;
  margin-top: 2rem !important;
}

.mobile-social-links {
  display: flex;
  gap: 1rem;
  margin: 2rem 0 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.mobile-social-icon {
  color: #ffffff;
  background: #000000;
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  text-decoration: none;
  font-size: 28px;
  border: 2px solid #747474;
  transition: all 0.3s ease;
}

  .mobile-social-icon:hover,
  .mobile-social-icon:active {
    color: #fd7f20;
    border-color: #fd7f20;
    transform: scale(1.1);
    background: #1a1a1a;
  }

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Very small screens */
@media (max-width: 360px) {
  .mobile-message {
    padding: 1.5rem 1rem;
  }

  .mobile-logo {
    width: 50%;
    max-width: 180px;
  }

  .mobile-social-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

/* Ensure accessibility */
@media (prefers-reduced-motion: reduce) {
  .mobile-logo {
    animation: none;
  }

  .mobile-social-icon:hover,
  .mobile-social-icon:active {
    transform: none;
  }
}
.under-construction-full-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.under-construction-container {
  text-align: center;
  padding: 2rem;
  max-width: 600px;
}

.under-construction-logo {
  width: 200px;
  height: auto;
  margin-bottom: 2rem;
  animation: fadeInScale 1s ease-in-out;
}

.under-construction-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  color: #fd7f20;
  margin-bottom: 1rem;
}

.under-construction-message {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.admin-login-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.admin-login-container {
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid #747474;
  border-radius: 1rem;
  padding: 3rem 2rem;
  max-width: 400px;
  width: 90%;
  text-align: center;
  animation: fadeInUp 0.5s ease-out;
}

.admin-logo {
  width: 150px;
  height: auto;
  margin-bottom: 2rem;
}

.admin-login-container h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  color: #fd7f20;
  margin-bottom: 2rem;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.password-input {
  width: 100%;
  padding: 1rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  background: #1a1a1a;
  border: 1px solid #747474;
  border-radius: 0.5rem;
  color: #ffffff;
  box-sizing: border-box;
}

  .password-input:focus {
    outline: none;
    border-color: #fd7f20;
  }

  .password-input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }

.login-button {
  width: 100%;
  padding: 1rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background: #fd7f20;
  color: #000000;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

  .login-button:hover:not(:disabled) {
    background: #ff9933;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(253, 127, 32, 0.4);
  }

  .login-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }

.success-message {
  background: rgba(40, 167, 69, 0.2);
  border: 1px solid #28a745;
  color: #6bcf7f;
  padding: 0.75rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  font-family: "Montserrat", sans-serif;
}

.main-content-footer {
  margin-top: auto; /* Pushes footer to bottom */
  padding-top: 0.35rem;
  border-top: 1px solid #747474;
  width: 100%;
  text-align: center;
}

@media screen and (max-height: 760px) and (min-width: 1000px) {
  .category-grid-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
    padding: 0.5rem;
  }

  .grid-item {
    max-width: 360px;
    max-height: none;
    padding: 0.65rem;
  }

  .product-card-image-container {
    aspect-ratio: 3 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.22);
  }

  .category-product-image {
    object-fit: contain;
    background: rgba(0, 0, 0, 0.22);
  }

  .product-default-info h3 {
    font-size: 1.15rem;
  }

  .product-default-info p {
    font-size: 0.92rem;
  }
}

/* Add these styles for Home.razor loading/error states */

.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  width: 100%;
  text-align: center;
  padding: 2rem;
}

.loading-container p {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #fd7f20;
}

.error-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  width: 100%;
  text-align: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 1rem;
  border: 1px solid #747474;
  max-width: 600px;
  margin: 0 auto;
}

.error-container h2 {
  color: #fd7f20;
  margin-bottom: 1rem;
}

.error-container p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.retry-button {
  background: #fd7f20;
  color: #000;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.retry-button:hover {
  background: #ff9933;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(253, 127, 32, 0.4);
}

.quantity-btn {
  background: #000000b2;
  color: #fd7f20;
  border: 1px solid #fd7f20;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease; /* Smoother transition */
  font-weight: bold; /* Make + and - more prominent */
  user-select: none; /* Prevent text selection */
}

  .quantity-btn:hover:not(:disabled) {
    background: #fd7f20;
    color: #000000;
    border: 1px solid #000000;
    transform: scale(1.1); /* Slight grow effect on hover */
    box-shadow: 0 2px 8px rgba(253, 127, 32, 0.4); /* Subtle glow */
  }

  .quantity-btn:active:not(:disabled) {
    transform: scale(0.95); /* Button press effect */
  }

  .quantity-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(50%); /* Gray out disabled button */
  }

.quantity-value {
  min-width: 2.5rem; /* Slightly wider for better spacing */
  text-align: center;
  font-size: 1.2rem;
  color: #fd7f20;
  font-family: "Montserrat";
  font-weight: 600; /* Make number more prominent */
}
