@charset "utf-8";
/* --- 1. VARIABLES & CORE SETTINGS --- */ :root {
  --primary: #222;
  --primary-light: #34495e;
  --accent: #ff4757;
  --sidebar-bg: #ffffff;
  --bg-light: #f8f9fa;
  --border-color: #eeeeee;
  --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
* {
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin: 0;
  background: var(--bg-light);
  color: #333;
  font-size: 18px;
  line-height: 1.6;
}
/* --- 2. HEADER & NAVIGATION --- */
header {
  background: var(--primary);
  color: white;
  padding: 60px 20px;
  text-align: center;
}
header h1 {
  font-size: 3.5rem;
  letter-spacing: -2px;
  margin: 0;
}
header p {
  font-style: italic;
  opacity: 0.8;
  max-width: 600px;
  margin: 20px auto;
}
.collection-header {
    background: #050f10;
    padding: 20px 40px;
    border-bottom: 3px solid #9b59b6;
}

.header-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* Pushes brand to left, quote to right */
    align-items: center;
    gap: 30px;
}

.brand-block {
    display: flex;
    align-items: center;
    gap: 20px; /* Space between logo and text */
}

.header-logo-small {
    width: 175px;
    height: auto;
    
    /* The Glow: 
       0 0 = no offset (glows evenly on all sides)
       15px = the spread/blur of the glow
       #491c50 = your specific deep purple 
    */
    filter: drop-shadow(0 0 5px #491c50) drop-shadow(0 0 15px #491c50);
    
    /* Smooth transition for when we hover over it */
    transition: filter 0.4s ease, transform 0.3s ease;
}

.header-logo-small:hover {
    /* Intense glow on hover to show the site is "alive" */
    filter: drop-shadow(0 0 20px #9b59b6);
    transform: scale(1.05);
}

.title-group h1 {
    font-size: 2.2rem;
    margin: 0;
    line-height: 1;
    color: #ffffff;
    letter-spacing: 2px;
}

.tagline {
    margin: 5px 0 0 0;
    font-size: 0.9rem;
    color: #9b59b6;
    text-transform: uppercase;
    font-weight: bold;
}

.collection-quote {
    text-align: right;
    max-width: 400px;
    font-size: 0.95rem;
    border-left: 2px solid #333;
    padding-left: 20px;
}
.sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-nav li {
  margin-bottom: 8px;
}
.sidebar-nav a {
  display: block;
  padding: 10px 15px;
  color: #444;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.2s;
}
.sidebar-nav a:hover {
  background: #f0f0f0;
}
.sidebar-nav a.active {
  background: var(--primary);
  color: white;
  font-weight: bold;
}
/* --- 3. LAYOUT STRUCTURE --- */
.page-wrapper {
  max-width: 1400px;
  margin: -30px auto 40px;
  display: flex;
  gap: 25px;
  padding: 0 20px;
}
.sidebar {
  width: 260px;
  background: var(--sidebar-bg);
  border-radius: 12px;
  padding: 25px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  height: fit-content;
  position: sticky;
  top: 20px;
}
.content-main {
  flex: 1;
}
.sidebar-divider {
  border: 0;
  border-top: 1px solid var(--border-color);
  margin: 20px 0;
}
/* --- 4. GRID & TEMPLATE CARDS --- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}
/* 1. The TEMPLATE CARD: THE HOUSE: The card container */
.template-card {
  background: white;
  border-radius: 12px;
  overflow: hidden; /* This keeps the image from 'bleeding' over the rounded corners */
  box-shadow: var(--shadow);
  transition: 0.3s;
  border: 1px solid var(--border-color);
  padding: 15px;
  display: flex;
  flex-direction: column;
}
/* 2. THE FURNITURE: The image inside the card */
.template-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 1; /* Forces the 3:1 bumper sticker shape */
  object-fit: contain; /* Keeps the whole sticker visible without cropping */
  background: #eee; /* Fills the empty space if the sticker is a different ratio */
  display: block;
  border-radius: 6px; /* Optional: matches your 'pixel' aesthetic */
}
.template-card:hover {
  transform: translateY(-5px);
}
.template-card img {
  width: 100%;
  border-radius: 6px;
  display: block;
}
/* Container to hold the image and the text layer */
.image-container {
    position: relative;
    width: 100%;
    padding-top: 12px;
}
.category-tag {
  font-size: 0.8rem;
  color: #666;
  margin-top: 10px;
  display: block;
}
/* --- 5. BUTTONS (SHARED) --- */
.btn {
  display: inline-block;
  padding: 15px 15px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: 0.3s;
  border: none;
  cursor: pointer;
}
.btn-dl {
  background: #2c3e50;
  color: white;
}
.btn-edit {
  background: #bf4015;
  color: white;
}
.btn-save {
  background: #9b59b6;
  color: white;
}
.btn-start {
  background: #0056d6;
  color: white;
}
.btn-coll {
  background: #1b8946;
  color: white;
  transform: rotate(-2deg);
}
.btn-delete {
  background: #ac2843;
  color: #fff;
}
.bake-btn {
  width: 100%;
  background-color: #2c3e50;
  color: white;
  padding: 18px;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: block;
}
.bake-btn:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
/* --- 6. EDITOR SPECIFIC STYLES --- */
.editor-body {
  display: flex;
  height: 100vh;
  overflow: hidden;
  background: #e0e4e8;
}
.editor-sidebar {
  width: 350px;
  background: white;
  border-right: 1px solid #ddd;
  padding: 30px;
  overflow-y: auto;
  z-index: 10;
}
.main-canvas {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e0e4e8;
  padding: 40px;
  overflow: hidden; /* This acts as a "safety fence" for the rounded background */
}
/* Form Controls */
.control-group {
  margin-bottom: 18px;
}
.control-row {
  display: flex;
  gap: 15px;
}
.editor-input, .editor-select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}
.color-swatch {
  width: 100%;
  height: 45px;
  padding: 2px;
  border: 1px solid #ccc;
  cursor: pointer;
}
.radio-group {
  display: flex;
  justify-content: space-between;
  background: #f8f9fa;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #eee;
}
.radio-label {
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}
/* --- 7. BAKE SUCCESS PAGE --- */
.bake-success-body {
  background: #f4f7f6;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}
.success-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  max-width: 980px; /* 900px image + 80px padding */
  width: 95%; /* Safety for smaller desktop screens */
  margin: 40px auto;
  text-align: center;
  overflow: hidden; /* Clips any accidental 'overhang' */
}
.action-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
  width: 100%;
}
.baked-image {
  display: block;
  max-width: 100%; /* THIS IS THE KEY: It will shrink to fit the card if needed */
  height: auto; /* Maintains the 3:1 ratio */
  border-radius: 8px;
  margin: 20px auto;
  border: 1px solid #ddd;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.sticker-thumb {
  width: 220px;
  height: auto; /* Maintains 3:1 ratio */
  border-radius: 4px;
  border: 1px solid #ddd;
  display: block;
  cursor: zoom-in;
  transition: transform 0.2s;
  /* This makes the down-scaled 1800px image look crisp as a thumbnail */
  image-rendering: -webkit-optimize-contrast;
  object-fit: contain;
}
/* The Container */
.sticker-grid {
  display: grid;
  /* This tells the browser: "Fill the row with as many 320px cards as fit" */
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
}
/* The Individual Card */
.card-body {
  padding: 20px; /* This is the "Magic Nudge" for that breathing room */
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px; /* Adds a small uniform space between Title, Date, and Text */
}
.card-title {
  margin: 0;
  font-size: 1.1rem;
  color: #2c3e50;
  font-weight: bold;
}
.card-text {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
  /* Optional: adds a slight indent to the quoted text */
  padding-left: 5px;
  border-left: 2px solid #eee;
}
.card-image {
  width: 100%;
  aspect-ratio: 3 / 1;
  object-fit: cover;
  border-bottom: 1px solid #eee;
  cursor: zoom-in;
}
.card-content {
  padding: 15px;
  flex-grow: 1;
}
.card-actions {
  padding: 12px 15px;
  background: #f9f9f9;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
}
.card-footer {
  padding: 15px 20px; /* 15px top/bottom, 20px left/right to match the body */
  background: #f8f9fa;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
}
.sticker-card {
  background: #fff;
  border: 1px solid #ddd;
  padding-top: 12px; /* This is the "Magic Nudge" to clear the corners */
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
/* Ensure the image inside also has a slight radius so it doesn't look sharp */
.sticker-card img, .template-card img {
  width: 92%; /* Slightly narrower than 100% to create a side-border */
  margin: 0 auto; /* Centers the sticker horizontally */
  aspect-ratio: 3 / 1;
  object-fit: contain;
  background: #fdfdfd; /* Very subtle off-white for the sticker 'well' */
  border-radius: 6px; /* Softens the image corners to match the card */
  display: block;
}
.sticker-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}
.sticker-placeholder {
    position: absolute;
    top: 55%; 
    left: 50%;
    transform: translate(-50%, -50%);
    
    /* THE FIX: Match the image width exactly */
    width: 88%; /* Slightly less than the image's 92% to ensure a safe 'inner' margin */
    max-width: 100%; 
    
    text-align: center;
    font-family: "Impact", "Arial Black", sans-serif;
    font-size: 1.8rem; /* Nudged down slightly from 2rem for safety */
    color: #000;
    opacity: 0.15;
    line-height: 1;
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    user-select: none;
    white-space: nowrap; /* Forces it to stay on one line if it's a 'Bumper' shape */
    overflow: hidden;    /* Safety: clips text if it ever tries to escape */
}
.user-welcome {
  margin-right: 15px;
  color: #bdc3c7;
  font-size: 0.9rem;
  font-weight: 500;
}
/* --- HEADER NAVIGATION --- */
.main-nav {
  background: #2c3e50;
  padding: 15px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* --- LOGO STYLING --- */
.logo-link {
  color: #f1c40f;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  transition: opacity 0.2s;
}
.logo-link:hover {
  opacity: 0.8;
}
/* --- NAV ITEM LINKS --- */

.nav-links a {
  color: white;
  margin-right: 15px;
  text-decoration: none;
}
.nav-links a:hover {
  text-decoration: underline;
}
/* --- Logout Link --- */
.nav-logout {
  color: #e74c3c !important; /* Forces the red even inside .nav-links */
  font-weight: bold;
}
.nav-logout:hover {
  color: #c0392b !important;
  text-decoration: none;
}
/* --- Sign Up Button --- */
.btn-signup {
  background: #f1c40f;
  color: #2c3e50 !important;
  padding: 6px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s, transform 0.1s;
}
.btn-signup:hover {
  background: #f39c12;
  transform: translateY(-1px);
  text-decoration: none !important;
}
/* Add a hover effect or a different color for the name itself */
.user-welcome strong {
  color: #f1c40f;
}
/* --- TOP UTILITY STRIP --- */
.top-utility-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    padding: 15px 25px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
    width: 100%;
}

