/* Custom styles for OT Clothing website - Nocta-inspired */

/* Ian Segoe Font */
@font-face {
    font-family: 'Ian Segoe';
    src: url('../fonts/IanSegoe-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
  --gold-header-shadow:
    0 1px 0 rgba(90, 60, 0, 0.9),
    0 3px 6px rgba(0, 0, 0, 0.85),
    0 8px 20px rgba(0, 0, 0, 0.55);
  --bg-position-x: 50%;
  --bg-position-y: 44%;
  --home-bg-focal-x: 54%;
  --home-bg-focal-y: 34%;
  --home-bg-shift-x: 3.5%;
  --home-bg-shift-y: -11%;
  --home-bg-scale: 1.06;
}

/* Home: full-viewport background — position person center / torso under logo */
body.page-home .background-img {
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  max-height: none;
  transform: translate(-50%, -50%)
    translate(var(--home-bg-shift-x, 0), var(--home-bg-shift-y, 0))
    scale(var(--home-bg-scale, 1));
  transform-origin: center center;
  object-fit: cover;
  object-position: var(--home-bg-focal-x, 50%) var(--home-bg-focal-y, 42%);
}

body {
    margin: 0;
    padding: 0;
  font-family: 'Courier New', Courier, monospace;
    color: #fff;
  background: #000;
  min-height: 100vh;
    position: relative;
  overflow-x: hidden;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  background: #000;
}

.background-img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: var(--bg-position-x) var(--bg-position-y);
  transform: translate(-50%, -50%);
  filter: brightness(0.6);
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.logo {
  font-family: 'IanSegoe', serif;
    font-size: 3rem;
  margin: 1rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.gold-header {
  font-family: 'Ian Segoe', 'IanSegoe', serif;
  color: #f3a908;
  font-size: 6vw;
  text-align: center;
  margin-top: 3rem;
  letter-spacing: 0.1em;
  font-weight: bold;
    text-transform: uppercase;
  text-shadow: var(--gold-header-shadow);
}

.center-logo {
  font-family: 'IanSegoe', serif;
  font-size: 10vw;
  text-align: center;
  margin: -10vh 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60vh;
  position: relative;
  overflow: visible;
}

#3d-logo-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: visible;
}

#3d-logo-container canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.enter-btn {
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 15vh;
  width: 420px;
  max-width: 90vw;
  padding: 0.8rem 0;
  border: 2px solid #fff;
  background: transparent;
    color: #fff;
  font-family: 'Courier New', Courier, monospace;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: normal;
  box-shadow: none;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.enter-btn:hover {
  background: #f3a908;
    color: #000;
  transform: translateX(-50%) scale(1.02);
  box-shadow: 0 0 20px rgba(243, 169, 8, 0.3);
}

body.store-locked .enter-btn {
  display: none;
}

body.page-home:not(.store-unlocked) .enter-btn {
  display: none;
}

body.store-unlocked:not(.page-home) .notify-form {
  display: none;
}

body.page-home.store-locked .notify-form {
  display: flex;
  z-index: 10;
}

body.page-home.store-locked .enter-btn {
  display: none;
}

.notify-form {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 15vh;
  width: 420px;
  max-width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.notify-input,
.notify-submit {
  width: 100%;
  padding: 0.8rem 0;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  font-family: 'Courier New', Courier, monospace;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.05em;
  box-sizing: border-box;
  transition: all 0.3s ease;
  color-scheme: dark;
  -webkit-appearance: none;
  appearance: none;
}

.notify-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.notify-input:focus {
  outline: none;
  border-color: #f3a908;
}

/* iOS Safari: override yellow autofill / system input styling */
.notify-input:-webkit-autofill,
.notify-input:-webkit-autofill:hover,
.notify-input:-webkit-autofill:focus,
.notify-input:-webkit-autofill:active {
  -webkit-text-fill-color: #fff !important;
  caret-color: #fff;
  border: 2px solid #fff;
  transition: background-color 99999s ease-out 0s;
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  box-shadow: 0 0 0 1000px transparent inset !important;
}

.notify-input:-webkit-autofill:focus {
  border-color: #f3a908;
}

.notify-submit {
  cursor: pointer;
  font-weight: normal;
}

.notify-consent {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  text-align: left;
  line-height: 1.4;
  cursor: pointer;
}

.notify-consent input {
  margin: 0;
  flex-shrink: 0;
}

footer .footer-legal {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.85rem;
}

footer .footer-legal a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

footer .footer-legal a:hover {
  color: #f3a908;
}

.notify-submit:hover:not(:disabled) {
  background: #f3a908;
  color: #000;
  box-shadow: 0 0 20px rgba(243, 169, 8, 0.3);
}

.notify-submit:disabled,
.notify-input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.notify-message {
  margin: 0;
  font-family: 'Courier New', Courier, monospace;
  font-size: 14px;
  text-align: center;
  line-height: 1.4;
  color: #fff;
}

.notify-message--error {
  color: #ff8a80;
}

.notify-message--success {
  color: #f3a908;
}

header, footer {
  width: 100%;
  text-align: center;
  padding: 1rem 0;
}

nav a {
  color: #fff;
  margin: 0 1rem;
  text-decoration: none;
  font-family: 'Courier New', Courier, monospace;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

nav a:hover {
  color: #FFD700;
  transform: translateY(-2px);
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #FFD700;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

footer {
  position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  font-size: 0.9rem;
  color: #fff;
  background: transparent;
  text-align: center;
    padding: 1rem 0;
}

.store-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100vw;
  max-width: 100vw;
  padding: 2rem 3vw 0 3vw;
  box-sizing: border-box;
  position: relative;
}

.store-header .logo {
  font-size: 6vw;
  font-family: 'Ian Segoe', 'IanSegoe', serif;
  color: #fff;
  margin: 0;
  padding: 0;
  line-height: 1;
  height: 6vw;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  z-index: 2;
  transition: transform 0.3s ease;
}

.store-header .logo:hover {
  transform: scale(1.05);
}

.store-header .gold-header {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 6vw;
  margin: 0;
  padding: 0;
  text-align: center;
  font-family: 'Ian Segoe', 'IanSegoe', serif;
  color: #f3a908;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
  z-index: 1;
  text-shadow: var(--gold-header-shadow);
}

.store-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  font-size: 1.2rem;
  margin-left: auto;
  flex: 0 0 auto;
  z-index: 2;
}

.store-nav a {
  display: none !important;
}

.store-nav a:hover {
  color: #FFD700;
  transform: translateY(-2px);
}

.store-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #FFD700;
  transition: width 0.3s ease;
}

.store-nav a:hover::after {
  width: 100%;
}

.store-nav button {
  transition: all 0.3s ease;
  position: relative;
  color: #f3a908 !important;
  font-family: 'Courier New', Courier, monospace !important;
  font-size: 16px !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
}

.store-nav button:hover {
  color: #f3a908 !important;
  transform: translateY(-2px);
}

.store-nav button::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #f3a908;
  transition: width 0.3s ease;
}

