@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&family=IM+Fell+English:ital@0;1&family=Syne:wght@700;800&family=Rubik:wght@700;900&display=swap');

/* Swiss Editorial Minimalism Design System */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-radius: 0 !important; /* Strict requirement: no rounded corners */
  box-shadow: none !important;   /* Strict requirement: no shadows */
  text-shadow: none !important;
}

body {
  background-color: #FFFFFF;
  color: #111111;
  font-family: 'IM Fell English', Georgia, serif;
  font-size: 18px;
  line-height: 1.6;
  direction: rtl;
  text-align: right;
}

/* Heritage Ticker - Smooth Infinite Marquee */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background-color: var(--color-text, #111111);
  padding: 8px 0;
  border-bottom: 1px solid var(--color-text, #111111);
  position: relative;
  z-index: 10;
}

.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 0;
  width: 100%;
}

.marquee__inner {
  display: flex;
  flex-shrink: 0;
  min-width: 100%;
  align-items: center;
  justify-content: space-around;
  animation: marquee-infinite 25s linear infinite;
  white-space: nowrap;
}

.marquee__inner span {
  color: #FFFFFF;
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  padding: 0 20px;
}

@keyframes marquee-infinite {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

/* Navigation & Layout */
.app-wrapper {
  margin-top: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.brand-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}

.site-tagline {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #777777;
  margin-top: 4px;
}

header.site-header {
  padding: 48px 24px 24px 24px;
  border-bottom: 1px solid #E0E0E0;
  text-align: center;
  background-color: #FFFFFF;
}

.site-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.8rem;
  text-transform: uppercase;
  margin-bottom: 24px;
  letter-spacing: 2px;
  line-height: 1;
}

.site-nav {
  font-family: 'Courier Prime', monospace;
  display: flex;
  justify-content: center;
  gap: 32px;
  list-style: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: bold;
}

.site-nav a {
  color: #111111;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  transition: border-color 0.15s ease;
}

.site-nav a:hover,
.site-nav li.active a {
  border-bottom: 1px solid #111111;
}

/* Main Container */
main.main-content {
  flex-grow: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 48px 24px;
}

.view-section {
  display: none;
  animation: fadeIn 0.25s ease-out;
}

.view-section.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.section-title {
  font-size: 2.2rem;
  font-style: italic;
  margin-bottom: 32px;
  font-weight: normal;
  border-bottom: 1px solid #E0E0E0;
  padding-bottom: 12px;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: 'IM Fell English', Georgia, serif;
  font-weight: normal;
  color: #111111;
}

p {
  margin-bottom: 24px;
  color: #111111;
}

.mono-text {
  font-family: 'Courier Prime', monospace;
}

.muted-text {
  color: #555555;
  font-size: 0.95rem;
}

.faint-text {
  color: #999999;
  font-size: 0.85rem;
}

/* Buttons */
.btn-text {
  background: none;
  border: none;
  color: #111111;
  font-family: 'Courier Prime', monospace;
  font-size: 0.9rem;
  text-transform: uppercase;
  cursor: pointer;
  padding: 4px 8px;
  text-decoration: underline;
  transition: color 0.15s ease;
}

.btn-text:hover {
  color: #555555;
}

.btn-text.active {
  font-weight: bold;
  text-decoration: none;
  background-color: #111111;
  color: #FFFFFF;
}