.brand-link a {
    font-family: "Impact", sans-serif;
    font-size: 1.5rem;
    color: #222; /* Matches your --primary */
    text-decoration: none;
    letter-spacing: 1px;
}

.user-info {
    font-size: 0.9rem;
    display: flex;
    gap: 20px;
    align-items: center;
}

.utility-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.utility-link.logout {
    color: #e74c3c;
}
/* --- LIGHTBOX OVERLAY --- */
#lightbox {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 9999; /* Sit on top of everything */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9); /* Dark background */
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
#lightbox img {
  max-width: 90%;
  max-height: 80%;
  border: 5px solid white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
}
/* --- TEXT CAPTION --- */
#lightbox-caption {
  position: absolute;
  bottom: 50px;
  color: white;
  font-size: 1.2rem;
  text-align: center;
  width: 100%;
}
/* --- 9. AUTHENTICATION (Login / Signup) --- */
.auth-body {
  background-color: var(--bg-light);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}
.auth-container {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 400px;
  text-align: center;
  border: 1px solid var(--border-color);
}
.auth-container h2 {
  color: var(--primary);
  margin-bottom: 10px;
  letter-spacing: -1px;
}
.auth-container .subtitle {
  color: #7f8c8d;
  margin-bottom: 30px;
  font-size: 0.9rem;
}
.auth-form-group {
  text-align: left;
  margin-bottom: 20px;
}
.auth-form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #555;
}
.auth-input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 1rem;
}
.auth-error-box {
  background: #fdf2f2;
  color: #e74c3c;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  border: 1px solid #facccc;
}
.switch-link {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #7f8c8d;
}
.switch-link a {
  color: var(--primary);
  font-weight: bold;
  text-decoration: none;
}
/* --- 11. GALLERY & INTERACTIVE ELEMENTS --- */
.gallery-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 25px;
  box-shadow: var(--shadow);
}
/* Like Button Styling */
.btn-like {
  background: #f8f9fa;
  border: 1px solid #eee;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s;
  font-size: 0.9rem;
  color: #666;
}
.btn-like:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: #fffafa;
}
.btn-like.active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.btn-like.active .heart-icon {
  animation: pulse 0.3s ease-in-out;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
/* Lightbox Enhancements */
#lightbox-caption {
  background: rgba(0, 0, 0, 0.7);
  padding: 10px 20px;
  border-radius: 30px;
  margin-top: 20px;
}
/* --- MOBILE OVERRIDES (PIXEL / PHONE) --- */
@media (max-width: 1024px) {
  /* 8.1 GLOBAL & BODY BUMPS */
  html, body {
    height: auto !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
  }
  body {
    font-size: 20px !important;
    line-height: 1.6;
  }
  header {
    padding: 40px 15px;
  }
  header h1 {
    font-size: 2.2rem;
  }
  /* 8.2 NAVIGATION */
  .main-nav {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    padding: 20px 10px;
  }
  .nav-links {
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }
  .nav-links a {
    font-size: 1.1rem !important;
    padding: 10px 5px;
    display: inline-block;
  }
  /* 8.3 LAYOUT STRUCTURE */
  .page-wrapper {
    display: flex !important;
    flex-direction: column !important;
    padding: 0 10px;
  }
  .sidebar {
    width: 100% !important;
    position: static !important;
    margin-bottom: 20px;
  }
  .sidebar-nav {
    display: flex;
    justify-content: space-around;
    background: #f8f9fa;
  }
  .sidebar-nav li a {
    padding: 15px 5px;
    font-size: 1.1rem; /* Increased from 0.9rem */
    background: #f1c40f;
    color: #2c3e50 !important;
    display: flex; /* Changed to flex for centering */
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 6px;
    font-weight: bold;
  }
  .sidebar-nav li a.active {
    background: var(--primary) !important; /* The dark #222 */
    color: #ffffff !important; /* Force white text */
  }
  /* 8.4 STICKER GRID & GALLERY */
  .sticker-grid, .grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .sticker-card {
    margin-bottom: 10px;
  }
  /* Make Like and Remix buttons massive for thumbs */
  .card-footer {
    flex-direction: row !important; /* Keep buttons side-by-side on mobile */
    gap: 10px;
    padding: 15px;
  }
  .btn-like, .btn-edit {
    flex: 1; /* Make them equal width */
    height: 55px !important;
    font-size: 1.1rem !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  /* Adjust the sidebar-nav for the Gallery Filters on Mobile */
  .sidebar-nav {
    flex-wrap: wrap;
    gap: 5px;
    padding: 10px;
  }
  .sidebar-nav li {
    flex: 1 1 45%; /* Shows filters 2-across on mobile */
  }
  /* 8.5 THE EDITOR (The "Layer Cake" Fix) */
  .editor-body {
    display: flex !important;
    flex-direction: column-reverse !important;
    height: auto !important;
  }
  .editor-sticker-container {
    width: 95% !important;
    aspect-ratio: 4 / 1.2 !important; /* Slightly taller for mobile breathing room */
    overflow: visible !important; /* Prevents the bottom-edge clipping */
  }
  #stickerColorLayer {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
  }
  #stickerTemplate {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    z-index: 2 !important;
    display: block !important;
  }
