/* ============================================================================
   product.css — shared styles for every product page
   (hoodie / sweatpants / essential-tee / training-short)

   Loaded AFTER styles.css. Contains only product-page-specific rules; the
   header, footer, cart drawer, email-signup and :root variables live in
   styles.css.

   Nothing here is per-product except the colour-swatch palette (grouped and
   labelled below), which is the brand's full swatch set shared by all pages.
   ============================================================================ */

/* ==================== HERO / PRODUCT SECTION ==================== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
  align-items: start;
}

/* Gallery */
.gallery {
  position: relative;
  background: var(--dark);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  will-change: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.gallery-slides {
  display: flex;
  height: 100%;
  transition: transform 0.3s ease-out;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  touch-action: pan-y;
  pointer-events: auto;
  /* The slide strip is a drag surface — advertise it. */
  cursor: grab;
}

/* .dragging is toggled by product.js for the duration of a mouse drag. */
.gallery-slides.dragging {
  cursor: grabbing;
}

.gallery-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.gallery-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
  mix-blend-mode: difference;
  cursor: pointer;
  transition: transform 0.3s ease;
  opacity: 0.5;
}

.gallery-dot.active {
  transform: scale(1.3);
  opacity: 1;
}

.gallery-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}

.gallery-arrow {
  width: 50px;
  height: 50px;
  background: transparent;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition: all 0.3s ease;
  position: relative;
}

/* White disk — inverts the image behind via difference */
.gallery-arrow::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--white);
  mix-blend-mode: difference;
}

/* Arrow — white + difference blends against (image + disk composite):
   |255 - (255 - P)| = P = original image pixel.
   Result: arrow always contrasts with disk regardless of image content. */
.gallery-arrow svg {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.5;
  mix-blend-mode: difference;
}

.gallery-arrow:hover {
  background: var(--white);
}

.gallery-arrow:hover::before {
  display: none;
}

.gallery-arrow:hover svg {
  stroke: var(--black);
  mix-blend-mode: normal;
}

/* Product Info */
.product-info {
  padding: 40px 80px 60px 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto;
}

.product-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 6px 14px;
  margin-bottom: 30px;
  width: fit-content;
}

.product-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.product-subtitle {
  font-size: 15px;
  color: var(--light-gray);
  margin-bottom: 20px;
}

