/* =============================================================
   Heavy Metal T-Shirt — Common Stylesheet
   Covers: tokens · base · navbar · footer · product cards
           hero carousel · PDP · trust bar · collection banners
   ============================================================= */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Neutral Scale */
  --neutral-25: #FFFFFF;
  --neutral-50: #F5F5F5;
  --neutral-75: #EDEDED;
  --neutral-100: #E1E1E1;
  --neutral-200: #DADADA;
  --neutral-250: #B1B1B1;
  --neutral-300: #999999;
  --neutral-350: #858585;
  --neutral-400: #5E5E5E;
  --neutral-450: #515151;
  --neutral-500: #4A4A4A;
  --neutral-600: #393939;
  --neutral-700: #333333;
  --neutral-800: #242424;
  --neutral-900: #1A1A1A;
  --neutral-1000: #0a0a0a;

  --color-dark-25: var(--neutral-25);
  --color-dark-50: var(--neutral-50);
  --color-dark-75: var(--neutral-75);
  --color-dark-100: var(--neutral-100);
  --color-dark-200: var(--neutral-200);
  --color-dark-250: var(--neutral-250);
  --color-dark-300: var(--neutral-300);
  --color-dark-350: var(--neutral-350);
  --color-dark-400: var(--neutral-400);
  --color-dark-450: var(--neutral-450);
  --color-dark-500: var(--neutral-500);
  --color-dark-600: var(--neutral-600);
  --color-dark-700: var(--neutral-700);
  --color-dark-800: var(--neutral-800);
  --color-dark-900: var(--neutral-900);
  --color-dark-1000: var(--neutral-1000);

  /* Brand */
  --color-primary: #e0001b;
  --color-white: #ffffff;

  /* Aliases */
  --color-dark: var(--neutral-900);
  --color-light-gray: var(--neutral-50);
  --color-mid-gray: var(--neutral-400);
  --color-text: var(--neutral-900);
  --color-text-muted: var(--neutral-500);
  --color-border: var(--neutral-100);

  /* Typography */
  --font-body: 'Geist', sans-serif;
  --font-heading: 'Geist', sans-serif;

  /* Spacing */
  --section-padding: 4rem 0;
}

/* ── Base Reset ────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: 'Geist', sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  margin: 0;
}

/* ── Announcement Bar ──────────────────────────────────────── */
.announcement-bar {
  background: var(--color-dark);
  color: var(--color-white);
  font-size: 0.78rem;
  padding: 0.45rem 0;
  letter-spacing: 0.03em;
}

/* ── Navbar ────────────────────────────────────────────────── */
.site-navbar {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding: 0.75rem 0;
  text-transform: uppercase;
}

.site-navbar__brand {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-dark) !important;
  text-decoration: none;
  line-height: 1.1;
  text-transform: uppercase;
  padding: 4px 8px;
  letter-spacing: 0.05em;
}

.site-navbar .nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text) !important;
  padding: 0.4rem 0.9rem !important;
  letter-spacing: 0.02em;
}

.site-navbar .nav-link:hover {
  color: var(--color-primary) !important;
}

.site-navbar__search {
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 0.55rem 0.75rem;
  font-size: 0.85rem;
  width: 215px;
  outline: none;
}

.site-navbar__auth {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text) !important;
  text-decoration: none;
}

.site-navbar__auth:hover {
  color: var(--color-primary) !important;
}

.site-navbar__cart {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text) !important;
  text-decoration: none;
}

/* ── Shared Buttons ────────────────────────────────────────── */
.btn-red {
  background: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.65rem 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}

.btn-red:hover {
  background: #bf0015;
  border-color: #bf0015;
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  border: 2px solid currentColor;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.65rem 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}

.btn-dark {
  display: block;
  width: 100%;
  background: var(--color-dark);
  color: var(--color-white);
  border: none;
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 700;
  padding: 0.85rem 1rem;
  text-align: center;
  letter-spacing: 0.03em;
  cursor: pointer;
  margin-top: 1.25rem;
  transition: background 0.2s;
}
.btn-dark:hover { background: var(--neutral-700); }

