/* ============================================
   MAIN STYLES
   ============================================ */

/* ── CSS Custom Properties ──────────────────────────────── */
:root {
  --black:   #0a0a0a;
  --dark:    #111111;
  --mid:     #1e1e1e;
  --grey-dk: #3a3a3a;
  --grey:    #6b6b6b;
  --grey-lt: #f2f2f2;
  --grey-lt2: #f2f2f2;
  --off-wh:  #f4f4f4;
  --white:   #ffffff;
  --radius:  10px;
  --shadow:  0 2px 16px rgba(0,0,0,0.08);
  --shadow-hover: 0 6px 30px rgba(0,0,0,0.15);
  --transition: 0.2s cubic-bezier(.4,0,.2,1);
}

/* ── Base ───────────────────────────────────────────────── */
@font-face {
  font-family: trackim_font;
  src: url(../trackim_font.ttf);
  font-display: fallback;
}
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: trackim_font, 'Helvetica Neue', Arial, sans-serif;
  background: var(--off-wh);
  color: var(--black);
}

/* ── Header ─────────────────────────────────────────────── */
.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
      background: linear-gradient(180deg, #0c0c0c 0%, #292929 100%);

  border-bottom: 1px solid var(--mid);
  width: 100%;
}

/* Update header content to align with body */
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1000px;        /* Changed from 1040px to match body */
  margin: 0 auto;
}

.header-logo {
  flex-shrink: 0;
}

.header-logo .logo {
  height: 60px;
  width: auto;
  display: block;
}

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

.header-nav .button {
  font-weight: bold;
  margin: 0;
  float: none;
  display: inline-block;
  padding: 10px 22px;
  background: var(--white);
  color: var(--black);
  border: none;
  cursor: pointer;
  box-shadow: none;
}

.header-nav .button.off_state {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--grey-lt);
}

.header-nav .button:hover {
  background: var(--grey-lt);
  color: var(--black);
  box-shadow: none;
}

.header-nav .button.off_state:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: var(--white);
}

h1 {
  display: block;
  padding: 26px 20px 22px;
  margin: 0;
  text-align: center;
  font-size: 60px;
  letter-spacing: 1px;
  background: var(--white);
  border-bottom: 1px solid #eaeaea;
}
h1 .logo {
  max-width: 300px;
  width: 100%;
  padding: 0;
}
h2 {
  display: block;
  padding: 0;
  margin: 0 0 4px 0;
  text-align: left;
  font-size: 24px;
  letter-spacing: 0.4px;
  font-weight: 700;
  color: var(--black);
}

/* ── Inputs ─────────────────────────────────────────────── */
input {
  border: 1.5px solid #d0d0d0;
  border-radius: 6px;
  font-family: trackim_font, Arial, sans-serif;
  width: 100%;
  max-width: 38%;
  padding: 11px 14px;
  font-size: 18px;
  letter-spacing: 1px;
  background: var(--white);
  color: var(--black);
  outline: none;
}
input:focus {
  border-color: var(--grey-dk);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.07);
}

/* ── Global button reset ────────────────────────────────── */
button {
  border: 1.5px solid var(--grey-dk);
  padding: 10px 22px;
  margin-left: 12px;
  font-size: 15px;
  letter-spacing: 1px;
  font-family: trackim_font, Arial, sans-serif;
  background: var(--white);
  color: var(--black);
  border-radius: 6px;
  outline: none;
  cursor: pointer;
}
button:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.join_now:hover { filter: none; }

/* ── Primary .button (links styled as buttons) ──────────── */
.button {
  border: none;
  padding: 10px 22px;
  margin: 16px 12px 0 0;
  font-size: 14px;
  letter-spacing: 1px;
  font-family: trackim_font, Arial, sans-serif;
  color: var(--white);
  border-radius: 6px;
  text-decoration: none;
  display: block;
  float: left;
  clear: none;
  background: var(--black);
}
.button:hover {
  background: var(--grey-dk);
  color: var(--white);
  cursor: pointer;
}


/* ── Global Button Styles for Content Pages ─────────────── */
.btn-primary {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 10px 22px;
  margin: 0 10px 10px 0;
  font-size: 14px;
  letter-spacing: 1px;
  font-family: trackim_font, Arial, sans-serif;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  text-align: center;
}

.btn-primary:hover {
  background: var(--grey-dk);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--black);
  border: 1.5px solid #c0c0c0;
  padding: 10px 22px;
  margin: 0 10px 10px 0;
  font-size: 14px;
  letter-spacing: 1px;
  font-family: trackim_font, Arial, sans-serif;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  text-align: center;
}

.btn-secondary:hover {
  background: var(--grey-lt);
  color: var(--black);
  border-color: var(--black);
}

/* ── About strip ────────────────────────────────────────── */
.about {
  overflow: hidden;
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
}
/* Update the about section to match book width */
.about_cont {
  line-height: 1.7;
  width: 100%;              /* Changed from 82% */
  max-width: 1000px;        /* Changed from 960px to match .book */
  overflow: hidden;
  margin: 0 auto;
  padding: 20px 20px;       /* Changed from 20px 0 to add side padding */
  color: #000;
  font-size: 16px;
  letter-spacing: 0.4px;
}

