/*  FONTS & VARIABLES*/
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap");

/*  GLOBAL RESETS*/
html,
body {
  background-color: var(--brand-background);
  color: var(--brand-white);
  font-family: var(--brand-font);
}

/* GLOBAL LOADER */
.global-loader-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease, visibility 200ms ease;
}
.global-loader-backdrop.active {
  opacity: 1;
  visibility: visible;
}
.global-loader-content {
  position: relative;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.global-loader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--brand-orange);
  animation: spin 1s linear infinite;
}
.global-loader-logo {
  position: relative;
  width: 70px;
  height: 70px;
  object-fit: contain;
  z-index: 1;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.text-brand-black {
  color: var(--brand-black) !important;
}
.text-inactive {
  color: var(--text-inactive) !important;
}

a {
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.8;
}

/* HERO */
.hero-section {
  position: relative;
  min-height: 90vh;
  background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.25) 45%,
      rgba(0, 0, 0, 0) 75%
    ),
    url("../img/hero.jpg") center center / cover no-repeat;
  color: var(--brand-white);
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .hero-section {
    min-height: 72vh;
    padding: 4rem 0 3rem;
    align-items: flex-start;
    background-position: top center;
    background-size: fill;
  }

  .hero-section .hero-media {
    inset: 18% 10%;
  }
}

.hero-title {
  font-weight: 800;
  font-size: clamp(2.8rem, 4vw + 1rem, 4.5rem);
  line-height: 1;
  margin: 0;
}

.hero-cta {
  color: var(--brand-orange);
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-transform: lowercase;
  display: inline-block;
  margin-top: 1.5rem;
}

.hero-cta:hover {
  opacity: 0.85;
}

/* BOUTIQUE CURATOR HERO CAROUSEL */
#heroCarousel {
  position: relative;
  width: 100%;
}

.carousel-inner {
  min-height: 90vh;
  display: flex;
  align-items: stretch;
}

.carousel-item {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  transition: opacity 0.6s ease-in-out;
}

.carousel-item.active {
  opacity: 1;
}

.carousel-item:not(.active) {
  opacity: 0;
}

/* Video and Image Media */
.hero-video,
.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-video {
  /* Ensure videos maintain aspect ratio on mobile */
  display: block;
}

/* Overlay Layer */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.068);
  z-index: 2;
}

/* Caption Styling */
.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  text-align: left;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
  padding: 6rem 2rem 3rem;
  margin: 0;
  width: 100%;
  display: flex !important;
  flex-direction: column;
  justify-content: flex-end;
}

.carousel-caption h1 {
  color: var(--brand-white);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.carousel-caption .hero-subtitle {
  color: var(--text-inactive);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin: 0 0 0.5rem 0;
}

/* Ghost Button - Premium Boutique Style */
.btn-brand-orange {
  background-color: transparent;
  border-color: var(--brand-white);
  border-width: 2px;
  color: var(--brand-white);
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0.75rem 2rem;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border-radius: 4px;
  display: inline-block;
}

.btn-brand-orange:hover {
  background-color: #FF5722;
  border-color: #FF5722;
  color: var(--brand-white);
  box-shadow: 0 8px 16px rgba(255, 87, 34, 0.3);
}

.btn-brand-orange:focus {
  background-color: #FF5722;
  border-color: #FF5722;
  color: var(--brand-white);
  box-shadow: 0 0 0 0.25rem rgba(255, 87, 34, 0.25);
}


@media (max-width: 575.98px) {
  .brand-card-logo-only {
    padding: 12px;
    min-height: 140px;
  }
  .brand-card-logo-only .brand-logo {
    max-width: 92%;
  }
  .row > .col-12 {
    width: 100%;
    max-width: 100%;
  }
}

/* Carousel Controls - Minimalist Chevrons */
.carousel-control-prev,
.carousel-control-next {
  width: auto;
  height: auto;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.3;
  transition: opacity 0.3s ease;
  background: none;
  border: none;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 28px;
  height: 28px;
  background-color: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--brand-white);
}

.carousel-control-prev {
  left: 3rem;
}

.carousel-control-next {
  right: 3rem;
}

/* Carousel Indicators - Luxury Dash Style */
.hero-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 20px;
}

