/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: #1a1a1a;
  line-height: 1.5;
  background: linear-gradient(to bottom, #e5d9d0 0%, #c4b5a8 50%, #a39489 100%);
  overflow-x: hidden;
  width: 100%;
  min-width: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Notification banner (scrolling) */
.notification-banner {
  overflow: hidden;
  background: #8c5a2b;
  color: #fff;
  padding: 0.5rem 0;
  font-weight: 600;
  font-size: 0.95rem;
  width: 100%;
  position: relative;
}

.notification-banner-scroll {
  display: inline-block;
  padding-left: 100%;
  white-space: nowrap;
  animation: notification-scroll 35s linear infinite;
}

.notification-banner-text,
.notification-banner-sep {
  display: inline;
}

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

/* Header */
.header {
  background-color: #e0e0e0;
  padding: 16px 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.header-brand {
  font-size: 1.1rem;
  font-weight: 500;
  color: #1a1a1a;
}

.header-dropdown-wrap {
  position: relative;
}

.header-dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 36px;
  padding: 0;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  cursor: pointer;
  color: #1a1a1a;
  font-size: 1.1rem;
  transition: background 0.2s;
}

.header-dropdown-trigger:hover,
.header-dropdown-trigger:focus,
.header-dropdown-wrap:hover .header-dropdown-trigger {
  background: rgba(255, 255, 255, 0.8);
  outline: none;
}

.header-dropdown-wrap.open .header-dropdown-trigger {
  background: rgba(255, 255, 255, 0.9);
}

.header-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  min-width: 180px;
  background: #fff;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 100;
}

.header-dropdown-wrap:hover .header-dropdown-menu,
.header-dropdown-wrap.open .header-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-dropdown-link {
  display: block;
  padding: 10px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #1a1a1a;
  opacity: 0.9;
}

.header-dropdown-link:hover {
  background: #f5f5f5;
  opacity: 1;
}

.header-dropdown-link.header-link-active {
  background: rgba(140, 130, 118, 0.15);
  font-weight: 600;
}

.header-dropdown-link.nav-link-disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

.header-store-login {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
  padding: 8px 16px;
}

.header-store-login:hover {
  opacity: 0.85;
}

.header-giveaways-link.giveaways-hidden {
  display: none !important;
}

/* Click to open dropdown on mobile/touch */
.header-dropdown-trigger:focus + .header-dropdown-menu,
.header-dropdown-wrap:focus-within .header-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Page Content (Giveaways, etc.) */
.page-content {
  padding: 48px 24px;
  min-height: 400px;
}

.page-heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
  text-align: center;
}

.page-intro {
  font-size: 1.25rem;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.page-section {
  text-align: center;
}

/* AB Builds - Boot Display */
.ab-preorders-boots {
  width: 100%;
  max-width: 850px;
  margin: 0 auto 2rem;
}

.ab-preorders-subheading {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
  text-align: center;
}

.ab-exclusives-filter-collapse {
  margin-bottom: 1.25rem;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  background: #f8f8f8;
  overflow: hidden;
}

.ab-exclusives-filter-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.6rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.ab-exclusives-filter-toggle:hover {
  background: #eee;
}

.ab-exclusives-filter-arrow {
  transition: transform 0.2s ease;
}

.ab-exclusives-filter-collapse.is-expanded .ab-exclusives-filter-arrow {
  transform: rotate(180deg);
}

.ab-exclusives-filter-body {
  display: none;
  padding: 0 1rem 1rem;
  border-top: 1px solid #e0e0e0;
}

.ab-exclusives-filter-collapse.is-expanded .ab-exclusives-filter-body {
  display: block;
}

.ab-exclusives-size-filter-wrap {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
}

.ab-exclusives-filter-body .ab-exclusives-size-filter-wrap:last-of-type {
  margin-bottom: 0;
}

.ab-exclusives-filter-actions {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid #e8e8e8;
}

.ab-exclusives-clear-filter-btn {
  padding: 0.4rem 0.75rem;
  font-size: 0.9rem;
  color: #555;
  background: transparent;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
}

.ab-exclusives-clear-filter-btn:hover {
  color: #1a1a1a;
  border-color: #999;
  background: #f5f5f5;
}

.ab-exclusives-filter-label {
  font-size: 0.95rem;
  color: #1a1a1a;
  font-weight: 500;
}

.ab-exclusives-size-filter {
  padding: 0.4rem 0.75rem;
  font-size: 0.95rem;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  background: #fff;
  min-width: 6rem;
}

.ab-preorders-empty-msg {
  text-align: center;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 480px;
  margin: 0 auto 1.5rem;
  padding: 0 1rem;
}

.ab-preorders-card {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 2px solid #a39489;
}

.ab-preorders-card:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.ab-preorders-row {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: nowrap;
}

/* Mobile: picture on top, info block and button below; desktop layout unchanged */
@media (max-width: 640px) {
  .ab-preorders-row {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
  }
  .ab-preorders-image-col {
    width: 100%;
    max-width: none;
    order: 1;
  }
  .ab-preorders-content-col {
    order: 2;
    width: 100%;
  }
  .ab-preorders-sizes {
    padding-left: 0;
    border-left: none;
    margin-top: 1rem;
  }
}

/* Left column: image lines up down the page */
.ab-preorders-image-col {
  width: 300px;
  flex-shrink: 0;
}

.ab-preorders-image-col img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 2px solid #a39489;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22), 0 6px 16px rgba(0, 0, 0, 0.16), 0 2px 6px rgba(0, 0, 0, 0.1);
  display: block;
}

