@import url('https://fonts.googleapis.com/css2?family=Architects+Daughter&family=Montserrat:wght@400;500;700&family=Outfit:wght@300;400;600;700&display=swap');

:root {
  --bg-color: #faf9f6;
  --text-color: #111111;
  --accent-color: #666666;
  --sketch-border: 2px solid #111111;
  --sketch-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
  --sketch-radius-soft: 120px 20px 100px 20px/20px 100px 20px 120px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Main Container matching the aspect ratio of the sketch */
.app-container {
  width: 100%;
  max-width: 1024px; /* Matches storefront sketch width */
  height: 100%;
  max-height: 740px; /* 660px drawing height + 80px footer */
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border: var(--sketch-border);
  border-radius: 0; /* Straight sharp corners */
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  overflow: hidden;
}

/* Header Area */
header {
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  border-bottom: 1px solid #eeeeee;
  z-index: 10;
  background: white;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.logo {
  font-family: 'Architects Daughter', cursive;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 2px;
  cursor: pointer;
}

.drop-selector {
  display: flex;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}

.drop-option {
  cursor: pointer;
  padding: 4px 10px;
  border: 1px solid transparent;
  border-radius: var(--sketch-radius-soft);
  color: var(--accent-color);
  transition: all 0.2s ease;
}

.drop-option:hover,
.drop-option.active {
  color: var(--text-color);
  border-color: var(--text-color);
  background-color: rgba(17, 17, 17, 0.02);
}

.header-icons {
  display: flex;
  gap: 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.header-icons span {
  cursor: pointer;
  transition: opacity 0.2s;
}

.header-icons span:hover {
  opacity: 0.6;
}

/* Main Visual Area */
.viewport {
  flex: 1;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Store Sketch Wrapper & Image */
.store-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 1024 / 660;
  transform-origin: center center;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), filter 1s;
}

.store-bg {
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

/* Zoom States */
.zoomed-left {
  transform: scale(3.5) translate(40%, -1%);
  filter: blur(1px) opacity(0.2);
}

.zoomed-right {
  transform: scale(3.5) translate(-45%, 0%);
  filter: blur(1px) opacity(0.2);
}

.zoomed-center {
  transform: scale(2.2) translate(0%, -20%);
  filter: blur(1px) opacity(0.2);
}

.zoomed-back-left {
  transform: scale(2.8) translate(-30%, -21%);
  filter: blur(1px) opacity(0.2);
}

.zoomed-back-right {
  transform: scale(3.5) translate(0%, 3%);
  filter: blur(1px) opacity(0.2);
}

.zoomed-pants {
  transform: scale(3.8) translate(-25%, 0%);
  filter: blur(1px) opacity(0.2);
}

.zoomed-shoes {
  transform: scale(2.8) translate(-30%, -21%);
  filter: blur(1px) opacity(0.2);
}

.zoomed-accessories {
  transform: scale(3.2) translate(-34%, -5%);
  filter: blur(1px) opacity(0.2);
}

.zoomed-iconic {
  transform: scale(2.3) translate(28%, -10%);
  filter: blur(1px) opacity(0.2);
}

/* Interactive Hotspots Overlay Container */
.hotspots-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: opacity 0.5s;
}

.hotspots-container.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Hotspot Hitboxes */
.hotspot {
  position: absolute;
  cursor: pointer;
}

/* Custom drawing line highlights (Full-size transparent overlays) */
.highlight-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2; /* Sits under clickable hotspots but above background image */
}

/* Category Hover/Active highlights */
.store-wrapper.hover-basics #hl-basics,
.store-wrapper.active-basics #hl-basics,
.store-wrapper.hover-knitwear #hl-knitwear,
.store-wrapper.hover-hoodies #hl-knitwear,
.store-wrapper.hover-knitwear_hoodies #hl-knitwear,
.store-wrapper.active-knitwear #hl-knitwear,
.store-wrapper.active-hoodies #hl-knitwear,
.store-wrapper.active-knitwear_hoodies #hl-knitwear,
.store-wrapper.hover-jackets #hl-jackets,
.store-wrapper.active-jackets #hl-jackets,
.store-wrapper.hover-iconic #hl-iconic,
.store-wrapper.active-iconic #hl-iconic,
.store-wrapper.hover-pants #hl-pants,
.store-wrapper.active-pants #hl-pants,
.store-wrapper.hover-shoes #hl-shoes,
.store-wrapper.active-shoes #hl-shoes,
.store-wrapper.hover-accessories #hl-accessories,
.store-wrapper.active-accessories #hl-accessories,
.store-wrapper.hover-checkout #hl-checkout,
.store-wrapper.active-checkout #hl-checkout {
  opacity: 1;
}

