/* =============================================================================
   Luxxri — Product detail (PDP): retail-style layout, aligned to a single column max
   ============================================================================= */

.zts-detail-page {
    /* Match plugin / frontend.css brand */
    --zts-pdp-max: 1200px;
    --zts-pdp-brand: #ff7601;
    --zts-pdp-brand-dark: #e06600;
    --zts-pdp-black: #0f172a;
    --zts-pdp-text: var(--zts-pdp-black);
    --zts-pdp-muted: #5c5c5c;
    --zts-pdp-border: #e5e5e5;
    --zts-pdp-surface: #fafafa;
    --zts-pdp-accent: var(--zts-pdp-brand);
    --zts-pdp-accent-soft: rgba(255, 118, 1, 0.18);
    --zts-pdp-radius: 14px;
    --zts-pdp-radius-lg: 16px;
    --zts-pdp-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.06);
    font-family: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--zts-pdp-text);
    line-height: 1.5;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

.zts-detail-page *,
.zts-detail-page *::before,
.zts-detail-page *::after {
    box-sizing: border-box;
}

/* Left-align with post content: no auto-centering (avoids “staircase” vs page title) */
.zts-detail-inner {
    max-width: var(--zts-pdp-max);
    width: 100%;
    margin: 0 auto;
    padding: 0 0 clamp(32px, 5vw, 64px);
}

/* Empty / error */
.zts-detail-empty {
    text-align: center;
    padding: 48px 20px;
    color: #737373;
    font-size: 15px;
    max-width: var(--zts-pdp-max);
    margin-left: auto;
    margin-right: auto;
}
.zts-detail-empty--err {
    color: #b91c1c;
}

/* Breadcrumb — single visual row, aligned with grid */
.zts-detail-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap;
    padding: 0 0 20px;
    margin: 0 0 clamp(20px, 4vw, 32px);
    border-bottom: 1px solid var(--zts-pdp-border);
    font-size: 12px;
    letter-spacing: 0.02em;
    line-height: 1.4;
    min-height: 44px;
}

.zts-bc-back {
    flex-shrink: 0;
    color: var(--zts-pdp-text);
    text-decoration: none;
    font-weight: 600;
    padding: 8px 0;
    margin-right: 12px;
    border-bottom: 1px solid transparent;
    transition: color 0.15s ease, border-color 0.15s ease;
}
.zts-bc-back:hover {
    color: var(--zts-pdp-brand);
    border-bottom-color: var(--zts-pdp-brand);
}

.zts-bc-sep {
    flex-shrink: 0;
    width: 1px;
    height: 14px;
    background: var(--zts-pdp-border);
    margin-right: 12px;
}

.zts-bc-current {
    flex: 1;
    min-width: 0;
    color: var(--zts-pdp-muted);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Two-column PDP — gallery column uses full cell width */
.zts-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(24px, 4vw, 56px);
    align-items: start;
}

/* Gallery */
.zts-detail-gallery {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: sticky;
    top: 20px;
    width: 100%;
    min-width: 0;
}

/* Hero image: full column width, cover crop (editorial / marketplace style) */
.zts-detail-main-img {
    width: 100%;
    min-height: clamp(360px, 58vh, 720px);
    aspect-ratio: 3 / 4;
    background: var(--zts-pdp-surface) center / cover no-repeat;
    border-radius: var(--zts-pdp-radius-lg);
    overflow: hidden;
    border: 1px solid var(--zts-pdp-border);
    display: block;
    position: relative;
    box-shadow: var(--zts-pdp-shadow);
}

.zts-detail-main-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: opacity 0.2s ease;
}

.zts-detail-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
    width: 100%;
}

.zts-detail-thumb {
    width: 68px;
    height: 68px;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--zts-pdp-border);
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
    background: #fff !important;
    flex-shrink: 0;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.zts-detail-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.zts-detail-thumb:hover,
.zts-detail-thumb:focus-visible {
    border-color: var(--zts-pdp-brand);
    outline: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 118, 1, 0.25);
}

.zts-detail-thumb.active {
    border-color: var(--zts-pdp-brand);
    box-shadow: 0 0 0 2px var(--zts-pdp-brand) !important;
    background: #fff !important;
}

/* Right column */
.zts-detail-info {
    display: flex;
    flex-direction: column;
    gap: 22px;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    padding-top: 4px;
}