.hero-indicators button {
  width: 32px;
  height: 2px;
  border-radius: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-indicators button.active {
  background-color: #FF5722;
  width: 48px;
}

.hero-indicators button:hover:not(.active) {
  background-color: rgba(255, 255, 255, 0.7);
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .carousel-inner {
    min-height: 90vh;
  }

  .carousel-item {
    min-height: 90vh;
  }

  .hero-video {
    display: none;
  }

  .carousel-caption {
    padding: 4rem 1.5rem 2rem;
  }

  .carousel-caption h1 {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 1rem;
  }

  .carousel-caption .hero-subtitle {
    font-size: 0.75rem;
  }

  .btn-brand-orange {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    opacity: 0.2;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 24px;
    height: 24px;
    font-size: 24px;
  }

  .carousel-control-prev {
    left: 1.5rem;
  }

  .carousel-control-next {
    right: 1.5rem;
  }

  .hero-indicators {
    bottom: 1rem;
    gap: 16px;
  }

  .hero-indicators button {
    width: 24px;
    height: 2px;
  }

  .hero-indicators button.active {
    width: 40px;
  }
}

@media (max-width: 576px) {
  .carousel-inner {
    min-height: 80vh;
  }

  .carousel-item {
    min-height: 80vh;
  }

  .carousel-caption {
    padding: 3rem 1rem 1.5rem;
  }

  .carousel-caption h1 {
    font-size: clamp(2rem, 8vw, 3.5rem);
    margin-bottom: 0.75rem;
  }

  .carousel-caption .hero-subtitle {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
  }

  .btn-brand-orange {
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 20px;
    height: 20px;
    font-size: 20px;
  }

  .carousel-control-prev {
    left: 1rem;
  }

  .carousel-control-next {
    right: 1rem;
  }

  .hero-indicators {
    bottom: 0.75rem;
    gap: 12px;
  }

  .hero-indicators button {
    width: 20px;
    height: 1.5px;
  }

  .hero-indicators button.active {
    width: 32px;
  }
}

/* RETRO ARCHIVE CAROUSEL */
.retro-carousel .carousel-inner {
  border-radius: 20px;
}

.retro-slide {
  position: relative;
  height: 470px;
  background: url("../img/retro-banner.jpg") center center / cover no-repeat;
}

.retro-overlay {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.15) 80%,
    rgba(0, 0, 0, 0) 100%
  );
}

.retro-title {
  font-weight: 800;
  font-size: clamp(2rem, 3vw + 1rem, 2.8rem);
  letter-spacing: 0.5px;
}

.retro-subtitle {
  font-weight: 500;
  color: #f5f5f5;
}

.retro-control {
  width: auto;
}

.retro-control-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-size: 1.1rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.retro-control.carousel-control-prev,
.retro-control.carousel-control-next {
  opacity: 1;
}

.retro-control.carousel-control-prev {
  left: 24px;
}

.retro-control.carousel-control-next {
  right: 24px;
}

#retroCarousel .carousel-inner {
  height: 470px;
  min-height: auto;
}

#retroCarousel .carousel-inner {
  height: 470px;
  min-height: auto;
  position: relative;
  overflow: hidden;
}

/* Simplified slide transitions using transform only (no opacity) */
#retroCarousel .carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 500ms ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
  display: block;
  transform: translateX(100%);
}

#retroCarousel .carousel-item.active {
  position: relative;
  transform: translateX(0);
}

/* Starting positions for next/prev */
#retroCarousel .carousel-item-next { transform: translateX(100%); }
#retroCarousel .carousel-item-prev { transform: translateX(-100%); }

/* When bootstrap adds the helper classes during slide, map them to transforms */
#retroCarousel .carousel-item.active.carousel-item-start { transform: translateX(-100%); }
#retroCarousel .carousel-item-next.carousel-item-start { transform: translateX(0); }

#retroCarousel .carousel-item.active.carousel-item-end { transform: translateX(100%); }
#retroCarousel .carousel-item-prev.carousel-item-end { transform: translateX(0); }

/* NEW RELEASES */
.product-card {
  background: var(--brand-white);
  border: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  padding: 0;
}

.product-card:hover {
  border-color: var(--brand-black);
}

.product-media {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  padding: 12px;
}

.product-image {
  object-fit: contain;
  width: 100%;
  height: 100%;
  padding: 4px;
}

.product-body {
  padding: 16px 16px 12px;
  color: var(--brand-black);
}

