@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");











:root{
  --bg: #ffffff;
  --soft: #f6f6f6;
  --text: #1f1f1f;
  --muted: #6b6b6b;
  --green: #1f3a2e;
  --green-2: #173026;
  --gold: #c6a75e;
  --line: rgba(0,0,0,.10);
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --radius: 14px;
}



*{ box-sizing:border-box; }



html, body{
  height:100%;
}

body{
  margin:0;
  color:var(--text);
  background:var(--bg);
  font-family:"Noto Serif JP", serif;
}

img{
  max-width:100%; 
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

button, input{
  font:inherit;
}



.container{
  width:min(1800px, calc(100% - 40px));
  margin:0 auto;
}





.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:#173026;
  backdrop-filter:blur(8px);
  border-bottom:1px solid #c6a75e;
}

.header-inner{
  height:82px;
  display:flex;
  align-items:center;
  gap:16px;
}


.brand-logo{
  width:70px;
  height:70px;
  border-radius:999px;
  box-shadow:0 8px 18px rgba(0,0,0,.12);
  margin-top:-1px;
}

.brand{
  display:flex;
  align-items:center;
  margin-right:18px;
  flex:0 0 auto;
}


.nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  flex:1 1 auto;
  min-width:0;
  margin-left:24px;
  padding-right:32px;
  flex-wrap:nowrap;
}

.nav-link{
  position:relative;
  font-weight:400;
  color:#ffffff;
  font-size:16px;
  white-space:nowrap;
}

.nav-link{
  position:relative;
}

.nav-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:0;
  height:3px;
  background:#f5c400;
  transition:0.3s;
}

.nav-link:hover::after{
  width:100%;
}
.nav-link.is-active::after{
  opacity:1;
}


.header-actions{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:14px;
}

.icon-btn{
  position:relative;
  border:0;
  background:transparent;
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  color:#ffffff;
  cursor:pointer;
}

.icon-btn svg{
  width:22px;
  height:22px;
}

.badge{
  position:absolute;
  top:2px;
  right:0;
  width:18px;
  height:18px;
  border-radius:999px;
  background:var(--green);
  color:#fff;
  font-size:11px;
  display:grid;
  place-items:center;
}

.menu-toggle{
  display:none;
  width:42px;
  height:42px;
  border:0;
  background:transparent;
  cursor:pointer;
  border-radius:10px;
}

.menu-toggle span{
  display:block;
  height:2px;
  margin:6px 10px;
  background:#fff;
  border-radius:2px;
}


.nav-dropdown{
  position:relative;
  padding-bottom:14px;
  margin-bottom:-14px;
}

.nav-btn{
  border:0;
  background:transparent;
  cursor:pointer;
  padding:0;
  display:flex;
  align-items:center;
  gap:6px;
  white-space:nowrap;
}

.chev{
  
  transition:transform .25s ease;
}

.nav-dropdown.is-open .chev{
  transform:rotate(180deg);
}

@media (hover: hover) and (pointer: fine){
  .nav-dropdown:hover .chev{
    transform:rotate(180deg);
  }
}

.dropdown-panel{
  position:absolute;
  top:calc(60% + 8px);
  left:-8px;
  min-width:275px;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  box-shadow:var(--shadow);
  padding:12px;
  display:none;
  z-index:100;
}

.dropdown-panel::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-12px;
  height:12px;
}

.nav-dropdown.is-open .dropdown-panel{
  display:block;
}

@media (hover: hover) and (pointer: fine){
  .nav-dropdown:hover .dropdown-panel{
    display:block;
  }
}

.dropdown-panel a{
  display:block;
  padding:13px 16px;
  border-radius:12px;
  color:#333;
  font-size:16px;
}

.dropdown-panel a:hover{
  background:rgba(198,167,94,.12);
  color:var(--green);
}


.promo-strip{
  border-top:1px solid rgba(0,0,0,.05);
  background:#fff6ed;
}