/* ── Books section ──────────────────────────────────────── */
.books {
  padding: 20px 20px 20px;
  text-align: center;
  background: #f0f0f0;
}
.book {
  max-width: 960px;
  overflow: hidden;
  background: var(--white);
  margin: 0 auto 20px;
  text-align: left;
  padding: 28px 28px 24px;
  border-radius: var(--radius);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06), 0 4px 20px rgba(0,0,0,0.05);
  border: 1px solid #e8e8e8;
  border-left: 3px solid transparent;
}



span.no_shadow, .book_image .no_shadow, span.no_shadow, .web_image .no_shadow {
  box-shadow: none !important;
}

.web_image  { 
  max-width: 300px; 
  height: auto; 
  float: left; 
  background: var(--white); 
  font-size: 0; 
  line-height: 0;
  overflow:visible;
  border-radius:6px;
  box-shadow:0 2px 10px rgba(0,0,0,0.12);
  border: 1px solid var(--grey-lt);
}
.web_text   { float: left; width: calc(100% - 360px); padding: 0 20px 0 36px; font-size: 17px; letter-spacing: 0.3px; line-height: 1.55; }

.book_image { 
  max-width: 400px; 
  height: auto; 
  float: left; 
  background: var(--white); 
  font-size: 0; 
  line-height: 0;
   overflow:visible;
  width:100%;
  border-radius:6px;
  box-shadow:0 2px 10px rgba(0,0,0,0.12);
  border: 1px solid var(--grey-lt);

}
.book_text  { float: left; width: calc(100% - 460px); padding: 0 20px 0 36px; font-size: 16px; letter-spacing: 0.3px; line-height: 1.55; }

.book_image img, .web_image img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  background: var(--white);
  margin: -1px;
  padding: 1px;
}

.right { float: right; }
.coming_soon {
  font-size: 15px;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 6px;
  background: var(--grey-dk);
  color: var(--white);
  display: block;
  margin: 14px 0 0;
  float: left;
}
.line_1 { font-size: 14px; letter-spacing: 1px; display: block; }

