/** Shopify CDN: Minification failed

Line 19:10 Unexpected "{"
Line 19:19 Expected ":"
Line 20:14 Expected identifier but found whitespace
Line 20:16 Unexpected "{"
Line 20:25 Expected ":"
Line 20:76 Expected ":"
Line 21:17 Expected identifier but found whitespace
Line 21:19 Unexpected "{"
Line 21:28 Expected ":"
Line 21:82 Expected ":"
... and 10 more hidden warnings

**/


/* CSS from section stylesheet tags */
.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
  padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
}

@media screen and (min-width: 750px) {
  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }
}

.unit-toggle-label {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #222;
}

.unit-toggle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 2rem;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.unit-toggle label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.size-cards {
  display: none;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.size-card {
  border: 1px solid #ccc;
  padding: 1rem;
  border-radius: 8px;
  background-color: #fafafa;
}

.size-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.size-measurement {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 2px 0;
}

.size-measurement span:first-child {
  font-weight: 500;
}

.size-table {
  display: table;
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.size-table th,
.size-table td {
  border: 1px solid #333;
  padding: 0.75rem;
  text-align: center;
  font-size: 14px;
}

.size-table th {
  background-color: #f4f4f4;
}

.hidden {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .size-table {
    display: none;
  }

  .size-cards.cm,
  .size-cards.in {
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .size-cards.cm,
  .size-cards.in {
    display: none;
  }
}