@font-face { font-family: "Overlock"; src: url("/assets/fonts/overlock-400-latin.woff2") format("woff2"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "Overlock"; src: url("/assets/fonts/overlock-700-latin.woff2") format("woff2"); font-style: normal; font-weight: 700; font-display: swap; }
@font-face { font-family: "Spinnaker"; src: url("/assets/fonts/spinnaker-400-latin.woff2") format("woff2"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "Serona"; src: url("/assets/fonts/serona.ttf") format("truetype"); font-style: normal; font-weight: 400; font-display: swap; }

:root {
  --ink: #090909;
  --muted: #666b68;
  --sage: #869f9d;
  --sage-dark: #486664;
  --mist: #e8eeee;
  --warm: #eee9e6;
  --paper: #ffffff;
  --off-white: #f8f8f7;
  --line: #d9dcda;
  --shadow: 0 20px 60px rgba(20, 30, 29, .12);
  --shell: min(1180px, calc(100vw - 48px));
  --shell-wide: min(1320px, calc(100vw - 56px));
  --header-height: 80px;
  font-family: "Overlock", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: var(--paper); color: var(--ink); }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a, button { -webkit-tap-highlight-color: transparent; }
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) { outline: 0; }
button, input { font: inherit; }
button { color: inherit; }
p { line-height: 1.75; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Spinnaker", Arial, sans-serif; font-weight: 400; letter-spacing: 0; }
h1 { font-size: clamp(2.7rem, 5vw, 5.2rem); line-height: 1.02; }
h2 { font-size: clamp(2rem, 3.6vw, 3.5rem); line-height: 1.12; }
h3 { font-size: 1.25rem; }
.shell { width: var(--shell); margin-inline: auto; }
.shell-wide { width: var(--shell-wide); margin-inline: auto; }
.section { padding-block: clamp(72px, 9vw, 130px); }
.eyebrow { margin-bottom: 14px; color: var(--sage-dark); font-size: .76rem; font-weight: 700; letter-spacing: .18em; line-height: 1.3; text-transform: uppercase; }
.section-number { display: block; margin-bottom: 20px; color: var(--sage); font-size: .82rem; font-weight: 700; letter-spacing: .2em; }
.icon { width: 1.25em; height: 1.25em; flex: 0 0 auto; }

.skip-link { position: fixed; z-index: 999; top: 10px; left: 10px; padding: 10px 16px; background: var(--ink); color: white; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: relative; z-index: 100; height: var(--header-height); background: white; border-bottom: 1px solid rgba(0, 0, 0, .05); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 38px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-name { font-family: "Serona", Arial, sans-serif; font-size: 1.4rem; font-weight: 400; letter-spacing: .04em; }
.brand-mark { width: 34px; height: 40px; display: block; flex: 0 0 auto; }
.brand-mark img { width: 34px; height: 40px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 46px); }
.main-nav a { position: relative; padding-block: 12px; font-size: .94rem; white-space: nowrap; }
.main-nav a::after { content: ""; position: absolute; right: 50%; bottom: 4px; left: 50%; height: 1px; background: var(--sage-dark); transition: left .25s, right .25s; }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { right: 0; left: 0; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; align-items: center; justify-content: center; }
.menu-toggle .icon { width: 26px; height: 26px; }
.menu-close { display: none; }

.button { min-height: 45px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 12px 23px; border: 1px solid var(--ink); font-size: .92rem; letter-spacing: .025em; transition: transform .2s, background .2s, color .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0, 0, 0, .14); }
.button-dark { background: var(--ink); color: white; }
.button-dark:hover { background: var(--sage-dark); border-color: var(--sage-dark); }
.button-outline { background: transparent; }
.button-outline:hover { background: var(--ink); color: white; }
.button-wide { width: 100%; min-height: 54px; }

.portal-body { background: #101312; }
.portal-body #contenido { min-height: 100svh; }
.portal-page { position: relative; min-height: 100svh; display: grid; grid-template-rows: 1fr auto; background: #101312; color: #fff; }
.portal-brand { position: absolute; z-index: 5; top: 17px; left: 50%; width: 360px; display: grid; justify-items: center; color: #c6a15b; transform: translateX(-50%); text-align: center; text-decoration: none; cursor: pointer; filter: drop-shadow(0 3px 16px rgba(0, 0, 0, .78)); transition: filter .2s ease; }
.portal-brand:hover { filter: drop-shadow(0 3px 16px rgba(0, 0, 0, .78)) brightness(1.12); }
.portal-brand:focus-visible { outline: 1px solid currentColor; outline-offset: 7px; }
.portal-brand img { display: none; }
.portal-brand-name { font-family: "Bodoni Bk BT", "Bodoni MT", Didot, "Times New Roman", Georgia, serif; font-size: 4.05rem; font-weight: 400; letter-spacing: .16em; line-height: .88; }
.portal-brand-country { width: 285px; margin-top: 7px; display: flex; align-items: center; justify-content: center; gap: 18px; color: #c6a15b; font-family: "Spinnaker", Arial, sans-serif; font-size: .72rem; letter-spacing: .55em; line-height: 1.2; }
.portal-brand-country::before, .portal-brand-country::after { content: ""; height: 1px; flex: 1; background: currentColor; opacity: .72; }
.portal-choices { min-height: calc(100svh - 64px); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.portal-choice { position: relative; min-width: 0; min-height: 0; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; isolation: isolate; }
.portal-choice + .portal-choice { border-left: 1px solid rgba(255, 255, 255, .16); }
.portal-photo, .portal-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.portal-photo { z-index: -2; max-width: none; object-fit: cover; transition: transform .7s ease; }
.portal-choice-jewelry .portal-photo { object-position: 50% center; }
.portal-choice-sport .portal-photo { object-position: 50% center; }
.portal-shade { z-index: -1; background: linear-gradient(180deg, rgba(9, 8, 7, .5) 0%, rgba(9, 8, 7, .02) 34%, rgba(9, 8, 7, .18) 58%, rgba(9, 8, 7, .88) 100%); }
.portal-choice-jewelry .portal-shade { background: linear-gradient(180deg, rgba(18, 15, 12, .52) 0%, rgba(18, 15, 12, .03) 34%, rgba(18, 15, 12, .18) 58%, rgba(16, 13, 10, .9) 100%); }
.portal-choice-sport .portal-shade { background: linear-gradient(180deg, rgba(9, 12, 10, .5) 0%, rgba(7, 13, 9, .02) 34%, rgba(5, 18, 11, .16) 58%, rgba(5, 15, 9, .86) 100%); }
.portal-choice-jewelry .portal-photo { transform: none; }
.portal-choice-jewelry:hover .portal-photo { transform: scale(1.025); }
.portal-choice-sport:hover .portal-photo { transform: scale(1.025); }
.portal-highlights { position: absolute; top: 34px; right: 20%; left: 8%; display: flex; align-items: center; justify-content: space-between; gap: 28px; color: rgba(255, 255, 255, .94); font-family: "Spinnaker", Arial, sans-serif; font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; }
.portal-highlights-right { right: 8%; left: 20%; }
.portal-highlights span { display: inline-flex; align-items: center; gap: 10px; max-width: 178px; line-height: 1.38; }
.portal-highlights .icon { width: 24px; height: 24px; stroke-width: 1.45; }
.portal-copy { width: min(600px, calc(100% - 48px)); padding: 0 24px 12px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.portal-copy h1, .portal-copy h2 { margin: 0; color: #fff; font-family: "Bodoni Bk BT", "Bodoni MT", Didot, "Times New Roman", Georgia, serif; font-size: clamp(4.55rem, 6.25vw, 6.25rem); font-weight: 400; letter-spacing: .012em; line-height: .9; text-transform: uppercase; text-shadow: 0 4px 30px rgba(0, 0, 0, .52); }
.portal-copy > p:not(.portal-kicker) { margin: 0; font-family: "Spinnaker", Arial, sans-serif; font-size: clamp(.84rem, 1.08vw, 1.04rem); letter-spacing: .3em; line-height: 1.25; text-transform: uppercase; }
.portal-choice-jewelry .portal-copy > p:not(.portal-kicker) { color: #c6a15b; }
.portal-choice-sport .portal-copy > p:not(.portal-kicker) { color: #39b866; }
.portal-kicker { order: 3; margin: 0 0 4px; color: rgba(255, 255, 255, .92); font-family: "Spinnaker", Arial, sans-serif; font-size: .82rem; letter-spacing: .045em; line-height: 1.3; }
.portal-kicker::before { content: "◇"; width: 232px; height: 10px; margin: 0 auto; display: flex; align-items: center; justify-content: center; color: currentColor; font-family: Georgia, serif; font-size: .7rem; line-height: 1; background: linear-gradient(currentColor, currentColor) left center / 41% 1px no-repeat, linear-gradient(currentColor, currentColor) right center / 41% 1px no-repeat; opacity: .92; }
.portal-choice-jewelry .portal-kicker::before { color: #c6a15b; }
.portal-choice-sport .portal-kicker::before { color: #39b866; }
.portal-button { order: 4; min-width: 286px; min-height: 54px; padding: 13px 28px; display: inline-flex; align-items: center; justify-content: center; gap: 20px; border: 1px solid rgba(255, 255, 255, .08); border-radius: 2px; font-family: "Spinnaker", Arial, sans-serif; font-size: .86rem; letter-spacing: .1em; text-transform: uppercase; box-shadow: 0 12px 30px rgba(0, 0, 0, .2); transition: transform .2s ease, filter .2s ease; }
.portal-button:hover { transform: translateY(-2px); filter: brightness(1.08); }
.portal-choice-jewelry .portal-button { background: linear-gradient(135deg, #d2ae67, #c6a15b); color: #fff; }
.portal-choice-sport .portal-button { background: #087a38; color: #fff; }
.portal-button-sport-shortcut { display: none; }
.portal-sport-teaser { display: none; }
.portal-assurances { min-height: 64px; padding: 14px clamp(22px, 5vw, 78px); display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: center; gap: 18px; background: #101312; font-family: "Spinnaker", Arial, sans-serif; font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; }
.portal-assurances span { display: inline-flex; align-items: center; justify-content: center; gap: 10px; text-align: center; }
.portal-assurances .icon { width: 20px; height: 20px; stroke-width: 1.45; }
.portal-assurances strong { color: #fff; font-size: .86rem; letter-spacing: .04em; }
.portal-assurances small { display: none; }
.portal-socials { display: flex; align-items: center; justify-content: center; gap: 11px; }
.portal-social-icons { display: flex; align-items: center; gap: 6px; }
.portal-social-icons a { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .68); border-radius: 6px; color: #fff; transition: background .2s ease, color .2s ease, transform .2s ease; }
.portal-social-icons a:hover { background: #fff; color: #15120e; transform: translateY(-2px); }
.portal-social-icons .icon { width: 16px; height: 16px; }
.portal-socials > strong { white-space: nowrap; }
.portal-mobile-break { display: none; }
.portal-mobile-actions { display: none; }

@media (min-width: 1051px) and (max-height: 899px) {
  .portal-choice-jewelry { background: #100d0a; }
  .portal-choice-jewelry .portal-photo {
    object-position: 47% center;
    transform: translateY(-8%) scale(1.14);
    transform-origin: 50% 50%;
  }
  .portal-choice-jewelry:hover .portal-photo { transform: translateY(-8%) scale(1.1685); }
}

@media (min-width: 1051px) and (min-height: 900px) {
  .portal-choice-jewelry { background: #100d0a; }
  .portal-choice-jewelry .portal-photo {
    object-position: 47% center;
    transform: scale(1.12);
    transform-origin: 50% 72%;
  }
  .portal-choice-jewelry:hover .portal-photo { transform: scale(1.130667); }
  .portal-choice-sport { background: #080d0a; }
  .portal-choice-sport .portal-photo {
    object-fit: contain;
    object-position: center top;
    background: transparent;
    transform-origin: center top;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 42%, rgba(0, 0, 0, .94) 50%, transparent 72%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 42%, rgba(0, 0, 0, .94) 50%, transparent 72%);
  }
  .portal-choice-sport .portal-photo { transform: scale(1.05); }
  .portal-choice-sport:hover .portal-photo { transform: scale(1.06); }
  .portal-copy { width: min(650px, calc(100% - 48px)); padding-bottom: 50px; }
  .portal-copy > p:not(.portal-kicker) { margin-top: 18px; }
  .portal-kicker { margin-bottom: 24px; font-size: .9rem; }
  .portal-kicker::before { width: 280px; height: 36px; margin: 8px auto; font-size: .9rem; }
  .portal-button { min-height: 62px; padding-block: 16px; }
}

.sport-intro { position: relative; min-height: 100svh; display: grid; place-items: center; overflow: hidden; background: #101312; color: #fff; isolation: isolate; }
.sport-intro-photo, .sport-intro-shade { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; }
.sport-intro-photo { max-width: none; object-fit: cover; object-position: center; }
.sport-intro-shade { z-index: -1; background: linear-gradient(90deg, rgba(6, 77, 41, .92), rgba(16, 19, 18, .35) 58%, rgba(16, 19, 18, .66)); }
.sport-intro-content { padding-block: 150px 80px; }
.sport-intro-content h1 { max-width: 750px; margin-bottom: 25px; font-size: clamp(3rem, 7vw, 6.5rem); text-transform: uppercase; }
.sport-intro-content > p:not(.eyebrow) { max-width: 620px; margin-bottom: 32px; font-size: 1.1rem; }
.sport-intro .eyebrow { color: #39b866; }
.sport-intro .button { border-color: #087a38; background: #087a38; }
.sport-back { position: absolute; z-index: 2; top: 20px; left: clamp(24px, 5vw, 72px); display: grid; justify-items: start; gap: 3px; }
.sport-back img { width: clamp(150px, 14vw, 205px); height: auto; object-fit: contain; }
.sport-back small { color: #eef2f0; font-family: "Spinnaker", Arial, sans-serif; font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; }

.hero { position: relative; height: min(598px, calc(100vh - var(--header-height))); min-height: 560px; overflow: hidden; background: #d8cfcc; }
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide { opacity: 0; transition: opacity .75s ease; }
.hero-slide.is-active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(30, 25, 23, .08), transparent 60%); pointer-events: none; }
.hero-panel { position: absolute; z-index: 2; top: 49%; left: 50%; width: min(538px, calc(100% - 40px)); padding: 28px 44px 18px; text-align: center; background: rgba(255, 255, 255, .64); backdrop-filter: blur(4px); transform: translate(-50%, -50%); }
.hero-panel h1 { margin-bottom: 24px; font-size: 1.5rem; font-weight: 400; letter-spacing: .23em; line-height: 1; }
.hero-panel h1 { font-family: "Overlock", Arial, sans-serif; }
.hero-panel h1 strong { display: block; font-family: "Serona", Arial, sans-serif; font-size: 45px; font-weight: 400; letter-spacing: 6px; line-height: 42px; }
.hero-panel h1 span { display: block; font-family: Arial, Helvetica, sans-serif; font-size: 20px; letter-spacing: 6px; line-height: 20px; }
.hero-panel .button { margin-bottom: -41px; min-width: 170px; }
.carousel-dots { position: absolute; z-index: 3; right: 0; bottom: 36px; left: 0; display: flex; justify-content: center; gap: 10px; }
.carousel-dots button { width: 10px; height: 10px; padding: 0; border: 2px solid white; border-radius: 50%; background: transparent; box-shadow: 0 1px 3px rgba(0, 0, 0, .25); cursor: pointer; }
.carousel-dots button[aria-selected="true"] { background: white; }

.split-feature { min-height: 570px; display: grid; grid-template-columns: 1fr 1fr; }
.split-media { min-height: 520px; overflow: hidden; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(48px, 7vw, 112px); background: var(--paper); }
.split-copy h2 { margin-bottom: 26px; color: var(--sage); }
.split-copy > p:not(.eyebrow) { max-width: 570px; margin-bottom: 30px; }
.offer-section { min-height: 475px; grid-template-columns: 1fr 2fr; }
.offer-section .split-media { height: 475px; min-height: 475px; }
.offer-section .split-copy { padding-left: 256px; }
.offer-section .split-copy h2 { font-size: 3.5rem; line-height: normal; }
.offer-section .split-media img { object-position: center; }

.collection-preview { padding-top: 46px; background: var(--off-white); }
.collection-preview .section-heading { margin-bottom: 57px; }
.collection-preview .collection-toolbar { margin-bottom: 206px; }
.collection-preview .section-heading h2 { font-size: 2.8125rem; line-height: 1.4; }
.collection-preview .collection-toolbar, .collection-preview .product-grid { max-width: 960px; margin-inline: auto; }
.collection-preview .product-grid { gap: 12px 20px; }
.collection-preview .product-card-body { min-height: 92px; }
.section-heading { max-width: 850px; margin: 0 auto clamp(44px, 6vw, 80px); text-align: center; }
.section-heading h2 { margin-bottom: 22px; color: var(--sage); }
.section-heading p { color: var(--muted); }
.collection-toolbar { margin-bottom: 35px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.collection-toolbar h3 { margin: 0; font-size: clamp(1.35rem, 2vw, 1.75rem); }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(24px, 3vw, 38px) 24px; }
.product-card { min-width: 0; background: white; border: 1px solid #bfc4c2; transition: transform .25s, box-shadow .25s; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-image { position: relative; display: block; aspect-ratio: 1 / 1; overflow: hidden; background: #eee; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.product-card:hover .product-image img { transform: scale(1.035); }
.product-badge { position: absolute; z-index: 1; top: 12px; left: 0; padding: 7px 13px; color: white; background: rgba(12, 14, 14, .9); border-radius: 0 20px 20px 0; font-size: .72rem; }
.catalog-photo-code { position: absolute; z-index: 1; top: 12px; right: 0; padding: 7px 11px; border-radius: 20px 0 0 20px; background: rgba(12, 14, 14, .9); color: #fff; font-family: "Spinnaker", Arial, sans-serif; font-size: .66rem; font-weight: 600; letter-spacing: .045em; line-height: 1.2; }
.product-card-body { min-height: 102px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 18px 14px; text-align: center; }
.product-card-body h3 { margin: 0 0 8px; font-family: "Overlock", Arial, sans-serif; font-size: 1rem; font-weight: 400; line-height: 1.4; }
.product-card-body p { margin: 0; font-size: .9rem; }

.purchase-section { width: min(1265px, 100%); min-height: 536px; margin-inline: auto; grid-template-columns: .585fr 1fr; background: var(--warm); padding: 0; }
.purchase-section .split-media { height: 536px; min-height: 536px; }
.purchase-section .split-copy { height: 536px; margin: 0; box-shadow: none; }
.purchase-section .split-copy h2 { font-size: 2.1875rem; line-height: 1.18; }
.benefit-list { margin: 0 0 32px; padding: 0; list-style: none; }
.benefit-list li { display: flex; align-items: center; gap: 12px; margin: 12px 0; font-weight: 600; }
.benefit-list .icon { color: var(--sage-dark); }

.location-strip { min-height: 530px; display: grid; grid-template-columns: 1fr 1fr; }
.location-image { overflow: hidden; }
.location-image img { width: 100%; height: 100%; object-fit: cover; }
.location-copy { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 60px; text-align: center; background: var(--mist); }
.location-copy > .icon { width: 33px; height: 33px; margin-bottom: 24px; color: var(--sage-dark); }
.location-copy h2 { max-width: 320px; margin-bottom: 26px; color: var(--sage); font-size: 1.4375rem; font-weight: 400; line-height: 1.26; }
.location-copy p { max-width: 320px; margin-bottom: 30px; color: var(--sage); font-family: "Spinnaker", Arial, sans-serif; font-size: 1.4375rem; line-height: 1.18; }

.page-hero { position: relative; min-height: 390px; display: grid; place-items: center; overflow: hidden; text-align: center; background: linear-gradient(135deg, #e7e1df, #d8e2e1); }
.compact-hero { min-height: 390px; }
.page-hero .shell { max-width: 900px; }
.page-hero h1 { margin-bottom: 22px; text-transform: uppercase; letter-spacing: .14em; }
.page-hero p:last-child { margin-inline: auto; max-width: 650px; }
.store-hero { min-height: 620px; }
.store-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.68); }
.page-hero-overlay { position: relative; z-index: 1; padding: 40px; color: white; }
.page-hero-overlay .eyebrow { color: #dce7e5; }
.page-hero-overlay h1 { max-width: 900px; margin: 0; }
.promo-hero { background: linear-gradient(135deg, #eee8e4 0%, #d9e4e2 100%); }
.trust-hero { background: linear-gradient(135deg, #e3eeee, #f2e8e5); }

.filter-bar { margin-bottom: 45px; display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.filter-bar button { padding: 10px 18px; border: 1px solid var(--line); background: white; cursor: pointer; }
.filter-bar button:hover, .filter-bar button.is-active { color: white; background: var(--ink); border-color: var(--ink); }
.product-card.is-hidden { display: none; }

.collection-intro { padding: 52px 0 38px; text-align: center; }
.collection-intro h1 { margin-bottom: 16px; font-size: 1.875rem; text-transform: uppercase; letter-spacing: 0; }
.collection-intro p:last-child { max-width: 620px; margin: 0 auto; color: var(--muted); }
.collection-catalog { max-width: 980px; padding: 12px 0 100px; }
.collection-catalog .product-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; }

.store-showcase { min-height: 670px; display: grid; grid-template-columns: .95fr 1.05fr; }
.store-copy { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: clamp(50px, 7vw, 110px); text-align: center; background: var(--off-white); }
.store-copy h1 { max-width: 260px; margin-bottom: 18px; color: var(--sage); font-size: 1.5625rem; font-weight: 400; line-height: 1.16; text-transform: uppercase; }
.store-copy h2 { margin-bottom: 20px; color: var(--sage); font-size: 1.25rem; }
.store-copy p { margin-bottom: 8px; display: flex; align-items: center; gap: 8px; color: var(--sage); font-size: .9375rem; font-weight: 400; }
.store-copy .button { margin-top: 20px; }
.store-visual { min-height: 670px; overflow: hidden; }
.store-visual img { width: 100%; height: 100%; object-fit: cover; }

.about-page { min-height: 0; }
.about-intro { padding: 28px 0 40px; text-align: center; }
.about-intro h1 { margin-bottom: 34px; font-size: 1.25rem; text-transform: uppercase; letter-spacing: 0; }
.about-intro h1::after { content: ""; width: 118px; height: 1px; margin: 18px auto 0; display: block; background: var(--sage); }
.about-points { width: max-content; max-width: 100%; margin: 0 auto; padding: 0; list-style: none; text-align: left; }
.about-points li { display: flex; align-items: center; gap: 10px; margin: 7px 0; line-height: 1.45; }
.about-points .icon { color: var(--sage-dark); }
.about-gallery { max-width: 785px; padding-bottom: 37px; display: grid; grid-template-columns: 1.32fr 1fr; gap: 14px; align-items: stretch; }
.about-gallery img { width: 100%; height: 297px; object-fit: cover; }

.promos { display: grid; }
.promo-card { height: 660px; min-height: 660px; display: grid; grid-template-columns: 1fr 1fr; background: var(--off-white); }
.promo-card:nth-child(odd) .promo-image { order: 2; }
.promo-image { height: 660px; }
.promo-image img { width: 100%; height: 100%; object-fit: cover; }
.promo-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(45px, 6vw, 90px); }
.promo-copy h1, .promo-copy h2 { color: var(--sage); font-size: clamp(2.1875rem, 2.8vw, 2.5rem); line-height: 1.18; text-transform: uppercase; }
.promo-card:nth-child(1) .promo-copy { padding-left: 113px; }
.promo-card:nth-child(1) .promo-copy { position: relative; top: 7px; }
.promo-card:nth-child(2) .promo-copy { padding-left: 158px; }
.promo-card:nth-child(2) .promo-copy { position: relative; top: 33px; }
.promo-card:nth-child(2) .promo-copy h2 { font-size: 2.1875rem; }
.promo-card:nth-child(3) .promo-copy { padding-left: 168px; }
.promo-card:nth-child(3) .promo-copy { position: relative; top: 45px; }
.promo-price { color: var(--sage-dark); font-size: 1.45rem; font-weight: 700; }
.promo-price small { display: block; margin-top: 5px; color: var(--muted); font-size: .72rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.promo-commercial-note { margin: 0; padding: 24px max(24px, calc((100vw - 1180px) / 2)); display: grid; gap: 6px; border-top: 1px solid var(--line); background: #f4efe7; color: #61584e; font-size: .84rem; line-height: 1.5; text-align: center; }
.promo-commercial-note strong { color: #30271f; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; }
.promo-copy ul { margin: 0 0 32px; padding: 0; list-style: none; }
.promo-copy li { display: flex; gap: 10px; margin: 11px 0; }
.promo-copy li .icon { color: var(--sage-dark); }

.trust-section { max-width: 1226px; }
.trust-copy { width: 460px; max-width: calc(100% - 32px); margin-left: 145px; padding: 35px 0 48px; }
.trust-copy h1, .trust-copy h2 { margin-bottom: 22px; color: var(--sage); font-size: 2.1875rem; line-height: 1.4; text-transform: uppercase; }
.trust-copy p { margin: 0; color: var(--muted); font-size: 1.125rem; line-height: 1.8; }
.trust-deliveries { padding-top: 58px; padding-bottom: 33px; }
.trust-deliveries .trust-copy { padding-top: 0; padding-bottom: 67px; }
.client-gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 27px; }
.client-photo { margin: 0; overflow: hidden; background: #eee; }
.client-photo img { width: 100%; height: 100%; aspect-ratio: 6 / 7; object-fit: cover; transition: transform .5s; }
.client-photo:hover img { transform: scale(1.03); }

.product-detail { width: min(889px, calc(100vw - 48px)); padding: 141px 0 60px; display: grid; grid-template-columns: 498fr 355fr; gap: 36px; align-items: start; }
.product-detail-media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: #eee; }
.product-detail-media > img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-copy { padding-top: 0; }
.product-detail-copy > .eyebrow { display: none; }
.product-detail-copy h1 { margin-bottom: 24px; font-family: "Overlock", Arial, sans-serif; font-size: 2rem; line-height: 1.2; }
.detail-price { margin-bottom: 26px; font-size: 1.75rem; }
.detail-price small { display: block; margin-top: 4px; color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .15em; }
.detail-description { margin-bottom: 30px; color: #444; }
.includes { margin: 0 0 20px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.includes summary { font-weight: 650; cursor: pointer; }
.includes ul { margin: 18px 0 0; padding: 0; list-style: none; }
.includes li { display: flex; align-items: center; gap: 10px; margin: 11px 0; color: #454a48; }
.includes li .icon { color: var(--sage-dark); }
.shipping-note { color: var(--muted); font-size: .82rem; }
.share-line { margin-top: 24px; display: flex; align-items: center; gap: 16px; color: var(--muted); font-size: .8rem; }
.share-line span { display: inline-flex; align-items: center; gap: 6px; margin-right: auto; }
.share-line a:hover { color: var(--ink); text-decoration: underline; }

.site-footer { padding: 15px 0 10px; border-top: 1px solid #efefef; background: white; }
.footer-inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.social-row { display: flex; gap: 12px; margin-bottom: 8px; }
.social-row a { width: 32px; height: 32px; display: grid; place-items: center; color: white; background: var(--ink); border-radius: 50%; transition: transform .2s, background .2s; }
.social-row a:hover { transform: translateY(-2px); background: var(--sage-dark); }
.social-row .icon { width: 17px; height: 17px; }
.footer-inner p { margin: 3px 0; display: flex; align-items: center; gap: 7px; font-size: .84rem; }
.copyright { color: #8a8d8b; font-size: .7rem !important; }
.floating-whatsapp { position: fixed; z-index: 90; right: 25px; bottom: 25px; width: 54px; height: 54px; display: grid; place-items: center; color: white; background: #1ca955; border-radius: 50%; box-shadow: 0 10px 30px rgba(0, 0, 0, .22); transition: transform .2s; }
.floating-whatsapp:hover { transform: translateY(-3px) scale(1.03); }
.floating-whatsapp .icon { width: 28px; height: 28px; }
.not-found { min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }

.reveal { opacity: 1; transform: none; transition: opacity .65s ease var(--delay, 0ms), transform .65s ease var(--delay, 0ms); }

@media (max-width: 1050px) {
  :root { --header-height: 72px; }
  .menu-toggle { display: inline-flex; }
  .menu-close { display: none; }
  .menu-open .menu-open { display: none; }
  .menu-open .menu-close { display: inline; }
  .main-nav { position: fixed; z-index: 99; inset: var(--header-height) 0 auto; max-height: calc(100vh - var(--header-height)); padding: 24px max(24px, calc((100vw - 700px) / 2)) 38px; display: grid; gap: 0; background: white; border-top: 1px solid var(--line); box-shadow: 0 24px 35px rgba(0, 0, 0, .12); transform: translateY(-120%); opacity: 0; visibility: hidden; transition: transform .3s, opacity .3s, visibility .3s; }
  .menu-open .main-nav { transform: translateY(0); opacity: 1; visibility: visible; }
  .main-nav a { padding: 17px 4px; border-bottom: 1px solid #eee; font-size: 1rem; }
  .main-nav a::after { display: none; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .collection-preview .section-heading { margin-bottom: 44px; }
  .collection-preview .collection-toolbar { margin-bottom: 35px; }
  .collection-catalog .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
  .purchase-section .split-copy { margin-left: -5%; }
  .store-showcase { grid-template-columns: 1fr; }
  .store-copy { min-height: 500px; }
  .store-visual { min-height: 560px; }
  .product-detail { padding-top: 60px; grid-template-columns: 1fr 1fr; gap: 38px; }
  .portal-highlights { right: 24px; left: 24px; justify-content: flex-start; }
  .portal-highlights-right { justify-content: flex-end; }
  .portal-highlights span:nth-child(2) { display: none; }
}

/* Las pantallas angostas de laptop conservan ambas líneas en una vista. */
@media (min-width: 701px) and (max-width: 900px) {
  .portal-brand { top: 12px; width: 280px; }
  .portal-brand-name { font-size: 3rem; }
  .portal-brand-country { width: 220px; margin-top: 5px; font-size: .58rem; }
  .portal-highlights { display: none; }
  .portal-copy { width: calc(100% - 24px); padding: 0 12px 10px; }
  .portal-copy h1,
  .portal-copy h2 { font-size: clamp(2.8rem, 7vw, 4rem); }
  .portal-copy > p:not(.portal-kicker) { font-size: .72rem; letter-spacing: .18em; }
  .portal-kicker { font-size: .74rem; }
  .portal-kicker::before { width: min(100%, 190px); }
  .portal-button { min-width: 220px; min-height: 48px; padding: 11px 18px; font-size: .72rem; }
  .portal-assurances { padding-inline: 18px; gap: 8px; font-size: .58rem; letter-spacing: .07em; }
  .portal-assurances strong { font-size: .72rem; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 32px, 620px); --shell-wide: min(100% - 32px, 680px); --header-height: 66px; }
  h1 { font-size: clamp(2.25rem, 12vw, 3.6rem); }
  h2 { font-size: clamp(1.85rem, 9vw, 2.8rem); }
  .section { padding-block: 72px; }
  .brand { gap: 8px; }
  .brand-name { font-size: 1.18rem; }
  .brand-mark { width: 26px; height: 37px; }
  .hero { height: 590px; min-height: 0; }
  .hero-slide img { object-position: center; }
  .hero-panel { width: calc(100% - 32px); padding: 24px 18px 14px; }
  .hero-panel h1 { font-size: clamp(1.25rem, 6vw, 1.75rem); letter-spacing: .16em; }
  .hero-panel h1 strong { font-size: clamp(2rem, 11vw, 2.8rem); letter-spacing: .14em; line-height: 1; }
  .hero-panel h1 span { font-size: clamp(.9rem, 4.6vw, 1.2rem); letter-spacing: .18em; line-height: 1.15; }
  .split-feature, .location-strip { grid-template-columns: 1fr; }
  .split-feature { min-height: 0; }
  .split-media { min-height: 0; aspect-ratio: 1 / 1; }
  .offer-section .split-media, .purchase-section .split-media { height: auto; min-height: 0; }
  .split-copy { padding: 55px 24px 65px; }
  .offer-section .split-copy { padding: 55px 24px 65px; }
  .offer-section .split-copy h2 { font-size: clamp(1.85rem, 9vw, 2.8rem); }
  .collection-toolbar { align-items: flex-start; flex-direction: column; }
  .product-grid { gap: 18px 12px; }
  .collection-preview .product-grid { gap: 18px 12px; }
  .product-card-body { min-height: 96px; padding: 14px 8px; }
  .product-card-body h3 { font-size: .82rem; }
  .product-card-body p { font-size: .82rem; }
  .product-badge { top: 8px; padding: 5px 9px; font-size: .61rem; }
  .catalog-photo-code { top: 8px; padding: 5px 6px; font-size: .52rem; letter-spacing: .02em; }
  .purchase-section { width: 100%; min-height: 0; padding: 0; }
  .purchase-section .split-copy { height: auto; margin: 0; box-shadow: none; }
  .location-strip { min-height: 0; }
  .location-image { aspect-ratio: 1.12 / 1; }
  .location-copy { padding: 65px 24px; }
  .page-hero, .compact-hero { min-height: 330px; }
  .store-hero { min-height: 500px; }
  .page-hero-overlay { padding: 25px; }
  .collection-intro { padding: 42px 0 30px; }
  .collection-catalog { padding-bottom: 72px; }
  .store-copy { min-height: 430px; padding: 54px 24px; }
  .store-copy h1 { margin-bottom: 34px; }
  .store-visual { min-height: 0; aspect-ratio: 1 / .86; }
  .about-intro { padding: 38px 0 42px; }
  .about-intro h1 { margin-bottom: 32px; }
  .about-gallery { grid-template-columns: 1fr; gap: 14px; padding-bottom: 50px; }
  .about-gallery img { height: min(82vw, 330px); object-fit: cover; }
  .promo-card { grid-template-columns: 1fr; }
  .promo-card { height: auto; min-height: 0; }
  .promo-card:nth-child(odd) .promo-image { order: 0; }
  .promo-image { height: auto; aspect-ratio: 1 / .86; }
  .promo-copy, .promo-card:nth-child(1) .promo-copy, .promo-card:nth-child(2) .promo-copy, .promo-card:nth-child(3) .promo-copy { top: 0; padding: 45px 24px 55px; }
  .trust-copy { width: auto; max-width: none; margin-left: 0; padding: 46px 0 34px; }
  .trust-copy h1, .trust-copy h2 { font-size: clamp(1.85rem, 9vw, 2.8rem); }
  .trust-deliveries { padding-top: 25px; }
  .trust-deliveries .trust-copy { padding-bottom: 34px; }
  .client-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .product-detail { padding-top: 12px; grid-template-columns: 1fr; gap: 36px; }
  .product-detail-copy { padding-top: 0; }
  .share-line { flex-wrap: wrap; }
  .floating-whatsapp { right: 16px; bottom: 16px; width: 50px; height: 50px; }
  .sport-intro-photo { object-position: 62% center; }
  .sport-intro-shade { background: linear-gradient(180deg, rgba(16, 19, 18, .28), rgba(6, 77, 41, .92)); }
  .sport-intro-content { align-self: end; padding-block: 170px 70px; }
  .sport-back { top: 20px; left: 20px; }
}

@media (max-width: 430px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
  .collection-catalog .product-grid { grid-template-columns: 1fr 1fr; gap: 18px 12px; }
  .hero-slide:nth-child(1) img { object-position: 58% center; }
  .hero-slide:nth-child(2) img { object-position: 61% center; }
  .hero-slide:nth-child(3) img { object-position: 55% center; }
  .button { width: 100%; }
  .hero-panel .button { width: auto; }
  .filter-bar { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; }
  .filter-bar button { flex: 0 0 auto; }
  .footer-inner p { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 700px) {
  .portal-page { min-height: 0; display: block; }
  .portal-brand {
    z-index: 8;
    top: 13px;
    width: 230px;
    pointer-events: auto;
  }
  .portal-brand-name { font-size: clamp(2rem, 10.5vw, 2.65rem); letter-spacing: .13em; }
  .portal-brand-country { width: 190px; margin-top: 4px; gap: 10px; font-size: .5rem; letter-spacing: .42em; }
  .portal-choices {
    position: relative;
    height: auto;
    min-height: 0;
    padding-block: 0 10px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    background: #0b0e0c;
    isolation: isolate;
  }
  .portal-choice {
    position: relative;
    width: 100%;
    height: 74svh;
    min-height: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    border: 0;
  }
  .portal-choice + .portal-choice { border: 0; border-top: 1px solid rgba(255, 255, 255, .16); }
  .portal-choice-jewelry {
    z-index: 2;
    clip-path: none;
  }
  .portal-choice-sport {
    z-index: 1;
    clip-path: none;
  }
  .portal-choice .portal-highlights { display: none; }
  .portal-choice-jewelry .portal-photo {
    object-fit: cover;
    object-position: 49% center;
    transform: translateY(-9%) scale(1.05);
    transform-origin: center;
  }
  .portal-choice-jewelry:hover .portal-photo { transform: translateY(-9%) scale(1.05); }
  .portal-choice-sport .portal-photo {
    object-fit: cover;
    object-position: 54% center;
    transform: scale(1.02);
    transform-origin: center;
  }
  .portal-choice-sport:hover .portal-photo { transform: scale(1.02); }
  .portal-choice-jewelry .portal-shade {
    background: linear-gradient(145deg, rgba(12, 9, 7, .28) 0%, rgba(12, 9, 7, .06) 42%, rgba(12, 9, 7, .78) 78%, rgba(12, 9, 7, .94) 100%);
  }
  .portal-choice-sport .portal-shade {
    background: linear-gradient(325deg, rgba(3, 15, 8, .88) 0%, rgba(5, 18, 11, .24) 56%, rgba(7, 10, 8, .5) 100%);
  }
  .portal-copy {
    position: relative;
    z-index: 3;
    width: calc(100% - 44px);
    padding: 0 0 28px;
    display: flex;
  }
  .portal-choice > .portal-copy { display: none; }
  .portal-copy h1,
  .portal-copy h2 { font-size: clamp(3rem, 13vw, 3.5rem); line-height: .92; }
  .portal-choice-sport .portal-copy h2 { font-size: clamp(2.55rem, 11vw, 3.1rem); }
  .portal-copy > p:not(.portal-kicker) { margin-top: 8px; font-size: .76rem; letter-spacing: .25em; }
  .portal-kicker { margin: 8px 0 11px; font-size: .88rem; line-height: 1.35; }
  .portal-kicker::before { width: min(100%, 300px); height: 13px; margin-bottom: 4px; }
  .portal-button { width: min(100%, 310px); min-width: 0; min-height: 52px; padding: 12px 20px; }
  .portal-mobile-actions { position: absolute; z-index: 6; inset: 0; display: block; pointer-events: none; }
  .portal-mobile-combined { position: absolute; top: calc(74svh - 69px); right: 22px; left: 22px; display: grid; gap: 10px; transform: translateY(-50%); }
  .portal-mobile-jewelry-copy { display: grid; justify-items: center; gap: 5px; text-align: center; }
  .portal-mobile-jewelry-copy h1,
  .portal-sport-teaser h2 { margin: 0; color: #fff; font-family: "Bodoni Bk BT", "Bodoni MT", Didot, "Times New Roman", Georgia, serif; font-weight: 400; letter-spacing: .012em; line-height: .92; text-transform: uppercase; text-shadow: 0 4px 30px rgba(0, 0, 0, .52); }
  .portal-mobile-jewelry-copy h1 { font-size: clamp(3rem, 13vw, 3.5rem); }
  .portal-mobile-subtitle { margin: 0; color: #c6a15b; font-family: "Spinnaker", Arial, sans-serif; font-size: .76rem; letter-spacing: .25em; text-transform: uppercase; }
  .portal-mobile-jewelry-claim { width: min(100%, 300px); margin: 3px 0 5px; color: rgba(255, 255, 255, .92); font-family: "Spinnaker", Arial, sans-serif; font-size: .88rem; line-height: 1.35; }
  .portal-mobile-jewelry-claim::before { content: "◇"; height: 13px; margin-bottom: 4px; display: flex; align-items: center; justify-content: center; color: #c6a15b; font-family: Georgia, serif; font-size: .7rem; line-height: 1; background: linear-gradient(currentColor, currentColor) left center / 41% 1px no-repeat, linear-gradient(currentColor, currentColor) right center / 41% 1px no-repeat; }
  .portal-mobile-combined .portal-button { width: min(100%, 310px); min-width: 0; min-height: 52px; padding: 12px 20px; pointer-events: auto; }
  .portal-mobile-jewelry-copy > .portal-button { background: linear-gradient(135deg, #d2ae67, #c6a15b); color: #fff; }
  .portal-sport-teaser { display: grid; justify-items: center; gap: 4px; text-align: center; }
  .portal-sport-teaser p { margin: 0; color: rgba(255, 255, 255, .94); font-size: .88rem; letter-spacing: .045em; }
  .portal-sport-teaser-line { width: min(100%, 300px); height: 13px; margin: 2px 0; display: flex; align-items: center; justify-content: center; color: #39b866; font-family: Georgia, serif; font-size: .7rem; line-height: 1; background: linear-gradient(currentColor, currentColor) left center / 41% 1px no-repeat, linear-gradient(currentColor, currentColor) right center / 41% 1px no-repeat; }
  .portal-sport-teaser-line::before { content: "◇"; }
  .portal-sport-teaser strong { color: #39b866; font-family: "Spinnaker", Arial, sans-serif; font-size: .76rem; font-weight: 400; letter-spacing: .25em; }
  .portal-sport-teaser h2 { font-size: clamp(2.55rem, 11vw, 3.1rem); line-height: .92; }
  .portal-sport-teaser .portal-button-sport-shortcut { order: -1; margin-bottom: 4px; display: inline-flex; background: #087a38; color: #fff; }
  .portal-mobile-action { position: absolute; right: 0; left: 0; height: 50%; display: block; }
  .portal-mobile-action-jewelry { top: 0; clip-path: none; }
  .portal-mobile-action-sport { top: 50%; clip-path: none; }
  .portal-mobile-action-copy {
    position: absolute;
    width: auto;
    max-width: calc(100% - 44px);
    min-width: 0;
    display: grid;
    gap: 10px;
  }
  .portal-mobile-action-copy strong {
    display: block;
    max-width: 100%;
    color: #fff;
    font-family: "Bodoni Bk BT", "Bodoni MT", Didot, "Times New Roman", Georgia, serif;
    font-size: clamp(2.35rem, 12vw, 3.2rem);
    font-weight: 400;
    letter-spacing: .01em;
    line-height: .9;
    white-space: nowrap;
    text-transform: uppercase;
    text-shadow: 0 4px 24px rgba(0, 0, 0, .7);
  }
  .portal-mobile-action-copy > span {
    width: 160px;
    min-height: 42px;
    padding: 10px 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 2px;
    color: #fff;
    font-family: "Spinnaker", Arial, sans-serif;
    font-size: .63rem;
    font-weight: 400;
    letter-spacing: .1em;
    line-height: 1.15;
    text-transform: uppercase;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .22);
  }
  .portal-mobile-action-copy .icon { width: 14px; height: 14px; }
  .portal-mobile-action-jewelry .portal-mobile-action-copy { top: 61%; left: 22px; }
  .portal-mobile-action-jewelry .portal-mobile-action-copy > span { background: #c6a15b; }
  .portal-mobile-action-sport .portal-mobile-action-copy {
    right: 22px;
    left: 22px;
    bottom: 8%;
    justify-items: end;
    text-align: right;
  }
  .portal-mobile-action-sport .portal-mobile-action-copy strong {
    font-size: clamp(1.75rem, 8.4vw, 2.25rem);
    letter-spacing: 0;
  }
  .portal-mobile-action-sport .portal-mobile-action-copy > span { background: #087a38; }
  .portal-assurances {
    position: relative;
    z-index: 7;
    margin-top: -192px;
    display: grid;
    background: rgba(16, 19, 18, .15);
    min-height: 0;
    padding: 0 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .045em;
  }
  .portal-assurances > span {
    min-width: 0;
    min-height: 96px;
    padding: 12px 8px;
    flex-direction: column;
    gap: 7px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    line-height: 1.25;
  }
  .portal-assurances > .portal-socials { min-width: 0; min-height: 96px; padding: 12px 8px; flex-direction: column; gap: 9px; border-right: 1px solid rgba(255, 255, 255, .12); border-bottom: 1px solid rgba(255, 255, 255, .12); }
  .portal-assurances > span:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, .12); }
  .portal-assurances > span:nth-child(n + 3) { border-bottom: 0; }
  .portal-assurances .icon { width: 30px; height: 30px; color: #fff; }
  .portal-assurances strong { color: #fff; font-size: 1rem; }
  .portal-mobile-break { display: block; }
  .portal-assurances small {
    display: block;
    color: rgba(255, 255, 255, .84);
    font-size: .68rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.25;
    text-transform: none;
  }
}

/* Portada LAZOS Joyería: sistema visual independiente de las demás rutas. */
.jewelry-body {
  --jewelry-gold: #c6a15b;
  --jewelry-gold-dark: #8e6c32;
  --jewelry-ink: #11100f;
  --jewelry-ivory: #f7f3ec;
  background: var(--jewelry-ink);
  color: var(--jewelry-ivory);
  font-family: "Spinnaker", Arial, sans-serif;
}
.jewelry-body { --jewelry-header-height: 98px; }
.jewelry-body #contenido { min-height: 100svh; }
.jewelry-shell { width: min(1480px, calc(100% - 96px)); margin-inline: auto; }
.jewelry-header { position: relative; z-index: 30; height: var(--jewelry-header-height); display: flex; align-items: center; background: rgba(13, 13, 12, .98); border-bottom: 1px solid rgba(198, 161, 91, .18); }
.jewelry-header-inner { height: 100%; display: grid; grid-template-columns: 260px 1fr auto; align-items: center; gap: 34px; }
.jewelry-brand { width: max-content; display: inline-flex; align-items: center; justify-self: start; gap: 13px; color: var(--jewelry-gold); user-select: none; }
.jewelry-brand:focus-visible { outline: 1px solid var(--jewelry-gold); outline-offset: 6px; }
.jewelry-brand img { width: 47px; height: 55px; object-fit: contain; filter: brightness(0) invert(70%) sepia(38%) saturate(785%) hue-rotate(358deg) brightness(91%) contrast(87%); }
.jewelry-brand > span { display: grid; gap: 2px; }
.jewelry-brand strong { font-family: "Serona", "Spinnaker", Arial, sans-serif; font-size: 2rem; font-weight: 400; letter-spacing: .14em; line-height: .9; }
.jewelry-brand small { font-size: .525rem; letter-spacing: .025em; text-transform: uppercase; }
.jewelry-nav { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2.2vw, 38px); }
.jewelry-nav a { position: relative; padding: 18px 0; color: rgba(255, 255, 255, .92); font-size: .72rem; letter-spacing: .045em; text-transform: uppercase; white-space: nowrap; }
.jewelry-nav a::after { content: ""; position: absolute; right: 50%; bottom: 8px; left: 50%; height: 1px; background: var(--jewelry-gold); transition: left .2s ease, right .2s ease; }
.jewelry-nav a:hover::after,
.jewelry-nav a[aria-current="page"]::after { right: 0; left: 0; }
.jewelry-nav .jewelry-portal-link { color: var(--jewelry-gold); font-size: .64rem; letter-spacing: .06em; }
.jewelry-header-cta { min-height: 48px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; background: var(--jewelry-gold); color: #17130e; font-size: .71rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; transition: background .2s ease, transform .2s ease; }
.jewelry-header-cta:hover { background: #ddb86d; transform: translateY(-1px); }
.jewelry-header-cta .icon { width: 18px; height: 18px; }
.jewelry-mobile-home-link { display: none; }
.jewelry-menu-toggle { color: var(--jewelry-gold); }

.jewelry-hero { position: relative; min-height: min(690px, calc(100svh - var(--jewelry-header-height))); overflow: hidden; isolation: isolate; }
.jewelry-hero-photo,
.jewelry-hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.jewelry-hero-photo { left: auto; right: 0; z-index: -2; width: 68%; max-width: none; object-fit: cover; object-position: 52% 25%; }
.jewelry-hero-shade { z-index: -1; background: linear-gradient(90deg, rgba(9, 9, 8, .99) 0%, rgba(9, 9, 8, .98) 36%, rgba(10, 10, 9, .94) 43%, rgba(10, 10, 9, .55) 52%, rgba(10, 10, 9, .08) 67%, rgba(10, 10, 9, .16) 100%), linear-gradient(0deg, rgba(8, 8, 7, .38), transparent 32%); }
.jewelry-hero-inner { min-height: inherit; display: flex; align-items: center; }
.jewelry-hero-copy { width: min(590px, 45vw); padding: 48px 0 30px; }
.jewelry-script { margin: 0 0 4px; color: var(--jewelry-gold); font-family: "Segoe Script", "Brush Script MT", cursive; font-size: clamp(2rem, 2.7vw, 3.4rem); line-height: 1.15; transform: rotate(-3deg); }
.jewelry-hero h1 { margin: 0; color: var(--jewelry-gold); font-family: "Bodoni MT", Didot, "Times New Roman", Georgia, serif; font-size: clamp(4rem, 5.45vw, 6.6rem); font-weight: 400; letter-spacing: .012em; line-height: .88; text-transform: uppercase; }
.jewelry-hero h1 span { display: block; color: #fff; }
.jewelry-ornament { width: min(390px, 100%); margin: 20px 0 16px; display: flex; align-items: center; gap: 10px; color: var(--jewelry-gold); }
.jewelry-ornament span { height: 1px; flex: 1; background: currentColor; opacity: .9; }
.jewelry-ornament .icon { width: 19px; height: 19px; }
.jewelry-lead { margin: 0; color: rgba(255, 255, 255, .88); font-family: "Overlock", Arial, sans-serif; font-size: 1.05rem; line-height: 1.65; }
.jewelry-actions { margin-top: 28px; display: flex; gap: 14px; }
.jewelry-button { min-width: 220px; min-height: 56px; padding: 14px 23px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 1px solid var(--jewelry-gold); font-size: .72rem; font-weight: 700; letter-spacing: .055em; text-transform: uppercase; transition: transform .2s ease, background .2s ease; }
.jewelry-button:hover { transform: translateY(-2px); }
.jewelry-button-gold { background: var(--jewelry-gold); color: #17130e; }
.jewelry-button-outline { background: rgba(12, 11, 10, .25); color: #fff; }
.jewelry-button .icon { width: 17px; height: 17px; }
.jewelry-hero-benefits { margin: 42px 0 0; padding: 0; display: flex; align-items: center; gap: 0; list-style: none; }
.jewelry-hero-benefits li { min-width: 0; padding: 0 30px; display: flex; align-items: center; gap: 12px; border-left: 1px solid rgba(198, 161, 91, .35); color: rgba(255, 255, 255, .82); font-size: .72rem; line-height: 1.45; }
.jewelry-hero-benefits li:first-child { padding-left: 0; border-left: 0; }
.jewelry-hero-benefits .icon { width: 31px; height: 31px; color: var(--jewelry-gold); stroke-width: 1.35; }
.jewelry-hero-benefits strong { color: var(--jewelry-gold); font-weight: 400; }

.jewelry-value-strip { padding: 36px max(48px, calc((100vw - 1480px) / 2)); display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); background: var(--jewelry-ivory); color: #3b2d1b; }
.jewelry-value-strip article { min-height: 105px; padding: 8px 34px; display: flex; align-items: center; justify-content: center; gap: 22px; border-left: 1px solid rgba(142, 108, 50, .24); text-align: left; }
.jewelry-value-strip article:first-child { border-left: 0; }
.jewelry-value-strip > article > .icon { width: 45px; height: 45px; color: var(--jewelry-gold-dark); stroke-width: 1.25; }
.jewelry-value-strip h2 { margin: 0 0 8px; color: var(--jewelry-gold-dark); font-family: "Bodoni MT", Didot, Georgia, serif; font-size: 1rem; letter-spacing: .04em; text-transform: uppercase; }
.jewelry-value-strip p { margin: 0; color: #2d2924; font-family: "Overlock", Arial, sans-serif; font-size: .79rem; line-height: 1.5; }
.jewelry-collections-teaser { min-height: 260px; padding: 52px 24px; display: grid; justify-items: center; align-content: center; background: radial-gradient(circle at 50% 0%, #24211d 0%, #11100f 60%); text-align: center; }
.jewelry-collections-teaser > p { margin: 0; color: var(--jewelry-gold); font-size: .66rem; letter-spacing: .34em; text-transform: uppercase; }
.jewelry-collections-teaser .jewelry-ornament { width: 90px; margin: 9px 0; }
.jewelry-collections-teaser .jewelry-ornament .icon { width: 12px; height: 12px; }
.jewelry-collections-teaser h2 { margin: 0 0 16px; color: #fff; font-family: "Bodoni MT", Didot, Georgia, serif; font-size: clamp(2.2rem, 3vw, 3.7rem); font-weight: 400; letter-spacing: .03em; text-transform: uppercase; }
.jewelry-collections-teaser > a { display: inline-flex; align-items: center; gap: 7px; color: var(--jewelry-gold); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.jewelry-collections-teaser > a .icon { width: 15px; height: 15px; }
.jewelry-body .floating-whatsapp { background: var(--jewelry-gold); color: #17130e; }
.jewelry-mobile-dock { display: none; }

@media (max-width: 1180px) {
  .jewelry-shell { width: min(100% - 48px, 1100px); }
  .jewelry-header-inner { grid-template-columns: 225px auto 1fr; }
  .jewelry-header-cta { display: none; }
  .jewelry-nav { justify-content: flex-end; gap: clamp(10px, 1.3vw, 20px); }
  .jewelry-nav a { font-size: .66rem; }
  .jewelry-hero-copy { width: min(560px, 52vw); }
  .jewelry-value-strip { padding-inline: 20px; }
  .jewelry-value-strip article { padding-inline: 20px; }
}

@media (max-width: 820px) {
  .jewelry-body { --jewelry-header-height: 78px; padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  .jewelry-home-body { padding-bottom: 0; }
  .jewelry-header { position: sticky; top: 0; z-index: 120; box-shadow: 0 8px 24px rgba(0, 0, 0, .28); }
  .jewelry-header-inner { grid-template-columns: minmax(0, 1fr) auto auto; gap: 8px; }
  .jewelry-brand img { width: 38px; height: 45px; }
  .jewelry-brand strong { font-size: 1.6rem; }
  .jewelry-mobile-home-link { min-width: 60px; min-height: 38px; padding: 8px 10px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(198, 161, 91, .72); border-radius: 6px; color: var(--jewelry-gold); font-size: .65rem; letter-spacing: .045em; text-transform: uppercase; }
  .jewelry-mobile-home-link:hover,
  .jewelry-mobile-home-link[aria-current="page"] { background: rgba(198, 161, 91, .12); border-color: var(--jewelry-gold); }
  .jewelry-menu-toggle { display: inline-flex; justify-self: end; }
  .jewelry-nav { position: absolute; z-index: 20; top: 100%; right: 12px; left: auto; width: min(290px, calc(100vw - 24px)); padding: 8px 18px 12px; display: none; flex-direction: column; align-items: stretch; gap: 0; background: rgba(17, 16, 15, .99); border: 1px solid rgba(198, 161, 91, .24); border-radius: 0 0 10px 10px; box-shadow: 0 18px 32px rgba(0, 0, 0, .38); }
  .menu-open .jewelry-nav { display: flex; }
  .jewelry-nav a { padding: 10px 0; border-bottom: 1px solid rgba(198, 161, 91, .18); color: var(--jewelry-gold); font-size: .66rem; }
  .jewelry-nav .jewelry-portal-link { margin-bottom: 5px; padding-inline: 12px; border: 1px solid rgba(198, 161, 91, .42); border-radius: 6px; background: rgba(198, 161, 91, .12); color: #fff; font-size: .66rem; font-weight: 700; }
  .jewelry-nav a:last-child { border-bottom: 0; }
  .jewelry-nav a::after { display: none; }
  .jewelry-value-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .jewelry-value-strip article:nth-child(3) { border-left: 0; }
  .jewelry-value-strip article:nth-child(n + 3) { border-top: 1px solid rgba(142, 108, 50, .24); }
  .jewelry-body .floating-whatsapp { display: none; }
  .jewelry-mobile-dock { position: fixed; z-index: 110; right: 10px; bottom: max(8px, env(safe-area-inset-bottom)); left: 10px; min-height: 64px; padding: 5px 7px; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); align-items: center; background: rgba(15, 14, 13, .96); border: 1px solid rgba(198, 161, 91, .5); border-radius: 17px; box-shadow: 0 14px 38px rgba(0, 0, 0, .42); backdrop-filter: blur(14px); }
  .jewelry-mobile-dock a { min-width: 0; min-height: 52px; display: flex; align-items: center; justify-content: center; color: rgba(255, 255, 255, .72); }
  .jewelry-mobile-dock a:hover,
  .jewelry-mobile-dock a[aria-current="page"] { color: var(--jewelry-gold); }
  .jewelry-mobile-dock .icon { width: 24px; height: 24px; stroke-width: 1.65; }
  .jewelry-mobile-dock .is-primary { color: var(--jewelry-gold); }
  .jewelry-mobile-dock .is-primary .icon { width: 45px; height: 45px; padding: 10px; color: #17130e; background: var(--jewelry-gold); border-radius: 50%; box-shadow: 0 7px 18px rgba(0, 0, 0, .38); }
}

@media (min-width: 621px) and (max-width: 1180px) {
  .jewelry-actions,
  .jewelry-hero-benefits { width: 100%; }
  .jewelry-button { min-width: 0; padding-inline: 12px; flex: 1 1 0; }
  .jewelry-hero-benefits li { padding-inline: 10px; flex: 1 1 0; gap: 8px; font-size: .64rem; }
  .jewelry-hero-benefits li:first-child { padding-left: 0; }
}

@media (max-width: 620px) {
  .jewelry-shell { width: calc(100% - 40px); }
  .jewelry-brand small { font-size: .42rem; }
  .jewelry-hero { min-height: 0; display: grid; background: #0c0b0a; }
  .jewelry-hero-photo { position: relative; left: 0; right: auto; z-index: 0; width: 100%; height: 410px; object-fit: cover; object-position: 67% 52%; transform: none; }
  .jewelry-hero-shade { display: none; }
  .jewelry-hero-inner { min-width: 0; min-height: 0; padding: 0 0 42px; background: linear-gradient(180deg, #0c0b0a, #11100f); }
  .jewelry-hero-copy { width: 100%; min-width: 0; padding: 34px 0 0; text-align: center; }
  .jewelry-script { margin-bottom: 6px; font-size: 1.85rem; }
  .jewelry-hero h1 { font-size: clamp(2.9rem, 13vw, 3.8rem); line-height: .9; }
  .jewelry-ornament { margin: 18px auto 14px; }
  .jewelry-lead { font-size: .96rem; line-height: 1.55; }
  .jewelry-actions { margin-top: 24px; flex-direction: column; align-items: center; gap: 10px; }
  .jewelry-button { width: min(100%, 320px); min-width: 0; min-height: 52px; }
  .jewelry-hero-benefits { margin-top: 32px; justify-content: center; }
  .jewelry-hero-benefits li { padding-inline: 11px; gap: 7px; font-size: .62rem; text-align: left; }
  .jewelry-hero-benefits .icon { width: 24px; height: 24px; }
  .jewelry-value-strip { padding: 20px 16px; }
  .jewelry-value-strip article { min-height: 138px; padding: 20px 12px; flex-direction: column; gap: 12px; text-align: center; }
  .jewelry-value-strip > article > .icon { width: 38px; height: 38px; }
  .jewelry-value-strip h2 { font-size: .82rem; }
  .jewelry-value-strip p { font-size: .72rem; }
}

.jewelry-collections-page { background: var(--jewelry-ivory); color: #211c17; }
.jewelry-collections-hero { position: relative; min-height: 315px; display: flex; align-items: center; overflow: hidden; isolation: isolate; background: #0d0c0b; color: #fff; }
.jewelry-collections-hero > img,
.jewelry-collections-hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.jewelry-collections-hero > img { z-index: -2; max-width: none; object-fit: cover; object-position: 54% 69%; transform: scale(1.01); }
.jewelry-collections-hero-shade { z-index: -1; background: linear-gradient(90deg, rgba(9, 9, 8, .98) 0%, rgba(9, 9, 8, .9) 35%, rgba(9, 9, 8, .38) 57%, rgba(9, 9, 8, .16) 100%); }
.jewelry-collections-hero-copy { padding-block: 46px; }
.jewelry-collections-hero h1 { margin: 0; font-family: "Bodoni MT", Didot, Georgia, serif; font-size: clamp(3.2rem, 4.5vw, 5.3rem); font-weight: 400; letter-spacing: .025em; line-height: .95; text-transform: uppercase; }
.jewelry-collections-hero .jewelry-ornament { width: 410px; margin: 20px 0; }
.jewelry-collections-hero-copy > p { margin: 0; color: rgba(255, 255, 255, .86); font-family: "Overlock", Arial, sans-serif; font-size: 1.05rem; line-height: 1.65; }
.jewelry-category-section { position: relative; padding: 44px max(54px, calc((100vw - 1540px) / 2)) 54px; background: var(--jewelry-ivory); }
.jewelry-category-section::before { content: ""; position: absolute; inset: -30px 0 auto; height: 30px; background: linear-gradient(180deg, rgba(13, 12, 11, 0) 0%, rgba(105, 96, 83, .2) 48%, var(--jewelry-ivory) 100%); pointer-events: none; }
.jewelry-category-section > header { display: grid; justify-items: center; text-align: center; }
.jewelry-category-section > header h2 { margin: 0; color: #34291d; font-family: "Bodoni MT", Didot, Georgia, serif; font-size: clamp(1.8rem, 2.25vw, 2.8rem); font-weight: 400; text-transform: uppercase; }
.jewelry-category-section > header .jewelry-ornament { width: 225px; margin: 10px 0 12px; }
.jewelry-category-section > header .jewelry-ornament .icon { width: 17px; height: 17px; }
.jewelry-category-intro { max-width: 620px; margin: 0 0 30px; color: #5b5146; font-family: "Overlock", Arial, sans-serif; font-size: .92rem; line-height: 1.55; }
.jewelry-category-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 20px; }
.jewelry-category-card { min-width: 0; display: flex; flex-direction: column; align-items: center; text-align: center; }
.jewelry-category-photo { width: 100%; aspect-ratio: 1 / 1.03; overflow: hidden; border-radius: 10px; background: #e8dfd3; }
.jewelry-category-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.jewelry-category-card:hover .jewelry-category-photo img { transform: scale(1.035); }
.jewelry-category-card h3 { margin: 16px 0 9px; color: #2c241b; font-family: "Spinnaker", Arial, sans-serif; font-size: .86rem; font-weight: 400; letter-spacing: .035em; line-height: 1.35; text-transform: uppercase; }
.jewelry-category-price { min-height: 1.15em; margin: -3px 0 8px; color: var(--jewelry-gold-dark); font-family: "Overlock", Arial, sans-serif; font-size: .82rem; font-weight: 700; }
.jewelry-category-card p { min-height: 46px; margin: 0 4px 16px; color: #3f3932; font-family: "Overlock", Arial, sans-serif; font-size: .78rem; line-height: 1.45; }
.jewelry-category-action { width: min(100%, 165px); min-height: 39px; margin-top: auto; padding: 9px 14px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(142, 108, 50, .65); color: var(--jewelry-gold-dark); font-size: .65rem; letter-spacing: .06em; text-transform: uppercase; transition: background .2s ease, color .2s ease; }
.jewelry-category-action:hover { background: var(--jewelry-gold-dark); color: #fff; }
.jewelry-all-products-link { width: fit-content; min-height: 48px; margin: 38px auto 0; padding: 12px 26px; display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--jewelry-gold-dark); color: #fff; font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.jewelry-all-products-link .icon { width: 16px; height: 16px; }
.jewelry-category-price-note { margin: 22px auto -20px; color: #716554; font-family: "Overlock", Arial, sans-serif; font-size: .78rem; line-height: 1.5; text-align: center; }
.jewelry-category-price-note strong { color: #4e3b24; }
.jewelry-gift-help { min-height: 190px; margin-top: 36px; padding: 30px 56px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; border-radius: 13px; background: linear-gradient(90deg, rgba(9, 9, 8, .98), rgba(14, 13, 12, .88)), url("/assets/site/purchase.webp") center 60% / cover; color: #fff; }
.jewelry-gift-help-icon { width: 74px; height: 74px; display: grid; place-items: center; border: 1px solid var(--jewelry-gold); border-radius: 50%; color: var(--jewelry-gold); }
.jewelry-gift-help-icon .icon { width: 35px; height: 35px; stroke-width: 1.4; }
.jewelry-gift-help small { color: var(--jewelry-gold); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; }
.jewelry-gift-help h2 { margin: 5px 0 0; font-family: "Bodoni MT", Didot, Georgia, serif; font-size: clamp(1.75rem, 2.2vw, 2.65rem); font-weight: 400; line-height: 1.08; }
.jewelry-gift-help > a { min-height: 46px; padding: 12px 23px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--jewelry-gold); color: #17130e; font-size: .67rem; font-weight: 700; letter-spacing: .045em; text-transform: uppercase; }

@media (max-width: 1180px) {
  .jewelry-category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px 20px; }
}

@media (max-width: 700px) {
  .jewelry-collections-hero { min-height: 0; display: grid; overflow: visible; }
  .jewelry-collections-hero > img { position: relative; z-index: 0; height: 300px; object-position: 62% 63%; transform: none; }
  .jewelry-collections-hero-shade { z-index: 1; inset: 0 0 auto; height: 300px; display: block; pointer-events: none; background: linear-gradient(180deg, rgba(9, 9, 8, .3) 0%, rgba(9, 9, 8, 0) 38%, rgba(9, 9, 8, .42) 100%); }
  .jewelry-collections-hero-copy { width: 100%; padding-block: 30px 34px; background: radial-gradient(circle at 50% 0%, #24211d, #0d0c0b 58%); text-align: center; }
  .jewelry-collections-hero h1 { font-size: clamp(2.45rem, 11.5vw, 3.3rem); }
  .jewelry-collections-hero .jewelry-ornament { width: min(100%, 300px); margin-inline: auto; }
  .jewelry-collections-hero-copy > p { font-size: .9rem; }
  .jewelry-category-section { padding: 40px 16px 40px; }
  .jewelry-category-section::before { inset-block-start: -34px; height: 34px; }
  .jewelry-category-section > header h2 { max-width: 330px; font-size: clamp(1.7rem, 8vw, 2.15rem); line-height: 1.05; }
  .jewelry-category-section > header .jewelry-ornament { margin-bottom: 10px; }
  .jewelry-category-intro { margin-bottom: 22px; font-size: .84rem; }
  .jewelry-category-grid { grid-template-columns: 1fr; gap: 14px; }
  .jewelry-category-card { padding: 12px; display: grid; grid-template-columns: 128px minmax(0, 1fr); grid-template-rows: auto auto 1fr auto; column-gap: 12px; align-items: start; border: 1px solid rgba(142, 108, 50, .2); border-radius: 13px; background: rgba(255, 255, 255, .72); box-shadow: 0 10px 28px rgba(69, 51, 29, .07); text-align: left; }
  .jewelry-category-photo { grid-column: 1; grid-row: 1 / 5; height: 100%; min-height: 166px; aspect-ratio: auto; border-radius: 9px; }
  .jewelry-category-card h3 { grid-column: 2; grid-row: 1; margin: 3px 0 5px; font-size: .98rem; }
  .jewelry-category-price { grid-column: 2; grid-row: 2; min-height: 1.1em; margin: 0 0 7px; font-size: .78rem; }
  .jewelry-category-card p { grid-column: 2; grid-row: 3; min-height: 0; margin: 0 0 12px; font-size: .76rem; line-height: 1.4; }
  .jewelry-category-action { grid-column: 2; grid-row: 4; width: 100%; min-height: 40px; margin: 0; }
  .jewelry-all-products-link { width: 100%; margin-top: 24px; }
  .jewelry-category-price-note { margin: 18px 4px 0; font-size: .7rem; }
  .jewelry-gift-help { padding: 30px 22px; grid-template-columns: 1fr; justify-items: center; gap: 18px; text-align: center; }
  .jewelry-gift-help h2 { font-size: 1.8rem; }
  .jewelry-gift-help > a { width: min(100%, 310px); }
}

.jewelry-catalog-page { min-height: 100vh; background: var(--jewelry-ivory); color: #2b251f; }
.jewelry-catalog-hero { padding: 62px 24px 54px; background: radial-gradient(circle at 72% 0%, #29251f 0%, #11100f 58%); color: #fff; text-align: center; }
.jewelry-catalog-hero .jewelry-shell { display: grid; justify-items: center; }
.jewelry-catalog-hero p { max-width: 650px; margin: 0; color: rgba(255, 255, 255, .78); font-family: "Overlock", Arial, sans-serif; font-size: 1rem; line-height: 1.6; }
.jewelry-catalog-hero > .jewelry-shell > p:first-child { color: var(--jewelry-gold); font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; }
.jewelry-catalog-hero h1 { margin: 10px 0 0; font-family: "Bodoni MT", Didot, Georgia, serif; font-size: clamp(2.7rem, 4.5vw, 5.2rem); font-weight: 400; line-height: 1; text-transform: uppercase; }
.jewelry-catalog-hero .jewelry-ornament { width: 280px; margin: 18px 0; }
.jewelry-catalog-content { padding: 42px max(24px, calc((100vw - 1320px) / 2)) 68px; }
.jewelry-catalog-filters { margin-bottom: 32px; }
.jewelry-catalog-filters button { border-color: rgba(142, 108, 50, .42); background: transparent; color: #3c3329; font-size: .7rem; letter-spacing: .05em; text-transform: uppercase; }
.jewelry-catalog-filters button:hover,
.jewelry-catalog-filters button.is-active { border-color: var(--jewelry-gold-dark); background: var(--jewelry-gold-dark); color: #fff; }
.chain-category-note { margin: -8px auto 32px; padding: 18px 22px; display: grid; gap: 5px; border: 1px solid rgba(142, 108, 50, .3); border-radius: 10px; background: #fffaf2; color: #4c3c29; text-align: center; }
.chain-category-note.is-hidden { display: none; }
.chain-category-note strong { color: var(--jewelry-gold-dark); font-family: "Bodoni MT", Didot, Georgia, serif; font-size: 1.12rem; font-weight: 600; }
.chain-category-note span { font-size: .85rem; line-height: 1.55; }
.chain-category-note small { color: #75644e; font-size: .72rem; line-height: 1.5; }
.jewelry-catalog-grid .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px 20px; }
.jewelry-catalog-grid .product-card { overflow: hidden; border-color: rgba(142, 108, 50, .25); border-radius: 10px; }
.jewelry-catalog-grid .product-card-body h3 { color: #2e271f; font-family: "Bodoni MT", Didot, Georgia, serif; font-size: .95rem; }
.jewelry-catalog-grid .product-card-body p { color: var(--jewelry-gold-dark); font-weight: 700; }
.jewelry-catalog-grid .chain-sample-card .product-card-body { min-height: 154px; gap: 5px; }
.jewelry-catalog-grid .sample-price { color: var(--jewelry-gold-dark); font-size: .9rem; font-weight: 700; white-space: nowrap; }
.jewelry-catalog-grid .chain-sample-card .product-card-body h3 { margin-bottom: 2px; }
.jewelry-catalog-grid .chain-sample-card .chain-sample-stock { color: #2e6b43; font-size: .72rem; letter-spacing: .04em; }
.jewelry-catalog-grid .chain-sample-card .chain-sample-price { font-size: .9rem; }
.jewelry-catalog-grid .chain-sample-card .chain-sample-included { color: #2e6b43; font-size: .78rem; letter-spacing: .045em; }
.chain-sample-card--included .product-badge { background: rgba(71, 105, 78, .94); }
.relicario-sample-card { min-width: 0; overflow: hidden; border: 1px solid rgba(142, 108, 50, .25); border-radius: 10px; background: #fff; transition: transform .25s, box-shadow .25s; }
.relicario-sample-card.is-hidden { display: none; }
.relicario-sample-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.relicario-sample-image { position: relative; display: block; aspect-ratio: 1 / 1; overflow: hidden; background: #e8dfd3; }
.relicario-sample-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.relicario-sample-card:hover .relicario-sample-image img { transform: scale(1.035); }
.relicario-sample-card .product-card-body h3 { color: #2e271f; font-family: "Bodoni MT", Didot, Georgia, serif; font-size: .95rem; }
.relicario-sample-card .product-card-body p { color: var(--jewelry-gold-dark); font-weight: 700; }

@media (max-width: 980px) {
  .jewelry-catalog-grid .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .jewelry-catalog-hero { padding: 42px 20px 38px; }
  .jewelry-catalog-hero h1 { font-size: clamp(2.25rem, 10vw, 3.15rem); }
  .jewelry-catalog-hero p { font-size: .88rem; }
  .jewelry-catalog-content { padding: 28px 16px 46px; }
  .jewelry-catalog-filters { margin-bottom: 23px; padding-bottom: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; overflow-x: visible; }
  .jewelry-catalog-filters button { width: 100%; min-height: 42px; padding-inline: 8px; }
  .chain-category-note { margin-top: 0; padding: 15px 13px; }
  .chain-category-note strong { font-size: 1rem; }
  .chain-category-note span { font-size: .76rem; }
  .chain-category-note small { font-size: .67rem; }
  .jewelry-catalog-grid .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 12px; }
  .jewelry-catalog-grid .product-card-body { min-height: 96px; padding: 13px 8px; }
  .jewelry-catalog-grid .product-card-body h3 { font-size: .8rem; line-height: 1.25; }
  .jewelry-catalog-grid .chain-sample-card .product-card-body { min-height: 150px; padding: 12px 6px; }
  .jewelry-catalog-grid .chain-sample-card .product-badge { padding-inline: 6px; font-size: .55rem; }
  .jewelry-catalog-grid .sample-price { font-size: .62rem; }
  .jewelry-catalog-grid .chain-sample-card .chain-sample-stock { font-size: .62rem; }
  .jewelry-catalog-grid .chain-sample-card .chain-sample-price { font-size: .76rem; }
  .jewelry-catalog-grid .chain-sample-card .chain-sample-included { font-size: .68rem; }
  .relicario-sample-card .product-card-body { min-height: 96px; padding: 13px 8px; }
  .relicario-sample-card .product-card-body h3 { font-size: .8rem; line-height: 1.25; }
}

/* Fichas de producto de Joyería: misma identidad negra, marfil y dorada. */
.jewelry-product-page { min-height: calc(100svh - 98px); padding: clamp(24px, 3vw, 42px) 0; background: radial-gradient(circle at 78% 0%, #fff 0%, var(--jewelry-ivory) 52%, #eee6da 100%); color: #2b251f; }
.jewelry-product-detail { width: min(1180px, calc(100% - 96px)); display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(390px, .85fr); align-items: center; gap: clamp(42px, 6vw, 82px); }
.jewelry-product-media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; border: 1px solid rgba(142, 108, 50, .3); border-radius: 16px; background: #e8dfd3; box-shadow: 0 24px 58px rgba(62, 45, 26, .16); }
.jewelry-product-media > img { width: 100%; height: 100%; object-fit: cover; }
.jewelry-product-detail--sample .jewelry-product-media { aspect-ratio: 3 / 4; background: #eee7dc; }
.jewelry-product-detail--sample .jewelry-product-media > img { object-fit: contain; }
.jewelry-product-media .product-badge { top: 18px; padding: 8px 16px; background: rgba(12, 11, 10, .92); border-radius: 0 20px 20px 0; font-family: "Spinnaker", Arial, sans-serif; font-size: .68rem; letter-spacing: .035em; }
.jewelry-product-copy { max-width: 500px; }
.jewelry-product-navigation { margin-bottom: 24px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.jewelry-product-back { width: fit-content; min-height: 36px; padding: 8px 15px 8px 11px; display: inline-flex; align-items: center; gap: 8px; border: 1px solid #c59749; border-radius: 18px; background: linear-gradient(90deg, #d7aa5c, #efca86); box-shadow: 0 7px 16px rgba(111, 81, 35, .16); color: #24190a; font-size: .74rem; font-weight: 700; letter-spacing: .075em; text-transform: uppercase; transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease; }
.jewelry-product-back .icon { width: 15px; height: 15px; transform: rotate(180deg); }
.jewelry-product-back:hover { border-color: #a7782f; background: linear-gradient(90deg, #e0b566, #f4d292); box-shadow: 0 10px 22px rgba(111, 81, 35, .24); color: #171006; transform: translateX(-2px); }
.jewelry-product-pager { display: flex; align-items: center; gap: 8px; }
.jewelry-product-step { width: 38px; min-width: 38px; height: 38px; padding: 0; flex: 0 0 38px; display: inline-flex; align-items: center; justify-content: center; overflow: hidden; border: 1px solid #c59749; border-radius: 50%; appearance: none; -webkit-tap-highlight-color: transparent; touch-action: manipulation; background: linear-gradient(135deg, #d7aa5c, #efca86); box-shadow: 0 7px 16px rgba(111, 81, 35, .16); color: #24190a; transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease; }
.jewelry-product-step:hover { border-color: #a7782f; background: linear-gradient(135deg, #e0b566, #f4d292); box-shadow: 0 10px 22px rgba(111, 81, 35, .24); color: #171006; transform: translateY(-2px); }
.jewelry-product-step:focus { border-radius: 50%; outline: 0; }
.jewelry-product-step:focus-visible { outline: 0; box-shadow: 0 0 0 3px rgba(197, 151, 73, .3), 0 7px 16px rgba(111, 81, 35, .16); }
.jewelry-product-step:active { border-radius: 50%; outline: 0; transform: scale(.96); }
.jewelry-product-step .icon { width: 17px; height: 17px; }
.jewelry-product-step--previous .icon { transform: rotate(180deg); }
.jewelry-product-category { margin: 0 0 10px; color: var(--jewelry-gold-dark); font-size: .7rem; letter-spacing: .16em; line-height: 1.3; text-transform: uppercase; }
.jewelry-product-copy h1 { margin: 0 0 20px; color: #211b15; font-family: "Bodoni MT", Didot, Georgia, serif; font-size: 2rem; font-weight: 400; letter-spacing: .01em; line-height: .96; text-transform: uppercase; }
.jewelry-product-copy .jewelry-product-title { max-width: 460px; min-height: 1.92em; text-wrap: balance; }
.jewelry-product-code { margin: -8px 0 13px; color: #776d62; font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.jewelry-product-price { margin: 0 0 22px; color: var(--jewelry-gold-dark); font-family: "Overlock", Arial, sans-serif; font-size: 1.75rem; font-weight: 700; line-height: 1.15; }
.jewelry-product-price small { margin-top: 4px; display: block; color: #776d62; font-family: "Spinnaker", Arial, sans-serif; font-size: .6rem; font-weight: 400; letter-spacing: .13em; text-transform: uppercase; }
.jewelry-product-pricing { margin: 0 0 11px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); overflow: hidden; border: 1px solid rgba(142, 108, 50, .3); border-radius: 8px; background: rgba(255, 252, 247, .72); }
.jewelry-product-pricing h2 { grid-column: 1 / -1; margin: 0; padding: 7px 10px; border-bottom: 1px solid rgba(142, 108, 50, .24); color: #4e3b24; font-family: "Spinnaker", Arial, sans-serif; font-size: .61rem; font-weight: 700; letter-spacing: .12em; text-align: center; text-transform: uppercase; }
.jewelry-product-price-row { min-width: 0; padding: 8px 6px 9px; display: grid; align-content: center; gap: 4px; border: 0; border-radius: 0; appearance: none; background: transparent; color: #665a4e; font: inherit; text-align: center; cursor: pointer; transition: background .18s ease, box-shadow .18s ease; }
.jewelry-product-price-row + .jewelry-product-price-row { border-left: 1px solid rgba(142, 108, 50, .22); }
.jewelry-product-price-row:hover { background: rgba(225, 183, 103, .1); }
.jewelry-product-price-row.is-selected { background: linear-gradient(135deg, #e4ba6c, #f3d294); color: #251b10; box-shadow: inset 0 0 0 1px #b88736, inset 0 -3px 0 #9f6f23; }
.jewelry-product-price-row:focus-visible { position: relative; z-index: 1; outline: 2px solid #b88736; outline-offset: -2px; }
.jewelry-product-price-row span { font-size: .66rem; line-height: 1.25; }
.jewelry-product-price-row span small { display: block; color: #86796b; font-size: .55rem; }
.jewelry-product-price-row strong { color: var(--jewelry-gold-dark); font-family: "Overlock", Arial, sans-serif; font-size: 1rem; white-space: nowrap; }
.jewelry-product-dozen-note { margin: 0 0 13px; padding: 8px 10px; border-left: 3px solid #d1a653; background: #fff8eb; color: #665a4e; font-family: "Overlock", Arial, sans-serif; font-size: .72rem; line-height: 1.4; }
.jewelry-product-dozen-note strong { color: #4e3b24; }
.jewelry-product-description { margin: 0 0 22px; color: #514940; font-family: "Overlock", Arial, sans-serif; font-size: .98rem; line-height: 1.65; }
.jewelry-product-includes { margin: 0 0 16px; padding: 16px 0; border-top: 1px solid rgba(142, 108, 50, .3); border-bottom: 1px solid rgba(142, 108, 50, .3); }
.jewelry-product-includes summary { color: #2d261e; font-size: .84rem; font-weight: 700; cursor: pointer; }
.jewelry-product-includes ul { margin: 14px 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 18px; list-style: none; }
.jewelry-product-includes li { display: flex; align-items: flex-start; gap: 7px; color: #5a5147; font-family: "Overlock", Arial, sans-serif; font-size: .78rem; line-height: 1.35; }
.jewelry-product-includes li .icon { width: 16px; height: 16px; color: var(--jewelry-gold-dark); }
.jewelry-product-shipping { margin: 0 0 18px; color: #786e63; font-family: "Overlock", Arial, sans-serif; font-size: .78rem; line-height: 1.4; }
.jewelry-product-shipping strong { color: #4e3b24; }
.jewelry-product-buy { width: 100%; min-height: 54px; padding: 13px 22px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 1px solid var(--jewelry-gold); background: linear-gradient(90deg, #d7aa5c, #efca86); color: #17130e; font-size: .74rem; font-weight: 700; letter-spacing: .055em; text-transform: uppercase; transition: transform .2s ease, box-shadow .2s ease; }
.jewelry-product-buy:hover { transform: translateY(-2px); box-shadow: 0 13px 28px rgba(111, 81, 35, .18); }
.jewelry-product-buy .icon { width: 19px; height: 19px; }
.jewelry-product-share { margin-top: 18px; display: flex; align-items: center; gap: 16px; color: #786e63; font-size: .68rem; letter-spacing: .035em; text-transform: uppercase; }
.jewelry-product-share span { margin-right: auto; display: inline-flex; align-items: center; gap: 6px; }
.jewelry-product-share .icon { width: 15px; height: 15px; color: var(--jewelry-gold-dark); }
.jewelry-product-share a:hover { color: var(--jewelry-gold-dark); }

@media (min-width: 701px) {
  .jewelry-product-page { height: calc(100svh - 99px); min-height: 520px; padding-block: 20px; display: flex; align-items: center; }
  .jewelry-product-detail { height: 100%; }
  .jewelry-product-media { width: min(100%, calc(100svh - 138px), 620px); max-height: 620px; justify-self: end; }
  .jewelry-product-copy { max-height: 100%; }
  .jewelry-product-navigation { margin-bottom: 14px; }
  .jewelry-product-copy h1 { margin-bottom: 14px; font-size: 2rem; }
  .jewelry-product-price { margin-bottom: 14px; font-size: 1.58rem; }
  .jewelry-product-pricing { margin-bottom: 8px; }
  .jewelry-product-dozen-note { margin-bottom: 9px; padding-block: 6px; font-size: .68rem; }
  .jewelry-product-description { margin-bottom: 14px; line-height: 1.5; }
  .jewelry-product-includes { margin-bottom: 12px; padding-block: 11px; }
  .jewelry-product-includes ul { margin-top: 10px; gap-block: 6px; }
  .jewelry-product-shipping { margin-bottom: 12px; }
  .jewelry-product-buy { min-height: 48px; padding-block: 10px; }
  .jewelry-product-share { margin-top: 12px; }
}

@media (min-width: 901px) and (min-height: 761px) {
  .jewelry-product-copy { min-height: 568px; }
}

@media (min-width: 901px) and (max-height: 760px) {
  .jewelry-product-copy { min-height: 548px; }
}

@media (min-width: 701px) and (max-height: 760px) {
  .jewelry-product-copy h1 { font-size: 2rem; }
  .jewelry-product-navigation { margin-bottom: 10px; }
  .jewelry-product-category { margin-bottom: 7px; }
  .jewelry-product-description { font-size: .9rem; }
  .jewelry-product-includes li { font-size: .73rem; }
}

@media (max-width: 900px) {
  .jewelry-product-detail { width: min(100% - 48px, 820px); grid-template-columns: minmax(0, .9fr) minmax(340px, 1fr); gap: 34px; }
  .jewelry-product-copy h1 { font-size: 2rem; }
  .jewelry-product-includes ul { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .jewelry-product-page { min-height: 0; padding: 20px 0 42px; }
  .jewelry-product-detail { width: calc(100% - 32px); grid-template-columns: 1fr; gap: 27px; }
  .jewelry-product-media { border-radius: 13px; }
  .jewelry-product-media .product-badge { top: 12px; }
  .jewelry-product-copy { max-width: none; padding-inline: 2px; }
  .jewelry-product-navigation { margin-bottom: 18px; }
  .jewelry-product-step { width: 34px; min-width: 34px; height: 34px; flex-basis: 34px; }
  .jewelry-product-copy h1 { margin-bottom: 16px; font-size: 1.45rem; }
  .jewelry-product-copy .jewelry-product-title { max-width: none; }
  .jewelry-product-price { margin-bottom: 18px; font-size: 1.55rem; }
  .jewelry-product-price-row { padding-inline: 3px; }
  .jewelry-product-price-row strong { font-size: .9rem; }
  .jewelry-product-description { font-size: .92rem; }
  .jewelry-product-buy { min-height: 52px; }
}

@media (min-width: 701px) and (max-width: 900px) {
  .jewelry-product-page { height: auto; min-height: 0; padding: 24px 0 42px; display: block; }
  .jewelry-product-detail { width: min(100% - 48px, 820px); height: auto; grid-template-columns: 1fr; gap: 27px; }
  .jewelry-product-media { width: min(100%, 620px); max-height: none; justify-self: center; }
  .jewelry-product-copy { width: min(100%, 620px); max-height: none; justify-self: center; }
  .jewelry-product-copy h1 { font-size: 2rem; }
}

.jewelry-customize-page { background: var(--jewelry-ivory); color: #251f19; }
.jewelry-customize-hero { position: relative; min-height: 535px; display: flex; align-items: center; overflow: hidden; isolation: isolate; background: #0d0c0b; color: #fff; }
.jewelry-customize-hero > img,
.jewelry-customize-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.jewelry-customize-hero > img { z-index: -2; max-width: none; object-fit: cover; object-position: 52% 78%; }
.jewelry-customize-shade { z-index: -1; background: linear-gradient(90deg, rgba(9, 9, 8, .98) 0%, rgba(9, 9, 8, .92) 31%, rgba(9, 9, 8, .58) 48%, rgba(9, 9, 8, .04) 70%, rgba(9, 9, 8, .12) 100%); }
.jewelry-customize-copy { padding-block: 50px; }
.jewelry-customize-copy h1 { margin: 0; color: var(--jewelry-gold); font-family: "Bodoni MT", Didot, Georgia, serif; font-size: clamp(4rem, 5.4vw, 6.4rem); font-weight: 400; letter-spacing: .015em; line-height: .9; text-transform: uppercase; }
.jewelry-customize-copy h1 span { display: block; color: #fff; }
.jewelry-customize-copy .jewelry-ornament { width: 315px; margin: 20px 0 18px; }
.jewelry-customize-lead { margin: 0 0 8px; color: #fff; font-family: "Bodoni MT", Didot, Georgia, serif; font-size: 1.38rem; line-height: 1.35; }
.jewelry-customize-copy > p:not(.jewelry-customize-lead) { margin: 0; color: rgba(255, 255, 255, .78); font-family: "Overlock", Arial, sans-serif; font-size: 1rem; line-height: 1.7; }
.jewelry-customize-copy > a { min-height: 52px; margin-top: 27px; padding: 13px 25px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; background: var(--jewelry-gold); color: #17130e; font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.jewelry-customize-copy > a .icon { width: 18px; height: 18px; }
.jewelry-process { padding: 36px max(56px, calc((100vw - 1360px) / 2)) 42px; background: #080807; color: #fff; }
.jewelry-process > header { display: grid; justify-items: center; text-align: center; }
.jewelry-process > header h2 { margin: 0; color: #fff; font-family: "Bodoni MT", Didot, Georgia, serif; font-size: clamp(2rem, 2.6vw, 3.15rem); font-weight: 400; text-transform: uppercase; }
.jewelry-process > header .jewelry-ornament { width: 160px; margin: 9px 0 28px; }
.jewelry-process > header .jewelry-ornament .icon { width: 14px; height: 14px; }
.jewelry-process-grid { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; overflow: hidden; border: 1px solid rgba(198, 161, 91, .72); border-radius: 22px; background: rgba(255, 255, 255, .015); counter-reset: jewelry-step; list-style: none; }
.jewelry-process-grid li { position: relative; min-width: 0; padding: 20px 28px; display: grid; justify-items: center; align-content: center; text-align: center; }
.jewelry-process-grid li + li { border-left: 1px solid rgba(198, 161, 91, .42); }
.jewelry-process-grid li:not(:last-child)::after { content: none; }
.jewelry-process-heading { display: flex; align-items: center; justify-content: center; gap: 18px; }
.jewelry-process-heading > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(145deg, #d2ad66, #a77d39); color: #fff; font-family: Georgia, serif; font-size: 1rem; }
.jewelry-process-heading h3 { margin: 0; color: #fff; font-family: "Spinnaker", Arial, sans-serif; font-size: .79rem; font-weight: 700; letter-spacing: .035em; text-transform: uppercase; }
.jewelry-process-icon { min-height: 102px; margin: 18px 0 7px; display: grid; place-items: center; color: var(--jewelry-gold-dark); }
.jewelry-process-icon .icon { width: 82px; height: 82px; stroke-width: 1.05; }
.jewelry-process-grid li > p { max-width: 300px; margin: 0; color: rgba(255, 255, 255, .76); font-family: "Overlock", Arial, sans-serif; font-size: .84rem; line-height: 1.45; }

@media (min-width: 821px) {
  .jewelry-customize-page { position: relative; min-height: calc(100svh - 98px); overflow: hidden; }
  .jewelry-customize-hero { min-height: calc(100svh - 98px); }
  .jewelry-customize-copy { min-height: inherit; padding-block: 42px 270px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
  .jewelry-process { position: absolute; z-index: 3; right: 0; bottom: 0; left: 0; padding-block: 16px 18px; background: rgba(8, 8, 7, .97); box-shadow: 0 -12px 30px rgba(0, 0, 0, .35); backdrop-filter: blur(5px); }
  .jewelry-process > header h2 { font-size: clamp(1.55rem, 2vw, 2.15rem); }
  .jewelry-process > header .jewelry-ornament { margin: 4px 0 11px; }
  .jewelry-process-grid { gap: 0; }
  .jewelry-process-grid li { padding: 9px 22px; }
  .jewelry-process-heading { gap: 12px; }
  .jewelry-process-heading > span { width: 38px; height: 38px; font-size: .82rem; }
  .jewelry-process-heading h3 { font-size: .7rem; }
  .jewelry-process-icon { min-height: 48px; margin: 4px 0 2px; }
  .jewelry-process-icon .icon { width: 46px; height: 46px; }
  .jewelry-process-grid li > p { max-width: 330px; font-size: .7rem; line-height: 1.3; }
}

@media (min-width: 821px) and (max-height: 820px) {
  .jewelry-customize-copy { padding-block: 22px 230px; }
  .jewelry-customize-copy h1 { font-size: clamp(3.1rem, 4.3vw, 4.25rem); }
  .jewelry-customize-copy .jewelry-ornament { margin-block: 12px 10px; }
  .jewelry-customize-lead { font-size: 1.15rem; }
  .jewelry-customize-copy > p:not(.jewelry-customize-lead) { font-size: .9rem; line-height: 1.45; }
  .jewelry-customize-copy > a { min-height: 44px; margin-top: 16px; padding-block: 10px; }
  .jewelry-process { padding-block: 10px 11px; }
  .jewelry-process > header h2 { font-size: 1.45rem; }
  .jewelry-process > header .jewelry-ornament { margin: 2px 0 7px; }
  .jewelry-process-heading > span { width: 32px; height: 32px; }
  .jewelry-process-icon { min-height: 38px; margin-block: 1px; }
  .jewelry-process-icon .icon { width: 37px; height: 37px; }
  .jewelry-process-grid li > p { font-size: .66rem; line-height: 1.25; }
}

@media (max-width: 820px) {
  .jewelry-customize-hero { min-height: 520px; }
  .jewelry-process-grid { gap: 0; }
}

@media (max-width: 620px) {
  .jewelry-customize-hero { min-height: 0; display: grid; background: #0c0b0a; }
  .jewelry-customize-hero > img { position: relative; z-index: 0; height: 400px; object-position: 67% 53%; }
  .jewelry-customize-shade { display: none; }
  .jewelry-customize-copy { min-width: 0; padding-block: 36px 42px; text-align: center; }
  .jewelry-customize-copy h1 { font-size: clamp(2.45rem, 11vw, 3.2rem); }
  .jewelry-customize-copy .jewelry-ornament { width: min(100%, 280px); margin-inline: auto; }
  .jewelry-customize-lead { font-size: 1.2rem; }
  .jewelry-customize-copy > p:not(.jewelry-customize-lead) { font-size: .92rem; }
  .jewelry-customize-copy > a { width: min(100%, 320px); }
  .jewelry-process { padding: 34px 24px 42px; }
  .jewelry-process-grid { grid-template-columns: 1fr; gap: 0; border-radius: 18px; }
  .jewelry-process-grid li { padding: 26px 18px; }
  .jewelry-process-grid li + li { border-top: 1px solid rgba(198, 161, 91, .42); border-left: 0; }
  .jewelry-process-heading { flex-direction: column; gap: 10px; }
  .jewelry-process-icon { min-height: 78px; margin-block: 10px 4px; }
  .jewelry-process-icon .icon { width: 66px; height: 66px; }
}

/* Nosotros de Joyería: relato de marca y valores en la tienda real de LAZOS. */
.jewelry-about-page { min-height: calc(100svh - 98px); background: #0b0b0a; }
.jewelry-about-hero { position: relative; min-height: max(760px, calc(100svh - 98px)); overflow: hidden; isolation: isolate; background: #0b0b0a; color: #fff; }
.jewelry-about-photo,
.jewelry-about-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.jewelry-about-photo { z-index: -2; max-width: none; object-fit: cover; object-position: center 52%; }
@media (min-width: 701px) {
  .jewelry-about-photo { inset: 0; width: 100%; height: 100%; object-position: center 52%; }
}
.jewelry-about-shade { z-index: -1; background: linear-gradient(90deg, rgba(7, 7, 6, .98) 0%, rgba(7, 7, 6, .93) 30%, rgba(7, 7, 6, .62) 44%, rgba(7, 7, 6, .08) 67%, rgba(7, 7, 6, .2) 100%), linear-gradient(0deg, rgba(6, 6, 5, .93) 0%, rgba(6, 6, 5, .17) 40%, transparent 68%); }
.jewelry-about-store-card { position: absolute; z-index: 2; top: clamp(32px, 5vh, 56px); right: max(34px, calc((100vw - 1420px) / 2)); width: min(320px, 23vw); margin: 0; overflow: hidden; border: 1px solid rgba(198, 161, 91, .68); border-radius: 12px; background: #0d0c0b; box-shadow: 0 20px 55px rgba(0, 0, 0, .42); }
.jewelry-about-store-card img { width: 100%; height: 220px; display: block; object-fit: cover; object-position: center; }
.jewelry-about-store-card figcaption { min-height: 52px; padding: 9px 13px 10px; display: grid; gap: 2px; align-content: center; justify-items: center; text-align: center; background: rgba(12, 11, 10, .97); font-family: "Spinnaker", Arial, sans-serif; text-transform: uppercase; }
.jewelry-about-store-card strong { color: #fff; font-size: .7rem; font-weight: 400; letter-spacing: .05em; }
.jewelry-about-store-card span { color: var(--jewelry-gold); font-size: .63rem; letter-spacing: .045em; }
.jewelry-about-layout { min-height: inherit; padding-block: clamp(48px, 7vh, 76px) 225px; display: flex; align-items: center; }
.jewelry-about-copy { width: min(560px, 43vw); }
.jewelry-about-copy h1 { margin: 0; color: var(--jewelry-gold); font-family: "Bodoni MT", Didot, Georgia, serif; font-size: clamp(3.15rem, 4.35vw, 5.25rem); font-weight: 400; letter-spacing: .01em; line-height: .94; text-transform: uppercase; }
.jewelry-about-copy h1 span { display: block; color: #fff; font-size: 1.18em; }
.jewelry-about-copy .jewelry-ornament { width: min(420px, 100%); margin-block: 25px 22px; }
.jewelry-about-copy > p { margin: 0 0 14px; color: rgba(255, 255, 255, .86); font-family: "Overlock", Arial, sans-serif; font-size: 1.08rem; line-height: 1.55; }
.jewelry-about-copy .jewelry-about-signature { margin-top: 18px; color: var(--jewelry-gold); font-family: "Segoe Script", "Brush Script MT", cursive; font-size: clamp(1.55rem, 2.1vw, 2.5rem); line-height: 1.25; transform: rotate(-2deg); }
.jewelry-about-values { position: absolute; right: 0; bottom: 0; left: 0; min-height: 190px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: stretch; border-top: 1px solid rgba(198, 161, 91, .4); background: rgba(9, 9, 8, .72); backdrop-filter: blur(5px); }
.jewelry-about-values article { min-width: 0; padding: 18px 28px 20px; display: grid; justify-items: center; align-content: start; gap: 9px; border-left: 1px solid rgba(198, 161, 91, .38); text-align: center; }
.jewelry-about-values article:first-child { border-left: 0; }
.jewelry-about-values > article > .icon { width: 51px; height: 51px; color: var(--jewelry-gold); stroke-width: 1.25; }
.jewelry-about-values h2 { margin: 0 0 6px; color: #fff; font-family: "Spinnaker", Arial, sans-serif; font-size: .75rem; font-weight: 400; letter-spacing: .035em; text-transform: uppercase; }
.jewelry-about-values p { margin: 0; color: rgba(255, 255, 255, .78); font-family: "Overlock", Arial, sans-serif; font-size: .76rem; line-height: 1.48; }
@media (min-width: 701px) and (max-height: 820px) {
  .jewelry-about-hero { min-height: calc(100svh - 98px); }
  .jewelry-about-layout { padding-block: 20px 150px; }
  .jewelry-about-copy { width: min(620px, 44vw); }
  .jewelry-about-copy h1 { font-size: clamp(2.8rem, 3.25vw, 3.25rem); line-height: .9; }
  .jewelry-about-copy h1 span { font-size: 1.1em; }
  .jewelry-about-copy .jewelry-ornament { margin-block: 10px 8px; }
  .jewelry-about-copy > p { margin-bottom: 8px; font-size: .88rem; line-height: 1.4; }
  .jewelry-about-copy .jewelry-about-signature { margin-top: 10px; font-size: 1.45rem; line-height: 1.15; }
  .jewelry-about-values { bottom: 0; min-height: 138px; }
  .jewelry-about-values article { padding: 10px 16px 12px; gap: 6px; }
  .jewelry-about-values > article > .icon { width: 36px; height: 36px; }
  .jewelry-about-values h2 { margin-bottom: 3px; font-size: .65rem; }
  .jewelry-about-values p { font-size: .66rem; line-height: 1.35; }
}

@media (max-width: 920px) {
  .jewelry-about-store-card { display: none; }
  .jewelry-about-copy { width: min(520px, 54vw); }
  .jewelry-about-values article { padding-inline: 16px; }
}

@media (max-width: 700px) {
  .jewelry-about-page,
  .jewelry-about-hero { min-height: 0; }
  .jewelry-about-hero { display: grid; overflow: visible; }
  .jewelry-about-photo { position: relative; z-index: 0; height: 380px; object-position: 12% 52%; transform: none; }
  .jewelry-about-shade { display: none; }
  .jewelry-about-layout { min-height: 0; padding-block: 38px 36px; background: radial-gradient(circle at 50% 0%, #24211d, #0b0b0a 48%); }
  .jewelry-about-copy { width: 100%; text-align: center; }
  .jewelry-about-copy h1 { font-size: clamp(2.7rem, 13vw, 3.8rem); }
  .jewelry-about-copy .jewelry-ornament { width: min(100%, 310px); margin-inline: auto; }
  .jewelry-about-copy > p { font-size: .96rem; }
  .jewelry-about-copy > p br { display: none; }
  .jewelry-about-copy .jewelry-about-signature { margin-top: 22px; font-size: 1.55rem; }
  .jewelry-about-values { position: relative; bottom: auto; width: 100%; grid-template-columns: repeat(2, minmax(0, 1fr)); background: #0b0b0a; }
  .jewelry-about-values article { min-height: 176px; padding: 22px 14px; }
  .jewelry-about-values article:nth-child(odd) { border-left: 0; }
  .jewelry-about-values article:nth-child(n + 3) { border-top: 1px solid rgba(198, 161, 91, .38); }
  .jewelry-about-values > article > .icon { width: 43px; height: 43px; }
}

@media (max-width: 390px) {
  .jewelry-about-photo { height: 335px; }
  .jewelry-about-values { grid-template-columns: 1fr; }
  .jewelry-about-values article,
  .jewelry-about-values article:nth-child(odd) { min-height: 150px; border-left: 0; border-top: 1px solid rgba(198, 161, 91, .38); }
  .jewelry-about-values article:first-child { border-top: 0; }
}

/* Contacto de Joyería: información, producto plateado y conversión por WhatsApp. */
.jewelry-contact-page { min-height: calc(100svh - 98px); background: #0c0b0a; }
.jewelry-contact-hero { position: relative; min-height: calc(100svh - 98px); overflow: hidden; isolation: isolate; background: #0c0b0a; color: #fff; }
.jewelry-contact-photo,
.jewelry-contact-shade { position: absolute; top: 0; bottom: 0; height: 100%; }
.jewelry-contact-photo { z-index: -2; top: -4%; bottom: auto; left: 17.5%; width: 65%; max-width: none; object-fit: cover; object-position: center 57%; transform: scale(.5525); -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 13%, #000 87%, transparent 100%), linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%); -webkit-mask-composite: source-in; mask-image: linear-gradient(90deg, transparent 0%, #000 13%, #000 87%, transparent 100%), linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%); mask-composite: intersect; }
.jewelry-contact-shade { z-index: -1; right: 0; left: 0; background: linear-gradient(90deg, rgba(7, 7, 6, .98) 0%, rgba(7, 7, 6, .88) 27%, rgba(7, 7, 6, .25) 47%, rgba(7, 7, 6, .1) 62%, rgba(7, 7, 6, .9) 82%, rgba(7, 7, 6, .98) 100%), linear-gradient(0deg, rgba(7, 7, 6, .9), transparent 34%); }
.jewelry-contact-layout { min-height: calc(100svh - 98px); padding-block: clamp(48px, 6vh, 76px) 190px; display: grid; grid-template-columns: minmax(350px, .95fr) minmax(170px, .62fr) minmax(390px, .88fr); align-items: center; gap: 30px; }
.jewelry-contact-copy { grid-column: 1; max-width: 520px; }
.jewelry-contact-copy h1 { margin: 0; color: var(--jewelry-gold); font-family: "Bodoni MT", Didot, Georgia, serif; font-size: clamp(2.7rem, 3.75vw, 4.5rem); font-weight: 400; letter-spacing: .012em; line-height: .95; text-transform: uppercase; }
.jewelry-contact-copy h1 span { display: block; color: #fff; }
.jewelry-contact-copy .jewelry-ornament { width: min(390px, 100%); margin-block: 20px 17px; }
.jewelry-contact-copy > p { margin: 0; color: rgba(255, 255, 255, .86); font-family: "Overlock", Arial, sans-serif; font-size: 1rem; line-height: 1.55; }
.jewelry-contact-details { margin-top: 26px; display: grid; grid-template-columns: 1fr; gap: 15px; font-style: normal; }
.jewelry-contact-details > a,
.jewelry-contact-details > div { display: grid; grid-template-columns: 48px 1fr; align-items: center; gap: 14px; }
.jewelry-contact-detail-icon { width: 45px; height: 45px; display: grid; place-items: center; border: 1px solid rgba(198, 161, 91, .85); border-radius: 50%; color: var(--jewelry-gold); }
.jewelry-contact-detail-icon .icon { width: 24px; height: 24px; stroke-width: 1.4; }
.jewelry-contact-details > * > span:last-child { min-width: 0; display: grid; gap: 1px; }
.jewelry-contact-details small { color: var(--jewelry-gold); font-size: .68rem; font-style: normal; letter-spacing: .06em; text-transform: uppercase; }
.jewelry-contact-details strong { color: #fff; font-family: "Overlock", Arial, sans-serif; font-size: 1rem; font-weight: 400; line-height: 1.35; }
.jewelry-contact-phone-list { display: flex; flex-wrap: wrap; gap: 2px 14px; }
.jewelry-contact-phone-list a { width: max-content; max-width: 100%; color: inherit; white-space: nowrap; transition: color .2s ease; }
.jewelry-contact-phone-list a:hover { color: var(--jewelry-gold); }
.jewelry-contact-details em { color: rgba(255, 255, 255, .68); font-family: "Overlock", Arial, sans-serif; font-size: .73rem; font-style: normal; line-height: 1.35; }
.jewelry-contact-socials { width: max-content; margin-top: 21px; display: grid; gap: 7px; }
.jewelry-contact-social-label { color: var(--jewelry-gold); font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; }
.jewelry-contact-social-row { display: flex; align-items: center; gap: 13px; }
.jewelry-contact-social-row > strong { color: #fff; font-family: "Spinnaker", Arial, sans-serif; font-size: .78rem; font-weight: 400; letter-spacing: .06em; white-space: nowrap; }
.jewelry-contact-social-icons { display: flex; align-items: center; gap: 8px; }
.jewelry-contact-socials a { width: 39px; height: 39px; display: grid; place-items: center; border: 1px solid rgba(198, 161, 91, .72); border-radius: 8px; color: var(--jewelry-gold); transition: background .2s ease, color .2s ease, transform .2s ease; }
.jewelry-contact-socials a:hover { background: var(--jewelry-gold); color: #15120e; transform: translateY(-2px); }
.jewelry-contact-socials .icon { width: 21px; height: 21px; }

.jewelry-contact-form { grid-column: 3; width: 100%; max-width: 450px; justify-self: end; padding: 28px 28px 22px; display: grid; gap: 11px; border: 1px solid rgba(198, 161, 91, .72); border-radius: 20px; background: rgba(12, 12, 11, .88); box-shadow: 0 24px 70px rgba(0, 0, 0, .32); backdrop-filter: blur(8px); }
.jewelry-contact-form header { margin-bottom: 5px; text-align: center; }
.jewelry-contact-form h2 { margin: 0; color: var(--jewelry-gold); font-family: "Bodoni MT", Didot, Georgia, serif; font-size: 1.75rem; font-weight: 400; letter-spacing: .04em; text-transform: uppercase; }
.jewelry-contact-form header .jewelry-ornament { width: 124px; margin: 6px auto 8px; }
.jewelry-contact-form header .jewelry-ornament .icon { width: 13px; height: 13px; }
.jewelry-contact-form header p { margin: 0; color: rgba(255, 255, 255, .84); font-family: "Overlock", Arial, sans-serif; font-size: .9rem; line-height: 1.45; }
.jewelry-contact-form > label { min-height: 48px; padding: 0 15px; display: grid; grid-template-columns: 24px 1fr; align-items: center; gap: 11px; border: 1px solid rgba(198, 161, 91, .68); border-radius: 9px; background: rgba(25, 25, 24, .82); color: var(--jewelry-gold); }
.jewelry-contact-form > label .icon { width: 21px; height: 21px; stroke-width: 1.45; }
.jewelry-contact-form input,
.jewelry-contact-form textarea { width: 100%; min-width: 0; padding: 12px 0; border: 0; outline: 0; resize: vertical; background: transparent; color: #fff; font-family: "Overlock", Arial, sans-serif; font-size: .92rem; }
.jewelry-contact-form input::placeholder,
.jewelry-contact-form textarea::placeholder { color: rgba(255, 255, 255, .62); opacity: 1; }
.jewelry-contact-form > label:focus-within { border-color: var(--jewelry-gold); box-shadow: 0 0 0 2px rgba(198, 161, 91, .13); }
.jewelry-contact-form > .jewelry-contact-message { min-height: 108px; align-items: start; }
.jewelry-contact-message .icon { margin-top: 13px; }
.jewelry-contact-form > button { min-height: 52px; margin-top: 3px; padding: 12px 18px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 0; border-radius: 8px; background: linear-gradient(90deg, #d5aa5e, #f0cc8d); color: #17130e; font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; cursor: pointer; }
.jewelry-contact-form > button .icon { width: 21px; height: 21px; }
.jewelry-contact-status { min-height: 1em; margin: -4px 0 0; color: var(--jewelry-gold); font-size: .66rem; line-height: 1.2; text-align: center; }

.jewelry-contact-benefits { position: absolute; right: 0; bottom: 24px; left: 0; min-height: 126px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: stretch; border: 1px solid rgba(198, 161, 91, .65); border-radius: 17px; background: rgba(11, 11, 10, .9); backdrop-filter: blur(7px); }
.jewelry-contact-benefits article { min-width: 0; padding: 21px 26px; display: flex; align-items: center; gap: 18px; border-left: 1px solid rgba(198, 161, 91, .35); }
.jewelry-contact-benefits article:first-child { border-left: 0; }
.jewelry-contact-benefits > article > .icon { width: 43px; height: 43px; color: var(--jewelry-gold); stroke-width: 1.3; }
.jewelry-contact-benefits h2 { margin: 0 0 6px; color: var(--jewelry-gold); font-family: "Spinnaker", Arial, sans-serif; font-size: .7rem; font-weight: 400; letter-spacing: .035em; text-transform: uppercase; }
.jewelry-contact-benefits p { margin: 0; color: rgba(255, 255, 255, .78); font-family: "Overlock", Arial, sans-serif; font-size: .72rem; line-height: 1.42; }

@media (min-width: 821px) and (max-height: 820px) {
  .jewelry-contact-layout { padding-block: 20px 127px; }
  .jewelry-contact-copy h1 { font-size: clamp(2.45rem, 3.34vw, 3.2rem); }
  .jewelry-contact-copy .jewelry-ornament { margin-block: 10px 8px; }
  .jewelry-contact-copy > p { font-size: .84rem; line-height: 1.35; }
  .jewelry-contact-details { margin-top: 14px; gap: 7px; }
  .jewelry-contact-details > a,
  .jewelry-contact-details > div { grid-template-columns: 35px 1fr; gap: 10px; }
  .jewelry-contact-detail-icon { width: 34px; height: 34px; }
  .jewelry-contact-detail-icon .icon { width: 19px; height: 19px; }
  .jewelry-contact-details strong { font-size: .9rem; }
  .jewelry-contact-details em { display: none; }
  .jewelry-contact-socials { margin-top: 8px; }
  .jewelry-contact-socials a { width: 32px; height: 32px; }
  .jewelry-contact-form { padding: 17px 22px 13px; gap: 6px; border-radius: 18px; }
  .jewelry-contact-form header { margin-bottom: 2px; }
  .jewelry-contact-form h2 { font-size: 1.48rem; }
  .jewelry-contact-form header .jewelry-ornament { margin: 3px auto 5px; }
  .jewelry-contact-form header p { font-size: .8rem; line-height: 1.3; }
  .jewelry-contact-form > label { min-height: 40px; }
  .jewelry-contact-form input,
  .jewelry-contact-form textarea { padding-block: 9px; font-size: .86rem; }
  .jewelry-contact-form > .jewelry-contact-message { min-height: 78px; }
  .jewelry-contact-message .icon { margin-top: 10px; }
  .jewelry-contact-form > button { min-height: 44px; margin-top: 0; padding-block: 9px; }
  .jewelry-contact-status { min-height: .8em; }
  .jewelry-contact-benefits { bottom: 12px; min-height: 112px; }
  .jewelry-contact-benefits article { padding: 15px 21px; gap: 14px; }
  .jewelry-contact-benefits > article > .icon { width: 37px; height: 37px; }
  .jewelry-contact-benefits h2 { margin-bottom: 4px; font-size: .66rem; }
  .jewelry-contact-benefits p { font-size: .67rem; }
}

@media (max-width: 1180px) {
  .jewelry-contact-photo { left: 17.5%; width: 65%; }
  .jewelry-contact-layout { grid-template-columns: minmax(320px, 1fr) minmax(360px, .9fr); gap: 45px; }
  .jewelry-contact-copy { grid-column: 1; }
  .jewelry-contact-form { grid-column: 2; }
  .jewelry-contact-benefits article { padding-inline: 17px; gap: 12px; }
  .jewelry-contact-benefits > article > .icon { width: 35px; height: 35px; }
}

@media (max-width: 820px) {
  .jewelry-contact-hero { overflow: visible; }
  .jewelry-contact-photo { top: 0; bottom: 0; left: 0; width: 100%; transform: none; -webkit-mask-image: none; -webkit-mask-composite: initial; mask-image: none; mask-composite: initial; }
  .jewelry-contact-shade { background: linear-gradient(90deg, rgba(7, 7, 6, .95), rgba(7, 7, 6, .34) 55%, rgba(7, 7, 6, .78)); }
  .jewelry-contact-layout { min-height: 0; padding-block: 50px 38px; grid-template-columns: 1fr; gap: 38px; }
  .jewelry-contact-copy,
  .jewelry-contact-form { grid-column: 1; }
  .jewelry-contact-copy { max-width: 500px; }
  .jewelry-contact-form { max-width: 500px; justify-self: end; }
  .jewelry-contact-benefits { position: relative; bottom: auto; width: 100%; grid-template-columns: repeat(2, minmax(0, 1fr)); border-right: 0; border-left: 0; border-radius: 0; }
  .jewelry-contact-benefits article:nth-child(odd) { border-left: 0; }
  .jewelry-contact-benefits article:nth-child(n + 3) { border-top: 1px solid rgba(198, 161, 91, .35); }
}

@media (max-width: 620px) {
  .jewelry-contact-page,
  .jewelry-contact-hero { min-height: 0; }
  .jewelry-contact-hero { display: grid; }
  .jewelry-contact-photo { position: relative; z-index: 0; height: 330px; object-position: 76% 54%; }
  .jewelry-contact-shade { display: none; }
  .jewelry-contact-layout { padding-block: 36px 40px; gap: 34px; background: radial-gradient(circle at 50% 0%, #24211d, #0c0b0a 44%); }
  .jewelry-contact-copy { text-align: center; }
  .jewelry-contact-copy h1 { font-size: clamp(2.8rem, 14vw, 4rem); }
  .jewelry-contact-copy .jewelry-ornament { width: min(100%, 300px); margin-inline: auto; }
  .jewelry-contact-copy > p { font-size: .91rem; }
  .jewelry-contact-copy > p br { display: none; }
  .jewelry-contact-details { margin-top: 28px; text-align: left; }
  .jewelry-contact-details > a,
  .jewelry-contact-details > div { grid-template-columns: 43px 1fr; gap: 12px; }
  .jewelry-contact-detail-icon { width: 41px; height: 41px; }
  .jewelry-contact-details strong { font-size: .9rem; }
  .jewelry-contact-socials { margin-inline: 0 auto; justify-content: start; text-align: left; }
  .jewelry-contact-social-label { margin-left: 55px; }
  .jewelry-contact-form { padding: 25px 18px 18px; border-radius: 16px; }
  .jewelry-contact-form h2 { font-size: 1.55rem; }
  .jewelry-contact-form header p { font-size: .84rem; }
  .jewelry-contact-benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .jewelry-contact-benefits article,
  .jewelry-contact-benefits article:nth-child(odd) { min-height: 138px; padding: 16px 10px; display: grid; justify-items: center; align-content: center; gap: 8px; border-left: 0; text-align: center; }
  .jewelry-contact-benefits article:nth-child(even) { border-left: 1px solid rgba(198, 161, 91, .35); }
  .jewelry-contact-benefits article:nth-child(n + 3) { border-top: 1px solid rgba(198, 161, 91, .35); }
  .jewelry-contact-benefits > article > .icon { width: 37px; height: 37px; }
  .jewelry-contact-benefits h2 { margin-bottom: 4px; }
}

.jewelry-body .google-store-rating { width: fit-content; max-width: 100%; margin-top: 5px; display: inline-flex; align-items: baseline; gap: 5px; font-family: "Overlock", Arial, sans-serif; font-size: .78rem; font-weight: 400; line-height: 1.5; letter-spacing: 0; text-transform: none; color: var(--jewelry-gold); }
.jewelry-body .google-store-rating span { font: inherit; letter-spacing: 0; }
.jewelry-body .google-store-rating .google-store-rating-score { color: var(--jewelry-gold); font-weight: 700; white-space: nowrap; }
.jewelry-body .google-store-rating .google-store-rating-label { color: rgba(255, 255, 255, .78); }
.jewelry-body .google-store-rating .google-store-rating-label,
.jewelry-body a[href^="https://www.google.com/maps/dir/"] { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.jewelry-body .jewelry-about-store-card .google-store-rating { margin-top: 0; }
.jewelry-body .google-store-rating-mobile { display: none; }
@media (max-width: 920px) {
  .jewelry-body .google-store-rating-mobile { display: flex; margin-top: 8px; }
}
@media (max-width: 700px) {
  .jewelry-body .google-store-rating-mobile { margin-inline: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
