body {
  background: black;
  color: #fdd200;
  font-family: Courier, monospace;
  
  color: #fdd200;
  text-decoration: none;
}

.site-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  padding: 0 14px;
  background: #000000;
  border-bottom: 1px solid #fdd200;
  box-sizing: border-box;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
  min-width: 0;
}

.nav-left {
  justify-content: flex-start;
}

.nav-right {
  justify-content: flex-end;
}

.nav-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

.logo {
  height: 56px;
  width: auto;
  display: block;
}

.site-nav a {
  color: #fdd200;
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

.site-nav a:hover {
  opacity: 0.65;
}

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

#cart-count {
  font-size: 10px;
  line-height: 1;
}

.intro {
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:black;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
  font-family: monospace;
}

a:hover, button:hover {
  letter-spacing: 2px;
}
.hero {
  height: 25vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  
  background: url("Copilot_20260319_184936.png") no-repeat center center/cover;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
}

.hero div {
  position: relative;
  z-index: 1;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 20px;
}

.product {
  border: 1px solid #222;
  padding: 10px;
  position: relative;
}

.product img {
  width: 100%;
  height: 500px;
}

.quick-add {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: black;
  border: 1px solid #fdd200;
  padding: 5px 10px;
  cursor: pointer;
}
.banner {
  text-align: center;
  padding: 10px;
  border-bottom: 1px solid #222;
}
.footer {
  padding: 20px;
  border-top: 1px solid #222;
  font-size: 12px;
}
.ticker {
  overflow: hidden;
  border-bottom: 1px solid #222;
  white-space: nowrap;
}

.ticker-track {
  display: inline-block;
  animation: scroll 15s linear infinite;
}

.ticker span {
  padding-right: 50px;
}

@keyframes scroll {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  .site-nav {
    height: auto;
    min-height: 44px;
    padding: 10px 12px;
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .nav-center {
    position: static;
    transform: none;
    order: -1;
    width: 100%;
    pointer-events: auto;
    margin-bottom: 2px;
  }

  .nav-left,
  .nav-right {
    gap: 14px;
    flex-wrap: wrap;
  }

  .nav-left {
    justify-content: flex-start;
  }

  .nav-right {
    justify-content: flex-end;
  }

  .site-nav a {
    font-size: 10px;
  }
}
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cart-container {
  padding: 40px;
}

.cart-header, .cart-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  margin-bottom: 15px;
}

.cart-row input {
  width: 50px;
}

.cart-footer {
  margin-top: 30px;
}

.product-page {
  display: flex;
  padding: 40px;
  gap: 40px;
}

.product-images {
  width: 55%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-images img {
  width: 70%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
}

.product-info {
  width: 40%;
}

.price {
  margin: 10px 0;
}

.desc {
  font-size: 13px;
  margin-bottom: 20px;
}

.sizes {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.size-btn {
  min-width: 42px;
  height: 42px;
  border: 1px solid #fdd200;
  background: black;
  color: #fdd200;
  cursor: pointer;
  font-size: 13px;
}

.size-btn.active {
  background: #fdd200;
  color: black;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  padding: 80px 60px;
  background: black;
}

.product-card {
  text-align: center;
}

.product-card img {
  width: 80%;        /* smaller, cleaner */
  max-width: 260px;  /* keeps it controlled */
  height: auto;
  display: block;
  margin: 0 auto;
}

.product-name {
  font-size: 10px;
  letter-spacing: 1px;
  margin-top: 12px;
}

.product-price {
  font-size: 10px;
  opacity: 0.7;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 20px 12px 40px;
  }

  .product-card {
    width: 100%;
    text-align: left;
  }

  .product-card img,
  .main-img,
  .hover-img {
    width: 100%;
    max-width: none;
  }

  .product-name {
    font-size: 12px;
    margin-top: 10px;
    line-height: 1.3;
  }

  .product-price {
    font-size: 12px;
    margin-top: 4px;
  }
}

.product-card {
  position: relative;
}

.main-img {
  display: block;
}

.hover-img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  width: 80%;
  max-width: 260px;
}

.product-card:hover .hover-img {
  opacity: 1;
}