/* ── Cookie/Accept buttons ──────────────────────────────── */
button.accept {
  border: none;
  padding: 9px 18px;
  margin-left: 0;
  font-size: 14px;
  letter-spacing: 1px;
  font-family: trackim_font, Arial, sans-serif;
  background: var(--white);
  color: var(--black);
  border-radius: 6px;
  outline: none;
  display: inline-block;
  cursor: pointer;
}
button.accept:hover { 
  background: var(--grey-lt); 
  color: var(--black);
}
button.active:hover { filter: brightness(115%); cursor: pointer !important; }
button.deny { margin: 0 0 0 10px; background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
button.deny:hover { background: rgba(255,255,255,0.1); }
.button_blue { background: var(--grey-dk); }

/* ── Cookie bar ─────────────────────────────────────────── */
.cookieAcceptBar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  background: var(--dark);
  color: var(--white);
  padding: 14px 0;
  z-index: 99999;
  display: none;
  border-top: 1px solid var(--grey-dk);
}
.cookieAcceptBar a { color: var(--grey-lt); text-decoration: none; font-weight: bold; }
.copyright_text { font-size: 14px; margin: 10px 0; margin-right: 20px; }
.copyright { width: 80%; overflow: hidden; margin: 0 auto; text-align: center; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.cookiebuttons { display: flex; gap: 10px; }

/* ── Footer ─────────────────────────────────────────────── */
.footer_container {
  background: var(--dark);
  background: linear-gradient(180deg, #0c0c0c 0%, #292929 100%);

  overflow: auto;
  border-top: 1px solid var(--mid);
}
.footer {
  width: 80%;
  overflow: hidden;
  margin: 0 auto;
  text-align: left;
  padding: 26px 20px;
  margin-bottom: 90px;
  color: var(--grey-lt);
  font-size: 14px;
}

.footer-copyright {
  text-align: center;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-button {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: var(--grey-lt);
  text-decoration: none;
  font-size: 13px;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-button:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

/* ── Tags ───────────────────────────────────────────────── */
.tag_cont { margin-top: 8px; margin-bottom: 16px; overflow: hidden; }
.tag, .tag_color {
  padding: 4px 10px;
  background: var(--off-wh);
  border: 1px solid #d8d8d8;
  color: var(--grey);
  border-radius: 20px;
  font-size: 12px;
  display: block;
  float: left;
  clear: none;
  margin: 4px 6px 0 0;
  letter-spacing: 0.3px;
  height: auto;
  font-weight: bold;
}
.tag_color {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

/* ── Sign-up / Join modal ────────────────────────────────── */
.cookiebuttons { display: flex; gap: 10px; }
.privacy_link { text-decoration: underline !important; color: var(--grey-lt); }
.logo { max-width: 300px; width: 100%; padding: 0; }
.join div.close { position: absolute; top: 10px; right: 10px; width: 20px; margin: 0; cursor: pointer; }

.close img {
    filter: brightness(0) saturate(100%) invert(80%);
    cursor: pointer;
}

.close img:hover {
    filter: brightness(0) saturate(100%) invert(60%);
}


.sign_up_tag { padding: 0 20px; }
.ml_button { padding: 10px 0 0; overflow: initial; margin: 0; text-align: center; display: block; }
.ml_button button { margin: 0; }
.hide { display: none; }
.join_open { 
  margin: 0 0 16px;
  background: var(--white);
  color: var(--black);
  border: none;
}
.join_open:hover {
  background: var(--grey-lt);
  color: var(--black);
}
.center { text-align: center; }

.join {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}
.join.active {
  display: flex;
}
.join-modal-content {
  background: var(--white);
  padding: 20px;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  position: relative;
  text-align: center;
  font-family: trackim_font, Arial, sans-serif;
}
.join-modal-content h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  color: #333;
  font-family: trackim_font, Arial, sans-serif;
  letter-spacing: 0.5px;
}
.join div { margin: 0; color: var(--black); display: block; font-size: 18px; letter-spacing: 1px; text-align: center; }
.join .sign_up_tag { 
  color: var(--black);
  font-size: 16px;
  padding: 0;
  margin: 0 0 25px 0;
  line-height: 1.5;
  letter-spacing: 0.3px;
}
.join div.close { position: absolute; top: 10px; right: 10px; width: 20px; margin: 0; cursor: pointer; }
.join div.close img { filter: none; }
.join input { margin: 0 0 12px 0; width: 100%; max-width: 100%; }
.join button { 
  margin: 0; 
  width: 100%; 
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  cursor: pointer;
}
.join button:hover {
  background: var(--grey-dk);
}

/* ── YouTube card ───────────────────────────────────────── */

/* Art Image Container - Centers artwork on white background */
.art-image-container {
  width: 100%;
  aspect-ratio: 16/9;
  background: white;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
}



.art-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.image-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.artwork-buttons {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.artwork-buttons .btn-enlarge, 
.artwork-buttons .btn-how-made {
  flex: 1;
  min-width: 0;
  margin: 0 !important;
  float: none !important;
  display: block !important;
  /* Inherits .button.btn-preview styles */
}

/* No need for separate hover - uses .button.btn-preview:hover */

/* Enlarged Artwork Modal - Full Screen Interactive Viewer */
.enlarged-artwork-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.95);
  z-index: 10000;
}

.enlarged-artwork-modal.active {
  display: block;
}

.enlarged-artwork-content {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.enlarged-image-viewer {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
  cursor: grab;
}

.enlarged-image-viewer.dragging {
  cursor: grabbing;
}

.enlarged-image-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.enlarged-image {
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  position: absolute;
  user-select: none;
  -webkit-user-drag: none;
  object-fit: contain;
}

/* Viewer Controls - All 4 buttons on right side */
.viewer-controls {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10001;
}

.viewer-btn {
  width: 44px;
  height: 44px;
  background: var(--black);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  padding: 0;
}

.viewer-btn img {
  width: 20px;
  height: 20px;
  display: block;
  pointer-events: none;
}

.viewer-btn:hover {
  background: var(--grey-dk);
  border-color: rgba(255,255,255,0.5);
}

.viewer-btn:active {
}

/* Sticky Bottom Info Bar with Drop Shadow */
.enlarged-artwork-bottom-bar {
  background: white;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e0e0e0;
  position: sticky;
  bottom: 0;
  z-index: 10001;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.enlarged-artwork-info {
  flex: 1;
  text-align: left;
}

.enlarged-artwork-info h2 {
  font-size: 24px;
  margin: 0 0 8px 0;
  color: var(--black);
  font-weight: 700;
}

.enlarged-artwork-info .specs {
  font-size: 14px;
  color: var(--grey);
  margin: 0 0 4px 0;
}

.enlarged-artwork-info .price {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin: 0;
}

.enlarged-artwork-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.enlarged-artwork-actions .art-purchase-button {
  margin: 0;
  padding: 12px 20px;
  font-size: 16px;
  white-space: nowrap;
  width: auto;
  max-width: none;
}

.enlarged-artwork-actions .button-group {
  display: flex;
  gap: 10px;
  align-items: center;
}

.enlarged-artwork-actions .button-group .art-purchase-button {
  flex: 1;
}

.enlarged-artwork-actions .sold-badge {
  margin: 0;
  padding: 12px 20px;
  font-size: 16px;
}

/* Video Modal */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.9);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  background: black;
  border-radius: 12px;
  max-width: 1200px;
  width: 100%;
  position: relative;
  padding-bottom: 20px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px 12px 0 0;
}

.video-close-btn {
  display: block;
  margin: 20px auto 0;
  background: var(--white);
  color: var(--black);
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-family: trackim_font, Arial, sans-serif;
  letter-spacing: 1px;
  cursor: pointer;
  font-weight: 600;
}

.video-close-btn:hover {
  background: var(--grey-lt);
  color: var(--black);
}

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  z-index: 10001;
}

.modal-close:hover {
  background: var(--grey-lt);
}
.youtube_text {
  float: left;
  clear: none;
  margin: 0;
  padding: 0;
  display: block;
  width: calc(100% - 200px);
  color: var(--white);
  font-size: 28px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.youtube_button { float: right; margin: 0; }
.youtube_card {
  background-image: url("../imgs/YouTube-Background.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: var(--radius);
}
.you_tube_ad { box-shadow: none; padding-top: 0; }

/* ── Old filter bar removed - nav is now in header ─────── */

/* ── Art section ────────────────────────────────────────── */
.art {
  padding: 0px 0px;
  text-align: center;
  background: var(--off-wh);
}
.art_container {
  padding: 0px 20px 50px;
  text-align: center;

}
#videos-container {
  max-width: 960px;
  margin: 20px auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.art_section {
  padding: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid #e8e8e8;
  overflow: hidden;
}

.art_section:hover { 
  box-shadow: var(--shadow-hover); 
}
.youtube-video { aspect-ratio: 16/9; width: 100%; border-radius: 6px; }
.art-purchase {
  margin-top: 0;
  padding: 20px;
  border-top: none;
  text-align: left;
}
.art-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0px;
  line-height: 1.3;
}
.art-specs {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  font-weight: 700;
}
.art-purchase-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}
.art-purchase-button {
  background: var(--black);
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 14px;
  font-family: trackim_font, Arial, sans-serif;
  letter-spacing: 1px;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  max-width: 100%;
  margin: 0;
  float: none;
  display: block;
}
.art-purchase-button:hover {
  background: var(--grey-dk);
}



.cancel-hold-button {
  background: #dc3545;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 14px;
  font-family: trackim_font, Arial, sans-serif;
  letter-spacing: 1px;
  border-radius: 6px;
  cursor: pointer;
  margin-left: 10px;
}
.cancel-hold-button:hover {
  background: #c82333;
}
.button-group {
  display: flex;
  align-items: center;
  width: 100%;
}
.button-group .art-purchase-button {
  flex: 1;
}
.sold-badge {
  background: #dc3545;
  color: white;
  font-size: 24px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 6px;
  display: inline-block;
  letter-spacing: 2px;
}

.sold-text {
  color: #dc3545;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
  padding: 12px 0;
  font-family: trackim_font, Arial, sans-serif;
}

/* Purchase Modal Styles */
.purchase-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}
.purchase-modal.active {
  display: flex;
}
.purchase-modal-content {
  background: white;
  padding: 40px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  text-align: center;
  font-family: trackim_font, Arial, sans-serif;
}
.purchase-modal-content h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  color: #333;
  font-family: trackim_font, Arial, sans-serif;
  letter-spacing: 0.5px;
}
.purchase-modal-content p {
  font-size: 16px;
  color: var(--black);
  margin: 0 0 25px 0;
  line-height: 1.5;
  font-family: trackim_font, Arial, sans-serif;
  letter-spacing: 0.3px;
}
.purchase-modal-content .price-display {
  font-size: 36px;
  font-weight: bold;
  color: #000;
  margin: 0;
  font-family: trackim_font, Arial, sans-serif;
  letter-spacing: 1px;
}
#paypal-button-modal-container {
  margin: 20px 0;
}
.modal-cancel-btn {
  background: #ccc;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  margin-top: 15px;
  color: #333;
  font-family: trackim_font, Arial, sans-serif;
  letter-spacing: 0.5px;
  margin:0px;
}
.modal-cancel-btn:hover {
  background: var(--grey-lt);
  color: var(--black);
}
.success-modal-content {
  text-align: center;
}
.success-icon {
  font-size: 64px;
  color: #28a745;
  margin-bottom: 20px;
}
.pending-modal-content {
  text-align: center;
}
.pending-icon {
  font-size: 64px;
  color: #ffc107;
  margin-bottom: 20px;
}
/* Animations removed */
/* Loading Spinner */
.art-loading-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
  min-height: 400px;
}
.spinner {
  width: 60px;
  height: 60px;
  border: 4px solid #f0f0f0;
  border-top: 4px solid #000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.spinner-text {
  margin-top: 20px;
  font-size: 16px;
  color: #666;
}