.promo-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:10px 0;
}

.promo-inner p{
  margin:0;
  flex:1;
  font-size:15px;
  color:#222;
  white-space:nowrap;
  overflow:hidden;
  position:relative;
}

.promo-inner p.promo-marquee-pending{
  opacity:0;
}

.promo-inner p.promo-marquee-ready{
  opacity:1;
}

.promo-inner p .promo-track{
  display:inline-flex;
  align-items:center;
  width:max-content;
  min-width:max-content;
  will-change:transform;
  backface-visibility:hidden;
  transform:translate3d(0,0,0);
  animation:promoMove 24s linear infinite;
}

.promo-inner p .promo-item{
  display:inline-flex;
  align-items:center;
  flex:0 0 auto;
  padding-right:48px;
}

.promo-inner p > span:not(.promo-track){
  display:inline-flex;
  align-items:center;
}

@keyframes promoMove{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-50%); }
}


.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:8px;
  padding:12px 22px;
  font-weight:500;
  letter-spacing:.2px;
  border:1px solid transparent;
  transition:transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  white-space:nowrap;
}

.btn:active{
  transform:translateY(1px);
}

.btn-primary{
  background:var(--green);
  color:#fff;
  border:1px solid var(--green);
  box-shadow:0 10px 20px rgba(31,58,46,.18);
  transition:.25s;
}

.btn-primary:hover{
  background:var(--gold);
  border-color:var(--gold);
  color:#173026;
}

.btn-outline{
  background:var(--green);
  border-color:var(--green);
  color:#fff;
  min-width:128px;
  padding:10px 14px;
}

.btn-outline:hover{
  background:var(--gold);
  border-color:var(--gold);
  color:#173026;
}



#homeNewJewels .btn-outline{
  background:#1f3a2e;
  border-color:#1f3a2e;
  color:#fff;
}

#homeNewJewels .btn-outline:hover,
#homeNewJewels .btn-outline:focus,
#homeNewJewels .btn-outline:active{
  background:#1f3a2e;
  border-color:#1f3a2e;
  color:#fff;
}





.hero{
  margin-top:0;
  margin-bottom:0;
  padding:0;
  background:#fff;
}

.hero .container{
  width:100%;
  max-width:none;
  margin:0;
}

.hero-slider{
  position:relative;
  width:100%;
  height:auto;
  min-height:650px;
  border-radius:0;
  overflow:hidden;
  box-shadow:none;
}

.hero-slide{
  position:relative;
  width:100%;
  min-height:650px;
  display:none;
}

.hero-slide.active{
  display:block;
}

.hero-image{
  width:100%;
  height:auto;
  min-height:650px;
  object-fit:cover;
  object-position:center top;
  display:block;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.30) 35%,
    rgba(0,0,0,.10) 60%,
    rgba(0,0,0,.08) 100%
  );
  display:flex;
  align-items:center;
}

.hero-content{
  max-width:650px;
  padding:0 60px;
  margin-left:80px;
  color:#fff;
}

.hero-kicker{
  margin:0 0 10px;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:3px;
  color:#f3dca0;
}

.hero-heading{
  margin:0 0 18px;
  font-family:"Noto Serif JP", serif;
  font-size:clamp(38px, 5vw, 68px);
  line-height:1.05;
  font-weight:700;
}

.hero-text{
  margin:0 0 24px;
  font-size:17px;
  line-height:1.7;
  max-width:540px;
}

.hero-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:48px;
  height:48px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.18);
  color:#fff;
  font-size:24px;
  cursor:pointer;
  backdrop-filter:blur(6px);
  z-index:5;
  transition:background .2s ease, transform .2s ease;
}

.hero-arrow:hover{
  background:rgba(255,255,255,.28);
}

.hero-prev{ left:20px; }
.hero-next{ right:20px; }

.hero-dots{
  position:absolute;
  left:50%;
  bottom:22px;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  z-index:5;
}