.product-brand {
  color: var(--text-inactive);
  font-size: 0.8rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.product-title-detail {
  color: var(--brand-black);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.text-description {
  color: var(--text-inactive);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 1rem;
}

.product-title {
  color: var(--brand-black);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  text-transform: uppercase;
}
.badge-gender {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.65rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  white-space: nowrap;
}
/* Featured badge uses theme variables and is always visible */
.badge-featured {
  display: inline-block;
  background: var(--brand-orange);
  color: var(--brand-white);
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: capitalize;
  white-space: nowrap;
  z-index: 12;
  opacity: 1 !important;
  visibility: visible !important;
}
.product-card .badge-featured {
  position: absolute;
  top: 8px;
  left: 8px;
}

/* Responsive: smaller featured badge on small screens */
@media (max-width: 576px) {
  .badge-featured {
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 6px;
  }
  .product-card .badge-featured {
    top: 6px;
    left: 6px;
  }
}
.size-toggle {
  border: 1px solid #ddd;
  background: #fff;
  color: #111;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.size-toggle.active {
  border-color: #111;
  background: #111;
  color: #fff;
}

.text-description {
  color: var(--brand-black);
  font-family: var(--brand-font);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  text-align: justify;
}

.size-label {
  color: #121212;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.product-price-detail {
  color: var(--brand-black);
  font-size: 2rem;
  font-weight: 300;
}

.product-price {
  color: var(--brand-black);
  font-weight: 500;
}

/* BRANDS */
.brand-card {
  background: #ffffff;
  border: 1px solid transparent;
  border-radius: 12px;
  min-height: 160px;
  transition: border-color 0.2s ease;
}

.brand-card:hover {
  border-color: var(--brand-black);
}

.brand-logo {
  max-width: 30%;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 575.98px) {
  /* Ensure brand-grid columns take full width on XS */
  .brand-grid > .col-12 {
    width: 100%;
    max-width: 100%;
  }

  /* Horizontal brand card styling (mobile only) */
  .brand-grid .brand-card-horizontal {
    background: #ffffff;
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 12px 14px;
    min-height: 72px;
  }

  .brand-grid .brand-card-horizontal:hover {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  }

  .brand-grid .brand-logo {
    max-width: 30%;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
  }

  .brand-grid .brand-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-black);
    text-transform: uppercase;
    letter-spacing: 0.4px;
  }
}

/* EDITORIAL */
.editorial-card {
  color: white;
}