/* Invisible hitbox wrapper */
.hotspot-highlight {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* Handwritten-style Speech Bubble Tooltips */
.hotspot-tooltip {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #FF4E00;
  color: white;
  padding: 6px 14px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(255, 78, 0, 0.25);
  z-index: 10;
}

.hotspot-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px 6px 0;
  border-style: solid;
  border-color: #FF4E00 transparent;
  display: block;
  width: 0;
}

.hotspot:hover .hotspot-tooltip,
.hotspot.active .hotspot-tooltip {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

/* Define Coordinates for hotspots matching the sketch layout */
.hs-basics-1 {
  left: 2.7%;
  top: 41.7%;
  width: 13.7%;
  height: 14.6%;
}

.hs-basics-2 {
  left: 3.3%;
  top: 55.9%;
  width: 1.6%;
  height: 5.3%;
}

.hs-basics-3 {
  left: 3.8%;
  top: 54.2%;
  width: 3.8%;
  height: 4%;
}

.hs-basics-4 {
  left: 7.9%;
  top: 53.8%;
  width: 5.7%;
  height: 3.4%;
}

.hs-knitwear-hoodies {
  left: 91%;
  top: 38%;
  width: 9%;
  height: 23%;
}

.hs-jackets {
  left: 39%;
  top: 41%;
  width: 21%;
  height: 12%;
}

.hs-iconic {
  left: 30%;
  top: 67%;
  width: 38%;
  height: 25%;
}

.hs-pants {
  left: 71%;
  top: 39%;
  width: 8%;
  height: 21%;
}

.hs-shoes-1 {
  left: 80.3%;
  top: 69.7%;
  width: 8%;
  height: 12.7%;
}

.hs-shoes-2 {
  left: 79.1%;
  top: 67.4%;
  width: 7%;
  height: 4.9%;
}

.hs-shoes-3 {
  left: 72.3%;
  top: 62.4%;
  width: 7.1%;
  height: 6.9%;
}

.hs-shoes-4 {
  left: 78.9%;
  top: 65.8%;
  width: 5.6%;
  height: 4.6%;
}

.hs-shoes-5 {
  left: 78.9%;
  top: 65.1%;
  width: 3.3%;
  height: 3.6%;
}

.hs-shoes-6 {
  left: 78.7%;
  top: 64.5%;
  width: 4.5%;
  height: 4.4%;
}

.hs-shoes-7 {
  left: 72.5%;
  top: 67.5%;
  width: 7.7%;
  height: 5.9%;
}

.hs-shoes-8 {
  left: 73.9%;
  top: 71.3%;
  width: 8.4%;
  height: 5.9%;
}

.hs-shoes-9 {
  left: 76.7%;
  top: 75.3%;
  width: 5.5%;
  height: 6.1%;
}

.hs-shoes-10 {
  left: 75%;
  top: 61.3%;
  width: 4%;
  height: 2.3%;
}

.hs-accessories-1 {
  left: 78%;
  top: 48%;
  width: 14%;
  height: 12%;
}

.hs-accessories-2 {
  left: 78.5%;
  top: 59.5%;
  width: 11%;
  height: 5.3%;
}

.hs-accessories-3 {
  left: 87.8%;
  top: 61.2%;
  width: 5.6%;
  height: 8.7%;
}

.hs-accessories-4 {
  left: 85%;
  top: 62.8%;
  width: 4.3%;
  height: 5.3%;
}

.hs-checkout-1 {
  left: 4.9%;
  top: 60.6%;
  width: 14.1%;
  height: 18.8%;
}

.hs-checkout-2 {
  left: 5.5%;
  top: 76.9%;
  width: 14.3%;
  height: 6.1%;
}

.hs-checkout-3 {
  left: 17.1%;
  top: 49.4%;
  width: 11.9%;
  height: 18%;
}

.hs-checkout-4 {
  left: 17.2%;
  top: 65.3%;
  width: 11.6%;
  height: 4.4%;
}

.hs-checkout-5 {
  left: 16.8%;
  top: 67.4%;
  width: 9.9%;
  height: 5.3%;
}

.hs-checkout-6 {
  left: 16.7%;
  top: 71.4%;
  width: 7.5%;
  height: 3.6%;
}

.hs-checkout-7 {
  left: 17.2%;
  top: 73.7%;
  width: 4.4%;
  height: 4.4%;
}

.hs-checkout-8 {
  left: 6.9%;
  top: 57.2%;
  width: 11.6%;
  height: 5.5%;
}


/* Products Overlay Container */
.products-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Cover entire viewport area including footer zone */
  background: #ffffff;
  z-index: 4;
  padding: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(10px);
  overflow: hidden;
}