.sticker-placeholder {
    position: absolute;
    top: 55%; /* Centered vertically on the sticker area */
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    text-align: center;
    font-size: 1.2rem; /* Scaled down so it doesn't wrap awkwardly */
    letter-spacing: 1px;
    font-family: "Impact", sans-serif; /* Bold, blocky 'Bumper Sticker' font */
    color: #000;
    font-weight:300;
    opacity: 0.4; /* Makes it look like a watermark/preview */
    line-height: 1.1;
    pointer-events: none; /* Allows clicks to pass through to the image/card */
    text-transform: uppercase;
}
    /* Container to allow the text to sit ON TOP of the image */
.image-container {
    position: relative;
    width: 100%;
    padding-top: 12px; /* Matches our 'nudge' from earlier */
}
  #previewText {
    /* Changed from 6vw to 9vw to make it much larger on the Pixel */
    font-size: 13vw !important;
    width: 98% !important; /* Allow it to use more of the sticker's width */
    line-height: 0.9 !important; /* Tightens the vertical space if it wraps */
    font-weight: bold; /* Optional: makes it pop more if the font allows */
    /* Keep these for the perfect center */
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
  }
  /* 8.6 EDITOR CONTROLS */
  .editor-controls, .editor-sidebar {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 25px 20px !important;
    background: #fff;
  }
  .editor-controls input, .editor-controls select, .editor-controls button {
    height: 55px !important;
    font-size: 1.2rem !important;
    width: 100% !important;
  }
  .auth-container {
    max-width: 95% !important; /* Makes the card wider on small screens */
    padding: 25px 15px !important;
  }
  .auth-input {
    height: 60px !important; /* Big "fat-finger" friendly inputs for Pixel/iPhone */
    font-size: 1.2rem !important;
  }