/* Art Controls Bar - Unified Series + Filter */
/* ============================================
   ART FILTER BAR (Single Container for Everything)
   ============================================ */

.art-filter-bar {
  width: 100%;
  padding: 20px 20px 0;
  background: var(--off-wh);
}

.art-filter-container {
  max-width: 960px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}

/* Series Selection Dropdown (gradient background, white text) */
.art-series-selection {
  background: linear-gradient(180deg, #191919 0%, #313131 100%);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0;
  border-bottom: 1px solid #e0e0e0;
}

/* White label for series dropdown */
.art-series-selection .art-controls-label {
  color: #ffffff;
}

.art-series-dropdown {
  padding: 10px 36px 10px 16px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  font-family: trackim_font, 'Helvetica Neue', Arial, sans-serif;
  min-width: 240px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.art-series-dropdown:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.3);
}

.art-series-dropdown:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.art-series-dropdown option {
  font-family: trackim_font, 'Helvetica Neue', Arial, sans-serif;
  padding: 10px;
  font-size: 14px;
  background: #2e2e2e;
  color: #ffffff;
}

/* Series Info Section (title and description) */
.art-series-info-section {
  padding: 20px 20px 0;
  margin: 0;
}

.art-series-title {
  font-size: 30px;
  font-weight: 600;
  color: var(--black);
  margin: 0 0 12px 0;
  font-family: trackim_font, 'Helvetica Neue', Arial, sans-serif;
  text-align: center;
}

.art-series-description {
  line-height: 1.7;
  color: #000;
  font-size: 16px;
  letter-spacing: 0.4px;
  margin: 0;
  font-family: trackim_font, 'Helvetica Neue', Arial, sans-serif;
  text-align: left;
}