.btn-quick-add {
  display: inline-block;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-dark);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.35rem 0.9rem;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
  letter-spacing: 0.02em;
}

.btn-quick-add:hover {
  border-color: var(--color-dark);
  background: var(--color-dark);
  color: var(--color-white);
}



/* ── Section Headers ───────────────────────────────────────── */
.section-header__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-dark);
}

.section-header__link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
}

.section-header__link:hover {
  color: var(--color-primary);
}

/* ── Product Card ──────────────────────────────────────────── */
.product-card {
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: box-shadow 0.2s;
}


.product-card__image-wrap {
  background: var(--neutral-50);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.product-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card:hover .product-card__image-wrap img {
  transform: scale(1.04);
}

.product-card__name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-dark);
  margin: 0.5rem 0 0.15rem;
}

.product-card__price {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}



/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 3.5rem 0 1.5rem;
}

.site-footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  display: inline-block;
  padding: 3px 7px;
  line-height: 1.1;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.site-footer__tagline {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  max-width: 200px;
}

.site-footer__col-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 1rem;
}

.site-footer__nav-link {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.15s;
}

.site-footer__nav-link:hover {
  color: var(--color-white);
}

.site-footer__address {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  margin-right: 0.4rem;
}

.site-footer__social a:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

.site-footer__bottom a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  margin-right: 1.2rem;
}

.site-footer__bottom a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* ── Utilities ─────────────────────────────────────────────── */
.new-arrivals-section {
  padding: var(--section-padding);
}

.collections-section {
  padding: 0 0 3rem;
}

.bg-light-gray {
  background: var(--color-light-gray);
}

/* ================================================================
   INDEX PAGE — Hero Carousel · Collection Cards · Flagship
   ================================================================ */

/* Hero Carousel */
.hero-carousel {
  position: relative;
  overflow: hidden;
}

.hero-carousel .carousel-item {
  min-height: 460px;
  padding: 3rem 0 3rem;
}

.hero-carousel .carousel-item.slide--light {
  background: #f0f0f0;
}

.hero-carousel .carousel-item.slide--dark {
  background: #1a1a1a;
}

.hero-carousel .carousel-item.slide--red {
  background: #1c0205;
}

/* Slide text colours */
.slide--light .hero-slide__tag {
  color: var(--color-primary);
}

.slide--light .hero-slide__title {
  color: var(--color-dark);
}

.slide--light .hero-slide__subtitle {
  color: var(--color-text-muted);
}

.slide--dark .hero-slide__tag {
  color: #ff4d5e;
}

.slide--dark .hero-slide__title {
  color: var(--color-white);
}

.slide--dark .hero-slide__subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.slide--red .hero-slide__tag {
  color: #ff8a96;
}

.slide--red .hero-slide__title {
  color: var(--color-white);
}

.slide--red .hero-slide__subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.hero-slide__tag {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hero-slide__title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.hero-slide__subtitle {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 380px;
  margin-bottom: 2rem;
}

.hero-slide__image-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.hero-slide__image-wrap img {
  max-height: 450px;
  object-fit: contain;
}

/* Slide-specific button colours */
.slide--light .btn-outline {
  color: var(--color-dark);
}

.slide--light .btn-outline:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

.slide--dark .btn-outline,
.slide--red .btn-outline {
  color: var(--color-white);
}

.slide--dark .btn-outline:hover,
.slide--red .btn-outline:hover {
  background: var(--color-white);
  color: var(--color-dark);
}

/* Carousel controls */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 46px;
  height: 46px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  bottom: auto;
}

.hero-carousel .carousel-control-prev {
  left: 1.2rem;
}

.hero-carousel .carousel-control-next {
  right: 1.2rem;
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
  width: 18px;
  height: 18px;
}

/* Indicators */
.hero-carousel .carousel-indicators {
  bottom: 50px;
  margin: 0;
}

.hero-carousel .carousel-indicators [data-bs-target] {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  border: none;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.25s, width 0.25s;
}