.product-card:hover .main-img {
  opacity: 0;
}

.sizes button.active {
  background: #fdd200;
  color: black;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 9998;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 430px;
  max-width: 100%;
  height: 100vh;
  background: #f3f3f3;
  color: #000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.cart-drawer.active {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 30px;
  border-bottom: 1px solid #111;
}

.cart-drawer-header h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #000;
}

.cart-close {
  background: transparent;
  border: none;
  color: #777;
  font-size: 28px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

.shipping-status-wrap {
  padding: 10px 30px 12px;
  border-bottom: 1px solid #e0e0e0;
  background: #ececec;
}

.shipping-status-text {
  margin: 0 0 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
}

.shipping-progress {
  width: 100%;
  height: 6px;
  background: #cfcfcf;
  border-radius: 999px;
  overflow: hidden;
}

.shipping-progress-bar {
  height: 100%;
  width: 0%;
  background: #000;
  border-radius: 999px;
  transition: width 0.25s ease;
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 30px 24px;
}

.cart-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 22px;
  margin-bottom: 22px;
}

.cart-item-image {
  width: 88px;
  height: 110px;
  object-fit: cover;
  background: #ddd;
  display: block;
}

.cart-item-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cart-item-name {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  color: #000;
}

.cart-item-price {
  margin: 0;
  font-size: 14px;
  color: #000;
}

.cart-item-size {
  margin: 2px 0 6px;
  font-size: 14px;
  color: #666;
  text-transform: uppercase;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.qty-box {
  display: inline-flex;
  align-items: center;
  border: 1px solid #111;
  height: 38px;
}

.qty-btn {
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  color: #000;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.qty-value {
  width: 44px;
  text-align: center;
  font-size: 16px;
  color: #000;
}

.remove-btn {
  background: transparent;
  border: none;
  color: #888;
  font-size: 18px;
  cursor: pointer;
  padding: 0 4px;
}

.cart-divider {
  border-top: 1px solid #111;
  margin: 30px 0 22px;
}

.more-products-section h3 {
  margin: 0 0 18px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
}

.more-products-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.more-product-card {
  display: grid;
  grid-template-columns: 68px 1fr auto;
  align-items: end;
  gap: 16px;
}

.more-product-image-link {
  display: block;
}

.more-product-card img {
  width: 68px;
  height: 84px;
  object-fit: cover;
  background: #ddd;
  display: block;
}

.more-product-name {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
}

.more-product-price {
  margin: 0;
  font-size: 14px;
  color: #000;
}

.more-product-add {
  min-width: 82px;
  height: 32px;
  background: #000;
  color: #fdd200;
  border: 1px solid #000;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
}

.cart-drawer-footer {
  border-top: 1px solid #111;
  padding: 10px 30px 16px;
  background: #f3f3f3;
}

.cart-tax-note {
  margin: 0 0 10px;
  text-align: center;
  font-size: 13px;
  color: #666;
}

.checkout-btn {
  width: 100%;
  height: 46px;
  background: #000;
  color: #fff;
  border: 1px solid #000;
  font-size: 18px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 600px) {
  .cart-drawer {
    width: 100%;
  }

  .cart-drawer-header,
  .shipping-status-wrap,
  .cart-drawer-body,
  .cart-drawer-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .cart-item {
    grid-template-columns: 76px 1fr;
    gap: 16px;
  }

  .cart-item-image {
    width: 76px;
    height: 96px;
  }
}

a {
  color: #fdd200;
  text-decoration: none;
}

a:visited {
  color: #fdd200;
}

a:hover {
  opacity: 0.7;
}

.checkout-page-body {
  background: #f5f5f5;
  color: #000;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: calc(100vh - 40px);
}

.checkout-left {
  background: #ffffff;
  padding: 42px 56px 70px;
}

.checkout-right {
  background: #f3f3f3;
  padding: 42px 40px 70px;
  border-left: 1px solid #ddd;
}

.checkout-section {
  margin-bottom: 34px;
}

.checkout-breadcrumb {
  font-size: 12px;
  color: #666;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.checkout-title {
  font-size: 28px;
  margin: 0;
  letter-spacing: 0.05em;
  color: #000;
}

.checkout-section h2 {
  margin: 0 0 16px;
  font-size: 18px;
  color: #000;
  text-transform: uppercase;
}

.checkout-grid {
  display: grid;
  gap: 14px;
}

.two-col {
  grid-template-columns: 1fr 1fr;
}

.three-col {
  grid-template-columns: 1fr 1fr 1fr;
}

.checkout-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.checkout-field label {
  font-size: 12px;
  text-transform: uppercase;
  color: #333;
}

.checkout-field input {
  height: 46px;
  border: 1px solid #cfcfcf;
  background: #fff;
  color: #000;
  padding: 0 14px;
  font-size: 14px;
  box-sizing: border-box;
}

.checkout-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #cfcfcf;
  padding: 16px 18px;
  background: #fff;
}