.btn-solid {
  background-color: #111111;
  color: #FFFFFF;
  border: 1px solid #111111;
  font-family: 'Courier Prime', monospace;
  font-size: 0.95rem;
  padding: 12px 24px;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.btn-solid:hover {
  background-color: #FFFFFF;
  color: #111111;
}

/* Forms */
.form-container {
  max-width: 650px;
  margin: 0 auto;
  border: 1px solid #E0E0E0;
  padding: 32px;
  background-color: #F9F9F9;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: 'Courier Prime', monospace;
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #E0E0E0;
  background-color: #FFFFFF;
  font-family: 'Courier Prime', monospace;
  font-size: 0.95rem;
  color: #111111;
}

.form-control:focus {
  outline: 1px solid #111111;
  border-color: #111111;
}

textarea.form-control {
  min-height: 120px;
  font-family: 'IM Fell English', Georgia, serif;
  font-size: 1.1rem;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.checkbox-group input {
  width: 18px;
  height: 18px;
  accent-color: #111111;
  cursor: pointer;
}

.checkbox-group label {
  font-family: 'Courier Prime', monospace;
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 0;
  cursor: pointer;
}

/* Asymmetric Masonry Gallery */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.gallery-grid {
  column-count: 3;
  column-gap: 24px;
  width: 100%;
}

@media (max-width: 992px) {
  .gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    column-count: 1;
  }
}

.gallery-item {
  break-inside: avoid;
  display: inline-block;
  width: 100%;
  margin-bottom: 24px;
  border: 1px solid #E0E0E0;
  padding: 16px;
  background-color: #FFFFFF;
}

.gallery-image-container {
  width: 100%;
  overflow: hidden;
  border: 1px solid #E0E0E0;
  margin-bottom: 12px;
  background-color: #F9F9F9;
}

.gallery-image-container img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.gallery-item:hover .gallery-image-container img {
  filter: grayscale(0%);
}

.gallery-caption {
  font-family: 'Courier Prime', monospace;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gallery-item-title {
  font-family: 'IM Fell English', Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  color: #111111;
}

.gallery-item-meta {
  font-size: 0.8rem;
  color: #555555;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #E0E0E0;
  padding-top: 8px;
  margin-top: 4px;
}

.gallery-item-save {
  margin-top: 8px;
  text-align: left;
}

/* Reference items list in Booking */
.wishlist-ref {
  border: 1px dashed #E0E0E0;
  padding: 16px;
  background-color: #FFFFFF;
  margin-bottom: 24px;
}

.wishlist-ref-title {
  font-family: 'Courier Prime', monospace;
  font-size: 0.85rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.wishlist-ref-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  padding: 6px 0;
  border-bottom: 1px solid #F0F0F0;
}

.wishlist-ref-item:last-child {
  border-bottom: none;
}

/* Tables & Admin */
.admin-login-box {
  max-width: 400px;
  margin: 100px auto;
  border: 1px solid #111111;
  padding: 32px;
  background-color: #FFFFFF;
}

.admin-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  border: 1px solid #E0E0E0;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Courier Prime', monospace;
  font-size: 0.85rem;
  text-align: right;
}

.admin-table th {
  background-color: #111111;
  color: #FFFFFF;
  padding: 12px 16px;
  font-weight: bold;
  text-transform: uppercase;
  white-space: nowrap;
}

.admin-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #E0E0E0;
  background-color: #FFFFFF;
  vertical-align: middle;
}

.admin-table tr:hover td {
  background-color: #F9F9F9;
}

.status-select {
  padding: 4px;
  font-family: 'Courier Prime', monospace;
  font-size: 0.8rem;
  border: 1px solid #E0E0E0;
  background: #FFFFFF;
}

/* Toasts */
.toast-box {
  position: fixed;
  bottom: 24px;
  right: 24px;
  border: 1px solid #111111;
  background-color: #FFFFFF;
  color: #111111;
  padding: 16px 24px;
  font-family: 'Courier Prime', monospace;
  font-size: 0.9rem;
  z-index: 2000;
  animation: slideIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-box.error {
  background-color: #111111;
  color: #FFFFFF;
  border-color: #111111;
}

@keyframes slideIn {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Footer styling */
.site-footer {
  padding: 48px 24px;
  border-top: 1px solid #E0E0E0;
  text-align: center;
  font-family: 'Courier Prime', monospace;
  font-size: 0.8rem;
  color: #999999;
}

/* Tel Aviv Gallery Aesthetic Hero Showcase */
.hero-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  margin-bottom: 56px;
  border-bottom: 1px solid #E0E0E0;
  padding-bottom: 56px;
}

@media (max-width: 768px) {
  .hero-gallery {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
  }
}

.hero-gallery-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #FFFFFF;
}

.hero-gallery-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 2/3;
  overflow: hidden;
  border: 1px solid #E0E0E0;
  background-color: #F9F9F9;
}

.hero-gallery-image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, filter 0.4s ease;
  filter: grayscale(100%);
}

/* Grayscale toggle hover behavior and soft zoom */
.hero-gallery-image-container:hover img {
  transform: scale(1.03);
  filter: grayscale(0%);
}


/* Gallery text label overlays */
.hero-gallery-overlay {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #111111;
  color: #FFFFFF;
  padding: 6px 12px;
  font-family: 'Courier Prime', monospace;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 1px;
  z-index: 10;
  text-transform: uppercase;
}