.hero-carousel .carousel-indicators .active {
  background: var(--color-primary);
  width: 44px;
}

/* Collection Cards (index page) */
.collection-card {
  position: relative;
  overflow: hidden;
  background: #f4f4f4;
  min-height: 380px;
}

.collection-card img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.collection-content {
  position: absolute;
  left: 50%;
  bottom: 170px;
  transform: translateX(-50%);
  text-align: center;
  width: 85%;
}

.collection-title {
  display: inline-block;
  background: rgba(255, 255, 255, .92);
  padding: 5px 12px;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Flagship Store */
.flagship-section {
  margin-top: 50px;
  position: relative;
  min-height: 340px;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 80px 0;
}

.flagship-section__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.flagship-section__body {
  position: relative;
  z-index: 2;
  padding: 3rem 1rem;
}

.flagship-section__title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1.05;
  margin-bottom: 1.75rem;
}



/* ================================================================
   PRODUCT DETAIL PAGE — breadcrumb · gallery · info · tabs · trust
   ================================================================ */

/* Breadcrumb */
.pdp-breadcrumb {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.pdp-breadcrumb a {
  color: var(--color-text-muted);
  text-decoration: none;
}

.pdp-breadcrumb a:hover {
  color: var(--color-primary);
}

.pdp-breadcrumb span {
  color: var(--color-text);
  font-weight: 500;
}

/* PDP layout */
.pdp-section {
  padding: 2.5rem 0 3rem;
}

/* Gallery */
.gallery__main {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--neutral-50);
  border: 1px solid var(--color-border);
}

.gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery__main:hover img {
  transform: scale(1.04);
}

.gallery__thumb-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.gallery__thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--neutral-50);
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: border-color 0.2s;
}

.gallery__thumb:hover,
.gallery__thumb.is-active {
  border-color: var(--neutral-250);
}

.gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Product info panel */
.pdp-info {
  padding-left: 0.5rem;
}

.pdp-info__title {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

.pdp-info__price-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.pdp-info__price {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--color-dark);
}