.zts-detail-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.zts-detail-platform {
    display: inline-block;
    align-self: flex-start;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--zts-pdp-brand-dark);
    padding: 6px 12px;
    border-radius: 6px;
    background: #fff4ec;
    border: 1px solid rgba(255, 118, 1, 0.45);
}

.zts-detail-title {
    margin: 0;
    font-size: clamp(1.375rem, 2.2vw, 1.75rem);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--zts-pdp-text);
}

.zts-detail-store {
    margin: 0;
    font-size: 14px;
    color: var(--zts-pdp-muted);
    line-height: 1.45;
}

/* Price — hero number + subtle breakdown */
.zts-detail-price-card {
    padding: 22px 24px;
    border-radius: var(--zts-pdp-radius);
    border: 1px solid var(--zts-pdp-border);
    background: #fff;
    box-shadow: var(--zts-pdp-shadow);
}

.zts-detail-price-lead {
    margin: 0 0 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--zts-pdp-muted);
}

.zts-detail-price-hero {
    margin: 0 0 16px;
    font-size: clamp(1.85rem, 4vw, 2.35rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--zts-pdp-brand);
    line-height: 1.1;
}

.zts-detail-price-currency {
    font-size: 0.45em;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--zts-pdp-muted);
    vertical-align: middle;
    margin-left: 4px;
}

.zts-detail-price-per {
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.04em;
    font-size: 10px;
    color: var(--zts-pdp-muted);
}

.zts-detail-tier-wrap {
    margin-top: 4px;
    padding-top: 14px;
    border-top: 1px solid var(--zts-pdp-border);
}

.zts-detail-tier-title {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--zts-pdp-text);
}

.zts-detail-tier-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.zts-detail-tier-table th,
.zts-detail-tier-table td {
    padding: 8px 10px;
    text-align: left;
    border-bottom: 1px solid var(--zts-pdp-border);
}

.zts-detail-tier-table th {
    font-weight: 600;
    color: var(--zts-pdp-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.zts-detail-tier-hint {
    margin: 10px 0 0;
    font-size: 12px;
    line-height: 1.45;
    color: var(--zts-pdp-muted);
}

.zts-detail-price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--zts-pdp-border);
}

.zts-detail-price-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    font-size: 14px;
    color: var(--zts-pdp-muted);
}

.zts-detail-price-line-label {
    flex-shrink: 0;
}

.zts-price-base,
.zts-detail-price-line .zts-price-base {
    font-weight: 600;
    color: var(--zts-pdp-text);
    text-align: right;
}

/* Meta strip */
.zts-detail-meta {
    list-style: none;
    margin: 0;
    padding: 16px 0 0;
    border-top: 1px solid var(--zts-pdp-border);
    display: flex;
    flex-wrap: wrap;
    gap: 10px 0;
}

.zts-detail-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--zts-pdp-muted);
    padding-right: 16px;
    margin-right: 16px;
    border-right: 1px solid var(--zts-pdp-border);
}

.zts-detail-meta-item:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}

.zts-detail-meta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--zts-pdp-black);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
}

/* Variations — Lovebuy-style section blocks + pill buttons (no native selects) */
.zts-detail-variations-wrap {
    padding: 0;
    background: transparent;
    border: none;
}

.zts-detail-variations-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--zts-pdp-muted);
    margin: 0 0 14px;
}

.zts-variations-note {
    font-size: 14px;
    color: var(--zts-pdp-muted);
    margin: 0;
}

.zts-variations {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.zts-var-group {
    border: 1px solid var(--zts-pdp-border);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.zts-var-group__head {
    margin: 0;
    padding: 12px 14px 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--zts-pdp-text);
    background: #fff;
    border-bottom: none;
}

.zts-var-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 14px 14px;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 52px;
}

.zts-var-pills--sku {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
}

.zts-opt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--zts-pdp-black);
    background: #fff;
    border: 2px solid #d4d4d4;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
    text-align: center;
    line-height: 1.25;
    -webkit-tap-highlight-color: transparent;
}

.zts-opt-btn:hover {
    border-color: var(--zts-pdp-brand);
    background: #fffaf5;
    color : var(--zts-pdp-brand);
}

.zts-opt-btn:focus {
    outline: none;
}