.ab-preorders-no-image {
  width: 100%;
  height: 150px;
  background: #f0f0f0;
  border-radius: 8px;
  border: 2px solid #a39489;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
}

/* Right column: details + sizes, wraps to fit */
.ab-preorders-content-col {
  flex: 1;
  min-width: 0;
}

.ab-preorders-details {
  text-align: left;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.ab-preorders-details dt {
  font-size: 0.75rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.ab-preorders-details dt:first-child {
  margin-top: 0;
}

.ab-preorders-details dd {
  margin: 0.25rem 0 0;
  font-size: 0.95rem;
  color: #1a1a1a;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.ab-preorders-details dd.boot-detail-blurb {
  white-space: pre-line;
}

.ab-preorders-sizes {
  padding-left: 1.5rem;
  border-left: 1px solid #e0e0e0;
  margin-top: 1rem;
}

.ab-preorders-sizes h4 {
  font-size: 0.8rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.ab-preorders-contact-msg {
  font-size: 0.9rem;
  color: #444;
  margin: 0.75rem 0 0.5rem;
}

.ab-preorders-size-boxes {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ab-preorders-size-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.ab-preorders-size-row-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1a1a1a;
  min-width: 28px;
}

.ab-preorders-size-box {
  width: 48px;
  height: 36px;
  border: 1px solid #999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #1a1a1a;
  font-size: 0.7rem;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
}

.ab-preorders-size-box:hover {
  background: #f5f5f5;
  border-color: #8c8276;
}

.ab-preorders-size-box.selected {
  background: #8c8276;
  color: #fff;
  border-color: #8c8276;
}

.ab-preorders-width-size-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 0.75rem;
}

.ab-preorders-select-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1a1a;
}

.ab-preorders-width-select,
.ab-preorders-size-select {
  min-width: 80px;
  padding: 8px 12px;
  font-size: 0.95rem;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  background: #fff;
  font-family: inherit;
}

.ab-preorders-preorder-btn {
  margin-top: 1rem;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background-color: #8c8276;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 0.2s;
}

.ab-preorders-preorder-btn:hover {
  background-color: #7a7066;
}

.ab-preorders-preorder-btn.disabled,
.ab-preorders-preorder-btn:disabled {
  background-color: #ccc;
  color: #666;
  cursor: not-allowed;
  opacity: 0.6;
}

.ab-preorders-preorder-btn.disabled:hover,
.ab-preorders-preorder-btn:disabled:hover {
  background-color: #ccc;
}

/* Pre Order Modal */
.preorder-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

.preorder-modal.show {
  opacity: 1;
  visibility: visible;
}

.preorder-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.preorder-modal-content {
  position: relative;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  padding: 32px;
  max-width: 420px;
  width: 100%;
}

.preorder-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  padding: 0;
  font-size: 1.5rem;
  line-height: 1;
  color: #666;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.preorder-modal-close:hover {
  color: #1a1a1a;
  background: #f0f0f0;
}