.store-nav button:hover::after {
  width: 100%;
}

/* Store page: vertically center product row in viewport below header */
body:has(.products) {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body:has(.products) main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-bottom: 3.5rem;
  box-sizing: border-box;
}

.products {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  margin: 0 auto 2rem auto;
  flex-wrap: wrap;
  padding: 0 2rem;
  max-width: 1200px;
}

.product-card {
  background: transparent;
  border: none;
    color: #fff;
  text-align: center;
  width: 320px;
  position: relative;
  transition: transform 0.3s ease;
  padding: 1rem;
  border-radius: 8px;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 300px;
  height: auto;
  display: block;
  margin: 0 auto 1rem auto;
  transition: transform 0.3s ease;
  border-radius: 4px;
}

.product-card:hover img {
  transform: scale(1.02);
}

.product-title {
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: normal;
}

.product-price {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
    color: #fff;
  font-weight: normal;
  font-family: 'Courier New', Courier, monospace;
}

.size-options {
  margin-bottom: 0.5rem;
    display: flex;
    justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0.5rem 0;
}

.size-option {
  display: inline-block;
  margin: 0;
  padding: 0.2rem 0.5rem;
  border: none;
  background: transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  min-width: auto;
  text-align: center;
    font-family: 'Courier New', Courier, monospace;
  color: #fff;
    text-decoration: none;
  position: relative;
}