.products-overlay.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.catalog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #111111;
  padding: 20px 40px 14px;
  flex-shrink: 0;
  gap: 20px;
}

/* STORE back-logo — left side of catalog & info headers */
.walk-out-btn {
  font-family: 'Architects Daughter', cursive;
  font-size: 26px;
  font-weight: 700;
  color: #111111;
  cursor: pointer;
  letter-spacing: 1px;
  transform: rotate(-3deg);
  transition: opacity 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
  background: none;
  border: none;
  padding: 0;
  /* Hidden until a category is open */
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.walk-out-btn.visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.walk-out-btn:hover {
  opacity: 0.6;
}

.catalog-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #111111;
  flex: 1;
  text-align: right;
}

/* Remove old .brand-signature — replaced by walk-out-btn on left */
.brand-signature {
  display: none;
}

.catalog-workspace {
  display: flex;
  gap: 40px;
  flex: 1;
  min-height: 0;
  padding: 20px 40px 30px;
}

/* Left Grid */
.thumbnail-grid {
  width: 300px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 88px;
  gap: 12px;
  overflow-y: auto;
  flex-shrink: 0;
}

.thumb-box {
  border: 1px solid #dddddd;
  background: #f0f0f0;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  transition: border-color 0.2s, background-color 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 4px;
}

.thumb-box:hover {
  border-color: #999999;
}

.thumb-box.selected {
  border-color: #111111;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px #111111;
}

.thumb-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.thumb-placeholder {
  cursor: default;
  background: #eeeeee;
  border-color: #e5e5e5;
}

.thumb-placeholder:hover {
  border-color: #e5e5e5;
}

.sold-out-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  background: #cc3333;
  color: #ffffff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 3px 6px;
  border-radius: 3px;
  text-transform: uppercase;
  z-index: 5;
}

/* Right Viewer */
.product-viewer {
  flex: 1;
  display: flex;
  gap: 45px;
  align-items: flex-start;
  overflow-y: auto;
  padding-right: 10px;
}

.active-image-wrapper {
  flex: 1.2;
  background: #faf9f6;
  border: 1px solid #eeeeee;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  aspect-ratio: 4 / 3;
  max-height: 480px;
}

#active-product-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.active-product-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#active-product-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #111111;
}

#active-product-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #555555;
  margin-top: -6px;
}

.active-product-meta-row {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #888888;
  letter-spacing: 0.5px;
}

#active-product-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #444444;
}

.active-size-selector {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 5px;
}

.active-size-selector .size-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sizes-row {
  display: flex;
  gap: 8px;
}

.sizes-row .size-btn {
  width: 38px;
  height: 38px;
  border: 1px solid #111111;
  background: #ffffff;
  font-family: inherit;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.sizes-row .size-btn:hover {
  background: #f5f5f5;
}

.sizes-row .size-btn.selected {
  background: #111111;
  color: #ffffff;
}

.add-to-bag-btn-modern {
  width: 100%;
  padding: 14px;
  background: #111111;
  color: #ffffff;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-top: 10px;
}

.add-to-bag-btn-modern:hover {
  background: #333333;
}

/* Details Panel (Slide out) */
.details-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 380px;
  height: 100%;
  background: white;
  border-left: var(--sketch-border);
  z-index: 20;
  padding: 40px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: -10px 0 30px rgba(0,0,0,0.05);
}

.details-panel.open {
  transform: translateX(0);
}

.close-panel-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.close-panel-btn:hover {
  opacity: 1;
}

.details-img-wrapper {
  width: 100%;
  aspect-ratio: 3/4;
  border: var(--sketch-border);
  border-radius: var(--sketch-radius-soft);
  overflow: hidden;
  background-color: #f7f7f7;
}

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

