/** Shopify CDN: Minification failed

Line 121:8 Expected identifier but found whitespace
Line 121:10 Unexpected "{"
Line 121:19 Expected ":"
Line 149:8 Expected identifier but found whitespace
Line 149:10 Unexpected "{"
Line 149:19 Expected ":"
Line 201:19 Expected identifier but found whitespace
Line 201:21 Unexpected "{"
Line 201:30 Expected ":"
Line 202:8 Expected identifier but found whitespace
... and 2 more hidden warnings

**/


/* CSS from section stylesheet tags */
/* Container with a clean, white background and centered layout */
.article-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff;
  color: #333333;
  line-height: 1.6;
}

/* Category Nav (optional link to blog and first tag) */
.category-nav {
  font-size: 0.9em;
  margin-bottom: 10px;
  text-align: center;
}
.category-nav a {
  color: #007acc;
  text-decoration: none;
  margin: 0 3px;
}
.category-nav span {
  margin: 0 5px;
  color: #999999;
}

/* Article Header */
.article-header {
  text-align: center;
  margin-bottom: 30px;
}
.article-header .article-title {
  font-size: 2.2em;
  margin-bottom: 8px;
  color: #111111;
}
.article-header .publish-date {
  font-size: 0.9em;
  color: #777777;
  margin-top: 5px;
}

/* Author Meta */
.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}
.author-avatar {
  border-radius: 50%;
  width: 48px;
  height: 48px;
  object-fit: cover;
}
.author-info {
  margin-left: 10px;
  font-size: 0.85em;
  color: #555555;
}

/* Featured Image */
.featured-image {
  margin-bottom: 20px;
}
.featured-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* Article Content */
.article-content {
  margin-top: 20px;
}
.article-content p,
.article-content li {
  color: #444444;
  line-height: 1.7;
}
.article-content h2,
.article-content h3 {
  color: #222222;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

@media (max-width: 768px) {
  .article-container {
    padding: 20px;
  }
  .article-header .article-title {
    font-size: 1.8em;
  }
  .article-header .publish-date {
    font-size: 0.8em;
  }
}
.changelog-section {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: {{ section.settings.section_text_color }};
  padding: 40px 20px;
}

.changelog-section .container {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 8px;
  padding: 30px;
}

/* Tabs row */
.theme-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  gap: 20px;
}

/* Each tab - default is transparent */
.theme-tab {
  background-color: transparent; /* Base inactive background */
  padding: 10px 40px;
  cursor: pointer;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
  color: {{ section.settings.inactive_tab_text_color }}; /* Base inactive text color from global setting */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.10); 
}

/* Hover for non-active tabs - JS will handle BG and Text color */
.theme-tab:hover:not(.active) {
  /* background-color and color are now set by JavaScript using data attributes */
  transform: scale(1) translateY(-1px); 
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.20); 
}

/* Active tab specific styles */
.theme-tab.active {
  /* background-color is set via inline style by JS from block.settings.selection_color */
  /* color is now set via inline style by JS from block.settings.active_tab_text_color */ /* MODIFIED: Comment only, color property was removed */
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.20);
}

/* Content panels */
.theme-content {
  display: none;
}

.theme-content.active {
  display: block;
}

/* Version dropdowns */
.version-dropdown {
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 6px;
}

.version-header {
  /* background-color and color are set via inline style from block settings */
  padding: 14px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease;
  border-radius: 6px;
}

.version-header:hover {
  background-color: {{ section.settings.version_header_hover_background_color }};
  color: {{ section.settings.version_header_hover_text_color }};
}

.version-number {
  font-size: 16px;
  margin-right: 10px;
}

/* Version Date: slightly smaller and normal weight */
.version-date {
  white-space: nowrap;
  opacity: 0.8;
  margin-right: 10px;
  font-size: 14px;
  font-weight: normal;
}

.version-arrow {
  transition: transform 0.3s ease;
}

/* Smooth expand/collapse for version content */
.version-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  border-radius: 0 0 6px 6px;
  padding: 0 20px;
}

/* -- MOBILE OPTIMIZATION -- */
@media (max-width: 768px) {
  .theme-tabs {
    flex-direction: column;
    align-items: stretch;
  }
  .theme-tab { 
    width: 100%;
    justify-content: center;
  }
  .version-dropdown {
    width: 100%;
  }
}
.comparison-section {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #fff;
  padding: 40px 20px;
}

.comparison-container {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 8px;
  padding: 30px;
}

/* Header Row */
.comparison-header {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 40px;
  gap: 10px;
  margin-bottom: 20px;
  align-items: center;
}

.header-cell {
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-category {
  text-align: left;
  font-weight: bold;
}

.header-theme {
  background-color: #211F29;
}

/* Arrow header cell remains empty */
.arrow-header {
  background-color: transparent;
}

/* Comparison Rows */
.comparison-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.comparison-row {
  border-radius: 8px;
  overflow: hidden;
  background-color: #211F29;
}

/* Row Header (5 columns) */
.row-header {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 40px;
  gap: 10px;
  align-items: center;
  cursor: pointer;
  padding: 14px 20px;
  position: relative;
}

/* Row Header Cells */
.row-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  border-radius: 6px;
  text-align: center;
}

/* Feature Category cell left-aligned */
.row-category {
  justify-content: flex-start;
  padding-left: 10px;
}

/* Arrow Cell */
.arrow-cell {
  display: flex;
  align-items: center;
  justify-content: center;
}

.row-arrow {
  transition: transform 0.3s ease;
}

/* Row Content (Dropdown) */
.row-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background-color: #252525;
  padding: 0 20px;
  border-radius: 0 0 8px 8px;
}

.comparison-row.open .row-arrow {
  transform: rotate(180deg);
}

.comparison-row.open .row-content {
  padding-top: 20px;
  padding-bottom: 20px;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .comparison-header {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .header-cell {
    justify-content: center;
  }
  .arrow-header {
    display: none;
  }
  .row-header {
    grid-template-columns: 1fr;
  }
  .row-cell {
    justify-content: center !important;
  }
  .arrow-cell {
    display: none;
  }
}
.page-progress {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 4;
  /* pointer-events: none; */
}
.page-progress--top {
  top: 0;
  transition: top .15s ease-out;
}
.page-progress--bottom {
  --sticky-atc-offset: 0px;
  bottom: var(--sticky-atc-offset);
  transition: bottom .15s ease-in-out;
}

.section-header.scrolled-past-header.shopify-section-header-sticky:not(.shopify-section-header-hidden) ~ #MainContent .page-progress--top,
.section-header.scrolled-past-header.shopify-section-header-sticky:not(.shopify-section-header-hidden) ~ .section-page-progress .page-progress--top {
  top: var(--header-height);
}

.page-progress__track {
  width: 100%;
  height: var(--bar-height);
  overflow: hidden;
}

.page-progress__fill {
  width: 0%;
  height: 100%;
  border-radius: 0 var(--corner-radius) var(--corner-radius) 0;
  transition: width 0.1s linear;
}