/* Separator line between description and filter */
.art-series-info-section::after {
  content: '';
  display: block;
  height: 1px;
  background: #e0e0e0;
  margin: 20px -20px 0;
}

/* Filter Section (grey background) */
.art-filter-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 16px 20px;
  margin: 0;
  background: #d9d9d9;
}

.art-filter-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.art-controls-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--grey);
  white-space: nowrap;
}

.art-filter-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.art-filter-btn {
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--grey-dk);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: trackim_font, 'Helvetica Neue', Arial, sans-serif;
  white-space: nowrap;
  margin: 0;
}

.art-filter-btn:hover {
  border-color: var(--grey-dk);
  background: var(--grey-lt);
  color: #000000;
}

.art-filter-btn.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

/* Smart Search - Flush Right in Filter Bar */
.art-smart-search {
  position: relative;
  min-width: 320px;
  max-width: 480px;
  flex: 0 1 auto;
  margin-left: auto;
}

.art-search-input {
  width: 100%;
  max-width: 100%;
  padding: 10px 40px 10px 14px;
  font-size: 14px;
  font-family: trackim_font, 'Helvetica Neue', Arial, sans-serif;
  border: 1px solid #c0c0c0;
  border-radius: 6px;
  background: var(--white);
  color: var(--black);
  transition: all 0.2s ease;
}

.art-search-input:focus {
  outline: none;
  border-color: var(--grey-dk);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.art-search-input::placeholder {
  color: #999;
}

.art-search-clear {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--grey);
  font-size: 16px;
  cursor: pointer;
  padding: 6px;
  line-height: 1;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.art-search-clear:hover {
  color: var(--grey-lt);
}

/* Search No Results Message */
#search-no-results {
  grid-column: 1 / -1;
  width: 100%;
  padding: 60px 20px;
  text-align: center;
  font-size: 18px;
  color: #666;
}

#search-no-results p:first-child {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

#search-no-results p:last-child {
  font-size: 16px;
  color: #999;
}

/* Search Highlight */
.search-highlight {
  color: #28a745;
  font-weight: 600;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .art-series-selection {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .art-series-dropdown {
    width: 100%;
    min-width: 100%;
  }
  
  .art-filter-section {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  
  .art-filter-left {
    width: 100%;
  }
  
  .art-filter-buttons {
    width: 100%;
  }
  
  .art-filter-btn {
    flex: 1 1 auto;
    text-align: center;
    min-width: fit-content;
  }
  
  .art-smart-search {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    margin-left: 0;
  }
  
  /* Hide "Artwork View:" label on mobile */
  .art-controls-label {
    display: none;
  }
}

/* ============================================
   OLD STYLES - DEPRECATED (Keeping for backwards compatibility)
   ============================================ */
.art-controls-bar {
  width: 100%;
  padding: 20px 20px 0 ;
  background: var(--off-wh);
}

.art-controls-container {
  max-width: 960px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.art-series-section,
.art-filter-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.art-controls-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--grey);
  white-space: nowrap;
}

.art-controls-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.art-control-btn {
  padding: 8px 18px;
  background: var(--white);
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--grey-dk);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: trackim_font, 'Helvetica Neue', Arial, sans-serif;
  white-space: nowrap;
  margin: 0;
}

.art-control-btn:hover {
  border-color: var(--grey-dk);
  background: var(--grey-lt);
}

.art-control-btn.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.art-control-btn .artwork-count {
  font-size: 11px;
  opacity: 0.7;
  margin-left: 4px;
}


/* Responsive - Stack on mobile */
@media (max-width: 768px) {
  .art-controls-container {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  
  .art-series-section,
  .art-filter-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .art-controls-buttons {
    width: 100%;
  }
  
  .art-control-btn {
    flex: 1;
    text-align: center;
  }
}

/* Art Filter Styles - DEPRECATED (keeping for backwards compatibility) */
.art-filter-section-old {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px;
  margin: 0 auto 20px;
  max-width: 1000px;
  flex-wrap: wrap;
  background: #f8f8f8;
  border-bottom: 1px solid #e8e8e8;
}

.art-filter-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--grey);
}

.art-filter-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.art-filter-btn {
  padding: 8px 18px;
  background: var(--white);
  border: 2px solid var(--grey-lt);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--grey);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: trackim_font, 'Helvetica Neue', Arial, sans-serif;
}

.art-filter-btn:hover {
  border-color: var(--grey);
  background: var(--grey-lt);
}

.art-filter-btn.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

/* Lazy loading image states */
.art-image {
  opacity: 0;
  transition: opacity 0.3s ease-in;
}

.art-image.loaded {
  opacity: 1;
}

#art, #other { display: none; }