.details-meta h2 {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.details-meta .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.details-meta p {
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
}

.size-selector {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.size-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sizes {
  display: flex;
  gap: 10px;
}

.size-btn {
  width: 40px;
  height: 40px;
  border: var(--sketch-border);
  border-radius: var(--sketch-radius);
  background: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.size-btn:hover, .size-btn.selected {
  background-color: var(--text-color);
  color: white;
}

.add-btn {
  width: 100%;
  padding: 14px;
  border: var(--sketch-border);
  border-radius: var(--sketch-radius);
  background-color: var(--text-color);
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  margin-top: auto;
  transition: background-color 0.2s, transform 0.1s;
}

.add-btn:hover {
  background-color: #333333;
}

.add-btn:active {
  transform: scale(0.98);
}

/* Bottom Navigation Bar (White-theme Minimalist Sketch with Submenu) */
footer {
  height: 80px; /* Taller to fit two rows nicely! */
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #eeeeee;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  z-index: 10;
}

.footer-content {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.bottom-nav {
  display: flex;
  list-style: none;
  width: 100%;
  justify-content: center;
  gap: 24px;
  padding: 0 20px;
}

.bottom-nav li {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-color);
  cursor: pointer;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
  flex-shrink: 0;
}

.bottom-nav li:hover,
.bottom-nav li.active {
  color: #FF4E00;
}

.bottom-nav li::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #FF4E00;
  transition: width 0.3s ease;
  border-radius: var(--sketch-radius);
}

.bottom-nav li:hover::after,
.bottom-nav li.active::after {
  width: 100%;
}

/* Submenu Bar styles */
.submenu-container {
  width: 100%;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.submenu-list {
  display: none;
  list-style: none;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.submenu-list.active {
  display: flex;
  animation: fadeInSubmenu 0.2s ease-out;
}

.submenu-elbow {
  color: #FF4E00;
  font-weight: 700;
  font-family: monospace;
  font-size: 14px;
  margin-right: 2px;
}

.submenu-divider {
  color: #FF4E00;
  font-weight: 700;
  opacity: 0.6;
  font-family: monospace;
}

.submenu-list li {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #FF4E00;
  cursor: pointer;
  position: relative;
  padding: 2px 0;
  transition: opacity 0.2s, transform 0.1s;
}

.submenu-list li:hover {
  opacity: 0.75;
  transform: translateY(-1px);
}

.submenu-list li.active {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@keyframes fadeInSubmenu {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Info / About Pages — Mossimo Catalog Layout */
.info-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Cover full area, footer sits on top */
  z-index: 4;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  padding: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: #ffffff;
}

.info-overlay.visible {
  pointer-events: auto;
  opacity: 1;
}

.info-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

/* Header bar same as catalog — STORE logo left acts as back button */
.info-catalog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #111111;
  padding: 20px 40px 14px;
  flex-shrink: 0;
  gap: 20px;
}

/* The STORE back-logo on the left */
.info-back-logo {
  font-family: 'Architects Daughter', cursive;
  font-size: 26px;
  font-weight: 700;
  color: #111111;
  cursor: pointer;
  letter-spacing: 1px;
  transform: rotate(-3deg);
  transition: opacity 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
  background: none;
  border: none;
  padding: 0;
}

.info-back-logo:hover {
  opacity: 0.6;
}

.info-catalog-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #111111;
  flex: 1;
  text-align: right;
}

/* Body: image left, text right */
.info-body {
  display: flex;
  flex: 1;
  min-height: 0;
  gap: 0;
}

.info-image-col {
  width: 42%;
  flex-shrink: 0;
  overflow: hidden;
  background: #f5f4f0;
}

.info-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
}

.info-text-col {
  flex: 1;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
}

.info-text-col p {
  font-size: 14px;
  line-height: 1.75;
  color: #333333;
}

/* Signup form inside info page */
.info-signup-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.info-signup-form input {
  padding: 11px 14px;
  border: 1px solid #111111;
  font-size: 13px;
  outline: none;
  font-family: inherit;
  width: 100%;
}

.info-signup-form button {
  padding: 12px 14px;
  border: none;
  background: #111111;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s;
}

.info-signup-form button:hover {
  background: #333333;
}

/* Stockists / Contact — text-only pages (no image) */
.info-text-only {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
  flex: 1;
}

.info-text-only p {
  font-size: 14px;
  line-height: 1.75;
  color: #333333;
}

/* ── Mobile Home Page ── */
.mobile-home {
  display: none; /* Hidden on desktop */
  flex-direction: column;
  align-items: stretch;
  background: #ffffff;
  height: 100%;
}

/* Mobile Home Header */
.mobile-home-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #e5e5e5;
  background: #ffffff;
  flex-shrink: 0;
}

.mobile-brand-title {
  font-family: 'Architects Daughter', cursive;
  font-size: 26px;
  font-weight: 700;
  color: #111111;
  transform: rotate(-2deg);
}

.mobile-drop-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 10px;
  background: #111111;
  color: #ffffff;
  border-radius: 2px;
}

/* Mobile Showcase Carousels Section */
.mobile-showcase {
  display: flex;
  flex-direction: column;
  background: #fafafa;
}