.hero-dots .dot{
  width:12px;
  height:12px;
  border-radius:999px;
  border:0;
  background:rgba(255,255,255,.45);
  cursor:pointer;
  transition:all .25s ease;
}

.hero-dots .dot.active{
  width:34px;
  background:var(--gold);
}


section {
    margin-top: 30px;
    margin-bottom: 30px;
}


.categorias,
.nuevas-joyas,
.compramos-oro,
.fabricantes,
.visitanos {
    margin-top: 60px;
    margin-bottom: 60px;
}

.section-soft{
  background:#ffffff;
}

.section-title{
  font-family:"Noto Serif JP", serif;
  font-weight:400;
  text-align:center;
  margin:0;
  font-size:30px;
  position:relative;
  display:inline-block;
  background:transparent;
  padding:0 14px;
}


.section > .container > .section-title{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  width:100%;
  padding:0;
  margin:0 0 22px;
  white-space:nowrap;
}

.section > .container > .section-title::before,
.section > .container > .section-title::after{
  content:"";
  flex:1;
  height:1px;
  background:#ddd;
  position:static;
  transform:none;
}


.title-decor{
  display:grid;
  grid-template-columns:minmax(0, 1fr) auto auto auto minmax(0, 1fr);
  align-items:center;
  column-gap:10px;
  width:100%;
  margin:0 0 22px;
}

.title-decor::before,
.title-decor::after{
  content:"";
  display:block;
  height:1px;
  background:#ddd;
}

.title-decor > *{
  align-self:center;
}

.title-decor .section-title{
  margin:0;
  padding:0;
  line-height:1.1;
}

.title-decor .section-title::before,
.title-decor .section-title::after{
  display:none;
}

.spark{
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--gold);
  font-size:16px;
  line-height:1;
}




.categories-slider{
  display:grid;
  grid-template-columns:auto minmax(0, 1fr) auto;
  align-items:center;
  gap:12px;
  margin-top:20px;
}

.categories{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:minmax(120px, 1fr);
  gap:30px;
  padding:10px 4px 14px;
  text-align:center;
  overflow-x:auto;
  scroll-behavior:smooth;
  scrollbar-width:none;
  scroll-snap-type:x proximity;
  cursor:grab;
  touch-action:pan-x;
  -webkit-overflow-scrolling:touch;
  user-select:none;
}

.categories.is-dragging{
  cursor:grabbing;
  scroll-behavior:auto;
}

.categories.is-dragging > *{
  pointer-events:none;
}

.categories::-webkit-scrollbar{
  display:none;
}

.categories-nav{
  width:44px;
  height:44px;
  border:none;
  border-radius:999px;
  background:#fff;
  color:#222;
  box-shadow:0 6px 18px rgba(0,0,0,.12);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  line-height:1;
  transition:transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.categories-nav:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 24px rgba(0,0,0,.16);
}

.categories-nav:disabled{
  opacity:.45;
  cursor:not-allowed;
  transform:none;
  box-shadow:0 4px 10px rgba(0,0,0,.08);
}

.cat{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  transition:transform .2s ease;
  scroll-snap-align:start;
}

.cat:hover{
  transform:translateY(-4px);
}

.cat-ico{
  width:90px;
  height:90px;
  border-radius:100%;
  border:2px solid #ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#222;
}

.cat-ico img{
  width:100px;
  height:100px;
  object-fit:contain;
}

.cat-name{
  font-size:16px;
  color:#222;
}





.products-slider{
  display:grid;
  grid-template-columns:auto minmax(0, 1fr) auto;
  align-items:center;
  gap:12px;
  margin-top:18px;
}