.size-option:hover {
  background: transparent;
  color: #f3a908;
  transform: none;
  box-shadow: none;
}

.size-option.sold-out,
.product-modal-size-option.sold-out {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
  pointer-events: none;
}

.size-option.selected {
  background: transparent;
  color: #f3a908;
  transform: none;
  box-shadow: none;
}

.size-option.selected::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #f3a908;
}

.add-to-cart-btn {
  display: inline-block;
  margin: 0.5rem 0;
  padding: 0.8rem 2rem;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
  font-weight: normal;
  letter-spacing: 0.05em;
}

.add-to-cart-btn:hover:not(:disabled) {
  background: #f3a908;
    color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(243, 169, 8, 0.3);
}

.add-to-cart-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  border-color: #666;
  color: #666;
}

.product-desc {
  font-size: 0.9rem;
  margin-top: 0.5rem;
  color: #ccc;
  line-height: 1.4;
    font-family: 'Courier New', Courier, monospace;
}

/* Loading state for buttons */
.add-to-cart-btn.loading {
  position: relative;
  color: transparent;
}

.add-to-cart-btn.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .store-header-row {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 2vw 0 2vw;
  }
  
  .store-header .logo {
    font-size: 8vw;
    height: 8vw;
  }
  
  .store-header .gold-header {
    font-size: 8vw;
    position: relative;
    left: auto;
    transform: none;
    margin: 1rem 0;
  }
  
  .store-nav {
    gap: 1rem;
    font-size: 1rem;
  }
  
  .products {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .product-card {
    width: 100%;
    max-width: 350px;
  }
  
  .product-card img {
    width: 100%;
    max-width: 300px;
  }
  
  .size-options {
    gap: 0.2rem;
  }
  
  .size-option {
    padding: 0.3rem 0.6rem;
    font-size: 0.9rem;
    min-width: 35px;
  }
  
  body:not(.page-home) .gold-header {
    font-size: 8vw;
  }
  
  body:not(.page-home) .center-logo {
    font-size: 12vw;
  }
  
  body:not(.page-home) .enter-btn {
    width: 90vw;
    max-width: 350px;
    font-size: 14px;
  }

  body:not(.page-home) .notify-form {
    width: 90vw;
    max-width: 350px;
  }

  body:not(.page-home) .notify-input,
  body:not(.page-home) .notify-submit {
    font-size: 14px;
  }

  /* Waitlist home — iPhone / mobile only (desktop layout unchanged) */
  body.page-home {
    --ot-touch-min: 48px;
    --ot-input-font: 16px;
    --home-header-size: clamp(1.6rem, 8vw, 2.75rem);
    --home-logo-height: min(72dvh, 560px);
    --home-bg-focal-x: 53%;
    --home-bg-focal-y: 32%;
    --home-bg-shift-x: 3%;
    --home-bg-shift-y: -12%;
    --home-bg-scale: 1.08;
    height: 100vh;
    height: 100dvh;
    min-height: 0;
    max-height: 100dvh;
    overflow: hidden;
    display: grid;
    grid-template-rows: auto 1fr auto auto;
    grid-template-columns: 1fr;
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
    padding-bottom: env(safe-area-inset-bottom, 0px);
    padding-top: env(safe-area-inset-top, 0px);
    box-sizing: border-box;
  }

  body.page-home .background {
    height: 100dvh;
  }

  body.page-home header {
    grid-row: 1;
    padding: 0.25rem 0 0;
    margin: 0;
  }

  body.page-home main {
    grid-row: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
  }

  body.page-home .center-logo {
    margin: 0;
    width: 100%;
    max-width: 100%;
    height: var(--home-logo-height);
    max-height: 100%;
    font-size: inherit;
  }

  body.page-home .gold-header {
    font-size: var(--home-header-size) !important;
    margin-top: 0.35rem;
    margin-bottom: 0.1rem;
    line-height: 1.1;
  }

  body.page-home .notify-form,
  body.page-home .enter-btn {
    grid-row: 3;
    position: static;
    left: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    max-width: 420px;
    justify-self: center;
    margin: 0;
    box-sizing: border-box;
  }

  body.page-home .enter-btn:hover {
    transform: scale(1.02);
  }

  body.page-home .notify-form {
    gap: 0.85rem;
    padding-bottom: 0.25rem;
  }

  body.page-home .notify-input,
  body.page-home .notify-submit {
    font-size: var(--ot-input-font);
    min-height: var(--ot-touch-min);
    padding: 0.85rem 1rem;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
  }

  body.page-home .notify-input:focus {
    border-color: #f3a908;
    background: transparent;
    color: #fff;
  }

  body.page-home .notify-consent {
    font-size: 13px;
    gap: 0.65rem;
    padding: 0.15rem 0;
  }

  body.page-home .notify-consent input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    flex-shrink: 0;
  }

  body.page-home footer {
    grid-row: 4;
    position: static;
    bottom: auto;
    left: auto;
    padding: 0.35rem 0 0.5rem;
    font-size: 0.7rem;
  }

  body.page-home.store-unlocked .enter-btn {
    display: block;
  }
}