.preorder-modal-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.preorder-modal-info {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.preorder-form .form-group {
  margin-bottom: 1rem;
}

.preorder-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.preorder-form input,
.preorder-form select {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  background: #fff;
}

.preorder-form-row {
  display: flex;
  gap: 16px;
}

.preorder-form-row .form-group {
  flex: 1;
}

.preorder-submit-btn {
  width: 100%;
  margin-top: 0.5rem;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background-color: #8c8276;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 0.2s;
}

.preorder-submit-btn:hover {
  background-color: #7a7066;
}

/* Vacation mode: disable all Pre-Order and Click Here buttons (no removal, paths unchanged) */
body.preorder-disabled .ab-preorders-preorder-btn,
body.preorder-disabled .preorder-submit-btn,
body.preorder-disabled .caps-buy-btn {
  pointer-events: none;
  opacity: 0.6;
  cursor: not-allowed;
}

@media (max-width: 480px) {
  .preorder-form-row {
    flex-direction: column;
    gap: 0;
  }
}

.giveaways-content {
  text-align: center;
}

.giveaways-section {
  max-width: 560px;
  margin: 0 auto;
}

.giveaway-form {
  background: #fff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
  text-align: left;
}

.giveaway-form .form-group {
  margin-bottom: 20px;
}

.giveaway-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.giveaway-form input,
.giveaway-form select {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  background-color: #fff;
}

.giveaway-form-row {
  display: flex;
  gap: 16px;
}

.giveaway-form-row .form-group {
  flex: 1;
}

.required {
  color: #c0392b;
}

.radio-group-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.radio-group {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 1rem;
  color: #1a1a1a;
}

.radio-option input[type="radio"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.giveaway-note {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
  margin-bottom: 16px;
}

.giveaway-error {
  color: #c0392b;
  font-size: 0.9rem;
  margin-bottom: 16px;
  min-height: 20px;
}

.giveaways-text {
  font-size: 1rem;
  color: #1a1a1a;
  line-height: 1.6;
  margin-bottom: 24px;
}

.giveaways-btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #8c8276;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.giveaways-btn:hover {
  background-color: #7a7066;
}

.giveaways-btn-link {
  background-color: transparent;
  color: #8c8276;
  border: 2px solid #8c8276;
}

.giveaways-btn-link:hover {
  background-color: #8c8276;
  color: #fff;
}

@media (max-width: 640px) {
  .giveaway-form-row {
    flex-direction: column;
    gap: 0;
  }
}

/* Giveaway Entrants List */
.giveaway-entrants-section {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
}

.giveaway-entrants-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.giveaway-entrants-note {
  font-size: 0.9rem;
  color: #555;
  margin: 0 0 16px 0;
}

.giveaway-entrants-list {
  list-style: none;
  max-height: 200px;
  overflow-y: auto;
  background: #fff;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.giveaway-entrant-item {
  padding: 8px 0;
  font-size: 1rem;
  color: #1a1a1a;
  border-bottom: 1px solid #eee;
}

.giveaway-entrant-item:last-child {
  border-bottom: none;
}

.giveaway-entrants-empty {
  color: #666;
  font-size: 0.95rem;
  text-align: center;
  padding: 24px;
}

/* Main Content: Centered banner */
.main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #e5d9d0 0%, #c4b5a8 50%, #a39489 100%);
  padding: 48px 24px;
  width: 100%;
  max-width: 100%;
}

.index-page-title {
  flex: 0 0 100%;
  text-align: center;
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #1a1a1a;
  margin: 0 0 36px 0;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.04), 0 4px 24px rgba(0, 0, 0, 0.03);
  font-family: "Merriweather", Georgia, serif;
}

/* Hero Carousel Banner - centered rectangle, cropped */
.hero-carousel {
  flex-shrink: 0;
  width: 100%;
  max-width: 1125px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28), 0 8px 20px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.12);
}

.hero-carousel-track {
  position: relative;
  width: 100%;
}

.hero-slide {
  display: none;
  width: 100%;
  animation: hero-slide-out 0.01s ease-out;
}

.hero-slide.active {
  display: block;
  animation: hero-slide-in 1.25s ease-in-out forwards;
}

.hero-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 3 / 1;
  border-radius: 8px;
  border: 2px solid #a39489;
  box-sizing: border-box;
}

.hero-slide:first-child .hero-image {
  animation: morph-to-color 3.5s ease-out forwards;
}