.active-option {
  border-color: #000;
}

.option-title {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 700;
  color: #000;
}

.option-sub {
  margin: 0;
  font-size: 12px;
  color: #666;
}

.checkout-note {
  font-size: 13px;
  color: #555;
  margin: 0 0 14px;
}

.small-note {
  margin-top: 10px;
}

.checkout-submit {
  width: 100%;
  height: 48px;
  background: #000;
  color: #fff;
  border: 1px solid #000;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.order-summary-box h2 {
  margin: 0 0 18px;
  font-size: 18px;
  text-transform: uppercase;
  color: #000;
}

.checkout-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #ddd;
}

.checkout-item-image {
  width: 72px;
  height: 90px;
  object-fit: cover;
  background: #ddd;
}

.checkout-item-name {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
}

.checkout-item-meta {
  margin: 0;
  font-size: 12px;
  color: #666;
}

.checkout-item-price {
  font-size: 14px;
  color: #000;
}

.discount-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin: 22px 0;
}

.discount-row input {
  height: 44px;
  border: 1px solid #cfcfcf;
  background: #fff;
  color: #000;
  padding: 0 14px;
}

.discount-row button {
  min-width: 90px;
  height: 44px;
  background: #000;
  color: #fff;
  border: 1px solid #000;
  cursor: pointer;
}

.summary-lines {
  border-top: 1px solid #ddd;
  padding-top: 16px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
  color: #000;
}

.total-line {
  font-size: 18px;
  font-weight: 700;
  margin-top: 18px;
}

.checkout-empty {
  font-size: 14px;
  color: #666;
}