@media (max-width: 480px) {
  body.page-home {
    --home-header-size: clamp(1.55rem, 8.5vw, 2.5rem);
    --home-logo-height: min(68dvh, 520px);
    --home-bg-focal-x: 52%;
    --home-bg-focal-y: 30%;
    --home-bg-shift-x: 2.5%;
    --home-bg-shift-y: -13%;
    --home-bg-scale: 1.1;
  }

  .store-header .logo {
    font-size: 10vw;
    height: 10vw;
  }
  
  .store-header .gold-header {
    font-size: 10vw;
  }
  
  .product-card {
    padding: 0.5rem;
  }
  
  .product-title {
    font-size: 1.1rem;
  }
  
  .product-price {
    font-size: 1rem;
  }
  
  .add-to-cart-btn {
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
  }
}

/* Snipcart Customization */
.snipcart-cart__box {
  background: #000 !important;
  color: #fff !important;
  border: 1px solid #333 !important;
}

.snipcart-item__name {
  color: #fff !important;
  font-family: 'Courier New', Courier, monospace !important;
}

.snipcart-item__image {
  border-radius: 4px !important;
}

.snipcart__icon--red {
    color: #f3a908 !important;
} 

.snipcart-cart__footer .snipcart-button-primary {
  background: #f3a908 !important;
  color: #000 !important;
  border: none !important;
  font-family: 'Courier New', Courier, monospace !important;
  font-weight: bold !important;
  transition: all 0.3s ease !important;
}

.snipcart-cart__footer .snipcart-button-primary:hover {
  background: #FFD700 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 15px rgba(243, 169, 8, 0.3) !important;
}

.snipcart-cart__content .snipcart-cart-summary {
  color: #fff !important;
  font-family: 'Courier New', Courier, monospace !important;
}

.snipcart-cart__header {
  background: #000 !important;
  color: #fff !important;
  border-bottom: 1px solid #333 !important;
  font-family: 'Ian Segoe', serif !important;
}

/* Enhanced Snipcart styling */
.snipcart-cart__box {
  background: #000 !important;
  color: #fff !important;
  border: 1px solid #333 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8) !important;
}

.snipcart-item__name {
  color: #fff !important;
  font-family: 'Courier New', Courier, monospace !important;
  font-weight: bold !important;
}

.snipcart-item__image {
  border-radius: 4px !important;
  border: 1px solid #333 !important;
}

.snipcart__icon--red {
  color: #f3a908 !important;
  transition: color 0.3s ease !important;
}

.snipcart__icon--red:hover {
  color: #FFD700 !important;
}

.snipcart-cart__footer .snipcart-button-primary {
  background: #f3a908 !important;
  color: #000 !important;
  border: none !important;
  font-family: 'Courier New', Courier, monospace !important;
  font-weight: bold !important;
  transition: all 0.3s ease !important;
  border-radius: 4px !important;
  padding: 12px 24px !important;
}

.snipcart-cart__footer .snipcart-button-primary:hover {
  background: #FFD700 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 15px rgba(243, 169, 8, 0.3) !important;
}

.snipcart-cart__content .snipcart-cart-summary {
  color: #fff !important;
  font-family: 'Courier New', Courier, monospace !important;
  font-weight: bold !important;
}