.products--slider{
  grid-auto-flow:column;
  grid-auto-columns:minmax(260px, 320px);
  grid-template-columns:none;
  overflow-x:auto;
  scroll-behavior:smooth;
  scrollbar-width:none;
  scroll-snap-type:x proximity;
  cursor:grab;
  touch-action:pan-x;
  -webkit-overflow-scrolling:touch;
  user-select:none;
  padding:10px 4px 14px;
  margin-top:0;
}

.products--slider.is-dragging{
  cursor:grabbing;
  scroll-behavior:auto;
}

.products--slider.is-dragging > *{
  pointer-events:none;
}

.products--slider::-webkit-scrollbar{
  display:none;
}

.products-nav{
  width:44px;
  height:44px;
  border:none;
  border-radius:999px;
  background:#fff;
  color:#222;
  box-shadow:0 6px 18px rgba(0,0,0,.12);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  line-height:1;
  transition:transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.products-nav:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 24px rgba(0,0,0,.16);
}

.products-nav:disabled{
  opacity:.45;
  cursor:not-allowed;
  transform:none;
  box-shadow:0 4px 10px rgba(0,0,0,.08);
}

.products{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:24px;
  margin-top:18px;
  align-items:start;
}


.product-card{
  background:#fff;
  border-radius:0;
  overflow:hidden;
  box-shadow:none;
  border:1px solid rgba(0,0,0,.08);
  display:flex;
  flex-direction:column;
  align-items:stretch;
  padding-bottom:16px;
  width:100%;
  max-width:320px;
  min-height:auto;
  justify-self:center;
}

.product-img{
  position:relative;
  width:100%;
  height:auto;
  aspect-ratio:1 / 1;
  overflow:hidden;
  border-radius:0;
  background:#f6f1ea;
}

.tag{
  position:absolute;
  top:0;
  left:0;
  background:var(--gold);
  color:#fff;
  font-weight:600;
  font-size:13px;
  padding:10px 22px;
  line-height:1;
  border-radius:0 0 18px 0;
  z-index:2;
}
.tag--offer{
  background:#1f3a2e;
  color:#fff;
}

.product-title{
  font-family:"Noto Serif JP", serif;
  font-weight:400;
  font-size:28px;
  margin:14px 0 12px;
}


.fabricantes-banner{
  position:relative;
  background:url("../img/pagina-principal-18k-imagen-019.png") center/cover no-repeat;
  height:420px;
  display:flex;
  align-items:center;
  border-radius:0px;
  overflow:hidden;
}

.fabricantes-content{
  max-width:520px;
  color:#000000;
  padding-left:40px;
}

.fabricantes-content h2{
  font-family:"Noto Serif JP", serif;
  font-size:42px;
  font-weight:400;
  margin-bottom:14px;
  white-space:nowrap;
  line-height:1.1;
}

.fabricantes-content .script{
  font-family:"Great Vibes", cursive;
  font-size:52px;
  font-weight:400;
  display:inline-block;
  line-height:1;
  margin-right:8px;
}

.fabricantes-content p{
  font-size:16px;
  line-height:1.7;
  margin-bottom:20px;
}

.btn-fabricantes{
  display:inline-block;
  background:var(--green);
  border:2px solid var(--green);
  color:#fff;
  padding:12px 22px;
  border-radius:8px;
  font-weight:500;
  transition:.25s;
}

.btn-fabricantes:hover{
  background:var(--gold);
  border-color:var(--gold);
  color:#173026;
}


.visit{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:24px;
  align-items:start;
}

.visit-title{
  font-family:"Noto Serif JP", serif;
  font-weight:400;
  margin:0 0 16px;
  font-size:30px;
}

.visit-info{
  padding:8px 4px;
}

.visit-item{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:12px 0;
  border-bottom:1px solid rgba(0,0,0,.10);
}

.visit-item:last-child{
  border-bottom:0;
}

.visit-ico{
  width:34px;
  height:34px;
  color:var(--green);
  display:grid;
  place-items:center;
}

.visit-ico svg{
  width:24px;
  height:24px;
}

