/* Product detail page */
.pd-page {
  display: grid;
  gap: 18px;
}

.product-detail.pd-detail {
  grid-template-columns: minmax(320px, 50%) minmax(340px, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pd-detail .product-image-panel,
.pd-detail .product-info-panel,
.pd-card {
  border: 1px solid #e6e8ec;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(17, 24, 39, .06);
}

.pd-detail .product-image-panel {
  display: grid;
  gap: 12px;
  align-content: start;
  height: 100%;
  box-sizing: border-box;
  padding: 14px;
  overflow: visible;
}

.pd-detail .product-gallery {
  gap: 10px;
}

.pd-detail .gallery-main {
  position: relative;
  border: 1px solid #eef0f3;
  border-radius: 8px;
  background: #fbfbfc;
  overflow: visible;
}

.pd-detail .gallery-main.has-zoom {
  cursor: zoom-in;
}

.pd-detail .gallery-main img,
.pd-detail .gallery-main .image-placeholder {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.pd-detail .product-watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: min(52%, 260px);
  height: auto;
  aspect-ratio: auto;
  max-height: 52%;
  object-fit: contain;
  opacity: .2;
  pointer-events: none;
  transform: translate(-50%, -50%);
  user-select: none;
}

.pd-detail .product-category-image-badges {
  position: absolute;
  left: 12px;
  bottom: -14px;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  max-width: calc(100% - 24px);
  pointer-events: none;
  user-select: none;
}

.pd-detail .product-category-image-badge {
  display: block;
  width: auto;
  height: auto;
  aspect-ratio: auto;
  max-width: min(36vw, 180px);
  max-height: none;
  background: transparent;
  object-fit: contain;
  transform-origin: center bottom;
  animation: pd-badge-pulse 1.8s ease-in-out infinite;
}

.pd-detail .product-category-image-badge:nth-child(2n) {
  animation-delay: .22s;
}

@keyframes pd-badge-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pd-detail .product-category-image-badge {
    animation: none;
  }
}

.pd-detail .gallery-zoom-button {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(17, 24, 39, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  color: #111827;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(17, 24, 39, .12);
  cursor: zoom-in;
}

.pd-image-viewer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(17, 24, 39, .84);
}

.pd-image-viewer[hidden] {
  display: none;
}

.pd-image-viewer-inner {
  position: relative;
  display: grid;
  place-items: center;
  width: min(1100px, 100%);
  max-height: calc(100vh - 48px);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.pd-image-viewer-img {
  display: block;
  width: 100%;
  max-height: calc(100vh - 48px);
  object-fit: contain;
  background: #fff;
}

.pd-image-viewer .product-watermark {
  width: min(42%, 360px);
  max-height: 42%;
}

.pd-image-viewer-close {
  position: fixed;
  right: 18px;
  top: 18px;
  z-index: 1001;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  background: rgba(17, 24, 39, .78);
  color: #fff;
  font-size: 26px;
  line-height: 1;
}

.pd-detail .image-placeholder.large {
  min-height: 260px;
}

.pd-detail .gallery-thumbs {
  grid-template-columns: repeat(auto-fill, minmax(54px, 1fr));
  gap: 6px;
}

.pd-detail .gallery-thumb {
  border-width: 1px;
  border-radius: 8px;
  padding: 3px;
  background: #fff;
}

.pd-detail .gallery-thumb img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.pd-detail .product-info-panel {
  position: sticky;
  top: 18px;
  align-self: stretch;
  align-content: start;
  height: 100%;
  box-sizing: border-box;
  gap: 12px;
  padding: 16px;
}

.pd-breadcrumb {
  margin: 0;
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
}

.pd-detail .product-info-panel h1 {
  margin: 0;
  color: #111827;
  font-size: 23px;
  line-height: 1.22;
  letter-spacing: 0;
  font-weight: 850;
}

.pd-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pd-summary-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 5px 8px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #f9fafb;
}

.pd-summary-item span {
  color: #6b7280;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.pd-summary-item strong {
  color: #111827;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
}

.pd-detail .product-detail-price {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid #dfe6ee;
  border-radius: 8px;
  background: #f8fafc;
}

.pd-detail .pd-price-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.pd-detail .pd-price-panel--standard {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pd-detail .pd-price-box {
  display: grid;
  gap: 4px;
  min-height: 86px;
  padding: 10px;
  border: 1px solid;
  border-radius: 8px;
  align-content: start;
}

.pd-detail .pd-price-box--normal {
  border-color: #f3c2c7;
  background: #fff4f6;
}

.pd-detail .pd-price-box--discount {
  border-color: #edd48a;
  background: #fff9e8;
}

.pd-detail .pd-price-box--foreign {
  border-color: #c7d2fe;
  background: #f5f7ff;
}

.pd-detail .pd-price-box--try {
  border-color: #b7e4c7;
  background: #f1fbf4;
}

.pd-detail .pd-price-label {
  color: #6b7280;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.pd-detail .pd-price-old {
  color: #9ca3af;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.pd-detail .pd-price-new {
  color: #111827;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.08;
}

.pd-detail .pd-price-try {
  color: #047857;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.08;
}

.pd-detail .pd-price-pill {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: #dc2626;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.pd-detail .pd-price-note {
  color: #6b7280;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
}

.pd-detail .price {
  font-size: 17px;
  line-height: 1.15;
}

.pd-detail .product-detail-price .price-original {
  font-size: 13px;
}

.pd-detail .product-detail-price .price-try {
  font-size: 17px;
}

.pd-detail .product-detail-price .price-source {
  font-size: 11px;
  letter-spacing: 0;
}

.pd-detail .pd-dynamic-price {
  display: none;
  margin: 0;
}

.pd-detail .pd-dynamic-price.is-active {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.pd-family-selector {
  display: grid;
  gap: 9px;
  padding: 10px;
  border: 1px solid #e6eaf0;
  border-radius: 8px;
  background: #fff;
}

.pd-family-heading {
  display: grid;
  gap: 4px;
}

.pd-family-heading h2 {
  margin: 0;
  color: #374151;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.pd-family-heading p {
  margin: 0;
  color: #6b7280;
  font-size: 11px;
  line-height: 1.45;
}

.pd-family-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pd-family-variant-groups {
  display: grid;
  gap: 9px;
}

.pd-family-variant-groups.is-loading {
  cursor: wait;
}

.pd-family-variant-group {
  display: grid;
  gap: 6px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.pd-family-variant-group legend {
  margin: 0 0 8px;
  padding: 0;
  color: #374151;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.25;
  text-transform: uppercase;
}

.pd-family-option {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 38px;
  min-height: 30px;
  padding: 5px 8px;
  border: 1px solid #e5e7eb;
  border-radius: 7px;
  background: #fff;
  color: #111827;
  cursor: pointer;
  text-decoration: none;
  transition: border-color .14s ease, background .14s ease, box-shadow .14s ease;
}

.pd-family-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pd-family-radio { display: none; }

.pd-family-option:hover {
  border-color: #cbd5e1;
  background: #f9fafb;
}

.pd-family-option.is-selected {
  border-color: #9ca3af;
  background: #f3f4f6;
  color: #111827;
  box-shadow: 0 0 0 3px rgba(17, 24, 39, .06);
}

.pd-family-option.is-disabled {
  border-color: #e5e7eb;
  background: repeating-linear-gradient(
    -45deg,
    #f9fafb,
    #f9fafb 8px,
    #f1f5f9 8px,
    #f1f5f9 16px
  );
  color: #9ca3af;
  cursor: not-allowed;
  opacity: .78;
  box-shadow: none;
}

.pd-family-option.is-disabled:hover {
  border-color: #e5e7eb;
  background: repeating-linear-gradient(
    -45deg,
    #f9fafb,
    #f9fafb 8px,
    #f1f5f9 8px,
    #f1f5f9 16px
  );
}

.pd-family-option.is-disabled .pd-family-option-main {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: #6b7280;
}

.pd-family-option.is-focus-visible {
  outline: 3px solid rgba(17, 24, 39, .16);
  outline-offset: 2px;
}

.pd-family-option-main {
  min-width: 0;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.pd-family-options--swatches,
.option-radio-cards--swatches {
  gap: 7px;
}

.pd-family-option--swatch,
.pd-detail .option-radio-card--swatch {
  width: 34px;
  min-width: 34px;
  height: 34px;
  min-height: 34px;
  padding: 3px;
}

.pd-color-swatch {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(17, 24, 39, .18);
  border-radius: 5px;
  background: var(--swatch-color, #e5e7eb);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .45);
}

.pd-color-swatch--light {
  border-color: #9ca3af;
}

.pd-family-option--swatch.is-selected .pd-color-swatch::after,
.pd-detail .option-radio-card--swatch.is-selected .pd-color-swatch::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -58%) rotate(45deg);
  filter: drop-shadow(0 1px 1px rgba(17, 24, 39, .45));
}

.pd-family-option--swatch.is-selected .pd-color-swatch--light::after,
.pd-detail .option-radio-card--swatch.is-selected .pd-color-swatch--light::after {
  border-color: #111827;
  filter: none;
}

.pd-family-option-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  grid-column: 2;
  color: #6b7280;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
}

.pd-family-option.is-selected .pd-family-option-meta {
  color: #e5e7eb;
}

.pd-detail .pd-vat-emphasis {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 8px;
  border: 1px solid #f59e0b;
  border-radius: 999px;
  background: #fffbeb;
  color: #92400e;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.pd-detail .stock-line {
  margin: 0;
  color: #374151;
  font-size: 13px;
  font-weight: 700;
}

.pd-detail .add-cart {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
  border: 1px solid #dfe6ee;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f9fafb);
}

.pd-detail .add-cart > * {
  width: 100%;
}

.pd-options-title {
  margin: 0;
  color: #111827;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.pd-option-empty {
  margin: 0;
  color: #9ca3af;
  font-size: 12px;
  font-weight: 700;
}

.pd-detail .option-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pd-detail .option-group-label {
  font-size: 11px;
  font-weight: 800;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.pd-detail .option-radio-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.pd-detail .option-radio-card {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 42px;
  min-height: 32px;
  padding: 6px 9px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #fff;
  color: #111827;
  cursor: pointer;
  transition: border-color .14s ease, background .14s ease, box-shadow .14s ease;
}

.pd-detail .option-radio-card:hover {
  border-color: #94a3b8;
  background: #f9fafb;
}

.pd-detail .option-radio-card::before {
  content: none;
}

.pd-detail .option-radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pd-detail .option-radio-control { display: none; }

.pd-detail .option-radio-card.is-selected {
  border-color: #111827;
  background: #fff;
  color: #111827;
  box-shadow: 0 0 0 3px rgba(17, 24, 39, .08);
}

.pd-detail .option-radio-card.is-focus-visible {
  outline: 3px solid rgba(17, 24, 39, .16);
  outline-offset: 2px;
}

.pd-detail .option-radio-card.is-disabled {
  cursor: not-allowed;
  opacity: .58;
  background: #f9fafb;
}

.pd-option-tooltip::before {
  content: attr(data-tooltip);
  position: absolute;
  left: 0;
  bottom: calc(100% + 9px);
  z-index: 8;
  width: max-content;
  max-width: min(280px, calc(100vw - 32px));
  padding: 9px 11px;
  border-radius: 8px;
  background: #111827;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  box-shadow: 0 12px 28px rgba(17, 24, 39, .18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity .15s ease, transform .15s ease;
  white-space: normal;
}

.pd-option-tooltip::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: calc(100% + 3px);
  z-index: 8;
  border-width: 6px 6px 0;
  border-style: solid;
  border-color: #111827 transparent transparent;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity .15s ease, transform .15s ease;
}

.pd-option-tooltip:hover::before,
.pd-option-tooltip:focus-within::before,
.pd-option-tooltip:hover::after,
.pd-option-tooltip:focus-within::after {
  opacity: 1;
  transform: translateY(0);
}

.pd-detail .option-label {
  display: grid;
  gap: 2px;
  min-width: 0;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
}

.pd-detail .option-label-main {
  overflow-wrap: anywhere;
}

.pd-detail .option-label-secondary {
  display: block;
  color: #6b7280;
  font-size: 10px;
  font-weight: 700;
}

.pd-detail .option-radio-card.is-selected .option-label-secondary {
  color: #d1d5db;
}

.pd-detail .option-select {
  max-width: 100%;
  height: 36px;
  border-width: 1px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}

.pd-purchase-row {
  display: grid;
  grid-template-columns: 96px minmax(160px, 1fr);
  gap: 10px;
  align-items: end;
  padding-top: 10px;
  margin-top: 2px;
  border-top: 1px solid #e5e7eb;
}

.pd-detail .qty-row {
  display: grid;
  gap: 4px;
  margin-top: 0;
}

.pd-detail .qty-row label {
  margin: 0;
  color: #374151;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.pd-detail .qty-row input {
  width: 100%;
  height: 38px;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 800;
}

.pd-detail .add-cart button[type="submit"]:not(.wishlist-btn) {
  min-height: 40px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  width: 100%;
}

.pd-detail .pd-wishlist-btn {
  grid-column: 1 / -1;
  justify-content: center;
  justify-self: stretch;
  width: 100%;
  min-width: 0;
}

.pd-lower {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.pd-card {
  padding: 16px;
}

.pd-card--description {
  grid-column: auto;
}

.pd-card h2 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.25;
}

.pd-card p {
  margin: 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.65;
}

.pd-description {
  color: #4b5563;
  font-size: 13px;
  line-height: 1.65;
  max-width: 920px;
}

.pd-description > *:first-child {
  margin-top: 0;
}

.pd-description > *:last-child {
  margin-bottom: 0;
}

.pd-description h2,
.pd-description h3,
.pd-description h4 {
  color: #111827;
  line-height: 1.25;
  margin: 18px 0 8px;
}

.pd-description h2 { font-size: 18px; }
.pd-description h3 { font-size: 16px; }
.pd-description h4 { font-size: 14px; }

.pd-description p,
.pd-description div,
.pd-description ul,
.pd-description ol,
.pd-description blockquote {
  margin: 0 0 10px;
}

.pd-description ul,
.pd-description ol {
  padding-left: 22px;
}

.pd-description blockquote {
  padding-left: 12px;
  border-left: 3px solid #d1d5db;
  color: #374151;
}

.pd-description a {
  color: #047857;
  font-weight: 700;
}

.pd-image-attributes {
  display: grid;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid #eef2f7;
}

.pd-image-attributes h2 {
  margin: 0;
  color: #111827;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.25;
}

.pd-attributes {
  display: grid;
  gap: 6px;
}

.pd-attribute-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 12px;
}

.pd-attribute-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.pd-attribute-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #6b7280;
  font-weight: 700;
}

.pd-attribute-label--has-tooltip {
  cursor: help;
}

.pd-attribute-label--has-tooltip::before {
  content: attr(data-tooltip);
  position: absolute;
  left: 0;
  bottom: calc(100% + 9px);
  z-index: 5;
  width: max-content;
  max-width: min(280px, calc(100vw - 32px));
  padding: 9px 11px;
  border-radius: 8px;
  background: #111827;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  box-shadow: 0 12px 28px rgba(17, 24, 39, .18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity .15s ease, transform .15s ease;
  white-space: normal;
}

.pd-attribute-label--has-tooltip::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: calc(100% + 3px);
  z-index: 5;
  border-width: 6px 6px 0;
  border-style: solid;
  border-color: #111827 transparent transparent;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity .15s ease, transform .15s ease;
}