/* ── Misc states ────────────────────────────────────────── */
#confirmation { font-size: 24px; letter-spacing: 1px; display: none; color: var(--black); font-weight: 600; }
#error        { font-size: 16px; letter-spacing: 0.5px; display: none; color: #dc3545; }
#duplicate    { font-size: 16px; letter-spacing: 0.5px; display: none; color: var(--grey); }
.disabled     { background: #ccc !important; color: var(--white); }
.err { box-shadow: inset 0 0 6px #900; border-color: #900 !important; }
.err::placeholder           { color: #900; opacity: 1; }
.err:-ms-input-placeholder  { color: #900; }
.err::-ms-input-placeholder { color: #900; }


/* ============================================
   BOOK PREVIEW MODAL STYLES
   ============================================ */

/* ── Book Preview Modal - Full Screen Viewer ──────────── */
.book-preview-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.95);
  z-index: 10000;
}

.book-preview-modal.active {
  display: block;
}

.book-preview-content {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.book-preview-viewer {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
  cursor: grab;
}

.book-preview-viewer.dragging {
  cursor: grabbing;
}

.book-image-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.book-preview-image {
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  position: absolute;
  user-select: none;
  -webkit-user-drag: none;
  object-fit: contain;
}

/* Book Preview Loading Spinner */
.book-preview-loading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  z-index: 10002;
}

.book-preview-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255,255,255,0.1);
  border-top: 4px solid #fff;
  border-radius: 50%;
  animation: book-spinner-spin 1s linear infinite;
}

@keyframes book-spinner-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Book Viewer Controls - All 4 buttons on right side */
.book-viewer-controls {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10001;
}

/* Purchase Prompt - End of Preview Screen */
.book-purchase-prompt {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  z-index: 10000;
}

.purchase-prompt-content {
  text-align: center;
  max-width: 500px;
  padding: 40px;
}

.purchase-prompt-content h2 {
  font-size: 20px;
  color: var(--white);
  margin: 0 0 20px 0;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: trackim_font, Arial, sans-serif;
  text-align: center;
}

.purchase-prompt-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin: 0 0 0 0;
  line-height: 1.6;
  letter-spacing: 0.3px;
  font-family: trackim_font, Arial, sans-serif;
}

.purchase-prompt-content p:last-of-type {
  margin-bottom: 30px;
}

.purchase-prompt-button {
  background: var(--white);
  color: var(--black);
  border: none;
  padding: 14px 36px;
  font-size: 16px;
  font-family: trackim_font, Arial, sans-serif;
  letter-spacing: 1px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  margin: 10px;
  min-width: 220px;
  display: inline-block;
}

.purchase-prompt-button:hover {
    background: var(--grey-lt);
    color: var(--black);
}

.purchase-prompt-close {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 12px 20px;
  font-size: 14px;
  font-family: trackim_font, Arial, sans-serif;
  letter-spacing: 1px;
  border-radius: 6px;
  cursor: pointer;
  margin: 10px;
  min-width: 220px;
  display: inline-block;
}

.purchase-prompt-close:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: var(--white);
  transition: all 0.2s ease;
}