.hero-gallery-caption {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Interactive toggles for Art vs Context */
.gallery-toggle-btn {
  display: flex;
  gap: 8px;
  font-family: 'Courier Prime', monospace;
  margin-top: 4px;
}

.gallery-toggle-btn .btn-text {
  font-size: 0.8rem;
  padding: 2px 6px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.gallery-toggle-btn .btn-text.active {
  background-color: #111111;
  color: #FFFFFF;
  font-weight: bold;
}

/* Bilingual Typography Isolation & Alignment */
.bilingual-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  unicode-bidi: isolate;
}

.bilingual-title [lang="en"] {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em; /* Heavy architectural uppercase */
  font-size: 1.15rem;
  direction: ltr;
  text-align: left;
  unicode-bidi: isolate;
}

.bilingual-title [lang="he"] {
  font-family: 'Rubik', sans-serif;
  font-weight: 900; /* Sharp geometric black-weight */
  font-size: 1.2rem;
  direction: rtl;
  text-align: right;
  unicode-bidi: isolate;
}

.bilingual-divider {
  font-family: 'Courier Prime', monospace;
  color: #CCCCCC;
  font-size: 0.9rem;
  margin: 0 2px;
  unicode-bidi: isolate;
}

/* Geometric black-weight Hebrew titles and architectural English */
.section-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  unicode-bidi: isolate;
  margin-bottom: 24px;
}

.section-title [lang="he"] {
  font-family: 'Rubik', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  direction: rtl;
  unicode-bidi: isolate;
}

.section-title [lang="en"] {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em; /* Heavy architectural uppercase */
  font-size: 2rem;
  direction: ltr;
  unicode-bidi: isolate;
}


/* Session Booking Form Styling */
.form-fieldset {
  border: 1px solid #E0E0E0;
  padding: 28px;
  margin-bottom: 40px;
  margin-top: 16px;
  background-color: #FFFFFF;
}

.form-legend {
  font-family: 'Courier Prime', monospace;
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0 12px;
  color: #111111;
}

.form-section-desc {
  font-family: 'IM Fell English', Georgia, serif;
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #555555;
  line-height: 1.5;
}

.form-helper-text {
  font-family: 'Courier Prime', monospace;
  font-size: 0.75rem;
  color: #777777;
  margin-top: 6px;
  display: block;
}

.simulated-upload-wrapper {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
}

.simulated-upload-wrapper .form-control {
  flex-grow: 1;
}

.btn-simulated {
  font-family: 'Courier Prime', monospace;
  font-size: 0.8rem;
  padding: 12px 18px;
  white-space: nowrap;
  border: 1px solid #111111;
  background-color: transparent;
  color: #111111;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-simulated:hover {
  background-color: #111111;
  color: #FFFFFF;
}

.dates-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .dates-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.form-control:hover {
  border-color: #666666;
}

/* Visual Upload Tags */
.upload-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  direction: rtl;
}

.upload-tag {
  background-color: #111111;
  color: #FFFFFF;
  font-family: 'Courier Prime', monospace;
  font-size: 0.8rem;
  padding: 4px 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #111111;
}

.upload-tag-remove {
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  color: #999999;
  transition: color 0.15s ease;
}

.upload-tag-remove:hover {
  color: #FF3333;
}

.conditions-section .checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #111111;
  border: 1px solid #111111;
  cursor: pointer;
  margin-top: 2px;
  flex-shrink: 0;
}

.checkbox-group label {
  font-family: 'Courier Prime', monospace;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #333333;
  cursor: pointer;
  user-select: none;
}

/* Ensure Hebrew Text inputs use a serif font for editorial look */
#book-name,
#book-subject,
#book-location,
#book-anything-else {
  font-family: 'IM Fell English', Georgia, serif;
  font-size: 1.15rem;
}

/* Real R2 Upload Progress Bar Styling */
.upload-progress-container {
  margin-top: 8px;
}

.upload-progress-item {
  font-family: 'Courier Prime', monospace;
  font-size: 0.8rem;
  color: #555555;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.upload-progress-bar-outer {
  width: 100%;
  height: 4px;
  background-color: #E0E0E0;
}

.upload-progress-bar-inner {
  height: 100%;
  background-color: #111111;
  width: 0%;
  transition: width 0.1s ease;
}