.zts-opt-btn:focus-visible {
    box-shadow: 0 0 0 3px var(--zts-pdp-accent-soft);
    border-color: var(--zts-pdp-brand);
}

.zts-opt-btn.is-selected {
    border-color: var(--zts-pdp-brand-dark);
    background: linear-gradient(180deg, #ff8a3d 0%, var(--zts-pdp-brand) 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(255, 118, 1, 0.35);
}

.zts-var-group--color .zts-opt-btn {
    min-width: 56px;
    min-height: 48px;
    padding: 10px 14px;
}

.zts-opt-btn--sku {
    width: 100%;
    justify-content: space-between;
    min-height: auto;
    padding: 12px 14px;
    text-align: left;
}

.zts-opt-btn__label {
    flex: 1;
    min-width: 0;
    padding-right: 12px;
    font-weight: 500;
    line-height: 1.35;
}

.zts-opt-btn__price {
    flex-shrink: 0;
    font-weight: 700;
    font-size: 15px;
    color: var(--zts-pdp-brand);
}

.zts-opt-btn--sku.is-selected .zts-opt-btn__price {
    color: #fff;
}

.zts-detail-selected-option {
    margin-top: 4px;
    padding: 12px 14px;
    background: #fffaf5;
    border: 1px solid rgba(255, 118, 1, 0.35);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--zts-pdp-black);
    line-height: 1.45;
}

/* Quantity — label + control aligned left as one block */
.zts-detail-qty-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 8px;
    width: 100%;
}

.zts-detail-qty-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--zts-pdp-text);
}

.zts-qty-stepper {
    display: inline-flex;
    align-items: stretch;
    border: 1px solid var(--zts-pdp-border);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.zts-qty-stepper button {
    width: 44px;
    min-height: 44px;
    background: var(--zts-pdp-surface);
    border: none;
    font-size: 18px;
    font-weight: 500;
    color: var(--zts-pdp-text);
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zts-qty-stepper button:focus-visible {
    outline: 2px solid var(--zts-pdp-brand);
    outline-offset: -2px;
}

.zts-qty-stepper button:hover {
    background: #fff4ec;
    color: var(--zts-pdp-brand-dark);
}

.zts-qty-stepper input {
    width: 48px;
    min-height: 44px;
    border: none;
    border-left: 1px solid var(--zts-pdp-border);
    border-right: 1px solid var(--zts-pdp-border);
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--zts-pdp-text);
    background: #fff;
    -moz-appearance: textfield;
}

.zts-qty-stepper input::-webkit-inner-spin-button,
.zts-qty-stepper input::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

/* Primary CTA — brand orange + black border (overrides grid .zts-btn-cart) */
.zts-detail-actions {
    padding-top: 12px;
    width: 100%;
}

.zts-detail-cart-ico {
    flex-shrink: 0;
}

.zts-detail-page .zts-detail-actions .zts-detail-btn-cart.zts-btn-cart {
    flex: none;
    width: 100%;
    min-height: 52px;
    padding: 14px 22px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: none;
    cursor: pointer;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid var(--zts-pdp-black);
    color: #fff !important;
    background: linear-gradient(180deg, #ff8a3d 0%, var(--zts-pdp-brand) 55%, var(--zts-pdp-brand-dark) 100%);
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
    box-shadow: 0 4px 14px rgba(255, 118, 1, 0.35);
}

.zts-detail-help-btn {
    width: 100%;
    min-height: 44px;
    margin-top: 10px;
    border: 1px solid var(--zts-pdp-border);
    border-radius: 12px;
    background: #fff !important;
    color: var(--zts-pdp-text);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.zts-detail-help-btn:hover {
    border-color: rgba(255, 118, 1, 0.55) !important;
    color: var(--zts-pdp-brand-dark) !important;
    background: #fff4ec !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.zts-detail-help-btn:focus,
.zts-detail-help-btn:focus-visible,
.zts-detail-help-btn:active {
    background: #fff4ec !important;
    color: var(--zts-pdp-brand-dark) !important;
    border-color: rgba(255, 118, 1, 0.75) !important;
    box-shadow: 0 0 0 3px rgba(255, 118, 1, 0.22) !important;
    outline: none !important;
}

.zts-detail-trust-grid {
    margin-top: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--zts-pdp-border);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}

.zts-detail-trust-item {
    font-size: 14px;
    color: var(--zts-pdp-muted);
}

.zts-detail-page .zts-detail-actions .zts-detail-btn-cart.zts-btn-cart:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 118, 1, 0.45);
}

.zts-detail-page .zts-detail-actions .zts-detail-btn-cart.zts-btn-cart:active {
    transform: translateY(0);
    filter: brightness(0.98);
}

.zts-detail-page .zts-detail-actions .zts-detail-btn-cart.zts-btn-cart:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
    filter: none;
}