.product-reviews {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.product-reviews .stars {
  color: var(--primary-gold);
  font-size: 16px;
  letter-spacing: 2px;
}

.product-reviews .review-count {
  font-size: 13px;
  color: var(--gray);
}

.product-price {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 50px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.product-price .currency {
  font-size: 18px;
  color: var(--gray);
}

/* Options */
.option-group {
  margin-bottom: 35px;
}

.option-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.option-value {
  color: var(--white);
  letter-spacing: 0;
  text-transform: none;
}

.color-options {
  display: flex;
  gap: 14px;
}

.color-swatch {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease;
}

.color-swatch::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.color-swatch:hover { transform: scale(1.1); }
.color-swatch.active::after { border-color: var(--white); }

/* --- Brand swatch palette -------------------------------------------------
   product.js builds swatches with class `color-swatch <colourName.toLowerCase()>`,
   so every colour name used by any product needs an entry here.
   Solace (hoodie / sweatpants): Aegean, Flint, Abyss, Slate
   Origins (tee / short):        White, Black
   -------------------------------------------------------------------------- */
.color-swatch.aegean { background: #4a7cb5; }
.color-swatch.flint { background: #9e9e9e; }
.color-swatch.abyss { background: #1a2744; }
.color-swatch.slate { background: #8a8a8a; }
.color-swatch.white { background: #fff; } /* an actual white garment, not the bone ink */
.color-swatch.black { background: #1a1a1a; border: 2px solid rgba(255, 255, 255, 0.3); }
.color-swatch.black.active { border-color: transparent; }

.size-options {
  display: flex;
  gap: 10px;
}

.size-btn {
  width: 54px;
  height: 54px;
  border: 1px solid var(--dark-border);
  font-size: 13px;
  font-weight: 500;
  color: var(--light-gray);
  background: transparent;
  transition: all 0.2s ease;
}

.size-btn:hover {
  border-color: var(--gray);
  color: var(--white);
}

.size-btn.active {
  border-color: var(--white);
  color: var(--white);
  background: var(--dark);
}

.size-btn.soldout {
  opacity: 0.3;
  text-decoration: line-through;
  pointer-events: none;
}

/* Bundle Offer */
.bundle-offer {
  margin-top: 40px;
  padding: 20px;
  border: 1px solid var(--red);
  background: rgba(230, 57, 70, 0.08);
  position: relative;
}

.bundle-tag {
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 4px 12px;
}

.bundle-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.bundle-text {
  flex: 1;
}

.bundle-text strong {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.bundle-text span {
  font-size: 12px;
  color: var(--light-gray);
  display: block;
  margin-top: 2px;
}

.bundle-pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}

.bundle-original {
  font-size: 13px;
  color: var(--gray);
  text-decoration: line-through;
}

.bundle-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.btn-bundle {
  padding: 6px 14px;
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  opacity: 0.8;
}

.btn-bundle:hover {
  background: var(--white);
  color: var(--black);
  opacity: 1;
}

.bundle-sizes {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(230, 57, 70, 0.3);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.bundle-size-group {
  display: flex;
  flex-direction: column;
}

.bundle-size-group label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-gray);
  margin-bottom: 8px;
}

.bundle-select {
  width: 100%;
  padding: 10px 12px;
  background: var(--black);
  border: 1px solid var(--gray);
  color: var(--white);
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.bundle-select:focus {
  outline: none;
  border-color: var(--red);
}

.bundle-offer.expanded .btn-bundle {
  background: var(--white);
  color: var(--black);
  opacity: 1;
  padding: 8px 16px;
}

/* Notify / Waitlist */
.notify-offer {
  margin-top: 20px;
  padding: 16px 20px 10px;
  border: 1px solid var(--red);
  background: rgba(230, 57, 70, 0.06);
  position: relative;
}

.notify-tag {
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 4px 12px;
  text-transform: uppercase;
}

.notify-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notify-text strong {
  font-size: 13px;
  font-weight: 600;
}

.notify-text span {
  font-size: 12px;
  color: var(--light-gray);
  margin-left: 4px;
}

.notify-form {
  display: flex;
  gap: 0;
}

.notify-form input {
  flex: 1;
  padding: 10px 14px;
  background: var(--black);
  border: 1px solid var(--gray);
  border-right: none;
  color: var(--white);
  font-family: inherit;
  font-size: 13px;
  outline: none;
}

.notify-form input::placeholder {
  color: var(--gray);
}

.notify-form input:focus {
  border-color: var(--red);
}

.notify-form button {
  padding: 10px 18px;
  background: var(--red);
  border: 1px solid var(--red);
  color: var(--white);
  font-family: inherit;
  font-size: 16px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.notify-form button:hover {
  opacity: 0.85;
}

.notify-message {
  font-size: 12px;
  margin-top: 4px;
}

.notify-message.success { color: #4caf50; }
.notify-message.error { color: var(--red); }

@media (max-width: 768px) {
  .notify-offer { padding: 16px; margin-top: 20px; }
}

/* Add to Cart */
.actions {
  margin-top: 20px;
  display: flex;
  gap: 14px;
}

.btn-cart {
  flex: 1;
  height: 60px;
  background: var(--white);
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-cart:hover {
  background: var(--red);
  color: var(--white);
}

.btn-wishlist {
  width: 60px;
  height: 60px;
  border: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.btn-wishlist svg {
  width: 22px;
  height: 22px;
  stroke: var(--gray);
  fill: none;
  transition: all 0.3s ease;
}

.btn-wishlist:hover { border-color: var(--red); }
.btn-wishlist:hover svg { stroke: var(--red); }
.btn-wishlist.active svg { stroke: var(--red); fill: var(--red); }

/* Shipping info */
.shipping-info {
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 0;
  background: transparent;
  border: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.shipping-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--light-gray);
  font-weight: 500;
}

.shipping-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  opacity: 0.8;
}

/* ==================== DETAILS SECTION ==================== */
.details {
  padding: 120px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  background: var(--dark);
}

.details-content h2 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 30px;
}

.details-content h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 25px;
  line-height: 1.3;
}

.details-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--light-gray);
  margin-bottom: 20px;
}

.details-list {
  list-style: none;
  margin-top: 30px;
}

.details-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--dark-border);
  font-size: 14px;
  color: var(--light-gray);
  display: flex;
  justify-content: space-between;
}

.details-list li span:first-child {
  color: var(--gray);
}

.details-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

/* Opt-out for pages whose detail shot was never cropped to 4:3
   (essential-tee, training-short). Add `details-image--natural` to the
   element's class list to keep the image at its intrinsic ratio. */
.details-image--natural {
  aspect-ratio: auto;
  overflow: visible;
}

.details-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.details-image:hover img,
.details-image:active img {
  transform: scale(1.05);
}

.details-image .overlay-text {
  position: absolute;
  bottom: 40px;
  left: 40px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.6;
}

/* ==================== LIFESTYLE SECTION ==================== */
.lifestyle {
  padding: 60px 80px;
}

.lifestyle-hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.lifestyle-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lifestyle-hero .overlay,
.lifestyle-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 50%);
}

.lifestyle-hero .caption,
.lifestyle-item .caption {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.lifestyle-hero .caption-title,
.lifestyle-item .caption-title {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--light-gray);
  margin-bottom: 10px;
}

.lifestyle-hero .caption-text,
.lifestyle-item .caption-text {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  max-width: 400px;
  line-height: 1.3;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.lifestyle-item {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
}

.lifestyle-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.lifestyle-item:hover img {
  transform: scale(1.05);
}

.lifestyle-item .label {
  position: absolute;
  bottom: 30px;
  left: 30px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.lifestyle-item:hover .label {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== SPECS SECTION ==================== */
.specs {
  padding: 120px 80px;
  text-align: center;
}

.specs h2 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 60px;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.spec-item {
  padding: 30px 20px;
  border: 1px solid var(--dark-border);
}

.spec-item .value {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.spec-item .label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ==================== RELATED SECTION ==================== */
.related {
  padding: 120px 80px;
  background: var(--dark);
}

.related-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.related-header h2 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray);
}

.related-header a {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-gray);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
}

.related-header a:hover { color: var(--white); }

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.related-card {
  cursor: pointer;
}

.related-card-image {
  aspect-ratio: 3/4;
  background: var(--black);
  margin-bottom: 20px;
  overflow: hidden;
}

.related-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.related-card:hover .related-card-image img {
  transform: scale(1.05);
}

.related-card-name {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
}

.related-card-price {
  font-size: 14px;
  color: var(--gray);
}

/* ==================== RESPONSIVE - PRODUCT PAGE ==================== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; max-height: none; }
  .gallery { min-height: 60vh; max-height: 60vh; aspect-ratio: unset; }
  .product-info { padding: 60px 40px; }
  .details { grid-template-columns: 1fr; padding: 80px 40px; }
  .details-image { order: -1; height: 50vh; aspect-ratio: auto; }
  .lifestyle-hero .caption,
  .lifestyle-item .caption { left: 30px; right: 30px; bottom: 30px; }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero { padding-top: 72px; }
  .gallery-arrows { display: none; }
  .product-info { padding: 40px 20px; }
  .product-title { font-size: 28px; }
  .shipping-info { grid-template-columns: 1fr 1fr; gap: 12px; padding: 0; }
  .bundle-offer { padding: 16px; margin-top: 30px; }
  .bundle-content { gap: 12px; flex-wrap: wrap; }
  .bundle-text { width: 100%; order: 1; }
  .bundle-text strong { font-size: 13px; }
  .bundle-text span { font-size: 11px; }
  .bundle-pricing { order: 2; }
  .bundle-price { font-size: 18px; }
  .bundle-original { font-size: 12px; }
  .btn-bundle { order: 3; padding: 8px 16px; font-size: 11px; }
  .bundle-sizes { grid-template-columns: 1fr; gap: 16px; }
  .details { padding: 60px 20px; gap: 40px; }
  .lifestyle { padding: 20px 0; }
  .lifestyle-hero { height: 70vh; }
  .lifestyle-hero .caption,
  .lifestyle-item .caption { flex-direction: column; align-items: flex-start; gap: 20px; }
  .lifestyle-grid { 
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 0 20px;
  }
  .lifestyle-item {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }
  .specs { padding: 60px 20px; }
  .specs-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .related { padding: 60px 20px; }
  .related-grid { 
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
  }
  .related-card {
    flex: 0 0 75%;
    scroll-snap-align: center;
  }
}

/* ==================== SIZE GUIDE + FIT QUIZ MODALS ==================== */
body.modal-open { overflow: hidden; }
.size-modal { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.95); z-index: 10000; align-items: center; justify-content: center; padding: 20px; }
.size-modal.active { display: flex; }
.size-modal-content { background: var(--dark); border: 1px solid var(--dark-border); padding: 40px; max-width: 600px; width: 100%; max-height: 85vh; overflow-y: auto; position: relative; }
.size-modal-close { position: absolute; top: 15px; right: 20px; background: none; border: none; color: var(--white); font-size: 28px; cursor: pointer; opacity: 0.7; }
@media (hover: hover) { .size-modal-close:hover { opacity: 1; } }
.size-modal h2 { font-size: 24px; font-weight: 600; margin-bottom: 24px; padding-right: 30px; }

/* Tabbed size guide — used by sweatpants / essential-tee / training-short.
   Pages without .size-tabs markup simply never match these rules. */
.size-tabs { display: flex; gap: 0; margin-bottom: 24px; border-bottom: 1px solid var(--dark-border); }
.size-tab { background: none; border: none; color: var(--gray); font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 12px 20px; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; }
@media (hover: hover) { .size-tab:hover { color: var(--light-gray); } }
.size-tab.active { color: var(--white); border-bottom-color: var(--red); }
.size-tab-content { display: none; }
.size-tab-content.active { display: block; }

.size-intro { font-size: 14px; color: var(--light-gray); margin-bottom: 20px; }
.size-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.size-table th { text-align: left; padding: 12px 16px; background: var(--black); color: var(--gray); font-weight: 600; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; border-bottom: 1px solid var(--dark-border); }
.size-table td { padding: 12px 16px; border-bottom: 1px solid var(--dark-border); color: var(--light-gray); }
@media (hover: hover) { .size-table tr:hover td { background: rgba(255,255,255,0.02); } }
.fit-notes { margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--dark-border); }
.fit-notes h4 { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-bottom: 12px; }
.fit-notes ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.fit-notes li { font-size: 13px; color: var(--light-gray); padding-left: 16px; position: relative; }
.fit-notes li::before { content: '•'; position: absolute; left: 0; color: var(--red); }
.quiz-content { text-align: center; max-width: 500px; }
.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-question { font-size: 16px; color: var(--light-gray); margin-bottom: 30px; }
.quiz-options { display: flex; flex-direction: column; gap: 12px; }
.quiz-option { background: transparent; border: 1px solid var(--dark-border); color: var(--white); padding: 16px 24px; font-size: 14px; font-family: inherit; cursor: pointer; }
@media (hover: hover) { .quiz-option:hover { border-color: var(--red); background: rgba(230, 57, 70, 0.1); } }
.quiz-results { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 30px 0; }
.quiz-result-item { background: var(--black); border: 1px solid var(--dark-border); padding: 20px; display: flex; flex-direction: column; gap: 8px; }
.result-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); }
.result-size { font-size: 32px; font-weight: 700; color: var(--white); }
.quiz-subtext { font-size: 13px; color: var(--gray); margin-bottom: 24px; }
.quiz-done-btn { background: var(--red); color: var(--white); border: none; padding: 16px 48px; font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; }
@media (hover: hover) { .quiz-done-btn:hover { background: #c0323d; } }
@media (max-width: 768px) { .size-modal-content { padding: 30px 20px; } .size-table { font-size: 12px; } .size-table th, .size-table td { padding: 10px 8px; } .fit-notes ul { grid-template-columns: 1fr; } .quiz-results { grid-template-columns: 1fr; } }
