* { margin: 0; padding: 0; box-sizing: border-box; }

:root{
  --black:#0a0a0a;
  --white:#ffffff;
  --yellow:#e59e2c;
}

/* =========================
   BASE
   ========================= */

html{
  scroll-behavior: smooth;
}

body{
  font-family: Helvetica, Arial, sans-serif;
  background-image: url("../assets/images/fondo.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;

  /* para que el header fijo no tape el contenido */
  padding-top: 96px;

  /* transición global */
  opacity: 1;
  transition: opacity 0.45s ease;
}

/* =========================
   HEADER FIJO
   ========================= */

.header{
  background: var(--black);
  color: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px 40px;
}

.header-left{
  display: flex;
  align-items: center;
}

.logo{
  font-weight: 700;
  font-size: 22px;
}

.logo-sub{
  margin-left: 10px;
  color: var(--yellow);
  font-family: "Cormorant Garamond", serif;
}

.logo-link{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.logo-link:hover{
  text-decoration: none;
}

.logo-link .logo{
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
}

.logo-link .logo-sub{
  margin-left: 10px;
  color: var(--yellow);
  font-family: "Cormorant Garamond", serif;
}

.logo-link:hover .logo{
  color: var(--white);
}

.logo-link:hover .logo-sub{
  color: var(--yellow);
}

.header-nav{
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-nav a{
  color: var(--white);
  text-decoration: none;
  margin-left: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  height: 24px;
  transition: opacity 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.header-nav a:hover{
  color: var(--yellow);
  transform: translateY(-1px);
}

.nav-dropdown{
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 24px;
}

/* puente invisible para que no se cierre el menú */
.nav-dropdown::after{
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 14px;
}

.nav-dropdown-toggle{
  background: transparent;
  border: none;
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  height: 24px;
}

.nav-dropdown-toggle:hover{
  color: var(--yellow);
}

.nav-dropdown-menu{
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 220px;
  background: rgba(10,10,10,0.98);
  border: 1px solid rgba(229,158,44,0.45);
  padding: 12px 0;
  display: none;
  z-index: 1100;
}

.nav-dropdown:hover .nav-dropdown-menu{
  display: block;
}

.nav-dropdown-menu a{
  display: block;
  height: auto;
  padding: 10px 18px;
  color: var(--white);
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
}

.nav-dropdown-menu a:hover{
  background: rgba(229,158,44,0.08);
  color: var(--yellow);
}

/* =========================
   FOOTER FIJO
   ========================= */

.footer{
  background: var(--black);
  color: var(--white);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  display:flex;
  justify-content: space-between;
  align-items:center;
  padding: 20px 40px;
}

.social a{
  color: var(--white);
  margin-left: 20px;
  font-size: 20px;
}

.social a:hover{
  color: var(--yellow);
}

/* para que el footer no tape contenido */
main{
  padding-bottom: 120px;
}

/* =========================
   HERO
   ========================= */

.hero{
  padding: 60px 40px;
  color: var(--white);
}

.hero-title{
  text-align:center;
  font-size: 48px;
  font-weight: 700;
}

.hero-subtitle{
  text-align:center;
  font-family: "Cormorant Garamond", serif;
  color: var(--yellow);
  margin: 10px 0 50px;
}

.hero-grid{
  display: grid;
  grid-template-columns: 3fr 2fr; /* 60 / 40 */
  gap: 40px;
  align-items: start;
}

/* =========================
   CARRUSEL
   ========================= */

.carousel{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.carousel-viewport{
  width: 100%;
  max-width: none;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.carousel-viewport img{
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  opacity: 1;
  transition: opacity 0.25s ease;
}

.carousel-btn{
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.55);
  color: var(--yellow);
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-btn:hover{
  transform: scale(1.1);
  background: rgba(0,0,0,0.8);
}

/* =========================
   CURATORIAL
   ========================= */

.curatorial{
  border: 2px solid #ffffff;
  padding: 30px 34px;
  color: #ffffff;
  width: 100%;
}

.curatorial-text{
  text-align: justify;
  font-size: 15px;
  line-height: 1.62;
}

.curatorial-author{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid #ffffff;
  text-align: right;
  font-size: 13px;
  font-style: italic;
  color: #ffffff;
  line-height: 1.2;
}

/* =========================
   ARTISTA
   ========================= */

.artist{
  padding: 80px 40px;
}

.section-label{
  font-family: "Cormorant Garamond", serif;
  color: var(--yellow);
}

.artist-name{
  font-size: 36px;
  font-weight: 700;
  margin: 10px 0 40px;
  color: var(--white);
}

.artist-grid{
  display:grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.artist-text{
  background: rgba(255,255,255,0.95);
  padding: 40px;
}

.cv-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.cv-col h3{
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  margin-bottom: 12px;
  color: #000;
}

.cv-col p{
  color: #000;
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 10px;
}

.cv-col strong{
  font-weight: 700;
}

.artist-photo{
  height: 100%;
}

.artist-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.check-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 40px;
  margin-top: 10px;
}

.check-item{
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000;
  font-size: 15px;
}

.check-item input{
  width: 18px;
  height: 18px;
  accent-color: #e59e2c;
}

/* =========================
   CONTACTO
   ========================= */

.contact-page{
  padding: 40px 40px 120px;
}

.contact-title{
  text-align: center;
  font-size: 64px;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: 1px;
  margin: 10px 0 30px;
}

.contact-frame{
  max-width: 750px;
  margin: 0 auto;
  border: 3px solid #ffffff;
  padding: 28px;
}

.contact-card{
  background: rgba(255,255,255,0.98);
  padding: 35px 40px 45px;
}

.contact-section-title{
  color: #000;
  font-size: 22px;
  font-weight: 800;
  margin: 6px 0 10px;
}

.contact-form{
  width: 100%;
}

.form-grid{
  display: grid;
  gap: 26px 60px;
  margin-bottom: 32px;
}

.form-grid.two{
  grid-template-columns: 1fr 1fr;
}

.field label{
  display: block;
  color: #6b7688;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 3px;
}

.field input,
.field textarea,
.field select{
  width: 100%;
  border: none;
  border-bottom: 3px solid #6b7688;
  background: transparent;
  outline: none;
  font-size: 16px;
  color: #000;
  font-family: Helvetica, Arial, sans-serif;
  padding: 0px 2px 4px;
  line-height: 1;
  height: 32px;
  appearance: none;
}

.field textarea{
  resize: none;
  overflow: hidden;
  min-height: 90px;
  margin-top: 0;
}

.field textarea::placeholder{
  color: #8a93a3;
}

.check-list{
  margin-top: 6px;
  display: grid;
  gap: 10px;
}

.check-item{
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000;
  font-size: 16px;
}

.check-item input{
  width: 18px;
  height: 18px;
  accent-color: var(--yellow);
}

.iti{
  width: 100%;
}

.iti__selected-flag{
  border: none;
}

.iti input{
  padding-left: 52px !important;
}

.iti--allow-dropdown input{
  padding-left: 58px !important;
}

.form-submit{
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.btn-enviar{
  display: inline-block;
  padding: 12px 34px;
  background: #0a0a0a;
  color: #ffffff;
  border: 2px solid #ffffff;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  z-index: 2;
  transition: opacity 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.btn-enviar:hover{
  transform: translateY(-2px);
}

.form-status{
  text-align: center;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  min-height: 18px;
}

.form-status.ok{ color: #2e7d32; }
.form-status.error{ color: #c62828; }

/* =========================
   QUIÉNES SOMOS
   ========================= */

.about-single-section{
  max-width: 1500px;
  margin: 0 auto;
  padding: 60px 40px 120px;
}

.about-single-wrapper{
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
  align-items: start;
}

.about-single-image-box{
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.about-single-image{
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-single-text-box{
  border: none;
  background: transparent;
}

.about-single-text-inner{
  padding: 0;
  max-width: 760px;
}

.about-single-title{
  color: var(--yellow);
  font-size: 64px;
  font-weight: 400;
  margin-bottom: 10px;
  margin-top: 0;
  line-height: 0.95;
}

.about-single-text-inner p{
  color: rgba(255,255,255,0.96);
  font-size: 15px;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 14px;
}

.about-single-text-inner p:last-child{
  margin-bottom: 0;
}

@media (max-width: 1100px){
  .about-single-wrapper{
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .about-single-image-box{
    justify-content: center;
  }

  .about-single-image{
    max-width: 480px;
  }
}

@media (max-width: 700px){
  .about-single-section{
    padding: 35px 18px 120px;
  }

  .about-single-title{
    font-size: 42px;
  }

  .about-single-text-inner p{
    font-size: 15px;
    line-height: 1.7;
  }

  .about-single-image{
    max-width: 100%;
  }
}

/* =========================
   TIENDA
   ========================= */

.shop-page{
  max-width: 1450px;
  margin: 0 auto;
  padding: 40px 40px 120px;
}

.shop-title{
  text-align: center;
  color: var(--white);
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 45px;
}

.shop-toolbar{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 45px;
  color: var(--white);
}

.shop-sort{
  display: flex;
  align-items: center;
  gap: 16px;
}

.shop-sort-label{
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.shop-sort select{
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  font-size: 16px;
  font-family: Helvetica, Arial, sans-serif;
  padding: 6px 0;
  outline: none;
}

.shop-sort select option{
  color: #000;
}

.shop-count{
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
}

.shop-grid{
  display: grid;
  grid-template-columns: repeat(3, 280px);
  justify-content: center;
  gap: 85px 110px;
  align-items: start;
}

.product-card{
  width: 280px;
  text-decoration: none;
  color: var(--white);
  display: block;
}

.product-image-wrap{
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 18px;
  background: rgba(255,255,255,0.04);
}

.product-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.product-card:hover .product-image{
  transform: scale(1.03);
}

.product-name{
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.product-price{
  font-size: 15px;
  font-weight: 700;
}

.shop-empty{
  grid-column: 1 / -1;
  text-align: center;
  color: var(--white);
  font-size: 18px;
  padding: 40px 0 20px;
  font-family: "Cormorant Garamond", serif;
}

/* ver todo: uniforme */
.shop-page.category-view .product-image-wrap{
  aspect-ratio: var(--art-ratio, 4 / 5);
  background: transparent;
}

.shop-page.category-view .product-image{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shop-page.category-view .shop-grid{
  row-gap: 95px;
}

.shop-page.category-view .product-card{
  align-self: start;
}

/* =========================
   PRODUCTO INDIVIDUAL
   ========================= */

.product-detail-page{
  max-width: 1450px;
  margin: 0 auto;
  padding: 40px 40px 120px;
}

.product-detail-grid{
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 520px);
  gap: 70px;
  align-items: start;
}

.product-detail-image-box{
  background: rgba(255,255,255,0.03);
  padding: 22px;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-detail-image-box img{
  max-width: 100%;
  max-height: 700px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.product-detail-category{
  color: var(--yellow);
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  margin-bottom: 10px;
}

.product-detail-code{
  color: var(--white);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 10px;
}

.product-detail-technique{
  color: rgba(255,255,255,0.9);
  font-size: 22px;
  margin-bottom: 24px;
}

.product-detail-price{
  color: var(--white);
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 28px;
}

.product-detail-specs{
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}

.product-detail-spec{
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 10px;
}

.product-detail-label{
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.product-detail-value{
  color: var(--white);
  font-size: 18px;
}

.product-detail-note{
  color: rgba(255,255,255,0.88);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 28px 0;
  padding: 0;
  max-width: none;
  width: 100%;
  text-align: left;
}

.product-detail-actions{
  display: grid;
  grid-template-columns: repeat(2, 240px);
  gap: 14px 16px;
  justify-content: start;
  margin: 0;
  padding: 0;
}

.product-detail-actions .product-detail-btn:last-child{
  grid-column: 1 / span 2;
  justify-self: center;
}

.product-detail-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 14px 22px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  background: transparent;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.product-detail-btn:hover{
  transform: translateY(-2px);
}

.product-detail-btn.primary,
.paypal-btn{
  background: var(--yellow);
  color: #000;
  border-color: var(--yellow);
}

.product-detail-btn.primary:hover,
.paypal-btn:hover{
  background: #f0ad43;
  color: #000;
}

.product-not-found{
  text-align: center;
  color: var(--white);
  padding: 80px 20px;
}

.product-not-found h1{
  font-size: 42px;
  margin-bottom: 16px;
}

.product-not-found p{
  font-size: 18px;
  margin-bottom: 24px;
}

/* =========================
   PAGE TRANSITIONS
   ========================= */

body.page-loaded{
  animation: pageFadeIn 0.45s ease both;
}

body.page-leaving{
  opacity: 0;
  pointer-events: none;
}

@keyframes pageFadeIn{
  from{ opacity: 0; }
  to{ opacity: 1; }
}

.page-transition{
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  z-index: 20000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.page-transition.active{
  opacity: 1;
  pointer-events: all;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1100px){
  .about-single-wrapper{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-single-image-placeholder{
    max-width: 100%;
    height: 520px;
  }

  .shop-grid{
    grid-template-columns: repeat(2, 280px);
    gap: 70px 80px;
  }
}

@media (max-width: 980px){
  .product-detail-grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-detail-image-box{
    min-height: 420px;
  }

  .product-detail-code{
    font-size: 40px;
  }

  .product-detail-price{
    font-size: 28px;
  }
}

@media (max-width: 900px){
  .contact-title{
    font-size: 42px;
  }

  .form-grid.two{
    grid-template-columns: 1fr;
  }

  .contact-card{
    padding: 28px;
  }
}

@media (max-width: 700px){
  .about-single-section{
    padding: 40px 20px 120px;
  }

  .about-single-text-inner{
    padding: 28px 24px;
  }

  .about-single-title{
    font-size: 40px;
  }

  .about-single-text-inner p{
    font-size: 16px;
    line-height: 1.7;
  }

  .about-single-image-placeholder{
    height: 420px;
  }

  .shop-page{
    padding: 30px 20px 120px;
  }

  .shop-title{
    font-size: 40px;
  }

  .shop-toolbar{
    flex-direction: column;
    align-items: flex-start;
  }

  .shop-grid{
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 40px;
  }

  .product-card{
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .product-detail-page{
    padding: 30px 20px 120px;
  }

  .product-detail-code{
    font-size: 34px;
  }

  .product-detail-technique{
    font-size: 20px;
  }
}

/* =========================================
   RESPONSIVE GLOBAL
   Pegar al FINAL del styles.css
   ========================================= */

img,
video,
iframe{
  max-width: 100%;
  height: auto;
}

html, body{
  overflow-x: hidden;
}

body{
  width: 100%;
}

/* dropdown también en touch */
.nav-dropdown:focus-within .nav-dropdown-menu{
  display: block;
}

/* =========================
   TABLET GRANDE
   ========================= */
@media (max-width: 1200px){

  .header{
    padding: 18px 28px;
  }

  .header-nav{
    gap: 18px;
  }

  .hero-title{
    font-size: 40px;
  }

  .hero-grid{
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .carousel-viewport{
    max-width: 100%;
    height: 480px;
  }

  .artist-grid{
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .artist-photo{
    max-width: 520px;
  }

  .about-single-wrapper{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-single-image-box{
    justify-content: center;
  }

  .about-single-image-placeholder{
    max-width: 520px;
    height: 560px;
  }

  .shop-grid{
    grid-template-columns: repeat(2, 280px);
    gap: 70px 70px;
  }

  .product-detail-grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-detail-image-box{
    min-height: 420px;
  }

  .product-detail-actions{
    grid-template-columns: repeat(2, 220px);
  }
}

/* =========================
   TABLET
   ========================= */
@media (max-width: 992px){

  body{
    padding-top: 125px;
  }

  .header{
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 24px;
    text-align: center;
    padding: 16px 24px;
  }

  .header-left{
    width: 100%;
    justify-content: center;
  }

  .logo-link{
    justify-content: center;
  }

  .header-nav{
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 20px;
  }

  .footer{
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    text-align: center;
    padding: 16px 24px;
  }

  .hero{
    padding: 40px 24px;
  }

  .hero-title{
    font-size: 34px;
  }

  .hero-subtitle{
    margin-bottom: 35px;
  }

  .carousel{
    gap: 16px;
  }

  .carousel-viewport{
    height: 400px;
  }

  .curatorial{
    padding: 28px;
  }

  .artist{
    padding: 60px 24px;
  }

  .artist-name{
    font-size: 30px;
    margin-bottom: 28px;
  }

  .artist-text{
    padding: 28px;
  }

  .cv-grid{
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-single-section{
    padding: 45px 24px 120px;
  }

  .about-single-text-inner{
    padding: 0;
  }

  .about-single-title{
    font-size: 42px;
  }

  .shop-page{
    padding: 30px 24px 120px;
  }

  .shop-title{
    font-size: 40px;
    margin-bottom: 30px;
  }

  .shop-toolbar{
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 30px;
  }

  .shop-grid{
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    justify-content: center;
    gap: 50px 40px;
  }

  .product-card{
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .contact-page{
    padding: 30px 24px 120px;
  }

  .contact-title{
    font-size: 46px;
  }

  .contact-frame{
    padding: 20px;
  }

  .contact-card{
    padding: 28px;
  }

  .form-grid.two{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .product-detail-page{
    padding: 30px 24px 120px;
  }

  .product-detail-code{
    font-size: 40px;
  }

  .product-detail-technique{
    font-size: 20px;
  }

  .product-detail-price{
    font-size: 28px;
  }

  .nav-dropdown-menu{
    left: 50%;
    transform: translateX(-50%);
  }
}

/* =========================
   MÓVIL
   ========================= */
@media (max-width: 768px){

  body{
    padding-top: 145px;
  }

  main{
    padding-bottom: 140px;
  }

  .header{
    padding: 14px 18px;
    gap: 10px;
  }

  .logo-link .logo{
    font-size: 20px;
  }

  .logo-link .logo-sub{
    font-size: 18px;
  }

  .header-nav{
    gap: 10px 16px;
  }

  .header-nav a,
  .nav-dropdown-toggle{
    font-size: 15px;
  }

  .footer{
    padding: 14px 18px;
  }

  .social a{
    margin-left: 14px;
    font-size: 18px;
  }

  .hero{
    padding: 30px 18px;
  }

  .hero-title{
    font-size: 28px;
  }

  .hero-subtitle{
    font-size: 18px;
    margin-bottom: 26px;
  }

  .carousel{
    gap: 10px;
  }

  .carousel-viewport{
    height: 300px;
  }

  .carousel-btn{
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  .curatorial{
    padding: 22px;
  }

  .curatorial-text{
    font-size: 15px;
    line-height: 1.65;
  }

  .artist{
    padding: 45px 18px;
  }

  .artist-name{
    font-size: 26px;
  }

  .artist-text{
    padding: 22px;
  }

  .check-grid{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-single-section{
    padding: 35px 18px 120px;
  }

  .about-single-title{
    font-size: 34px;
  }

  .about-single-text-inner p{
    font-size: 15px;
    line-height: 1.7;
  }

  .about-single-image-placeholder{
    height: 420px;
  }

  .shop-page{
    padding: 25px 18px 120px;
  }

  .shop-title{
    font-size: 34px;
  }

  .shop-grid{
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .product-card{
    max-width: 300px;
  }

  .product-name{
    font-size: 16px;
  }

  .product-price{
    font-size: 15px;
  }

  .shop-count{
    font-size: 18px;
  }

  .contact-page{
    padding: 25px 18px 120px;
  }

  .contact-title{
    font-size: 36px;
  }

  .contact-frame{
    padding: 14px;
  }

  .contact-card{
    padding: 22px 18px 28px;
  }

  .contact-section-title{
    font-size: 20px;
  }

  .field label{
    font-size: 16px;
  }

  .field input,
  .field select,
  .field textarea{
    font-size: 15px;
  }

  .btn-enviar{
    width: 100%;
    max-width: 280px;
  }

  .product-detail-page{
    padding: 25px 18px 120px;
  }

  .product-detail-image-box{
    padding: 16px;
    min-height: 300px;
  }

  .product-detail-category{
    font-size: 20px;
  }

  .product-detail-code{
    font-size: 32px;
  }

  .product-detail-technique{
    font-size: 18px;
    margin-bottom: 18px;
  }

  .product-detail-price{
    font-size: 24px;
    margin-bottom: 22px;
  }

  .product-detail-value{
    font-size: 16px;
  }

  .product-detail-note{
    font-size: 15px;
    line-height: 1.65;
  }

  .product-detail-actions{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-detail-actions .product-detail-btn:last-child{
    grid-column: auto;
    justify-self: stretch;
  }

  .product-detail-btn{
    width: 100%;
    min-width: 0;
    padding: 14px 18px;
    font-size: 15px;
  }

  .nav-dropdown-menu{
    min-width: 200px;
  }
}

/* =========================
   MÓVIL PEQUEÑO
   ========================= */
@media (max-width: 480px){

  body{
    padding-top: 155px;
  }

  .logo-link{
    flex-direction: column;
    gap: 2px;
  }

  .logo-link .logo-sub{
    margin-left: 0;
  }

  .header-nav{
    gap: 8px 12px;
  }

  .header-nav a,
  .nav-dropdown-toggle{
    font-size: 14px;
  }

  .hero-title{
    font-size: 24px;
  }

  .hero-subtitle{
    font-size: 16px;
  }

  .carousel-viewport{
    height: 240px;
  }

  .artist-name{
    font-size: 24px;
  }

  .about-single-title{
    font-size: 30px;
  }

  .shop-title{
    font-size: 30px;
  }

  .contact-title{
    font-size: 30px;
  }

  .product-detail-code{
    font-size: 28px;
  }

  .product-detail-category{
    font-size: 18px;
  }

  .product-detail-price{
    font-size: 22px;
  }

  .nav-dropdown-menu{
    left: 50%;
    transform: translateX(-50%);
    min-width: 190px;
  }
}

.product-detail-artist{
  color: rgba(255,255,255,0.9);
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 18px;
}

@media (max-width: 700px){
  .product-detail-artist{
    font-size: 22px;
    margin-bottom: 14px;
  }
}

/* =========================
   PRODUCTO INDIVIDUAL - MÁS COMPACTO
   ========================= */

.product-detail-page{
  padding: 20px 40px 120px;
}

.product-detail-grid{
  gap: 48px;
}

.product-detail-image-box{
  padding: 18px;
  min-height: 500px;
}

.product-detail-category{
  font-size: 20px;
  margin-bottom: 6px;
}

.product-detail-code{
  font-size: 44px;
  line-height: 1;
  margin-bottom: 8px;
}

.product-detail-artist{
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.product-detail-technique{
  font-size: 16px;
  margin-bottom: 14px;
}

.product-detail-price{
  font-size: 28px;
  margin-bottom: 18px;
}

.product-detail-specs{
  gap: 8px;
  margin-bottom: 18px;
}

.product-detail-spec{
  padding-bottom: 8px;
}

.product-detail-label{
  font-size: 12px;
  margin-bottom: 2px;
}

.product-detail-value{
  font-size: 15px;
}

.product-detail-note{
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 16px;
}

.product-detail-actions{
  grid-template-columns: repeat(2, 210px);
  gap: 10px 12px;
}

.product-detail-btn{
  padding: 12px 16px;
  font-size: 14px;
  min-width: 0;
}

@media (max-width: 980px){
  .product-detail-page{
    padding: 24px 24px 120px;
  }

  .product-detail-grid{
    gap: 30px;
  }

  .product-detail-image-box{
    min-height: 380px;
  }

  .product-detail-code{
    font-size: 36px;
  }

  .product-detail-artist{
    font-size: 22px;
  }
}

@media (max-width: 700px){
  .product-detail-page{
    padding: 20px 18px 120px;
  }

  .product-detail-code{
    font-size: 30px;
  }

  .product-detail-artist{
    font-size: 20px;
    margin-bottom: 8px;
  }

  .product-detail-technique{
    font-size: 15px;
    margin-bottom: 12px;
  }

  .product-detail-price{
    font-size: 24px;
    margin-bottom: 16px;
  }

  .product-detail-note{
    font-size: 13.5px;
    line-height: 1.5;
  }

  .product-detail-actions{
    grid-template-columns: 1fr;
  }

  .product-detail-actions .product-detail-btn:last-child{
    grid-column: auto;
    justify-self: stretch;
  }
}

/* =========================
   POMPIERE - TÍTULOS ESPECÍFICOS
   ========================= */

/* INDEX */
.hero-subtitle,
.artist-name{
  font-family: "Pompiere", sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* QUIÉNES SOMOS */
.about-single-title{
  font-family: "Pompiere", sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* TIENDA */
.shop-title,
.shop-sort-label,
.shop-count{
  font-family: "Pompiere", sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* CONTACTO */
.contact-title{
  font-family: "Pompiere", sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* =========================
   POMPIERE - FORZADO
   ========================= */

  .hero-subtitle,
.artist-name,
.about-single-title,
.shop-title,
.shop-sort-label,
.shop-count,
.contact-title{
  font-family: "Pompiere", cursive !important;
  font-weight: 400 !important;
  letter-spacing: 0.4px !important;
}

/* =========================
   POMPIERE - AJUSTE FINO
   ========================= */

/* INDEX */
.hero-subtitle{
  font-family: "Pompiere", cursive !important;
  font-size: 42px;
  line-height: 1;
  letter-spacing: 1.2px !important;
  font-weight: 400 !important;
}

.artist-name{
  font-family: "Pompiere", cursive !important;
  font-size: 44px;
  line-height: 1;
  letter-spacing: 1px !important;
  font-weight: 400 !important;
  text-transform: uppercase;
}

/* QUIÉNES SOMOS */
.about-single-title{
  font-family: "Pompiere", cursive !important;
  font-size: 64px;
  line-height: 0.95;
  letter-spacing: 1.5px !important;
  font-weight: 400 !important;
}

/* TIENDA */
.shop-title{
  font-family: "Pompiere", cursive !important;
  font-size: 76px;
  line-height: 0.95;
  letter-spacing: 1.2px !important;
  font-weight: 400 !important;
}

.shop-sort-label{
  font-family: "Pompiere", cursive !important;
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.8px !important;
  font-weight: 400 !important;
  text-transform: none;
}

.shop-count{
  font-family: "Pompiere", cursive !important;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.8px !important;
  font-weight: 400 !important;
}

/* CONTACTO */
.contact-title{
  font-family: "Pompiere", cursive !important;
  font-size: 72px;
  line-height: 0.95;
  letter-spacing: 1.3px !important;
  font-weight: 400 !important;
}

/* responsive */
@media (max-width: 992px){
  .hero-subtitle{ font-size: 34px; }
  .artist-name{ font-size: 36px; }
  .about-single-title{ font-size: 52px; }
  .shop-title{ font-size: 60px; }
  .shop-sort-label{ font-size: 24px; }
  .shop-count{ font-size: 26px; }
  .contact-title{ font-size: 58px; }
}

@media (max-width: 700px){
  .hero-subtitle{ font-size: 28px; }
  .artist-name{ font-size: 30px; }
  .about-single-title{ font-size: 42px; }
  .shop-title{ font-size: 46px; }
  .shop-sort-label{ font-size: 20px; }
  .shop-count{ font-size: 22px; }
  .contact-title{ font-size: 44px; }
}

@media (max-width: 480px){
  .hero-subtitle{ font-size: 24px; }
  .artist-name{ font-size: 26px; }
  .about-single-title{ font-size: 36px; }
  .shop-title{ font-size: 38px; }
  .shop-sort-label{ font-size: 18px; }
  .shop-count{ font-size: 20px; }
  .contact-title{ font-size: 36px; }
}

/* =========================
   POMPIERE - AJUSTE FINO SOLO TIENDA
   ========================= */

.shop-title{
  font-family: "Pompiere", cursive !important;
  font-size: 72px;
  line-height: 0.9;
  letter-spacing: 1.2px !important;
  font-weight: 400 !important;
  margin-bottom: 34px;
}

.shop-toolbar{
  align-items: flex-end;
  margin-bottom: 38px;
}

.shop-sort{
  gap: 18px;
}

.shop-sort-label{
  font-family: "Pompiere", cursive !important;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.8px !important;
  font-weight: 400 !important;
  text-transform: uppercase;
  transform: translateY(-2px);
}

.shop-sort select{
  font-size: 17px;
  padding: 4px 0 8px;
}

.shop-count{
  font-family: "Pompiere", cursive !important;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0.8px !important;
  font-weight: 400 !important;
  transform: translateY(-2px);
}

@media (max-width: 992px){
  .shop-title{
    font-size: 58px;
    margin-bottom: 26px;
  }

  .shop-toolbar{
    margin-bottom: 28px;
  }

  .shop-sort-label{
    font-size: 21px;
  }

  .shop-count{
    font-size: 23px;
  }
}

@media (max-width: 700px){
  .shop-title{
    font-size: 44px;
    margin-bottom: 20px;
  }

  .shop-toolbar{
    align-items: flex-start;
    margin-bottom: 22px;
  }

  .shop-sort{
    gap: 12px;
    flex-wrap: wrap;
  }

  .shop-sort-label{
    font-size: 18px;
    transform: none;
  }

  .shop-sort select{
    font-size: 15px;
    padding: 2px 0 6px;
  }

  .shop-count{
    font-size: 20px;
    transform: none;
  }
}

.about-single-image{
  width: 100%;
  max-width: 480px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* =========================
   ABOUT - LAYOUT LIMPIO PROFESIONAL
   ========================= */

.about-flow-section{
  max-width: 1500px;
  margin: 0 auto;
  padding: 42px 64px 120px;
}

.about-flow-inner{
  color: rgba(255,255,255,0.96);
}

.about-flow-inner::after{
  content: "";
  display: block;
  clear: both;
}

.about-flow-image{
  float: left;
  width: 360px;
  height: 450px;
  object-fit: cover;
  object-position: center top;
  display: block;
  margin: 0 34px 18px 0;
}

.about-flow-title{
  color: var(--yellow);
  font-family: "Pompiere", cursive !important;
  font-size: 58px;
  font-weight: 400;
  line-height: 0.92;
  margin: 0 0 14px 0;
}

.about-flow-inner p{
  font-size: 15px;
  line-height: 1.68;
  text-align: justify;
  margin-bottom: 14px;
  max-width: none;
}

/* Tablet */
@media (max-width: 1100px){
  .about-flow-section{
    padding: 34px 38px 120px;
  }

  .about-flow-image{
    width: 300px;
    height: 380px;
    margin: 0 26px 16px 0;
  }

  .about-flow-title{
    font-size: 48px;
  }

  .about-flow-inner p{
    font-size: 14.5px;
    line-height: 1.62;
  }
}

/* Móvil */
@media (max-width: 700px){
  .about-flow-section{
    padding: 28px 18px 120px;
  }

  .about-flow-image{
    float: none;
    width: 100%;
    max-width: 320px;
    height: auto;
    aspect-ratio: 4 / 5;
    margin: 0 auto 20px auto;
  }

  .about-flow-title{
    font-size: 42px;
    margin-bottom: 12px;
  }

  .about-flow-inner p{
    font-size: 15px;
    line-height: 1.62;
  }
}

.hero-subtitle-link{
  color: inherit;
  text-decoration: none;
}

.hero-subtitle-link:hover{
  opacity: 0.85;
}

.curatorial-link{
  color: var(--yellow);
  text-decoration: none;
  border-bottom: 1px solid rgba(229,158,44,0.6);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.curatorial-link:hover{
  color: #f0ad43;
  border-bottom-color: #f0ad43;
}

.contact-privacy-box{
  margin-top: 6px;
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(0,0,0,0.03);
}

.contact-privacy-text{
  font-size: 13px;
  line-height: 1.55;
  color: #222;
  margin-bottom: 12px;
}

.contact-privacy-text a,
.contact-privacy-check a{
  color: #000;
  text-decoration: underline;
}

.contact-privacy-check{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.45;
  color: #111;
}

.contact-privacy-check input{
  margin-top: 2px;
  accent-color: var(--yellow);
}

@media (max-width: 700px){
  .contact-privacy-box{
    padding: 12px 12px;
  }

  .contact-privacy-text,
  .contact-privacy-check{
    font-size: 12.5px;
  }
}