/* Gallery Toolbar & Layout Options */
.gallery-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  border-bottom: 1px solid #E0E0E0;
  padding-bottom: 16px;
}

.gallery-layout-toggle {
  display: flex;
  gap: 8px;
  font-family: 'Courier Prime', monospace;
  font-size: 0.9rem;
}

.gallery-layout-toggle .btn-text {
  font-size: 0.85rem;
  padding: 2px 6px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  background: none;
  transition: all 0.2s ease;
}

.gallery-layout-toggle .btn-text.active {
  background-color: #111111;
  color: #FFFFFF;
  font-weight: bold;
}

.gallery-grid.layout-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.gallery-grid.layout-grid .gallery-item {
  display: flex;
  flex-direction: column;
}

.gallery-grid.layout-grid .gallery-image-container {
  aspect-ratio: 2 / 3;
}

.gallery-grid.layout-grid .gallery-image-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.gallery-grid.layout-rows {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.gallery-grid.layout-rows .gallery-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  align-items: center;
}

@media (max-width: 600px) {
  .gallery-grid.layout-rows .gallery-item {
    grid-template-columns: 1fr;
  }
}

.gallery-grid.layout-rows .gallery-image-container {
  aspect-ratio: 3 / 2;
  margin-bottom: 0;
}

.gallery-grid.layout-rows .gallery-image-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* Gallery Strip */
.gallery-strip-wrapper {
  margin-top: 64px;
  border-top: 1px solid #111111;
  padding-top: 32px;
}

.strip-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.gallery-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 16px;
  scrollbar-width: thin;
}

.strip-item {
  flex: 0 0 150px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid #E0E0E0;
}

.strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.strip-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* About Section */
.about-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 24px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-subtitle {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
}

.about-meta {
  font-family: 'Courier Prime', monospace;
  font-size: 0.9rem;
  color: #777777;
}

.about-bio {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rtl-text {
  direction: rtl;
  text-align: right;
  line-height: 1.6;
}

.ltr-text {
  direction: ltr;
  text-align: left;
  line-height: 1.6;
  color: #555;
}

.about-contact-info {
  margin-top: 16px;
  font-family: 'Courier Prime', monospace;
  font-size: 0.95rem;
}

.about-contact-info p {
  margin: 6px 0;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.btn-wa-direct,
.btn-insta-direct {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
}

.btn-outline {
  background-color: transparent;
  color: #111111;
  border: 1px solid #111111;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: 'Courier Prime', monospace;
  font-size: 0.85rem;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-outline:hover {
  background-color: #111111;
  color: #FFFFFF;
}

.about-visual {
  border: 1px solid #E0E0E0;
  padding: 12px;
  background-color: #FFFFFF;
}

.about-img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}

.about-img:hover {
  filter: grayscale(0%);
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
  transition: opacity 0.3s ease;
}

.modal-content {
  background-color: #111;
  border: 1px solid #333;
  padding: 32px;
  max-width: 400px;
  width: 90%;
  color: #fff;
  border-radius: 0 !important;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.modal-header h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin: 0;
}

.btn-close-modal {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
}

/* Branded Section Labels & Thumbnails */
.branded-sections-container {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 16px 0;
  margin-top: 16px;
  margin-bottom: 32px;
  border-bottom: 1px solid #E0E0E0;
  scrollbar-width: none; /* Hide scrollbar for minimalism */
}

.branded-sections-container::-webkit-scrollbar {
  display: none;
}

.branded-section-card {
  flex: 0 0 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #E0E0E0;
  padding: 12px;
  background-color: #FFFFFF;
  transition: border-color 0.3s ease;
}

.branded-section-card:hover {
  border-color: #111111;
}

.branded-section-thumbnail {
  width: 70px;
  height: 105px; /* Vertical aspect ratio (2/3) */
  overflow: hidden;
  border: 1px solid #E0E0E0;
  margin-bottom: 12px;
  background-color: #FAF9F6;
}

.branded-section-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 0.4s ease, filter 0.3s ease;
}

.branded-section-card:hover .branded-section-thumbnail img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.branded-section-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #111111;
  line-height: 1.3;
  text-transform: uppercase;
}

/* Hidden Admin Trigger Style */
#hidden-admin-trigger {
  cursor: default;
  user-select: none;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

#hidden-admin-trigger:hover {
  opacity: 0.9;
}