.visit-label{
  font-weight:500;
  color:#222;
}

.visit-sub{
  color:var(--muted);
  font-size:14px;
  margin-top:2px;
}

.location-map{
  width:100%;
  height:300px;
  border-radius:12px;
  overflow:hidden;
  box-shadow:none;
}

.location-map iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}



.site-footer{
  border-top:1px solid rgba(0,0,0,.08);
  background:linear-gradient(180deg, #fbf9f9 0%, #f5f2f2 100%);
}

.footer-top{
  padding:12px 0;
  border-bottom:1px solid rgba(0,0,0,.08);
}

.footer-subscribe-row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:30px;
  min-height:72px;
  flex-wrap:nowrap;
}

.footer-label{
  font-size:16px;
  font-weight:600;
  color:#1f1f1f;
  white-space:nowrap;
}

.newsletter-form{
  width:520px;
  flex:0 0 auto;
  max-width:1100px;
  margin-left:1px;
  display:flex;
  align-items:center;
  background:#f8f5f5;
  border:1px solid #ddd7d7;
  border-radius:4px;
  overflow:hidden;
  padding:0;
  min-height:54px;
}

.newsletter-form input{
  border:0;
  outline:none;
  flex:1;
  width:100%;
  background:transparent;
  padding:0 18px;
  font-size:16px;
  color:#333;
}

.newsletter-form input::placeholder{
  color:#9b9494;
}

.send{
  flex:0 0 auto;
  width:58px;
  height:54px;
  border:0;
  border-left:1px solid rgba(0,0,0,.08);
  border-radius:0;
  background:var(--green);
  color:#fff;
  cursor:pointer;
  display:grid;
  place-items:center;
}

.send:hover{
  background:var(--green-2);
}

.send svg{
  width:20px;
  height:20px;
}

.footer-divider{
  width:1px;
  height:40px;
  border-left:2px dotted #d0d0d0;
}

.follow-inline{
  display:flex;
  align-items:center;
  gap:14px;
}

.social{
  display:flex;
  align-items:center;
  gap:14px;
}

.social-btn{
  width:42px;
  height:42px;
  border-radius:999px;
  display:grid;
  place-items:center;
  color:#2d2a2a;
  border:0;
  background:transparent;
  transition:transform .18s ease, opacity .18s ease;
}

.social-btn img{
  width:30px;
  height:30px;
  object-fit:contain;
}

.social-btn:hover{
  background:var(--transparent);
  color:#173026;
  transform:translateY(-3px);
}

