/** Shopify CDN: Minification failed

Line 121:0 Expected "}" to go with "{"

**/
/* Main Product Page Styles - Clean Compact Layout */

/* Page Container */
.product-page {
  background: #f8f8f8;
  padding: 1rem 0;
}

.page-width {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .page-width {
    padding: 0 24px;
  }
}

/* Base Card Styling */
.bento-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
}

/* Thumb Category Grid for organizing thumbnail images */
.thumb-category {
  width: 100%;
}

.thumb-category-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

@media (max-width: 768px) {
  .thumb-category-grid {
    flex-direction: row;
  }
}

/* Placeholder SVG styling */
.placeholder-svg {
  width: 100%;
  height: 300px;
  background: #f5f5f5;
}

/* Configurator Button (if used elsewhere) */
.configurator-btn {
  width: 100%;
  background: #f9f9f9;
  color: #333;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-weight: 600;
  padding: 12px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.configurator-btn:hover {
  background: #f0f0f0;
  border-color: #ccc;
}

/* Placeholder text */
.placeholder-text-center {
  margin: auto;
  color: #888;
  font-size: 14px;
  text-align: center;
  max-width: 280px;
  padding: 40px;
}

/* Quantity button styles (legacy support) */
.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.variant-option {
  padding: 8px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 13px;
}

.variant-option:hover {
  border-color: #999;
}

.variant-option.selected {
  background: #273535;
  color: #fff;
  border-color: #273535;
}

/* RTE (Rich Text Editor) content */
.rte p {
  margin: 0 0 8px 0;
}

.rte p:last-child {
  margin-bottom: 0;