/* Sticky Bottom Info Bar */
.book-preview-bottom-bar {
  background: white;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e0e0e0;
  position: sticky;
  bottom: 0;
  z-index: 10001;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.book-preview-info {
  flex: 1;
  text-align: left;
}

.book-preview-info h3 {
  font-size: 20px;
  margin: 0 0 4px 0;
  color: var(--black);
  font-weight: 700;
  font-family: trackim_font, Arial, sans-serif;
}

.book-page-indicator {
  font-size: 14px;
  color: var(--grey);
  font-family: trackim_font, Arial, sans-serif;
}

.book-preview-navigation {
  display: flex;
  gap: 12px;
  align-items: center;
}

.book-nav-button {
  background: var(--black);
  color: white;
  border: none;
  padding: 11px 28px;
  font-size: 14px;
  font-family: trackim_font, Arial, sans-serif;
  letter-spacing: 1px;
  border-radius: 6px;
  cursor: pointer;
  min-width: 100px;
  margin-left: 0;
}

.book-nav-button:hover {
  background: var(--grey-dk);
}

.book-nav-button:disabled {
  background: #e0e0e0;
  color: var(--grey);
  cursor: not-allowed;
}

/* Mobile responsiveness */
@media only screen and (max-width: 800px) {
  .book-preview-bottom-bar {
    padding: 15px 20px;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  
  .book-preview-info {
    text-align: center;
  }
  
  .book-preview-info h3 {
    font-size: 18px;
  }
  
  .book-preview-navigation {
    width: 100%;
    justify-content: space-between;
  }
  
  .book-nav-button {
    flex: 1;
    min-width: 0;
    padding: 10px 16px;
    font-size: 13px;
  }
  
  .book-viewer-controls {
    top: 10px;
    right: 10px;
  }
  
  .viewer-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .book-preview-image {
    max-width: 95%;
    max-height: 95%;
  }
}


/* ============================================
   BOOK STYLES (CONVERSION ENHANCEMENTS)
   ============================================ */

/* Star ratings */
.stars { color: #1a1a1a; font-size: 15px; letter-spacing: 3px; display: inline-block; }
.review-count { font-size: 12px; color: var(--grey); margin-left: 8px; vertical-align: middle; letter-spacing: 0.3px; }
.rating-row { margin: 8px 0 12px; }

/* Badge on book image */
.book_image_wrap { position: relative; float: left; max-width: 400px; }
.book_image_wrap .book_image { max-width: 100%; float: none; }
.bestseller-badge, .new-badge {
  position: absolute;
  top: 12px; left: -4px;
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 5px 12px 5px 10px;
  text-transform: uppercase;
  pointer-events: none;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 50%, calc(100% - 6px) 100%, 0 100%);
}
.bestseller-badge { background: #1a1a1a; }
.new-badge        { background: var(--grey-dk); }

/* Action row — buttons sit inline */
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  clear: both;
  align-items: center;
}

/* CTA button upgrade */
.button.btn-purchase {
  background: var(--black);
  color: var(--white);
  font-size: 14px;
  padding: 11px 24px;
  margin: 0;
  border-radius: 6px;
  letter-spacing: 1px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.18);
  float: none;
  display: inline-block;
}
.button.btn-purchase:hover {
  background: #222;
}

/* Preview / secondary button */
.button.btn-preview {
  background: transparent;
  color: var(--black);
  border: 1.5px solid #c0c0c0;
  font-size: 14px;
  padding: 10px 10px;
  margin: 0;
  float: none;
  display: inline-block;
}
.button.btn-preview:hover {
  background: var(--grey-lt);
  color: var(--black);
  border-color: var(--black);
}

/* Available on Amazon note */
.amazon-note {
  display: block;
  clear: both;
  font-size: 12px;
  color: var(--grey);
  margin-top: 12px;
  letter-spacing: 0.3px;
}
.amazon-note span { font-weight: 700; color: var(--grey); }

/* Social proof quote */
.book-quote {
    font-style: italic;
    color: var(--grey);
    font-size: 14px;
    /* border-left: 2px solid #d8d8d8; */
    padding: 14px;
    margin: 14px 0 6px;
    line-height: 1.55;
    font-weight: bold;
    background: #f4f4f4;
    border-radius: 6px;
}

/* Gift hint */
.gift-hint {
  display: block;
  font-size: 12px;
  color: var(--grey);
  background: #f8f8f8;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  padding: 5px 11px;
  margin-top: 12px;
  width: 100%;
  clear: both;
  letter-spacing: 0.3px;
}

/* ── Book card upgrades ───────────────────────────────── */
.book {
  border-left: 3px solid transparent;
}

/* Tighter h2 spacing */
.book_text h2 {
  font-size: 22px;
  margin-bottom: 6px;
  line-height: 1.2;
}

/* Divider between description and actions */
.book-body-divider {
  border: none;
  border-top: 1px solid #cacaca;
  margin: 16px 0 0;
}

/* ── Section label ────────────────────────────────────── */
.books-header {
  max-width: 1000px;
  margin: 0 auto 8px;
  padding: 0 0 14px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.books-header h3 {
  margin: 0;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey);
  font-weight: 400;
}
.books-header-count {
  font-size: 11px;
  color: var(--grey-lt);
  letter-spacing: 1px;
}


/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* ── Responsive: 900px ──────────────────────────────────── */
@media only screen and (max-width: 900px) {

.line_1{ font-size:16px; letter-spacing: 1px; display:block;}
.line_2{font-size:40px; letter-spacing: 1px;  display:block;}

/* New header mobile styles */
.header-content {
  flex-direction: column;
  padding: 14px 20px;
  gap: 12px;
}

.header-logo .logo {
  height: 80px; /* Increased from 60px */
}

.header-nav {
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}



h1{ font-size:40px; padding: 18px 20px 14px; }
h1 .logo { max-width: 220px; width: 100%; }

.book_image, .web_image{  max-width: 100%;  float:left; display:block; margin-bottom:20px;  }
.book_text, .web_text{ float:left; display:block; width:100%; padding:0px; font-size:18px; letter-spacing: 1px; }
	
.books { padding: 20px;}
.button{display:block;}

input{ width: calc(100% - 193px); max-width:100%; }

.footer {
  width: auto;
  padding: 20px 0;
  margin: 20px;
}

/* Book styles mobile */
.action-row { flex-direction: column; align-items: stretch; gap: 8px; }
.button.btn-purchase, .button.btn-preview { width: 100%; text-align: center; display: block; }
.action-row .preview { width: 100%; }
.action-row .preview .button { width: 100%; text-align: center; display: block; }
.book_image_wrap { max-width: 100%; float: none; display: block; margin-bottom: 18px; }

}

/* ── Misc ───────────────────────────────────────────────── */
.join div.close { position: absolute; top:10px; right: 10px; width:20px; margin:0; }

@media only screen and (max-width: 640px) {
  .join_open { }
}

@media only screen and (max-width: 800px) {
  .ml_button { text-align: center; }
  .youtube_text { width: 100%; display: block; padding-bottom: 16px; text-align: center; font-size: 22px; }
  .youtube_button { float: none; margin: 0; text-align: center; display: inline-block; }
  .youtube_card { text-align: center; }
  
  #videos-container {
    grid-template-columns: 1fr;
  }
  
  .art_container { padding: 0 0 20px; }
  .art { padding: 0px 20px;}
  
  .artwork-buttons {
    flex-direction: column;
  }
  
.art-filter-bar {
  width: 100%;
  padding: 20px 0px 0;
  background: var(--off-wh);
}
.art-filter-btn {
  padding: 10px 10px;}

  .btn-enlarge, .btn-how-made {
    min-width: 100%;
  }
  
  /* Enlarged Modal Mobile */
  .enlarged-artwork-bottom-bar {
    padding: 15px 20px;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start; /* Force left alignment when stacked vertically */
  }
  
  .enlarged-artwork-info {
    text-align: left !important; /* Force left alignment on mobile */
    width: 100%; /* Full width */
  }
  
  .enlarged-artwork-info h2 {
    font-size: 20px;
    text-align: left;
  }
  
  .enlarged-artwork-info .price {
    font-size: 18px;
    text-align: left;
  }
  
  .enlarged-artwork-info .specs {
    text-align: left;
  }
  
  .enlarged-artwork-actions {
    width: 100%;
    align-self: flex-start; /* Keep actions left-aligned too */
  }
  
  .enlarged-artwork-actions .art-purchase-button {
    width: 100%;
    font-size: 14px;
  }
  
  .viewer-controls {
    top: 10px;
    right: 10px;
  }
  
  .viewer-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .modal-close {
    top: 10px;
    right: 10px;
  }
}