@keyframes hero-slide-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes hero-slide-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.hero-carousel-prev,
.hero-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #1a1a1a;
  cursor: pointer;
  font-size: 1.25rem;
  z-index: 10;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-carousel-prev:hover,
.hero-carousel-next:hover {
  background: rgba(255, 255, 255, 1);
}

.hero-carousel-prev {
  left: 12px;
}

.hero-carousel-next {
  right: 12px;
}

.hero-carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 10;
}

.hero-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.hero-carousel-dot.active {
  background: #fff;
}

@keyframes morph-to-color {
  0% {
    filter: grayscale(100%);
    opacity: 0.9;
  }
  100% {
    filter: grayscale(0%);
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .header {
    flex-wrap: wrap;
    padding: 12px 16px;
    gap: 12px;
  }

  .header-brand {
    font-size: 0.95rem;
  }

  .header-store-login {
    font-size: 0.9rem;
  }

  .main-content {
    padding: 24px 16px;
  }

  .hero-carousel {
    width: 100%;
  }

  .hero-image {
    aspect-ratio: 2 / 1;
  }

  .page-content {
    padding: 24px 16px;
  }

  .subscribe-section {
    padding: 32px 16px 24px;
  }

  .subscribe-heading {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }

  .subscribe-text,
  .subscribe-note {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .subscribe-form {
    gap: 10px;
    max-width: 100%;
  }

  .subscribe-fields {
    flex-direction: row;
    gap: 8px;
    width: 100%;
  }

  .subscribe-fields input {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .signup-btn {
    padding: 10px 16px;
    font-size: 0.9rem;
    width: auto;
    min-width: 100px;
  }

  .footer-info {
    padding: 24px 16px 40px;
  }

  .social-section {
    padding: 24px 16px;
  }

  .footer-store-info {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
    max-width: 100%;
  }

  .footer-store-block {
    min-width: 0;
    flex: 1 1 140px;
    max-width: none;
    padding: 12px 14px;
    text-align: center;
    font-size: 0.9rem;
  }

  .footer-store-info p {
    font-size: 0.95rem;
    margin-bottom: 4px;
  }

  .footer-store-block p strong {
    font-size: 0.85rem;
    display: block;
    margin-bottom: 2px;
  }

  .index-page-title {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }
}

@media (max-width: 380px) {
  .subscribe-fields {
    flex-direction: column;
  }

  .signup-btn {
    width: 100%;
  }
}

/* Section headings */
.section-heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.section-heading-left {
  text-align: left;
  padding: 0 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section-divider-wrap {
  background-color: #ffffff;
  padding: 24px 0;
}

.section-divider {
  border: none;
  border-top: 1px solid #1a1a1a;
  margin: 0 auto;
  width: 50%;
}


/* Page Navigation Tiles */
.nav-tiles-section {
  background-color: #ffffff;
  padding: 48px 24px;
  width: 100%;
}

.nav-tiles-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.nav-tile {
  flex: 1 1 180px;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #1a1a1a;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-tile:hover {
  transform: translateY(-4px);
}

.nav-tile-image {
  width: 100%;
  aspect-ratio: 1;
  background-color: #e8e4e0;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  border: 2px solid #a39489;
  margin-bottom: 12px;
  box-sizing: border-box;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22), 0 6px 16px rgba(0, 0, 0, 0.16), 0 2px 6px rgba(0, 0, 0, 0.1);
}

.nav-tile-ab-preorders .nav-tile-image {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: 2px solid #a39489;
  box-sizing: border-box;
}

.nav-tile-ab-exclusives .nav-tile-image {
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #fff;
  border: 2px solid #a39489;
  padding: 12px;
  box-sizing: border-box;
}

.nav-tile-rios .nav-tile-image {
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #2a2520;
  border: 2px solid #a39489;
  padding: 12px;
  box-sizing: border-box;
}

.nav-tile-horse-power .nav-tile-image {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #000000;
  border: 2px solid #a39489;
  box-sizing: border-box;
}

.nav-tile-macie-beans .nav-tile-image {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: 2px solid #a39489;
  box-sizing: border-box;
}

.nav-tile-justin .nav-tile-image {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: 2px solid #a39489;
  box-sizing: border-box;
}

.nav-tile-tony-lama .nav-tile-image {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: 2px solid #a39489;
  box-sizing: border-box;
}

.nav-tile-ariat .nav-tile-image {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #000000;
  border: 2px solid #a39489;
  box-sizing: border-box;
}

.nav-tile-dan-post .nav-tile-image {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: 2px solid #a39489;
  box-sizing: border-box;
}

.nav-tile-caps .nav-tile-image {
  position: relative;
  background-color: #8c8276;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border: 2px solid #a39489;
  box-sizing: border-box;
}

/* Fade center so black CAPS text is readable */
.nav-tile-caps .nav-tile-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 6px;
  background: radial-gradient(ellipse 95% 95% at center, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.4) 50%, transparent 85%);
  pointer-events: none;
}

.nav-tile-caps .nav-tile-caps-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: #1a1a1a;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.8);
}