.editorial-media {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.editorial-link {
  color: var(--brand-orange);
  text-decoration: underline;
  font-weight: 600;
}

.editorial-link:hover {
  opacity: 0.85;
}

.editorial-section {
  background-color: #333333;
  color: #ffffff;
}

.editorial-title {
  color: var(--brand-white);
  font-size: 1.75rem;
  letter-spacing: 0.3px;
}

.editorial-text {
  color: var(--text-inactive);
  font-weight: 250;
  line-height: 1.6;
}

.editorial-copy {
  color: #ffffff;
  font-weight: 300;
  line-height: 1.7;
  text-align: justify;
}

.editorial-media {
  height: 380px;
  overflow: hidden;
  padding: 0;
  border: 0;
  background-color: transparent !important;
}

.editorial-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-link {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-transform: lowercase;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.cta-link:hover {
  color: #ffffff;
  opacity: 0.8;
}

/* Cart page */
.cart-page {
  background: #f6f6f6;
  color: var(--brand-black);
  font-size: 1rem;
}
.cart-heading {
  color: var(--brand-black);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.cart-card {
  background: #fff;
  border: 1px solid #e5e5e5;
}
.cart-item-row {
  padding: 18px 20px;
  border-bottom: 1px solid #e5e5e5;
}
.cart-item-row:last-child {
  border-bottom: none;
}
.cart-item-img {
  width: 140px;
  height: 110px;
  object-fit: contain;
  background: #fafafa;
  border: 1px solid #eee;
}
.cart-item-info {
  line-height: 1.4;
}
.cart-item-name {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
}
.cart-item-brand {
  font-size: 0.78rem;
  color: #555;
  text-transform: uppercase;
}
.cart-item-size {
  font-size: 0.78rem;
  color: #777;
}
.cart-item-price-lg {
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
}
.cart-qty-box {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 6px 12px;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
}
.cart-qty-btn {
  background: none;
  border: none;
  color: #555;
  padding: 0;
}
.wishlist-btn {
  border: 1px solid #dcdcdc;
  background: #fff;
  color: #444;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.summary-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  color: var(--brand-black);
  font-size: 0.95rem;
}
.payment-icons {
  gap: 10px !important;
}
.payment-pill {
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  padding: 6px 10px;
  min-width: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.payment-icon-img {
  height: 20px;
  object-fit: contain;
  display: block;
}
.summary-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.summary-divider {
  height: 1px;
  background: #e5e5e5;
  margin: 10px 0 14px;
}
.summary-card h6 {
  font-size: 1.05rem;
  color: var(--brand-black);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}
.summary-total {
  font-weight: 700;
  margin-top: 0.4rem;
}
.checkout-btn {
  background: #e35926;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border: none;
}
.checkout-btn:disabled {
  background: #c7c7c7;
  border: none;
}
.shipping-banner {
  border-top: 1px solid #e5e5e5;
  padding: 10px 0;
  font-size: 0.95rem;
  color: #444;
}
.recommend-card {
  background: #fff;
  border: 1px solid #e5e5e5;
}
.recommend-img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  padding: 12px;
  background: #fafafa;
}
.summary-sticky {
  position: sticky;
  top: 24px;
}

.cart-heading {
  color: var(--brand-black);
  font-weight: 700;
  font-size: 1.75rem;
}

/* Recommended scroller */
.recommend-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 260px;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
}
.recommend-scroller::-webkit-scrollbar {
  display: none;
}
.recommend-scroller {
  scrollbar-width: none;
}
.recommend-card {
  scroll-snap-align: start;
}
.recommend-progress {
  width: 100%;
  height: 2px;
  background: #e5e5e5;
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}
.recommend-thumb {
  position: absolute;
  left: 0;
  top: -1px;
  height: 4px;
  width: 0%;
  background: #000;
  transition: width 0.1s linear;
}

.rec-nav {
  position: absolute;
  top: 40%;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  color: #111;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
.rec-nav-prev {
  left: -14px;
}
.rec-nav-next {
  right: -14px;
}
.position-relative:hover .rec-nav {
  display: inline-flex;
}

/*  UTILITY CLASSES*/
.bg-brand-black {
  background-color: var(--brand-black) !important;
}
.text-brand-orange {
  color: var(--brand-orange) !important;
}

/*HEADER COMPONENTS*/

.search-pill {
  background-color: var(--brand-dark-gray) !important;
  border: 1px solid var(--brand-dark-gray) !important;
  border-radius: 50px !important;
  color: white !important;
  padding: 10px 20px;
  outline: none;
  text-align: left !important;
}

.search-pill::placeholder {
  color: #888;
  text-align: left;
}

.search-pill:focus {
  border-color: var(--brand-orange) !important;
  box-shadow: 0 0 5px rgba(255, 80, 7, 0.5);
}

.border-brand-dark-gray {
  border-color: var(--brand-dark-gray) !important;
}

/* replace browser default cancel button with a white X for .search-pill */
input.search-pill::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'><path d='M6 6l12 12M18 6L6 18' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    no-repeat center;
  background-size: 14px 14px;
  cursor: pointer;
  opacity: 0.95;
}

/* Edge / IE fallback */
input.search-pill::-ms-clear {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'><path d='M6 6l12 12M18 6L6 18' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    no-repeat center;
  background-size: 14px 14px;
}

input.search-pill {
  padding-right: 20px;
}

/* Header Buttons */
.btn-login {
  background-color: var(--brand-dark-gray);
  color: white;
  font-weight: 600;
  border-radius: 8px;
  padding: 8px 20px;
}

.btn-signup {
  background-color: var(--brand-white);
  color: black;
  font-weight: 700;
  border-radius: 8px;
  padding: 8px 20px;
}

.category-links a {
  color: rgba(255, 255, 255, 0.7);
  text-transform: capitalize;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.category-links a:hover {
  color: var(--brand-orange);
  opacity: 1;
}

/*  BUTTONS (Global)*/
.btn-primary-orange {
  background-color: var(--brand-orange);
  color: white;
  border: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s ease;
}

.btn-primary-orange:hover {
  background-color: #e04505; /* Slightly darker orange */
  color: white;
}

/* SIDEBAR CART (Offcanvas) */
.offcanvas-cart {
  background-color: var(--brand-black);
  color: white;
  border-left: 1px solid var(--brand-dark-gray);
}

.offcanvas-cart {
  background-color: #fff;
  color: #111;
  border-left: 1px solid #d9d9d9;
}

.offcanvas-cart .offcanvas-header {
  border-bottom: 1px solid #d9d9d9;
}

.offcanvas-header {
  border-bottom: 1px solid var(--brand-dark-gray);
}

/* The Trust Badges Section */
.trust-badges {
  background-color: var(--brand-dark-gray);
  border-radius: 8px;
  padding: 15px;
}

.btn-close-white {
  filter: invert(1);
}

/* FOOTER */
.footer-logo {
  padding-right: 4rem;
}

/* CATALOGUE / SHOP PAGE */
.catalogue-hero {
  background-color: var(--brand-orange);
  padding: 80px 0;
}

.catalogue-title {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 1px;
}

.catalogue-subtitle {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 300;
}

.filter-pill {
  background-color: #e5e5e5;
  border: 2px solid transparent;
  border-radius: 50px;
  padding: 8px 24px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #333;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

/* PLP two-up grid on mobile */
.plp-grid {
  margin: 0 -8px;
}
.plp-grid > .product-col {
  padding: 0 8px 16px;
}
@media (max-width: 991px) {
  .plp-grid > .product-col {
    width: 50%;
  }
}

.filter-pill:hover {
  background-color: #d5d5d5;
  color: #333;
  text-decoration: none;
}

.filter-pill.active {
  border-color: #333;
  background-color: #fff;
  color: #333;
}

.catalogue-search {
  background-color: #f5f5f5;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.95rem;
}

.catalogue-search:focus {
  background-color: #fff;
  border-color: #333;
  box-shadow: none;
}

.pagination-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.pagination-arrow {
  font-weight: 600;
  font-size: 0.95rem;
  transition: opacity 0.2s ease;
}

.pagination-arrow:hover {
  opacity: 0.7;
}

.pagination-info {
  font-size: 1rem;
}

/* PRODUCT DETAIL PAGE */
.product-gallery-main {
  max-height: 520px;
  object-fit: contain;
}

.product-gallery-nav.prev {
  left: 12px;
}
.product-gallery-nav.next {
  right: 12px;
}
.product-thumb {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
}
.product-thumb.active {
  border-color: var(--brand-black);
}
.size-btn {
  border: 1px solid #e5e5e5;
  background: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  min-width: 58px;
  text-align: center;
  font-weight: 600;
  color: #333;
  transition: all 0.15s ease;
}
.size-btn:hover {
  border-color: #ccc;
}
.size-btn.active {
  background: #111;
  color: #fff;
  border-color: #111;
}
.size-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
  gap: 12px;
}
.btn-size {
  width: 100%;
  min-width: 72px;
  height: 52px;
  border: 1px solid #d9d9d9;
  background: #fff;
  color: #121212;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-transform: none;
  border-radius: 6px;
  transition: all 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-size:hover,
.btn-size.active {
  background: #121212;
  color: #fff;
  border-color: #121212;
}
.btn-cta {
  width: 100%;
  padding: 14px 16px;
  background: var(--brand-orange);
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
  border: none;
  border-radius: 12px;
  letter-spacing: 0.02em;
}
.btn-cta:hover {
  background: #c74b1f;
  color: #fff;
}

.product-gallery {
  width: 100%;
}

.product-gallery-main {
  position: relative;
  width: 100%;
  height: 500px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 0 60px;
  box-sizing: border-box;
}

.product-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e5e5e500;
  background: rgba(255, 255, 255, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #121212;
}

.product-gallery-nav.prev {
  left: 10px;
}

.product-gallery-nav.next {
  right: 10px;
}

.product-gallery-nav:hover {
  background: #fff;
}

.product-thumbs .product-thumb {
  border: 1px solid transparent;
  border-radius: 10px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.product-thumbs .product-thumb img {
  width: 80px;
  height: 60px;
  object-fit: contain;
}

.product-thumbs .product-thumb.active {
  border-color: #111;
  box-shadow: 0 0 0 2px #111 inset;
}

/* Cart sidebar item */
.cart-item-row {
  gap: 12px;
}

.cart-item-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
}

.cart-item-title {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
  max-width: 180px;
}

.cart-item-header .cart-item-price {
  margin-left: 8px;
  white-space: nowrap;
}

.cart-item-meta {
  color: #6c757d;
  font-size: 12px;
  margin-top: 4px;
}

.cart-qty-box {
  border: 1px solid #dee2e6;
  border-radius: 6px;
  padding: 6px 10px;
  gap: 14px;
  background: #fff;
  width: fit-content;
}

.cart-qty-btn {
  border: none;
  background: transparent;
  padding: 0;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-qty-value {
  min-width: 12px;
  text-align: center;
}

.shipping-accordion .accordion-button {
  background: transparent;
  border: none;
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--brand-black);
}

.shipping-accordion .accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--brand-black);
  box-shadow: none;
}

.shipping-accordion .accordion-button:focus {
  box-shadow: none;
}

.shipping-accordion .accordion-body {
  padding-left: 0;
  padding-right: 0;
}

.accordion-item {
  background-color: transparent !important;
}

.accordion-text {
  color: var(--brand-black);
  font-family: var(--brand-font);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

.recommend-text {
  color: var(--brand-black);
  font-family: var(--brand-font);
  font-weight: 600;
  font-size: 1.25rem;
}