/* Description */
.zts-detail-desc-section {
    margin-top: clamp(40px, 8vw, 64px);
    padding-top: clamp(28px, 5vw, 40px);
    border-top: 1px solid var(--zts-pdp-border);
}

.zts-detail-desc-title {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    font-weight: 600;
    color: var(--zts-pdp-text);
    margin: 0 0 18px;
    letter-spacing: -0.02em;
}

.zts-detail-desc-text {
    font-size: 15px;
    line-height: 1.75;
    color: #404040;
    max-width: 720px;
}

.zts-detail-desc-text p {
    margin: 0 0 1em;
}

.zts-detail-desc-text p:last-child {
    margin-bottom: 0;
}

.zts-detail-desc-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--zts-pdp-text);
    margin: 28px 0 14px;
}

.zts-detail-desc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}

.zts-detail-desc-fig {
    margin: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--zts-pdp-border);
    background: var(--zts-pdp-surface);
}

.zts-detail-desc-fig img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

@media (max-width: 900px) {
    .zts-detail-gallery {
        position: static;
    }
}

@media (max-width: 768px) {
    .zts-detail-main-img {
        min-height: min(70vh, 520px);
    }

    .zts-detail-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .zts-detail-meta-item {
        flex: 1 1 100%;
        border-right: none;
        margin-right: 0;
        padding-right: 0;
        padding-bottom: 10px;
        border-bottom: 1px solid var(--zts-pdp-border);
    }

    .zts-detail-meta-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .zts-detail-meta {
        flex-direction: column;
        gap: 0;
    }

    .zts-detail-desc-grid {
        grid-template-columns: 1fr 1fr;
    }

    .zts-detail-trust-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .zts-detail-desc-grid {
        grid-template-columns: 1fr;
    }

    .zts-detail-breadcrumb {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .zts-bc-current {
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

/* =============================================================================
   Related products row ([zts_related_products]) — horizontal cards, PDP-adjacent
   ============================================================================= */

.zts-related-products {
    font-family: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    max-width: var(--zts-pdp-max, 1200px);
    margin: clamp(28px, 4vw, 48px) auto 0;
    padding: 0;
    color: var(--zts-pdp-text, #0f172a);
    -webkit-font-smoothing: antialiased;
}

.zts-detail-inner .zts-related-products {
    margin-left: 0;
    margin-right: 0;
}

.zts-related-products__head {
    margin: 0 0 22px;
}

.zts-related-products__eyebrow {
    margin: 0 0 8px;
    padding: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.02em;
    color: var(--zts-pdp-brand, #ff7601);
}

.zts-related-products__title {
    margin: 0;
    padding: 0;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: clamp(1.5rem, 3.2vw, 2.125rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.zts-related-products__grid {
    --zts-related-cols: 4;
    display: grid;
    grid-template-columns: repeat(var(--zts-related-cols), minmax(0, 1fr));
    gap: 20px;
    align-items: start;
}

@media (max-width: 900px) {
    .zts-related-products__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .zts-related-products__grid {
        grid-template-columns: 1fr;
    }
}

.zts-related-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    text-decoration: none;
    color: inherit;
    min-width: 0;
    border-radius: 0;
    transition: opacity 0.2s ease;
}

.zts-related-card:hover {
    opacity: 0.92;
}

.zts-related-card:focus-visible {
    outline: 2px solid var(--zts-pdp-brand, #ff7601);
    outline-offset: 4px;
    border-radius: 4px;
}

.zts-related-card__media {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    background: #f4f4f5;
}

.zts-related-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    vertical-align: middle;
}

.zts-related-card__category {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.35;
    color: #888888;
    font-weight: 400;
}

.zts-related-card__title {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 700;
    color: #0f172a;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zts-related-card__price {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 400;
    color: #0f172a;
}