.nav-tile-giveaways .nav-tile-image {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #fff;
  border: 2px solid #a39489;
  box-sizing: border-box;
}

.nav-tile-label {
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}

/* Social Media Shenanigans */
.social-shenanigans-section {
  background-color: #ffffff;
  padding: 48px 24px;
  width: 100%;
}

.social-shenanigans-inner {
  max-width: 1500px;
  margin: 0 auto;
}

.social-embed-wrap {
  margin-bottom: 12px;
  display: none;
  max-width: 1500px;
  width: 100%;
  aspect-ratio: 500/280;
  position: relative;
}

.social-embed-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  display: block;
}

.social-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #1a1a1a;
  background: rgba(255, 255, 255, 0.9);
  color: #1a1a1a;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  z-index: 10;
  transition: background 0.2s, color 0.2s;
}

.social-nav-btn:hover {
  background: #1a1a1a;
  color: #fff;
}

.social-nav-left {
  left: 12px;
}

.social-nav-right {
  right: 12px;
}

.social-nav-indicator {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin: 0 0 24px 0;
  display: none;
}

.social-mobile-link-wrap {
  margin-bottom: 12px;
  display: none;
}

.social-mobile-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 32px;
  background: #1877f2;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.social-mobile-link:hover {
  background: #166fe5;
  color: #ffffff;
}

.social-mobile-link i {
  font-size: 1.5rem;
}

.social-mobile-link span {
  flex: 1;
}

@media (max-width: 640px) {
  .social-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .social-nav-left {
    left: 8px;
  }

  .social-nav-right {
    right: 8px;
  }

  .social-mobile-link {
    padding: 16px 24px;
    font-size: 1rem;
  }
}


.social-shenanigans-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 16px;
}

.social-shenanigans-actions .form-group {
  flex: 1;
  min-width: 200px;
}

.social-shenanigans-actions input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
}

.go-live-btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #1a1a1a;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}

.go-live-btn:hover {
  background-color: #333;
}

/* Admin Social Shenanigans */
.social-shenanigans-admin-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 500px;
}

.social-shenanigans-admin-form .form-group label {
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
}