.top-utility-bar {
        padding: 10px 15px;
    }
    .welcome-text { display: none; } /* Only hide the word "Hello" to save space */
.quote-header {
    background: #2c3e50; /* A nice deep slate */
    color: #ffffff !important; /* Forces white text */
    padding: 30px 20px;
    text-align: center;
    border-bottom: 3px solid #f1c40f; /* Adds a "gold" rebel stripe */
    margin-top: 0; /* Should sit flush with the top strip */
    position: relative;
    z-index: 5;
}

.quote-header p {
    font-size: 1.1rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    color: #ecf0f1 !important; /* Off-white for better reading */
}

.quote-header strong {
    color: #f1c40f; /* Highlight the author in gold */
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}
.quote-header {
    margin-top: 0; /* Should sit flush with the top strip */
    position: relative;
    z-index: 5;
}    
    /* Mobile Optimization */
@media (max-width: 768px) {
    .header-content-wrapper {
        flex-direction: column; /* Stack elements vertically */
        text-align: center;
        padding: 10px;
    }

    .brand-block {
        flex-direction: column; /* Logo above Title */
        gap: 10px;
    }

    .header-logo-small {
        width: 100px; /* Make it a bit bigger for mobile touch */
    }

    .title-group h1 {
        font-size: 1.8rem; /* Slightly smaller text for small screens */
    }

    /* HIDE the quote on mobile to save precious screen space */
    .collection-quote {
        display: none; 
    }
    
    .tagline {
        font-size: 0.8rem;
    }
}
/* Mobile Tweak for Auth */
@media (max-width: 600px) {
  .auth-card {
    padding: 25px 20px;
  }
}