.snipcart-cart__header {
  background: #000 !important;
  color: #fff !important;
  border-bottom: 1px solid #333 !important;
  font-family: 'Ian Segoe', serif !important;
  font-weight: bold !important;
}

/* Cart icon styling */
.snipcart-cart-icon {
  color: #fff !important;
  transition: all 0.3s ease !important;
}

.snipcart-cart-icon:hover {
  color: #f3a908 !important;
  transform: scale(1.1) !important;
}

/* Hide default cart icon when using custom button */
.snipcart-cart__box {
  background: #000 !important;
  color: #fff !important;
  border: 1px solid #333 !important;
}

.snipcart-cart-icon[style*="display: none"] {
  display: none !important;
}

/* Success message styling */
.snipcart-add-item__message {
  background: #f3a908 !important;
  color: #000 !important;
  font-family: 'Courier New', Courier, monospace !important;
  font-weight: bold !important;
  border-radius: 4px !important;
}

/* Error message styling */
.snipcart-add-item__error {
  background: #ff4444 !important;
  color: #fff !important;
  font-family: 'Courier New', Courier, monospace !important;
  font-weight: bold !important;
  border-radius: 4px !important;
}

/* Quantity controls styling */
.snipcart-item-quantity__button {
  background: #333 !important;
  color: #fff !important;
  border: 1px solid #555 !important;
  transition: all 0.3s ease !important;
}

.snipcart-item-quantity__button:hover {
  background: #f3a908 !important;
  color: #000 !important;
}

/* Price styling */
.snipcart-item__price {
  color: #f3a908 !important;
  font-weight: bold !important;
}

.snipcart-cart-summary__total {
  color: #f3a908 !important;
  font-weight: bold !important;
  font-size: 1.2em !important;
}

/* Custom field styling */
.snipcart-item__custom-field {
  color: #ccc !important;
  font-size: 0.9em !important;
}

/* Animation for cart opening */
@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.snipcart-cart__box {
  animation: slideIn 0.3s ease-out !important;
}

/* Product Card Alignment Fixes */
.products {
  align-items: flex-start !important;
}

.product-card {
  display: flex !important;
  flex-direction: column !important;
  width: 320px !important;
  height: auto !important;
}

.product-card img {
  width: 280px !important;
  height: 280px !important;
  object-fit: cover !important;
  object-position: center !important;
  flex-shrink: 0 !important;
  margin: 0 auto 1rem auto !important;
}

.product-title {
  flex-shrink: 0 !important;
  margin-bottom: 0.5rem !important;
  font-size: 16px !important;
}

.product-price {
  flex-shrink: 0 !important;
  margin-bottom: 0.5rem !important;
  font-size: 16px !important;
}

.size-options {
  flex-shrink: 0 !important;
  margin-bottom: 0.5rem !important;
  width: 280px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: flex !important;
  justify-content: space-between !important;
  flex-wrap: nowrap !important;
}

.size-option {
  font-weight: normal !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  font-size: 18px !important;
  flex: 0 0 auto !important;
}

.size-option.selected {
  font-weight: bold !important;
  color: #fff !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.size-option.selected::after {
  display: none !important;
}

.size-option:hover {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.add-to-cart-btn {
  flex-shrink: 0 !important;
  margin: 0.5rem auto !important;
  width: 280px !important;
  display: block !important;
}

.product-desc {
  flex-shrink: 0 !important;
  margin-top: 0.5rem !important;
}

/* Fix cart button styling */
.store-nav button {
  color: #fff !important;
}

.store-nav button:hover {
  color: #fff !important;
}

.store-nav button::after {
  content: '' !important;
  position: absolute !important;
  width: 0 !important;
  height: 1px !important;
  bottom: -2px !important;
  left: 0 !important;
  background-color: #fff !important;
  transition: width 0.3s ease !important;
}

.store-nav button:hover::after {
  width: 100% !important;
  background-color: #fff !important;
}

/* Focus states for accessibility */
.add-to-cart-btn:focus,
.size-option:focus,
.store-nav button:focus,
.store-nav a:focus {
  outline: 2px solid #f3a908;
  outline-offset: 2px;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection styling */
::selection {
  background: #f3a908;
  color: #000;
}

::-moz-selection {
  background: #f3a908;
  color: #000;
} 