.social-shenanigans-admin-form input,
.social-shenanigans-admin-form textarea {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.social-save-msg {
  margin-left: 12px;
  color: #28a745;
  font-weight: 500;
}

.social-links-saved {
  margin-top: 24px;
}

.social-links-heading {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.social-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-link-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.social-link-item:last-child {
  border-bottom: none;
}

.social-link-move-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}

.social-link-move {
  width: 28px;
  height: 20px;
  padding: 0;
  border: 1px solid #ccc;
  background: #f5f5f5;
  color: #333;
  font-size: 0.7rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link-move:hover {
  background: #e8e8e8;
  border-color: #999;
}

.social-link-move:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.social-link-url {
  flex: 1;
  font-size: 0.875rem;
  color: #0066cc;
  word-break: break-all;
}

.social-link-url:hover {
  text-decoration: underline;
}

.social-links-empty {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

/* Data Backup */
.data-backup-section .backup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.restore-backup-label {
  cursor: pointer;
  margin: 0;
}

.backup-status {
  font-size: 0.9rem;
  color: #666;
  margin: 0 0 12px 0;
}

.backup-reminder {
  padding: 12px;
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 6px;
  font-size: 0.9rem;
  color: #856404;
}

@media (max-width: 640px) {
  .nav-tiles-section {
    padding: 32px 16px;
  }

  .nav-tiles-inner {
    gap: 20px;
  }

  .nav-tile {
    flex: 1 1 140px;
    max-width: 160px;
  }
}

/* Footer */
.footer {
  background-color: #ffffff;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* Social Section */
.social-section {
  background-color: #000000;
  padding: 40px 24px;
  text-align: center;
}

.social-heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #000000;
  border: 2px solid #000000;
  transition: transform 0.2s;
}

.social-link:hover {
  transform: scale(1.1);
}

.social-link i {
  font-size: 1.25rem;
}

/* Subscribe Section */
.subscribe-section {
  padding: 60px 24px;
  text-align: center;
}

.subscribe-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.subscribe-text {
  font-size: 1rem;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.subscribe-note {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 24px;
  font-style: italic;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 500px;
  margin: 0 auto;
}

.subscribe-fields {
  display: flex;
  gap: 12px;
  width: 100%;
}

.subscribe-fields input {
  flex: 1;
  min-width: 0;
}

.subscribe-form input {
  padding: 14px 18px;
  font-size: 1rem;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  background-color: #ffffff;
}

.subscribe-form input::placeholder {
  color: #999;
}

.signup-btn {
  width: 100%;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #8c8276;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.signup-btn:hover {
  background-color: #7a7066;
}

.footer-store-info {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.footer-store-info p {
  margin: 0 0 8px 0;
  font-size: 1.2rem;
  color: #1a1a1a;
  line-height: 1.5;
}

.footer-store-info p:last-child {
  margin-bottom: 0;
}

.footer-store-info p strong {
  font-weight: 700;
}

.footer-store-block {
  flex: 1 1 230px;
  min-width: 184px;
  max-width: 322px;
  padding: 20px;
  background: #f8f6f4;
  border: 1px solid #e5e0db;
  border-radius: 8px;
  text-align: center;
}

.footer-phone-link,
.footer-address-link {
  color: inherit;
  text-decoration: none;
}

.footer-phone-link:hover,
.footer-address-link:hover {
  text-decoration: underline;
}

.footer-store-block p + p {
  margin-top: 4px;
}

/* Footer Info */
.footer-info {
  padding: 40px 24px 60px;
  text-align: center;
}

.footer-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.copyright,
.powered-by {
  font-size: 0.9rem;
  color: #666666;
  margin-bottom: 8px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.cookie-banner p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 16px;
}

.cookie-accept {
  padding: 10px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #8c8276;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* Chat Widget */
.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #8c8276;
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: transform 0.2s;
}

.chat-widget:hover {
  transform: scale(1.05);
}

/* Inquiry checkboxes and bulk actions */
.inquiry-actions {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e0e0e0;
}

.inquiry-actions-preorder {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
}

.inquiry-filter-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #1a1a1a;
}

.inquiry-filter-select {
  min-width: 180px;
  padding: 6px 10px;
  font-size: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
}

.inquiry-filter-select-preorder {
  border-color: #8c8276;
  color: #1a1a1a;
}

.inquiry-filter-select-preorder:focus {
  outline: none;
  border-color: #7a7066;
  box-shadow: 0 0 0 2px rgba(140, 130, 118, 0.25);
}

.inquiry-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 12px;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.inquiry-checkbox-label:hover {
  background-color: #f5f5f5;
}

.inquiry-checkbox {
  margin-top: 4px;
  cursor: pointer;
  flex-shrink: 0;
}

.inquiry-content {
  flex: 1;
  min-width: 0;
}

.inquiry-item {
  margin-bottom: 16px;
  padding: 16px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
}

.inquiry-item p {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.inquiry-date {
  color: #666;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.preorder-inquiry,
.sold-inquiry,
.remove-inquiry {
  padding: 8px 16px;
  margin-right: 8px;
  font-size: 0.9rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.preorder-inquiry {
  background-color: #8c8276;
  color: #ffffff;
}

.preorder-inquiry:hover {
  background-color: #7a7066;
}

.sold-inquiry {
  background-color: #4a7c59;
  color: #ffffff;
}

.sold-inquiry:hover {
  background-color: #3d6549;
}

.remove-inquiry {
  background-color: #c44;
  color: #ffffff;
}

.remove-inquiry:hover {
  background-color: #a33;
}

.no-inquiries {
  padding: 24px;
  text-align: center;
  color: #666;
  font-style: italic;
}