.pdp-info__vat {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.pdp-info__rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.pdp-info__stars {
  color: #f5a623;
  font-size: 0.92rem;
}

.pdp-info__review-count {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.pdp-info__description {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
  margin-bottom: 1.25rem;
}

/* Size */
.pdp-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
  display: block;
}

.size-btn-group {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.size-btn {
  min-width: 42px;
  height: 38px;
  padding: 0 0.75rem;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-dark);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.size-btn:hover {
  border-color: var(--color-dark);
}

.size-btn.is-active {
  border-color: var(--color-dark);
  background: var(--color-dark);
  color: var(--color-white);
}

.size-guide-link {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-decoration: underline;
  margin-left: 0.5rem;
  cursor: pointer;
}

/* Color */
.color-btn-group {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.color-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.15s;
}

.color-btn.is-active,
.color-btn:hover {
  border-color: var(--color-dark);
  outline: 2px solid var(--color-white);
  outline-offset: -4px;
}

/* Quantity */
.qty-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
}

.qty-control__btn {
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  font-size: 1rem;
  color: var(--color-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.qty-control__btn:hover {
  background: var(--neutral-50);
}

.qty-control__value {
  width: 40px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  height: 36px;
  line-height: 36px;
}

.pdp-stock {
  font-size: 0.82rem;
  font-weight: 600;
  color: #16a34a;
}

/* CTA buttons */
.btn-add-cart {
  background: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
  border-radius: 0;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex: 1;
  transition: background 0.2s;
}

.btn-add-cart:hover {
  background: #bf0015;
  border-color: #bf0015;
  color: var(--color-white);
}

.btn-buy-now {
  background: var(--color-white);
  color: var(--color-dark);
  border: 2px solid var(--color-dark);
  border-radius: 0;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex: 1;
  transition: background 0.2s, color 0.2s;
}

.btn-buy-now:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

/* Tabs */
.pdp-tabs {
  border-bottom: 1px solid var(--color-border);
  margin: 2rem 0 0;
}

.pdp-tabs .nav-link {
  border: none;
  border-radius: 0;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 0.65rem 1.1rem;
  background: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.15s, border-color 0.15s;
}

.pdp-tabs .nav-link:hover {
  color: var(--color-dark);
}

.pdp-tabs .nav-link.active {
  color: var(--color-dark);
  border-bottom-color: var(--color-dark);
  font-weight: 600;
}

.pdp-tab-content {
  padding: 1.5rem 0 2rem;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.pdp-tab-content ul {
  padding-left: 1.2rem;
  margin: 0.75rem 0 0;
}

.pdp-tab-content ul li {
  margin-bottom: 0.3rem;
}

/* Trust Bar */

.trust-bar-light {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 16px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.tl-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 10px;
}

.tl-icon {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
}
.tl-icon-pink   { background: #f3e8ff; color: #6d28d9; }
.tl-icon-yellow { background: #fef9c3; color: #92610a; }
.tl-icon-green  { background: #ecfce5; color: #3a6b1e; }
.tl-icon-blue   { background: #e0f2fe; color: #1e5fa6; }

.tl-title {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-dark);
}
.tl-sub {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}



/* Collection Banners (PDP page) */
.collection-banner {
  background: var(--neutral-50);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  min-height: 280px;
  padding: 2rem;
  position: relative;
}

.collection-banner__body {
  z-index: 2;
}

.collection-banner__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}

.collection-banner__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.collection-banner__image {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: auto;
  max-width: 45%;
  object-fit: contain;
  object-position: bottom right;
}


/* ================================================================
   CART PAGE
   ================================================================ */

.cart-section { padding: 2.5rem 0 4rem; }

.cart-page__title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 0.2rem;
  line-height: 1.15;
}
.cart-page__count {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

/* ── Cart Item Card ─────────────────────────────────────────── */
.cart-item {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  background: var(--color-white);
}

.cart-item__img {
  width: 70px;
  height: 90px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  background: var(--neutral-50);
}

.cart-item__body { flex: 1; min-width: 0; }

.cart-item__stock {
  font-size: 0.75rem;
  font-weight: 600;
  color: #16a34a;
  margin-bottom: 0.2rem;
}

.cart-item__name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.15rem;
}

.cart-item__meta {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.cart-item__price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-dark);
  white-space: nowrap;
  margin-right: 0.5rem;
}

/* Qty stepper */
.cart-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
}
.cart-qty__btn {
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  font-size: 1rem;
  color: var(--color-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.cart-qty__btn:hover { background: var(--neutral-50); }

.cart-qty__val {
  width: 36px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-dark);
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  line-height: 32px;
  height: 32px;
  user-select: none;
}

/* Delete button */
.cart-item__delete {
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.15s;
  flex-shrink: 0;
}
.cart-item__delete:hover { color: var(--color-primary); }

/* ── Order Summary ──────────────────────────────────────────── */
.order-summary {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1.5rem;
  background: var(--color-white);
  position: sticky;
  top: 1.5rem;
}

.order-summary__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 1.25rem;
}

.order-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 0.65rem;
}
.order-summary__row span:last-child {
  font-weight: 600;
  color: var(--color-dark);
}

.order-summary__divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 1rem 0;
}

.order-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 1.5rem;
}
.order-summary__total span:last-child {
  font-size: 1.2rem;
  font-weight: 800;
}

.btn-checkout {
  display: block;
  width: 100%;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.9rem 1rem;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 1.25rem;
}
.btn-checkout:hover { background: #bf0015; color: var(--color-white); }

.secure-checkout {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.secure-checkout__icon {
  font-size: 1.4rem;
  color: #16a34a;
  flex-shrink: 0;
  margin-top: 1px;
}
.secure-checkout__title {
  font-size: 0.82rem;
  font-weight: 600;
  color: #16a34a;
  display: block;
}
.secure-checkout__sub {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}



/* ================================================================
   AUTH PAGE (Login / Sign Up)
   ================================================================ */


.auth-page {
  background: var(--neutral-75);
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
}

.auth-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 2.5rem 2.75rem;
  width: 100%;
  max-width: 480px;
}

.auth-card__title {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--color-dark);
  text-align: center;
  margin-bottom: 0.4rem;
}

