/** Shopify CDN: Minification failed

Line 104:0 Unexpected "{"
Line 104:1 Expected identifier but found "%"
Line 105:15 Unexpected "{"
Line 105:18 Expected ":"
Line 108:15 Unexpected "{"
Line 108:18 Expected ":"
Line 111:15 Unexpected "{"
Line 111:18 Expected ":"
Line 114:15 Unexpected "{"
Line 114:18 Expected ":"
... and 2 more hidden warnings

**/
/* component-content-tabs.css - Clean Minimalist Version */
.content-tabs-section {
  padding: var(--padding-top) var(--padding-left-right) var(--padding-bottom);
  --button-radius: var(--buttons-radius);
  --button-border-width: var(--buttons-border-width);
  --button-font-family: var(--font-buttons-family);
  --button-font-style: var(--font-buttons-style);
  --button-font-weight: var(--font-buttons-weight);
  --button-letter-spacing: var(--buttons-letter-spacing);
  --button-line-height: var(--buttons-line-height);
}

/* Tab Navigation - Clean Underline Style */
.tabs-navigation {
  display: flex;
  gap: 6px;
  margin-bottom: 24px; /* Reduced from 40px */
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.tab-button {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 8px 0; /* Reduced padding */
  margin: 0 14px;
  cursor: pointer;
  font-family: var(--button-font-family);
  font-style: var(--button-font-style);
  font-weight: var(--button-font-weight);
  letter-spacing: var(--button-letter-spacing);
  line-height: var(--button-line-height);
  color: rgba(var(--color-foreground), 0.6);
  transition: all 0.25s ease;
  position: relative;
  font-size: calc(var(--font-heading-scale) * 1.5rem);
}

.tab-button::after {
  content: '';
  position: absolute;
  bottom: -4px; /* Adjusted position */
  left: 0;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.25s ease;
  z-index: 1;
}

.tab-button:hover {
  color: rgba(var(--color-foreground), 0.85);
}

.tab-button.active {
  color: rgb(var(--color-foreground));
  font-weight: calc(var(--button-font-weight) + 100);
}

.tab-button.active::after {
  width: 100%;
}

/* Tab Content - Clean Layout */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.35s ease;
}

.tab-content-inner {
  display: flex;
  gap: 50px;
  align-items: center;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Color Schemes */
{% for i in (1..5) %}
.color-scheme-{{ i }} .tab-button {
  color: rgba(var(--color-scheme-{{ i }}-text), 0.6);
}
.color-scheme-{{ i }} .tab-button:hover {
  color: rgba(var(--color-scheme-{{ i }}-text), 0.85);
}
.color-scheme-{{ i }} .tab-button.active {
  color: rgb(var(--color-scheme-{{ i }}-text));
}
.color-scheme-{{ i }} .tab-button::after {
  background: rgb(var(--color-scheme-{{ i }}-text));
}
{% endfor %}

/* Responsive Design */
@media (max-width: 750px) {
  .tabs-navigation {
    gap: 4px;
    margin-bottom: 20px; /* Reduced spacing */
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  
  .tab-button {
    margin: 0 10px;
    padding: 6px 0;
    font-size: calc(var(--font-heading-scale) * 1.3rem);
  }
  
  .tab-content-inner {
    flex-direction: column;
    gap: 24px;
  }
}

/* Aspect Ratios */
.aspect-1-1 { aspect-ratio: 1/1; }
.aspect-4-3 { aspect-ratio: 4/3; }
.aspect-16-9 { aspect-ratio: 16/9; }