.footer-bottom{
  border-top:none;
  padding:14px 0 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.legal{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.legal a{
  color:#222;
  font-size:14px;
}

.legal a:hover{
  color:var(--green);
}

.payments img{
  height:50px;
  width:auto;
  opacity:.95;
}










.product-card{
  align-items:stretch;
}

.product-img{
  aspect-ratio: 1 / 1;
  background:#f6f1ea;
}

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

.product-card-body{
  width:100%;
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  padding:10px 14px 0;
  text-align:center;
}

.product-category{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 11px;
  border-radius:999px;
  background:#f6f1ea;
  color:#8f6a30;
  font-size:11px;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.product-title--item{
  font-size:16px;
  margin:0;
  line-height:1.18;
  min-height:calc(16px * 1.18 * 2);
  max-height:calc(16px * 1.18 * 2);
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  text-overflow:ellipsis;
  overflow-wrap:anywhere;
  word-break:break-word;
  hyphens:auto;
}


.product-price{
  margin:0;
  color:var(--green);
  font-size:16px;
  line-height:1.1;
  font-weight:700;
}

.product-card-actions{
  width:100%;
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  margin-top:4px;
  padding-top:0;
}

.btn-link-category{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:128px;
  padding:10px 14px;
  border-radius:8px;
  border:1px solid var(--gold);
  color:#fff;
  background:var(--gold);
  text-decoration:none;
  font-weight:500;
  transition:.25s;
}

.btn-link-category:hover{
  border-color:var(--gold);
  color:#fff;
  background:#c9a13f;
}

.product-card--empty{
  grid-column:1 / -1;
  padding:38px 24px;
}

.product-empty-copy{
  text-align:center;
  max-width:720px;
  margin:0 auto;
}

.product-empty-copy .product-title{
  margin:0 0 10px;
  font-size:34px;
}

.product-empty-copy p{
  margin:0;
  color:#5f5a52;
  font-size:16px;
  line-height:1.7;
}













.shipment-section{padding-top:18px;margin-top:10px;margin-bottom:24px;}
.section.section-soft + .shipment-section{margin-top:6px;}
#compramos-oro{margin-top:24px;}
.title-decor--left{justify-content:flex-start;}
.shipment-card{display:grid;grid-template-columns:minmax(320px,420px) minmax(320px,1fr);gap:28px;align-items:start;background:linear-gradient(180deg,#fff 0%,#fbf7f0 100%);border:1px solid rgba(198,167,94,.18);border-radius:28px;box-shadow:none;padding:30px;}
.shipment-copy p{margin:0 0 16px;color:var(--muted);line-height:1.7;}
.shipment-search{display:grid;gap:14px;}
.shipment-field{display:grid;gap:8px;font-size:14px;font-weight:600;color:var(--text);}
.shipment-field input{width:100%;height:54px;border-radius:16px;border:1px solid rgba(0,0,0,.12);padding:0 16px;background:#fff;outline:none;transition:border-color .2s ease, box-shadow .2s ease;}
.shipment-field input:focus{border-color:var(--gold);box-shadow:0 0 0 4px rgba(198,167,94,.15);}
.shipment-btn{width:fit-content;min-width:210px;}
.shipment-help{font-size:13px;color:var(--muted);margin:4px 0 0;}
.shipment-result{background:#fff;border:1px solid rgba(0,0,0,.08);border-radius:24px;min-height:100%;padding:24px;}
.shipment-result-empty h3,.shipment-state-head h3{margin:0 0 8px;font-size:24px;}
.shipment-result-empty p,.shipment-state-copy,.shipment-meta p,.shipment-status-note,.shipment-history-item p{margin:0;color:var(--muted);line-height:1.6;}
.shipment-state-top{display:flex;justify-content:space-between;gap:14px;align-items:flex-start;flex-wrap:wrap;margin-bottom:18px;}
.shipment-status-badge{display:inline-flex;align-items:center;justify-content:center;border-radius:999px;padding:9px 14px;font-size:12px;font-weight:700;background:rgba(198,167,94,.18);color:#6d5522;}
.shipment-meta{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px 16px;margin-bottom:18px;}
.shipment-meta-card{padding:14px 16px;border-radius:18px;background:#fcfaf6;border:1px solid rgba(198,167,94,.16);}
.shipment-meta-card span{display:block;font-size:12px;font-weight:700;color:var(--muted);margin-bottom:6px;text-transform:uppercase;letter-spacing:.05em;}
.shipment-meta-card strong{font-size:15px;color:var(--text);word-break:break-word;}
.shipment-status-note{padding:14px 16px;border-left:4px solid var(--gold);background:#fff9f0;border-radius:14px;margin-bottom:18px;}
.shipment-history{display:grid;gap:14px;}
.shipment-history-item{position:relative;padding:0 0 0 28px;}
.shipment-history-item::before{content:'';position:absolute;left:8px;top:8px;width:10px;height:10px;border-radius:50%;background:var(--gold);box-shadow:0 0 0 6px rgba(198,167,94,.15);}
.shipment-history-item::after{content:'';position:absolute;left:12px;top:24px;bottom:-16px;width:2px;background:rgba(198,167,94,.25);}
.shipment-history-item:last-child::after{display:none;}
.shipment-history-item strong{display:block;margin-bottom:4px;font-size:15px;color:var(--text);}
.shipment-history-date{display:block;font-size:12px;color:var(--muted);margin-bottom:6px;}
.shipment-error{border-color:rgba(145,53,53,.16);background:#fff7f7;}
.shipment-error .shipment-result-empty h3{font-size:22px;}




.products{
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:24px;
}

.product-card{
  max-width:none;
  width:100%;
}







.product-title--item,
.product-price,
.product-card-actions .btn,
.product-card-actions .btn-link-category,
.product-empty-copy p {
  font-size: 16px !important;
}

.product-title--item,
.product-price {
  font-family: "Noto Serif JP", serif;
}

.legal a {
  font-size: 14px !important;
}



html, 

body { overflow-x: hidden; }



.products--slider{
  display:flex;
  gap:24px;
  align-items:stretch;
  grid-auto-flow:initial;
  grid-auto-columns:initial;
  grid-template-columns:none;
}

.products--slider .product-card{
  flex:0 0 320px;
  width:320px;
  max-width:320px;
  min-width:320px;
  align-self:stretch;
  justify-self:auto;
}

.products--slider .product-card--empty{
  flex:1 1 100%;
  width:100%;
  max-width:none;
  min-width:min(100%, 320px);
}

.products--slider .product-card-body{
  justify-content:flex-start;
}

.products--slider .product-card-actions{
  margin-top:auto;
  padding-top:8px;
}






 .section-anchor{display:block;position:relative;visibility:hidden;height:0;scroll-margin-top:140px;}

#compramos-tu-oro,
#somos-fabricantes-de-joyas,
#sobre-nosotros,
#rastrea-tu-pedido,
#visitanos{scroll-margin-top:140px !important;}





.header-actions{
  position:relative;
}

.header-search{
  position:relative;
  right:auto;
  top:auto;
  transform:none;
  width:clamp(260px, 24vw, 360px);
  min-width:220px;
  z-index:8;
  overflow:visible;
  flex:0 0 clamp(260px, 24vw, 360px);
}
.header-search::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:100%;
  height:14px;
}
.search-input-wrap{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  width:100%;
  margin-left:auto;
  transition:none;
}
.header-search.is-open .search-input-wrap{
  width:100%;
}
.search-input{
  width:100%;
  height:38px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:999px;
  background:rgba(255,255,255,.06);
  color:#ffffff;
  padding:0 40px 0 18px;
  font-size:16px;
  line-height:1.2;
  outline:none;
  opacity:1;
  pointer-events:auto;
  visibility:visible;
  transition:background .18s ease, border-color .18s ease;
}
.header-search.is-open .search-input{
  opacity:1;
  pointer-events:auto;
  visibility:visible;
}
.search-input::placeholder{ color:rgba(255,255,255,.72); font-size:16px; }
.search-input:focus{
  border-color:rgba(255,255,255,.5);
  background:rgba(255,255,255,.1);
}
.search-submit{
  position:absolute;
  right:4px;
  top:50%;
  transform:translateY(-50%);
  width:30px;
  height:30px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  color:#ffffff;
  display:grid;
  place-items:center;
  cursor:pointer;
}
.search-submit svg{ width:16px; height:16px; }
.search-results{
  position:absolute;
  top:calc(100% + 4px);
  right:0;
  width:100%;
  max-height:278px;
  overflow-y:auto;
  overflow-x:hidden;
  background:#ffffff;
  border:1px solid rgba(0,0,0,.1);
  border-radius:16px;
  box-shadow:0 18px 40px rgba(0,0,0,.18);
  padding:6px;
  display:none;
  z-index:200;
}
.search-results.is-visible{ display:block; }
.search-result{
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px;
  border-radius:12px;
  color:#1f1f1f;
}
.search-result:hover,
.search-result.is-active{ background:rgba(198,167,94,.14); }
.search-result img{
  width:48px;
  height:48px;
  object-fit:cover;
  border-radius:10px;
  background:#f2f2f2;
  flex:0 0 48px;
}
.search-result-info{ min-width:0; width:100%; overflow:hidden; }
.search-result-title{
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  overflow:hidden;
  text-overflow:ellipsis;
  word-break:break-word;
  overflow-wrap:anywhere;
  font-size:13px;
  font-weight:600;
  line-height:1.25;
}
.search-result-meta{
  margin-top:4px;
  color:#666;
  font-size:11px;
}
.search-result-extra{
  display:block;
  margin-top:3px;
  color:#3b3b3b;
  font-size:11px;
  font-weight:600;
  line-height:1.35;
}
.search-empty{
  padding:12px 10px;
  color:#666;
  font-size:13px;
}










.whatsapp-btn-png{
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-family: "Noto Serif JP", serif;
}
.whatsapp-btn-png img{
    width: 68px;
    height: 68px;
    border-radius: 50%;
    box-shadow: 0 10px 24px rgba(0,0,0,.28);
    animation: whatsappPulse 2s infinite;
}
.whatsapp-text{
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    color: #2b2b2b;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.35;
    box-shadow: 0 8px 20px rgba(0,0,0,.18);
    width: 240px;
    max-width: 240px;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    transition: opacity .4s ease, visibility .4s ease;
}
.whatsapp-text.hide{
    opacity: 0;
    visibility: hidden;
}
@keyframes whatsappPulse{
0%{transform:scale(1);box-shadow:0 10px 24px rgba(0,0,0,.28),0 0 0 0 rgba(37,211,102,.32);}
70%{transform:scale(1);box-shadow:0 10px 24px rgba(0,0,0,.28),0 0 0 16px rgba(37,211,102,0);}
100%{transform:scale(1);box-shadow:0 10px 24px rgba(0,0,0,.28),0 0 0 0 rgba(37,211,102,0);}
}




.shipment-meta-card--products{grid-column:1 / -1;}
.shipment-products-list{display:grid;gap:12px;max-height:260px;overflow-y:auto;padding-right:6px;align-content:start;}
.shipment-products-list::-webkit-scrollbar{width:10px;}
.shipment-products-list::-webkit-scrollbar-track{background:#f5ede2;border-radius:999px;}
.shipment-products-list::-webkit-scrollbar-thumb{background:#c6a75e;border-radius:999px;border:2px solid #f5ede2;}
.shipment-products-list::-webkit-scrollbar-thumb:hover{background:#b38f43;}
.shipment-products-empty{padding:14px 16px;border:1px dashed var(--line);border-radius:16px;background:#fffaf3;color:var(--muted);font-weight:600;}
.shipment-product-card{display:grid;grid-template-columns:84px minmax(0,1fr);gap:14px;align-items:center;padding:12px;border:1px solid var(--line);border-radius:18px;background:#fffaf3;}
.shipment-product-card__image-wrap{width:84px;height:84px;border-radius:16px;overflow:hidden;background:#f5ede2;border:1px solid rgba(0,0,0,.04);}
.shipment-product-card__image{width:100%;height:100%;display:block;object-fit:cover;}
.shipment-product-card__body{min-width:0;display:grid;gap:6px;}
.shipment-product-card__title{margin:0;font-size:16px;line-height:1.3;color:var(--text);word-break:break-word;}
.shipment-product-card__meta{display:flex;flex-wrap:wrap;gap:8px 16px;color:var(--muted);font-size:14px;}
.shipment-product-card__meta strong{color:var(--text);}
.shipment-product-card__price{color:var(--accent-dark);font-weight:700;}
.shipment-product-card__price strong{color:var(--text);}















































.menu-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:4px;
  color:#ffffff;
}

.menu-toggle span{
  display:block;
  width:18px;
  height:2px;
  margin:0;
  background:#ffffff !important;
  border-radius:999px;
  opacity:1;
}