.auth-card__subtitle {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 1.75rem;
}

/* Field label */
.auth-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-dark);
  margin-bottom: 0.4rem;
}

/* Input */
.auth-input {
  width: 100%;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 0 0.9rem;
  font-size: 0.9rem;
  color: var(--color-dark);
  background: var(--color-white);
  outline: none;
  transition: border-color 0.15s;
  margin-bottom: 1.1rem;
}
.auth-input:focus { border-color: var(--neutral-400); }
.auth-input::placeholder { color: var(--neutral-300); }

/* Forgot password */
.auth-forgot {
  display: block;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  text-decoration: none;
  margin-bottom: 1.4rem;
}
.auth-forgot:hover { color: var(--color-dark); text-decoration: underline; }

/* Sign in button */
.btn-auth-submit {
  display: block;
  width: 100%;
  background: var(--color-dark);
  color: var(--color-white);
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.8rem 1rem;
  text-align: center;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 1.5rem;
}
.btn-auth-submit:hover { background: var(--neutral-700); }

/* Divider */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  text-transform: uppercase;
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

/* Social buttons */
.auth-social-group {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

.btn-social {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  height: 42px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: var(--color-white);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-dark);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.btn-social:hover { border-color: var(--neutral-300); background: var(--neutral-50); color: var(--color-dark); }

.btn-social__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Footer text */
.auth-card__footer {
  text-align: center;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}
.auth-card__footer a {
  color: var(--color-dark);
  font-weight: 700;
  text-decoration: underline;
}
.auth-card__footer a:hover { color: var(--color-primary); }

/* Social buttons 2×2 grid (login page variant) */
.auth-social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}


/* ================================================================
   CHECKOUT PAGE
   ================================================================ */

.checkout-section { padding: 2.5rem 0 4rem; }

/* ── Section headings ───────────────────────────────────────── */
.checkout-heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 1.25rem;
}
.checkout-subheading {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: .8rem;
  margin-bottom: 1rem;
}

/* ── Form fields ────────────────────────────────────────────── */
.checkout-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 0.4rem;
}

.checkout-input {
  width: 100%;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 0 0.9rem;
  font-size: 0.88rem;
  color: var(--color-dark);
  background: var(--color-white);
  outline: none;
  transition: border-color 0.15s;
  margin-bottom: 1rem;
}
.checkout-input:focus { border-color: var(--neutral-400); }
.checkout-input::placeholder { color: var(--neutral-300); }

.checkout-divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 1.75rem 0;
}

/* ── Radio option rows ──────────────────────────────────────── */
.radio-option {
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: 0.85rem 1rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    transition: border-color 0.15s;
}
.radio-option:hover { border-color: var(--neutral-300); }
.radio-option input[type="radio"] {
  margin-top: 3px;
  accent-color: var(--color-dark);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  cursor: pointer;
}
.radio-option__title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.3;
}
.radio-option__sub {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 1px;
}



/* ── Order summary panel ────────────────────────────────────── */
.checkout-summary {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1.5rem;
  background: var(--color-white);
  position: sticky;
  top: 1.5rem;
}
.checkout-summary__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.2rem;
}
.checkout-summary__count {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

/* Order item row */
.checkout-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--color-border);
}
.checkout-item:last-of-type { border-bottom: none; }
.checkout-item__img {
  width: 45px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  background: var(--neutral-50);
  flex-shrink: 0;
}
.checkout-item__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-dark);
  flex: 1;
}
.checkout-item__meta {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}
.checkout-item__price {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-dark);
  white-space: nowrap;
}

/* Totals */
.checkout-totals { margin-top: 1rem; }
.checkout-totals__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}
.checkout-totals__row span:last-child { font-weight: 600; color: var(--color-dark); }

.checkout-total-final {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0 1rem;
  border-top: 1px solid var(--color-border);
  margin-top: 0.5rem;
}
.checkout-total-final__label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
}
.checkout-total-final__value {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-dark);
}

