.detail-page { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 48px) 64px; overflow-x: hidden; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; padding: 22px 0; color: #63716c; font-size: 14px; }
.breadcrumbs a { color: var(--green); font-weight: 800; }
.breadcrumbs [aria-current="page"] { color: var(--ink); font-weight: 700; }
.detail-parent-link { display: inline-flex; align-items: center; gap: 7px; margin: -8px 0 20px; color: var(--green-dark); font-size: 14px; font-weight: 800; text-decoration: none; }
.detail-parent-link::before { content: "\2190"; font-size: 18px; line-height: 1; }
.detail-parent-link:hover { color: var(--green); text-decoration: underline; }
.detail-parent-link:focus-visible { outline: 3px solid rgba(19, 122, 127, .25); outline-offset: 4px; }
.product-overview { display: grid; grid-template-columns: minmax(0, 1fr); gap: 32px; min-width: 0; padding-bottom: 42px; }
.product-overview > * { min-width: 0; }
.product-gallery { width: 100%; min-width: 0; overflow: hidden; }
.gallery-main { display: grid; place-items: center; aspect-ratio: 1 / 1; overflow: hidden; background: #fff; border: 1px solid var(--line); }
.gallery-main img { display: block; width: auto; height: auto; max-width: 100%; max-height: 100%; object-fit: contain; }
.gallery-thumbnails { width: 100%; min-width: 0; display: grid; grid-template-columns: repeat(6, minmax(66px, 1fr)); gap: 8px; margin-top: 10px; overflow-x: auto; }
.gallery-thumbnails button { width: 100%; min-width: 68px; aspect-ratio: 1 / 1; padding: 3px; border: 2px solid transparent; background: #fff; cursor: pointer; }
.gallery-thumbnails button.is-active { border-color: var(--green); }
.gallery-thumbnails img { width: 100%; height: 100%; object-fit: cover; }
.product-summary { align-self: start; }
.product-family { margin: 0 0 7px; color: var(--green); font-size: 13px; font-weight: 900; text-transform: uppercase; }
.product-summary h1 { margin: 0; font-size: 52px; line-height: 1.02; overflow-wrap: anywhere; }
.product-model { margin: 13px 0; color: var(--muted); }
.product-rating { display: grid; grid-template-columns: auto 1fr auto 1fr; gap: 4px 10px; align-items: baseline; padding: 18px 0; border-block: 1px solid var(--line); }
.product-rating strong { color: #0a2f4f; font-size: 28px; }
.product-rating span { color: var(--muted); font-size: 13px; }
.summary-copy { color: var(--muted); font-size: 17px; }
.price-panel { margin: 20px 0 14px; padding: 18px; background: #fff7d8; border-left: 5px solid var(--yellow); }
.price-panel span, .price-panel strong, .price-panel small { display: block; }
.price-panel span { color: #665216; font-size: 13px; font-weight: 900; text-transform: uppercase; }
.price-panel strong { margin: 4px 0; color: #0a2f4f; font-size: 30px; }
.price-panel small { color: #665f48; }
.destination-price-panel { padding: 20px; border: 1px solid #e5c662; border-left: 5px solid var(--yellow); border-radius: 5px; }
.destination-price-panel .price-location-label { display: flex; align-items: center; gap: 10px; color: #0a2f4f; }
.destination-price-panel .price-location-label::before { content: ""; width: 12px; height: 12px; flex: 0 0 auto; border: 3px solid var(--yellow); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); }
.destination-price-panel > strong { margin: 8px 0 6px; font-size: clamp(25px, 3vw, 32px); line-height: 1.08; }
.destination-quote-details { margin-top: 16px; }
.destination-quote-details summary { min-height: 46px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 14px; color: #fff; background: var(--green); border-radius: 4px; font-weight: 900; cursor: pointer; list-style: none; }
.destination-quote-details summary::-webkit-details-marker { display: none; }
.destination-quote-details summary::after { content: "+"; flex: 0 0 auto; font-size: 24px; line-height: 1; }
.destination-quote-details[open] summary::after { content: "\2212"; }
.destination-quote-details summary:hover { background: var(--green-dark); }
.destination-quote-details summary:focus-visible { outline: 3px solid rgba(18, 99, 63, .25); outline-offset: 3px; }
.destination-quote-form { display: grid; gap: 14px; padding-top: 16px; }
.destination-field-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.destination-field { display: grid; gap: 6px; color: #0a2f4f; font-size: 13px; font-weight: 900; }
.destination-field select, .destination-field input { width: 100%; min-height: 44px; padding: 9px 10px; color: var(--ink); background: #fff; border: 1px solid #9eaa9f; border-radius: 4px; font: inherit; }
.destination-field select:focus, .destination-field input:focus { border-color: var(--green); outline: 3px solid rgba(18, 99, 63, .18); }
.delivery-methods { margin: 0; padding: 0; border: 0; }
.delivery-methods legend { margin-bottom: 7px; color: #0a2f4f; font-size: 13px; font-weight: 900; }
.delivery-options { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7px; }
.delivery-choice { position: relative; min-width: 0; }
.delivery-choice input { position: absolute; opacity: 0; pointer-events: none; }
.delivery-choice span { min-height: 40px; display: flex; align-items: center; justify-content: center; padding: 7px; color: #0a2f4f; background: #fff; border: 1px solid #9eaa9f; border-radius: 4px; font-size: 12px; font-weight: 900; text-align: center; cursor: pointer; }
.delivery-choice input:checked + span { color: #fff; background: var(--green); border-color: var(--green); }
.delivery-choice input:focus-visible + span { outline: 3px solid rgba(18, 99, 63, .25); outline-offset: 2px; }
.quote-form-status { min-height: 18px; margin: -2px 0 0; color: #a22d1d; font-size: 13px; font-weight: 800; }
.destination-whatsapp { width: 100%; }
.availability { display: grid; grid-template-columns: auto 1fr; gap: 8px 14px; padding: 12px 0; }
.availability span { color: var(--muted); }
.summary-actions { display: grid; gap: 10px; margin-top: 10px; }
.sales-note { margin-bottom: 0; color: var(--muted); font-size: 13px; }
.sample-note { margin: 12px 0 0; padding: 10px 12px; color: #665f48; background: #fff7d8; border-left: 4px solid var(--yellow); font-size: 12px; }
.detail-band { padding: 42px 0; border-top: 1px solid var(--line); }
.identification-guide { display: block; width: min(100%, 825px); height: auto; margin: 24px auto 0; border: 1px solid var(--line); background: #fff; }
.matching-guide-link { width: min(100%, 825px); min-height: 48px; display: flex; align-items: center; justify-content: center; margin: 12px auto 0; padding: 11px 16px; border-radius: 6px; color: #0a2f4f; background: var(--yellow); text-align: center; font-weight: 900; }
.detail-heading { max-width: 780px; margin-bottom: 22px; }
.detail-heading h2 { margin: 5px 0 8px; font-size: clamp(28px, 4vw, 44px); }
.detail-heading p:not(.eyebrow) { color: var(--muted); }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.feature-grid article { min-height: 105px; display: grid; align-content: center; padding: 18px; color: white; background: #0a2f4f; border-top: 4px solid var(--yellow); }
.feature-grid strong, .feature-grid span { display: block; }
.feature-grid strong { font-size: 23px; }
.feature-grid span { margin-top: 4px; color: rgba(255,255,255,.72); font-size: 13px; }
.spec-table { background: #fff; border: 1px solid var(--line); }
.spec-table > div { display: grid; grid-template-columns: minmax(130px, .8fr) 1.2fr; gap: 18px; padding: 13px 16px; border-bottom: 1px solid var(--line); }
.spec-table > div:last-child { border-bottom: 0; }
.spec-table span { color: var(--muted); }
.fit-grid { display: grid; gap: 14px; }
.fit-grid article { padding: 24px; background: white; border: 1px solid var(--line); }
.fit-grid h3 { margin: 0 0 13px; font-size: 23px; }
.fit-grid ul { margin: 0; padding-left: 20px; }
.fit-grid li { margin: 8px 0; }
.fit-good { border-top: 5px solid var(--green) !important; }
.fit-check { border-top: 5px solid #c74732 !important; }
.detail-cta { display: grid; gap: 20px; align-items: center; padding: 30px; color: white; background: var(--green-dark); border-top: 5px solid var(--yellow); }
.detail-cta h2, .detail-cta p { margin: 0; }
.detail-cta h2 { margin: 5px 0; font-size: clamp(27px, 4vw, 42px); }
.detail-cta p:not(.eyebrow) { color: rgba(255,255,255,.75); }
@media (min-width: 760px) { .product-overview { grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr); } .summary-actions { grid-template-columns: 1fr 1fr; } .destination-field-grid { grid-template-columns: minmax(150px, .8fr) minmax(0, 1.2fr); } .feature-grid { grid-template-columns: repeat(3, 1fr); } .fit-grid { grid-template-columns: 1fr 1fr; } .detail-cta { grid-template-columns: 1fr auto; } }
@media (max-width: 560px) { .product-summary h1 { font-size: 36px; } .gallery-thumbnails { grid-template-columns: repeat(6, 70px); } .product-rating { grid-template-columns: auto 1fr; } .feature-grid { grid-template-columns: 1fr 1fr; } .spec-table > div { grid-template-columns: 1fr; gap: 3px; } }
@media (max-width: 420px) { .delivery-options { grid-template-columns: 1fr; } }