.you_tube_ad { box-shadow: none; padding-top: 0; }


/* ============================================
   ART SERIES SWITCHER
   ============================================ */

/* ============================================
   ART SERIES SWITCHER - CLEAN & THIN
   ============================================ */

/* ============================================
   ART SERIES SWITCHER - FULL WIDTH WITH HIERARCHY
   ============================================ */

/* ============================================
   ART SERIES SWITCHER - FINAL ALIGNED VERSION
   ============================================ */

/* Old series switcher styles removed - now using unified art-controls-bar */


/* ============================================
   UPDATED JOIN MODAL STYLES
   Add these to your styles.css (replace the existing confirmation styles)
   ============================================ */

/* Hide the "Get Updates" title when showing confirmation */
.join.show-confirmation #modal-title,
.join.show-confirmation .sign_up_tag {
	display: none;
}

/* Confirmation message container */
#confirmation { 
	display: none;
	color: var(--black);
	text-align: center;
	padding: 20px 0;
}

#confirmation.confirmation-message {
	display: none;
}

/* Main "Thank You!" text - Large and bold */
.confirmation-title {
	font-size: 42px!important;
	font-weight: 700;
	letter-spacing: 0.5px;
	margin: 0 0 0 0!important;
	color: var(--black);
	line-height: 1.1;
}

/* Subtitle "More fun to come" - Smaller, lighter */
.confirmation-subtitle {
    font-size: 20px !important;
    font-weight: 400;
    letter-spacing: 0.3px;
    color: var(--grey);
    margin: 0 !important;
    line-height: 1.4;
}

.happy_guy { max-width: 210px; width: 100%; margin-top: 20px;  }

/* Error and duplicate messages - keep existing styles */
#error { 
	font-size: 16px;
	letter-spacing: 0.5px;
	display: none;
	color: #dc3545;
	padding: 10px 0;
}

#duplicate { 
	font-size: 16px;
	letter-spacing: 0.5px;
	display: none;
	color: var(--grey);
	padding: 10px 0;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
	.confirmation-title {
		font-size: 36px;
	}
	
	.confirmation-subtitle {
		font-size: 16px;
	}
}




/* ============================================
   EMAIL SIGNUP BAR - SIMPLIFIED (OPENS MODAL)
   Add this to your styles.css
   ============================================ */


.email-signup-bar {
    
    margin: 20px 20px 0;
    border-radius: 6px;
}
.email-signup-content {
  background: linear-gradient(180deg, #191919 0%, #313131 100%);
  background-image: url("../imgs/email_background_art.webp");
  background-position: center; background-size: cover;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 960px;
    margin: 20px auto 0;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 10px;
}

.signup-text {
  flex: 1;
  text-align: left;
}

.signup-heading {
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 2px 0;
  letter-spacing: 0.5px;
  font-family: trackim_font, Arial, sans-serif;
}

.signup-subtext {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin: 0;
  letter-spacing: 0.3px;
  font-family: trackim_font, Arial, sans-serif;
}

.signup-bar-button {
  border: none;
  padding: 12px 32px;
  margin: 0;
  font-size: 14px;
  letter-spacing: 1px;
  font-family: trackim_font, Arial, sans-serif;
  background: var(--white);
  color: var(--black);
  border-radius: 6px;
  outline: none;
  cursor: pointer;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.signup-bar-button:hover {
  background: var(--grey-lt);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* Mobile responsiveness for signup bar */
@media only screen and (max-width: 800px) {
  .email-signup-content {
    background-image: url("../imgs/email_background_mobile_art.webp");
    flex-direction: column;
    gap: 20px;
    padding: 24px 20px;
  }
  
  .signup-text {
    text-align: center;
  }
  
  .signup-heading {
    font-size: 22px;
  }
  
  .signup-subtext {
    font-size: 14px;
  }
  
  .signup-bar-button {
    width: 100%;
    padding: 14px 24px;
  }
}
/* ============================================
   NO SOLD ARTWORK MESSAGE (Devil)
   ============================================ */
.no-sold-message {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.devil-image {
  width: 100%;
  height: auto;
  margin-bottom: 0px;
  max-width: 400px;


}

.devil-title {
  font-size: 32px;
  font-weight: bold;
  color: var(--black);
  margin: 0 0 16px 0;
  letter-spacing: 0.5px;
}

.devil-text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--grey);
  margin: 0;
}

@media only screen and (max-width: 800px) {
  .no-sold-message {
    padding: 0;
  }
  

  .devil-title {
    font-size: 26px;
  }
  
  .devil-text {
    font-size: 16px;
  }
}