/* Secure checkout badge */
.secure-badge {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}
.secure-badge__icon { font-size: 1.35rem; color: #16a34a; flex-shrink: 0; margin-top: 1px; }
.secure-badge__title { font-size: 0.82rem; font-weight: 600; color: #16a34a; display: block; }
.secure-badge__sub   { font-size: 0.75rem; color: var(--color-text-muted); }

/* Radio option — inline single-line layout */
.radio-option__inline {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}
.radio-option__pipe {
  color: var(--neutral-300);
  font-size: 0.82rem;
}


/* ================================================================
   PAYMENT PAGE
   ================================================================ */

.payment-section { padding: 2.5rem 0 4rem; }

/* ── Payment Method card ────────────────────────────────────── */
.payment-card {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1.5rem;
  background: var(--color-white);
  margin-bottom: 1.5rem;
}

.payment-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 1.25rem;
}

/* Payment radio row */
.payment-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  margin-bottom: 0.6rem;
  cursor: pointer;
  transition: border-color 0.15s;
}
.payment-option:hover { border-color: var(--neutral-300); }

.payment-option__left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.payment-option__left input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-dark);
  cursor: pointer;
  flex-shrink: 0;
}
.payment-option__label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-dark);
}

/* Logo badges on right */
.payment-option__logos {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.payment-logo {
  height: 22px;
  width: auto;
  object-fit: contain;
}
.payment-logo-text {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.payment-logo-text--bkash  { color: #e2136e; }
.payment-logo-text--nagad  { color: #f05a28; }

/* Card brand badges (inline SVG-style) */
.card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 6px;
  border-radius: 3px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.card-badge--mc    { background: #eb001b; color: #fff; }
.card-badge--visa  { background: #1a1f71; color: #fff; }
.card-badge--amex  { background: #2e77bc; color: #fff; }



/* ── Review Your Order panel ────────────────────────────────── */
.review-panel {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1.5rem;
  background: var(--color-white);
  position: sticky;
  top: 1.5rem;
}
.review-panel__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 1.25rem;
}

/* Review section block */
.review-block {
  padding: 1rem 0;
  border-top: 1px solid var(--color-border);
}
.review-block:first-of-type { border-top: none; padding-top: 0; }

.review-block__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}
.review-block__heading {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-dark);
}

/* Edit button */
.btn-edit {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-dark);
  padding: 0.2rem 0.65rem;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.btn-edit:hover { border-color: var(--neutral-300); background: var(--neutral-50); color: var(--color-dark); }

.review-block__text {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* Total row */
.review-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0 1.25rem;
  border-top: 1px solid var(--color-border);
  margin-top: 0.25rem;
}
.review-total__label { font-size: 1rem; font-weight: 600; color: var(--color-dark); }
.review-total__value { font-size: 1.25rem; font-weight: 800; color: var(--color-dark); }

/* Place Order button */
.btn-place-order {
  display: block;
  width: 100%;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.85rem 1rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}
.btn-place-order:hover { background: #bf0015; color: var(--color-white); }


/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 767px) {
  .hero-carousel .carousel-item {
    min-height: auto;
    padding-bottom: 0;
  }

  .hero-slide__image-wrap {
    justify-content: center;
    margin-top: 1.5rem;
  }

  .collection-banner {
    min-height: 240px;
  }

  .trust-item+.trust-item {
    border-left: none;
    border-top: 1px solid var(--color-border);
  }

   .trust-bar-light { grid-template-columns: 1fr 1fr; }
  .tl-item + .tl-item { border-left: none; }
  .tl-item:nth-child(2n) { border-left: 1px solid var(--color-border); }
  .tl-item:nth-child(n+3) { border-top: 1px solid var(--color-border); }
}




@media (max-width: 575px) {

  .site-navbar__brand img{
    width: 40%;
    display: block;
    align-items: center;
  }

  .site-navbar__brand{
    padding: 0;
    display: inline;
  }

  .announcement-bar{
    display: none;
  }
}