.pd-attribute-label--has-tooltip:hover::before,
.pd-attribute-label--has-tooltip:focus::before,
.pd-attribute-label--has-tooltip:hover::after,
.pd-attribute-label--has-tooltip:focus::after {
  opacity: 1;
  transform: translateY(0);
}

.pd-attribute-row strong {
  color: #111827;
  font-weight: 800;
  text-align: right;
}

.pd-related-section {
  margin-top: 18px;
}

.pd-related-heading {
  margin-bottom: 12px;
}

.pd-related-heading h2 {
  margin: 0;
  color: #111827;
  font-size: 18px;
}

.pd-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}

@media (max-width: 900px) {
  .product-detail.pd-detail,
  .pd-lower {
    grid-template-columns: 1fr;
  }

  .pd-detail .product-info-panel {
    position: static;
    height: auto;
  }

  .pd-detail .product-image-panel {
    height: auto;
  }

  .pd-detail .pd-price-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pd-detail .pd-price-panel--standard {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pd-detail .pd-price-box--try {
    grid-column: 1 / -1;
  }

  .pd-detail .pd-price-panel--standard .pd-price-box--try {
    grid-column: auto;
  }

}

@media (max-width: 620px) {
  .pd-detail .pd-price-panel {
    grid-template-columns: 1fr;
  }

  .pd-detail .pd-price-box--try {
    grid-column: auto;
  }

  .pd-detail .product-info-panel h1 {
    font-size: 20px;
  }

  .pd-summary {
    display: grid;
    grid-template-columns: 1fr;
  }

  .pd-summary-item {
    border-radius: 8px;
    justify-content: space-between;
  }

  .pd-purchase-row {
    grid-template-columns: 1fr;
  }

  .pd-family-options {
    gap: 6px;
  }

  .pd-detail .product-info-panel,
  .pd-card {
    padding: 14px;
  }

  .pd-image-viewer {
    padding: 12px;
  }

  .pd-image-viewer-inner,
  .pd-image-viewer-img {
    max-height: calc(100vh - 24px);
  }
}