@media (max-width: 900px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-left,
  .checkout-right {
    padding: 28px 20px 40px;
  }

  .two-col,
  .three-col {
    grid-template-columns: 1fr;
  }
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  /* NAV */
  .site-nav,
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    flex-wrap: wrap;
    height: auto;
  }

  .nav-left,
  .nav-right {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex: 1 1 100%;
    justify-content: center;
  }

  .nav-center {
    position: static;
    transform: none;
    width: 100%;
    display: flex;
    justify-content: center;
    order: -1;
    margin-bottom: 6px;
  }

  .logo {
    height: 24px;
    width: auto;
  }

  .site-nav a,
  .nav a {
    font-size: 10px;
  }

  /* HERO */
  .hero-image {
    width: 100%;
    height: 60vh;
    object-fit: cover;
  }

  .hero-overlay {
    padding: 16px;
    text-align: center;
  }

  .hero-overlay h1 {
    font-size: 28px;
    line-height: 1;
  }

  .hero-sub,
  .hero-overlay p {
    font-size: 14px;
  }

  .hero-btn {
    min-width: 120px;
    height: 42px;
    font-size: 12px;
  }

  /* GENERAL SECTIONS */
  .homepage-section,
  .lookbook-home,
  .about-strip,
  .registry-section,
  .social-strip,
  .site-footer {
    padding: 20px 14px 28px;
  }

  .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
  }

  .section-header h2 {
    font-size: 22px;
  }

  .section-link {
    font-size: 12px;
  }

  .section-tabs {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
    margin-bottom: 16px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .section-tabs::-webkit-scrollbar {
    display: none;
  }

  .section-tabs a {
    font-size: 12px;
  }

  /* PRODUCT GRID */
  .product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 0;
  }

  .product-card {
    width: 100%;
    text-align: left;
  }

  .product-card img,
  .main-img,
  .hover-img {
    width: 100%;
    max-width: none;
    height: auto;
  }

  .product-name {
    font-size: 11px;
    line-height: 1.35;
    margin-top: 8px;
  }

  .product-price {
    font-size: 11px;
    margin-top: 3px;
  }

  /* LOOKBOOK */
  .lookbook-home {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .lookbook-home-copy h2 {
    font-size: 24px;
  }

  /* ABOUT / REGISTRY */
  .registry-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .registry-form input,
  .registry-form button {
    width: 100%;
    box-sizing: border-box;
  }

  /* SOCIAL GRID */
  .social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  /* PRODUCT PAGE */
  .product-page {
    display: block;
    padding: 20px 14px 32px;
  }

  .product-images,
  .product-info {
    width: 100%;
  }

  .product-images img {
    width: 100%;
    max-width: none;
    margin: 0 0 10px;
  }

  .product-info {
    margin-top: 18px;
  }

  .sizes {
    flex-wrap: wrap;
  }

  .add-btn,
  .buy-btn {
    width: 100%;
    max-width: none;
  }

  /* CART PAGE */
  .cart-container,
  .cart-page {
    padding: 20px 14px 32px;
  }

  .cart-header,
  .cart-page-header {
    display: none;
  }

  .cart-row,
  .cart-page-row {
    display: block;
    border-bottom: 1px solid #222;
    padding: 12px 0;
  }

  .cart-page-product {
    display: flex;
    gap: 12px;
    align-items: flex-start;
  }

  .cart-page-image {
    width: 80px;
    height: 100px;
    object-fit: cover;
  }

  .cart-page-qty {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
  }

  .cart-page-line-total {
    margin-top: 10px;
  }

  /* SHOP PAGE */
.shop-page {
  padding: 36px 24px 60px;
  background: #000;
  min-height: 100vh;
}

.shop-header {
  margin-bottom: 36px;
  text-align: center;
}

.shop-header h1 {
  margin: 0 0 10px;
  color: #fdd200;
  font-size: 30px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-header p {
  margin: 0;
  color: rgba(253, 210, 0, 0.75);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 36px;
  max-width: 1200px;
  margin: 0 auto;
}

.shop-product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.shop-product-image-link {
  display: block;
  width: 100%;
  text-decoration: none;
}

.shop-product-image {
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  background: transparent;
  border: none;
  box-shadow: none;
  outline: none;
}

.shop-product-info {
  margin-top: 18px;
}

.shop-product-name {
  display: inline-block;
  color: #fdd200;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shop-product-name:hover {
  opacity: 0.75;
}

.shop-product-price {
  margin: 8px 0 0;
  color: #fdd200;
  font-size: 12px;
  letter-spacing: 0.08em;
}

/* make sure random borders/boxes don't wrap product images */
.shop-product-card,
.shop-product-image-link,
.shop-product-image {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* FOOTER CLEANUP */
.site-footer {
  padding: 26px 24px 40px;
  border-top: 1px solid rgba(253, 210, 0, 0.15);
  background: #000;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-start;
}

.footer-links a {
  color: #fdd200;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* MOBILE */
@media (max-width: 768px) {
  .shop-page {
    padding: 24px 14px 40px;
  }

  .shop-header {
    margin-bottom: 24px;
  }

  .shop-header h1 {
    font-size: 24px;
  }

  .shop-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .shop-product-image {
    max-width: 100%;
  }

  .shop-product-name {
    font-size: 12px;
  }

  .shop-product-price {
    font-size: 11px;
  }
}

@media (min-width: 769px) and (max-width: 1100px) {
  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
  /* CART DRAWER */
  .cart-drawer {
    width: 100%;
    max-width: 100%;
  }

  /* CHECKOUT */
  .checkout-layout {
    display: block;
  }

  .checkout-left,
  .checkout-right {
    width: 100%;
    padding: 24px 14px 32px;
    box-sizing: border-box;
  }

  .two-col,
  .three-col {
    grid-template-columns: 1fr;
  }
}