.showcase-section {
  padding: 14px 0;
  border-bottom: 1px solid #eeeeee;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.showcase-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #888888;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.showcase-subtitles {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.showcase-sub-item {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #bbbbbb;
}

.showcase-sub-item.active {
  font-size: 22px;
  font-weight: 700;
  color: #111111;
}

/* Auto-scrolling marquee track */
.showcase-carousel-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.showcase-carousel-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marqueeScroll 22s linear infinite;
  padding: 8px 12px;
}

.showcase-carousel-track:hover,
.showcase-carousel-track:active {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.showcase-card {
  width: 105px;
  flex-shrink: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.15s ease;
}

.showcase-card:active {
  transform: scale(0.94);
}

.showcase-card-img-wrap {
  width: 105px;
  height: 125px;
  background: #ffffff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.showcase-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 2px solid #111111;
}

.mobile-nav-item {
  padding: 18px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #111111;
  border-bottom: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  cursor: pointer;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-nav-item:nth-child(even) {
  border-right: none;
}

.mobile-nav-item:hover,
.mobile-nav-item:active {
  background: #f5f5f5;
}

/* Mobile Responsiveness (Screens 600px and under) */
@media (max-width: 600px) {
  body {
    background-color: white;
  }

  .app-container {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }

  header {
    padding: 0 10px;
    position: sticky;
    top: 0;
  }

  .header-left {
    gap: 12px;
  }

  .logo {
    font-size: 20px;
    letter-spacing: 1px;
  }

  .drop-selector {
    gap: 6px;
    font-size: 9px;
  }

  .drop-option {
    padding: 3px 6px;
  }

  /* Horizontal scrolling for storefront interior */
  .viewport {
    display: block;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .store-wrapper {
    width: auto;
    height: 100%;
    min-width: 800px;
    aspect-ratio: 1024 / 660;
  }

  .catalog-header {
    padding: 16px 20px 12px;
    align-items: center;
    border-bottom: 2px solid #111111;
  }

  .walk-out-btn,
  .info-back-logo {
    font-size: 22px !important;
    transform: none !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: inline-flex;
    align-items: center;
  }

  .catalog-title,
  .info-catalog-title {
    font-size: 18px !important;
    line-height: 1 !important;
  }

  /* Products Lookbook Mobile Layout */
  .products-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: calc(100vh - 70px);
    overflow-y: auto;
    padding: 20px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    z-index: 200;
  }

  .catalog-workspace {
    flex-direction: column;
    gap: 20px;
  }

  .thumbnail-grid {
    width: 100%;
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 8px;
  }

  .thumb-box {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
  }

  .product-viewer {
    flex-direction: column;
    gap: 25px;
    padding-right: 0;
  }

  .active-image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: 280px;
    padding: 15px;
  }

  .active-product-details {
    width: 100%;
  }

  /* Details Panel - Full screen overlay on mobile */
  .details-panel {
    position: fixed;
    width: 100vw;
    height: calc(100vh - 110px);
    top: 60px;
    border-left: none;
    padding: 20px;
    overflow-y: auto;
  }

  /* Scrollable Footer Menu on Mobile */
  footer {
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    overflow: hidden;
  }

  .footer-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .bottom-nav {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    padding: 0 15px;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .bottom-nav::-webkit-scrollbar {
    display: none;
  }

  .bottom-nav li {
    flex-shrink: 0;
    font-size: 10px;
    padding: 4px 2px;
  }

  .submenu-container {
    width: 100%;
    height: 20px;
  }

  .submenu-list {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
    padding: 0 15px;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .submenu-list::-webkit-scrollbar {
    display: none;
  }

  .submenu-list li {
    flex-shrink: 0;
    font-size: 9px;
    padding: 2px 2px;
  }

  /* Info Pages Overlay - Full screen on mobile */
  .info-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: calc(100vh - 70px);
    background: #ffffff;
    z-index: 200;
  }

  .info-catalog-header {
    padding: 16px 20px 12px;
  }

  .info-catalog-title {
    font-size: 18px;
  }

  .info-brand-signature {
    font-size: 20px;
  }

  .info-body {
    flex-direction: column;
  }

  .info-image-col {
    width: 100%;
    height: 200px;
    flex-shrink: 0;
  }

  .info-text-col {
    padding: 20px;
    gap: 12px;
  }

  .info-text-only {
    padding: 20px;
  }

  /* Mobile Home Page — shown instead of interactive store */
  .mobile-home {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: calc(100vh - 70px);
    z-index: 100;
    background: #ffffff;
    overflow-y: auto;
  }

  /* When mobile home is dismissed, hide it */
  .mobile-home.hidden {
    display: none;
  }
}
