/*
Theme Name: Koraltec-theme
Author: Jhorman Gañan
Description: Theme personalizado para Koraltec
Version: 0.1
*/

/* ==========================================================================
   TEMA KORALTEC - CSS FUSIONADO
   --------------------------------------------------------------------------
   Unificacion de los estilos custom del tema (antes en assets/css/*.css).
   Orden de carga: bootstrap.min.css (assets/css) se mantiene aparte.
   Todos los estilos responsive (@media) viven en assets/css/responsive-style.css
   ========================================================================== */

/* ==============================================
   Style Default WordPress - Theme #f59d39
   ============================================== */

   .woowTheContent {
    height: auto;
    font-family: var(--font-display);;
    color: #212529;
}

.woowTheContent h1 { font-size: 2rem; margin: 25px 0 15px; font-weight: 700; color: #000; }
.woowTheContent h2 { font-size: 1.65rem; margin: 25px 0 15px; font-weight: 700; color: #000; }
.woowTheContent h3 { font-size: 1.45rem; margin: 20px 0 10px; font-weight: 600; color: #111; }
.woowTheContent h4 { font-size: 1.3rem; margin: 20px 0 10px; font-weight: 600; color: #111; }
.woowTheContent h5 { font-size: 1.15rem; margin: 15px 0 10px; font-weight: 600; color: #222; }
.woowTheContent h6 { font-size: 1rem; margin: 15px 0 10px; font-weight: 600; color: #222; }

.woowTheContent p {
    margin: 0 0 1rem;
    line-height: 1.6;
    font-weight: 400;
}

.woowTheContent img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Listas con viñetas y números activos */
.woowTheContent ul {
    list-style-type: disc;
    padding-left: 1.75rem;
    margin-bottom: 1.25rem;
}

.woowTheContent ol {
    list-style-type: decimal;
    padding-left: 1.75rem;
    margin-bottom: 1.25rem;
}

.woowTheContent ul li,
.woowTheContent ol li {
    padding-bottom: 6px;
    font-weight: 400;
}

/* Citas con el acento Naranja #f59d39 */
.woowTheContent blockquote {
    border-left: 5px solid #f59d39;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    line-height: 1.6;
    color: #333;
    background-color: #efedea;
    border-radius: 0 12px 12px 0;
    font-size: 1.1rem;
    font-style: italic;
}

.woowTheContent blockquote p {
    margin: 0;
}

/* Enlaces con color dinámico #f59d39 y oscurecimiento al hover */
.woowTheContent a {
    color: #f59d39;
    text-decoration: underline;
    transition: color 0.2s ease-in-out;
}

.woowTheContent a:hover {
    color: #d88020;
    text-decoration: none;
}

/* Alineaciones nativas de WordPress */
.woowTheContent .alignnone,
.woowTheContent a img.alignnone {
    margin: 5px 20px 20px 0;
}

.woowTheContent .aligncenter,
.woowTheContent div.aligncenter,
.woowTheContent a img.aligncenter {
    display: block;
    margin: 15px auto;
}

.woowTheContent .alignright,
.woowTheContent a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.woowTheContent .alignleft,
.woowTheContent a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

.woowTheContent .wp-caption {
    max-width: 100%;
    margin-bottom: 15px;
}

.woowTheContent .wp-caption-text {
    font-size: 0.875rem;
    font-style: italic;
    color: #6c757d;
    text-align: center;
    margin-top: 6px;
}

.woowTheContent iframe {
    display: block;
    width: 100%;
    margin: 20px 0;
    border-radius: 12px;
}


/* ==========================================================================
   ARCHIVO: page-header.css - Header de páginas
   ========================================================================== */
.page-header__breadcrumb a:hover,
.page-header__breadcrumb a:focus {
  color: var(--orange);
}

.page-header__breadcrumb .current {
  color: rgba(0, 0, 0, 0.8);
}

.page-header__highlight {
  color: var(--orange);
  font-weight: 600;
}

.page-header__subtitle {
  color: #1e2939 !important;
}

.page-header__subtitle-1 {
  display: inline;
  font-weight: 600;
  font-size: clamp(1.1rem, 1rem + 0.4vw, 1.35rem);
}

.header-nosotros .page-header__subtitle {
  max-width: 680px;
}

/* ==========================================================================
   ARCHIVO: normativas.css - Página de normativas
   ========================================================================== */
/* =============================================
   PAGE: NORMATIVAS
   ============================================= */

/* Hero banner ----------------------------------------------------------- */
.normativas-banner {
  padding: clamp(24px, 3vw, 40px) 0;
}

.normativas-banner__image {
  width: 100%;
  height: clamp(320px, 40vw, 520px);
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}


/* Resolution section --------------------------------------------------- */
.normativas-resolution {
  padding: clamp(32px, 4vw, 52px) 0 clamp(40px, 5vw, 64px);
}

.normativas-resolution__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  margin-bottom: clamp(24px, 3vw, 36px);
}

.normativas-resolution__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  font-weight: 900;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0;
}

.normativas-resolution__download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 28px;
  border: 2px solid var(--orange);
  border-radius: 999px;
  color: var(--orange);
  font-weight: 700;
  font-size: clamp(0.85rem, 0.8rem + 0.15vw, 0.95rem);
  letter-spacing: 0.04em;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.normativas-resolution__download:hover {
  background: var(--orange);
  color: var(--white);
}

.normativas-resolution__body p {
  font-size: clamp(1rem, 0.95rem + 0.15vw, 1.1rem);
  line-height: 1.8;
  color: #3d3f45;
  margin-bottom: 1.2rem;
}

.normativas-resolution__body p:last-child {
  margin-bottom: 0;
}

/* Multimedia & Gallery ------------------------------------------------- */
.normativas-multimedia {
  padding: clamp(28px, 3vw, 44px) 0 clamp(40px, 5vw, 64px);
  background: #faf8f2;
}

.normativas-video {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  height: 100%;
  min-height: 280px;
}

.normativas-video__thumb {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}

.normativas-video__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}

.normativas-video:hover .normativas-video__overlay {
  background: rgba(0, 0, 0, 0.2);
}

.normativas-video__play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.normativas-video:hover .normativas-video__play {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

.normativas-video__play i {
  color: var(--navy);
  font-size: 1.6rem;
  margin-left: 4px;
}


/* 2x2 Gallery grid ----------------------------------------------------- */
.normativas-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  height: 100%;
}

.normativas-gallery__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block;
}

.normativas-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.normativas-gallery__item:hover img {
  transform: scale(1.06);
}


/* Related products ----------------------------------------------------- */
.normativas-related {
  padding: clamp(40px, 5vw, 56px) 0 clamp(48px, 6vw, 72px);
  background: var(--bg-light);
}

.normativas-related__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: clamp(28px, 3.5vw, 42px);
}

.normativas-related__title span {
  color: var(--orange);
}

.normativas-related .swiper {
  overflow: hidden;
  padding-bottom: 8px;
}

.normativas-related .swiper-wrapper {
  display: flex;
}

.normativas-related .product-card__image {
  background: #e8e4de;
  height: clamp(240px, 22vw, 300px);
}

.normativas-related .product-card__info {
  padding: 20px 32px 24px;
}

.normativas-related .product-card__title {
  font-size: 1.4rem;
}

.normativas-related .swiper-pagination {
  margin-top: 24px;
}

.normativas-related__link {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.normativas-related__link a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: clamp(0.95rem, 0.9rem + 0.15vw, 1.05rem);
  color: var(--text-dark);
}

.normativas-related__link a i {
  color: var(--orange);
  font-size: 0.9em;
  transition: transform 0.2s ease;
}

.normativas-related__link a:hover i {
  transform: translateX(4px);
}



/* ==========================================================================
   ARCHIVO: our-solutions-slide.css
   ========================================================================== */
:root {
  --color-accent: #f59d3a;
  --color-accent-btn: #f59d39;
  --color-tab-muted: #a9a29a;
  --color-dark: #343c41;
  --color-bg: #cdc3b9;
  --color-text: #42484d;
  --color-soft: #ece4dc;
  --color-white: #f8f5f1;
}



.solutions-section {
  width: 100%;
  background:
    radial-gradient(circle at 18% 58%, rgba(255, 255, 255, 0.45), transparent 28%),
    radial-gradient(circle at 78% 36%, rgba(255, 255, 255, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.03)),
    var(--color-bg);
  padding: 68px 0 34px;
  overflow: hidden;
}

.solutions-container {
  position: relative;
}

.solutions-head {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 34px;
}

.solutions-head h2 {
  margin: 0;
  color: #f59d3a;
  font-family: "Helvetica", Arial, sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
  letter-spacing: -0.2px;
}

.solutions-head h2 span {
  color: #f59d3a;
}

.solutions-head-line {
  width: 100%;
  height: 3px;
  background: var(--color-dark);
  transform: translateY(1px);
}

.solutions-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}

.solutions-tabs {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.tab {
  border: 0;
  background: transparent;
  color: var(--color-tab-muted);
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: -0.2px;
}

.tab.active {
  color: var(--color-dark);
}

.tab-divider {
  width: 3px;
  height: 25px;
  background: var(--color-dark);
  display: inline-block;
  border-radius: 10px;
}

.solutions-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--color-dark);
  font-size: 16px;
  font-weight: 500;
}

.solutions-link .arrow {
  color: var(--color-accent);
  font-size: 28px;
  line-height: 1;
  transform: translateY(-1px);
}

.solutions-content {
  min-height: 270px;
}

.solution-panel {
  display: none;
}

.solution-panel.active {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 36px;
  min-height: 270px;
}

.solutions-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.solutions-image {
  width: 100%;
  max-width: 480px;
  object-fit: contain;
  filter: drop-shadow(-16px 24px 18px rgba(73, 52, 35, 0.18));
}

.solutions-info {
  color: var(--color-text);
  padding-top: 6px;
}

.solutions-info h3 {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.solutions-info p {
  max-width: 360px;
  font-size: 13px;
  line-height: 1.45;
  margin-bottom: 22px;
  color: var(--color-text);
}

.solutions-info ul {
  list-style: none;
  margin-bottom: 18px;
}

.solutions-info li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-text);
  margin-bottom: 2px;
}

.solutions-info li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--color-accent);
  border-radius: 50%;
}

.plus-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  border: none;
  border-radius: 50px;
  background: #FAAA33;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  margin-top: 4px;
  margin-left: 242px;
  box-shadow: 0 8px 16px rgba(245, 157, 57, 0.28);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.plus-btn:hover,
.plus-btn:focus {
  background: #e59828;
  color: #fff;
  transform: translateY(-2px);
  outline: none;
}

.plus-btn__label {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.solutions-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
}

.solutions-count {
  font-size: 18px;
  font-weight: 700;
  font-family: "Helvetica", Arial, sans-serif;
  color: var(--color-dark);
  text-align: left;
}

.solutions-progress {
  width: 100%;
  height: 4px;
  margin-top: 22px;
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
}

.progress-active {
  display: block;
  height: 100%;
  width: 33.333%;
  background: var(--color-accent);
  transition: width 0.4s ease;
}

.solutions-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-arrow {
  border: none;
  background: transparent;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  color: #1d2939;
  transition: color 0.25s ease;
}

.nav-arrow--prev {
  transform: rotate(180deg);
  display: inline-flex;
}

.nav-arrow:hover {
  color: var(--color-accent);
}


/* ==========================================================================
   ARCHIVO: our-applications.css
   ========================================================================== */
.applications-section {
  background: #1d2839;
  padding: 42px 0 80px;
}

.applications-container {
  position: relative;
}

.applications-heading {
  margin: 0 0 42px;
  color: #f59d3a;
  font-family: "Helvetica", Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.1;
}

.applications-heading span {
  color: #f59d3a;
}

.application-card {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: #243247;
  display: block;
}

.application-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.35s ease;
}

.application-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 32, 48, 0.34);
  z-index: 1;
}

.application-card h3 {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: 0;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  font-family: "Helvetica", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 400;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.20);
}

.application-card:hover img {
  transform: scale(1.05);
}


/* ==========================================================================
   ARCHIVO: why-koraltec.css
   ========================================================================== */
.why-koraltec {
  background: #f9f9f5;
  padding: 56px 0 84px;
}

.why-koraltec__container {
  position: relative;
}

.why-koraltec__head {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 44px;
}

.why-koraltec__head h2 {
  color: #f59d3a;
  font-family: "Helvetica", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
  margin: 0;
}

.why-koraltec__line {
  width: 100%;
  height: 3px;
  background: #efeee7;
}

.why-koraltec__intro {
  text-align: center;
  max-width: 1180px;
  margin: 0 auto 68px;
}

.why-koraltec__intro h3 {
  margin: 0 0 54px;
  color: #1f2737;
  font-family: "Helvetica", Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.4px;
  line-height: 1.2;
}

.why-koraltec__intro p {
  margin: 0 auto;
  max-width: 1080px;
  color: #303844;
  font-family: "Helvetica", Arial, sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.18;
}

.why-koraltec__intro p span {
  color: #e6a54c;
  font-weight: 700;
}

.why-koraltec__grid {
  margin: 0;
}

.why-card {
  background: #ffffff;
  border-radius: 20px;
  min-height: 242px;
  padding: 32px 22px 28px;
  text-align: center;
  box-shadow:
    0 10px 24px rgba(28, 33, 39, 0.05),
    0 2px 8px rgba(28, 33, 39, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(28, 33, 39, 0.14);
}

.why-card__icon {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.why-card h4 {
  margin: 0 0 8px;
  color: #f59d3a;
  font-family: "Helvetica", Arial, sans-serif;
  font-size: 29px;
  font-weight: 700;
  line-height: 1.08;
}

.why-card p {
  margin: 0;
  color: #2f3742;
  font-family: "Helvetica", Arial, sans-serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.18;
}


/* ==========================================================================
   ARCHIVO: projects-slider.css
   ========================================================================== */
.projects-slider {
  background: #f9f9f5;
  padding: 40px 0 52px;
  overflow: hidden;
}

.projects-slider__container {
  position: relative;
}

.projects-slider__head {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 28px;
}

.projects-slider__head h2 {
  margin: 0;
  color: #f59d3a;
  font-family: "Helvetica", Arial, sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}

.projects-slider__head h2 span {
  color: #f59d3a;
}

.projects-slider__line {
  width: 100%;
  height: 3px;
  background: #efeee8;
}

.projects-slider__nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.slider-arrow {
  border: none;
  background: transparent;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  color: #1d2939;
  transition: color 0.25s ease;
}

.slider-arrow:hover {
  color: #f59d3a;
}

.slider-arrow--prev {
  transform: rotate(180deg);
  display: inline-flex;
}

.projects-slider__content {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  gap: 34px;
}

.projects-slider__intro {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.projects-slider__intro h3 {
  margin: 0;
  color: #1f2737;
  font-family: "Helvetica", Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.projects-swiper {
  min-width: 0;
  width: 100%;
}

.projects-slider__track .swiper-slide {
  height: auto;
}

.project-card {
  position: relative;
  height: 318px;
  border-radius: 24px;
  overflow: hidden;
  background: #ddd;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.92);
}

.project-card__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-decoration: none;
}

.project-card__play-circle {
  position: absolute;
  width: 92px;
  height: 92px;
  border: 3px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
}

.project-card__play-icon {
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 34px solid rgba(255, 255, 255, 0.9);
  margin-left: 10px;
  position: relative;
  z-index: 2;
}

.projects-slider__progress {
  width: min(100%, 980px);
  height: 4px;
  margin: 38px 0 0 auto;
  position: relative;
  background: transparent;
}

.projects-slider__progress-base {
  position: absolute;
  inset: 0;
  background: #ecebe5;
  border-radius: 999px;
}

.projects-slider__progress-active {
  position: absolute;
  left: 0;
  width: 33.333%;
  top: 0;
  bottom: 0;
  background: #f59d3a;
  border-radius: 999px;
  transition: width 0.4s ease;
}


/* ==========================================================================
   ARCHIVO: cta-advisor.css
   ========================================================================== */
.cta-project {
  background: #f59d3a;
  padding: 56px 0;
}

.cta-project__container {
  display: grid;
  grid-template-columns: 260px 1fr 330px;
  align-items: center;
  column-gap: 34px;
}

.cta-project__title h2 {
  margin: 0;
  color: #1e2939;
  font-family: "Helvetica", Arial, sans-serif;
  font-size: 28px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0.1px;
}

.cta-project__text p {
  margin: 0;
  color: #1e2939;
  font-family: "Helvetica", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.18;
  font-weight: 400;
  max-width: 700px;
}

.cta-project__text strong {
  font-weight: 700;
}

.cta-project__action {
  display: flex;
  justify-content: flex-end;
}

.cta-project__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 298px;
  min-height: 58px;
  padding: 14px 30px;
  border-radius: 999px;
  background: #1e2939;
  color: #f9f9f5;
  text-decoration: none;
  font-family: "Helvetica", Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(29, 41, 57, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-project__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(29, 41, 57, 0.22);
}

/* ==========================================================================
   ARCHIVO: footer.css - Footer
   ========================================================================== */
.site-footer {
  background: #020204;
  color: #ffffff;
  width: 100%;
}

.site-footer__top-line {
  width: 100%;
  height: 4px;
  background: #f59d3a;
}

.site-footer__container {
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 34px 28px 42px;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1px 0.7fr;
  align-items: center;
  column-gap: 34px;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.site-footer__brand img {
  width: 100%;
  max-width: 270px;
  height: auto;
  display: block;
  object-fit: contain;
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.site-footer__contact p {
  margin: 0;
  color: #ffffff;
  font-family: "Helvetica", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 400;
}

.site-footer__divider {
  width: 1px;
  height: 94px;
  background: #f59d3a;
  justify-self: center;
}

.site-footer__social {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.site-footer__social a {
  color: #ffffff;
  text-decoration: none;
  font-family: "Helvetica", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 400;
  transition: color 0.25s ease;
}

.site-footer__social a:hover {
  color: #f59d3a;
}



/* ==========================================================================
   ARCHIVO: woocommerce.css - Tienda / WooCommerce
   ========================================================================== */
/* ==========================================================================
   ESTILOS TIENDA / WOOCOMMERCE – BASADO EN index-tienda.html
   ========================================================================== */

/* TITULOS Y DIVISORES DE SECCIÓN
   ========================================== */
.section-header {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}

.section-title {
  font-size: 15px;
  font-weight: 700;
  color: #f39c12;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background-color: #f7f6f2;
  padding-right: 15px;
  z-index: 1;
  margin: 0;
  font-family: 'Helvetica', Arial, sans-serif;
}

.section-title span {
  color: #f39c12;
  font-weight: 700;
}

.section-title.title-solutions {
  color: #f39c12;
}

.section-title.title-solutions span {
  color: #f39c12;
  font-weight: 700;
}

.section-divider {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #e5e2d9;
  z-index: 0;
}

/* INNOVATION GRID (2 columnas)
   ========================================== */
.innovation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.featured-card {
  background-color: #e6dfd5;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  min-height: 220px;
}

.featured-card__image-container {
  width: 45%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.featured-card__img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.featured-card__content {
  width: 55%;
  padding-left: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}

.featured-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #2b2f38;
  margin-bottom: 12px;
  text-align: right;
  font-family: 'Helvetica', Arial, sans-serif;
}

.featured-card__title a {
  color: inherit;
  text-decoration: none;
}

.featured-card__description {
  font-size: 11px;
  line-height: 1.5;
  color: #5a606e;
  text-align: right;
  margin-bottom: 20px;
  font-family: 'Helvetica', Arial, sans-serif;
}

/* BADGES
   ========================================== */
.badge {
  position: absolute;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  z-index: 2;
  font-family: 'Helvetica', Arial, sans-serif;
}

.badge--green {
  background-color: #92e32b;
  color: #1a3800;
  top: 20px;
  left: 20px;
}

.badge--red {
  background-color: #ff3b30;
  color: #ffffff;
  top: 12px;
  right: 12px;
}

/* BOTÓN CIRCULAR +
   ========================================== */
.btn-plus {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #f39c12;
  color: #ffffff;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
  box-shadow: 0 2px 8px rgba(243, 156, 18, 0.3);
  text-decoration: none;
  flex-shrink: 0;
}

.btn-plus:hover {
  transform: scale(1.08);
  background-color: #e08e0b;
  color: #ffffff;
}

.featured-card__btn {
  align-self: flex-end;
  margin-top: auto;
}

/* VER TODOS
   ========================================== */
.view-all-container {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 45px;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #4a505e;
  text-decoration: none;
  transition: color 0.2s ease;
  font-family: 'Helvetica', Arial, sans-serif;
}

.view-all-link:hover {
  color: #f39c12;
}

.view-all-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* SOLUTIONS GRID (3 columnas)
   ========================================== */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.product-card {
  background-color: #ece8e1;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.product-card__image-box {
  position: relative;
  width: 100%;
  height: 180px;
  background-color: #dfd8cc;
  overflow: hidden;
}

.product-card__image-box a {
  display: block;
  width: 100%;
  height: 100%;
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__content {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #2b2f38;
  text-align: center;
  margin-bottom: 12px;
  padding-bottom: 8px;
  position: relative;
  font-family: var(--font-display);
}

.product-card__title a {
  color: inherit;
  text-decoration: none;
}

.product-card__price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
  padding-top: 10px;
}

.product-card__price-info {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 12px;
  font-weight: 700;
  color: #f39c12;
  margin-bottom: 2px;
  font-family: 'Helvetica', Arial, sans-serif;
}

.price-old {
  font-size: 11px;
  color: #9aa0a6;
  text-decoration: line-through;
  margin-bottom: 2px;
  font-family: 'Helvetica', Arial, sans-serif;
}

.price-main {
  font-size: 20px;
  font-weight: 700;
  color: #2b2f38;
  line-height: 1;
  font-family: 'Helvetica', Arial, sans-serif;
}

.price-main .woocommerce-Price-amount {
  font-weight: 700;
}

.price-main .woocommerce-Price-currencySymbol {
  font-size: inherit;
  vertical-align: baseline;
}

.price-unit {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  color: #5a606e;
  margin-top: 6px;
  font-family: 'Helvetica', Arial, sans-serif;
}

.price-unit__icon {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #f39c12;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 7px;
}

/* TARJETA DE PRODUCTO — LOOP TIENDA (diseño de referencia)
   ========================================== */
.product-card-loop .product-card__image-box {
  position: relative;
}

.product-card-loop .badge-nuevo,
.product-card-loop .badge-discount {
  position: absolute;
  top: 12px;
  right: 12px;
  border-radius: 50px;
  padding: 4px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.2;
  z-index: 2;
}

.product-card-loop .badge-nuevo {
  background-color: #8cc63f;
  color: #0d3800;
}

.product-card-loop .badge-discount {
  background-color: #dc2626;
  color: #ffffff;
}

.product-card-loop .product-card__title {
  font-weight: 700;
  color: #1e293b;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 0;
}

.product-card-loop .orange-divider {
  height: 2px !important;
  background-color: #f39200 !important;
  width: 100% !important;
  margin: 8px 0 16px 0 !important;
  border: none !important;
  opacity: 1 !important;
}

.product-card-loop .product-card__price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 8px;
  padding-top: 0;
}

.product-card-loop .unit-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
}

/* PAGINACIÓN
   ========================================== */
.koraltec-pagination.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.pagination__item {
  font-size: 11px;
  font-weight: 700;
  color: #a0a5b1;
  cursor: pointer;
  text-decoration: none;
  font-family: 'Helvetica', Arial, sans-serif;
}

.pagination__item--active {
  color: #f39c12;
  border-bottom: 2px solid #f39c12;
  padding-bottom: 1px;
}

.pagination__item:hover {
  color: #f39c12;
}

/* LIMPIEZA DE ESTILOS POR DEFECTO DE WOOCOMMERCE
   ========================================== */
.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid !important;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce ul.products li.product::before,
.woocommerce ul.products li.product::after {
  display: none !important;
}

.woocommerce ul.products li.product {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  list-style: none !important;
  clear: none !important;
}

.woocommerce ul.products li.product a img {
  margin: 0;
}

.woocommerce .woocommerce-ordering,
.woocommerce .woocommerce-result-count {
  display: none;
}

/* FONDO GENERAL
   ========================================== */
body.woocommerce,
body.woocommerce-page,
body.post-type-archive-product,
body.tax-product_cat,
body.tax-product_tag {
  background-color: #f7f6f2 !important;
}

body.woocommerce main,
body.woocommerce-page main,
body.post-type-archive-product main,
body.tax-product_cat main {
  background: transparent !important;
}

/* RESPONSIVE
   ========================================== */


/* ==========================================================================
   ARCHIVO: nosotros.css - Pagina nosotros
   ========================================================================== */
.hero-nosotros {
  position: relative;
  background-color: #ebedf0;
  background-image:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.85) 0%, rgba(235, 238, 242, 0.6) 70%, rgba(220, 225, 230, 0.95) 100%),
    var(--nosotros-bg, url('assets/images/landings/normativas/Hero.png'));
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: clamp(120px, 18vh, 180px) 0 clamp(60px, 8vh, 90px);
  overflow: hidden;
}

.hero-nosotros::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-nosotros .container {
  position: relative;
  z-index: 2;
}

.clients-card-wrapper {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.nosotros-clients__head {
  margin-bottom: clamp(22px, 3vw, 30px);
}

.nosotros-clients__titles {
  display: flex;
  flex-direction: column;
}

.nosotros-clients__title {
  margin: 0;
  color: #1e2939;
  font-size: clamp(1.25rem, 1.05rem + 0.5vw, 1.6rem);
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.nosotros-clients__title-highlight {
  color: var(--orange);
}

.nosotros-clients__line {
  width: 100%;
  height: 2px;
  background-color: #efece9;
  margin-bottom: 4px;
}

.client-logo-box {
  background-color: rgba(255, 255, 255, 0.8);
  border: 2px solid #f8f2e1;
  border-radius: 18px;
  filter: drop-shadow(0px 20px 20px rgba(0, 8, 13, 0.2));
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
}

.client-logo-box__img {
  max-width: 100%;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.bienestar__title {
  color: #1e2939;
  font-size: clamp(1.25rem, 1.05rem + 0.5vw, 1.6rem);
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.bienestar__title-highlight {
  color: var(--orange);
}

.bienestar__text {
  color: #1e2939;
  font-weight: 500;
}

.kpi-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.kpi-col {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.kpi-col:last-child {
  border-right: none;
}

.kpi__number {
  color: var(--orange);
  font-size: clamp(1.45rem, 1.3rem + 0.5vw, 1.8rem);
  font-weight: 300;
  line-height: 1.1;
  white-space: nowrap;
}

.kpi__count {
  font-variant-numeric: tabular-nums;
}

.kpi__label {
  color: var(--orange);
  font-weight: 300;
  font-size: clamp(1.45rem, 1.3rem + 0.5vw, 1.8rem);
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin-top: 4px;
}

.kpi__text {
  color: #ffffff;
  font-weight: 300;
  font-size: clamp(1rem, 0.85rem + 0.3vw, 1.2rem);
  letter-spacing: 0.04em;
  line-height: 1.3;
  margin-top: 2px;
}


.check-list li {
  color: #1e2939;
  font-weight: 500;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-icon {
  width: 28px;
  height: 28px;
  background-color: var(--orange);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
  flex-shrink: 0;
}

.banner-fabricacion {
  min-height: 380px;
}

.fabricacion__title {
  color: #ffffff;
  font-size: clamp(1.25rem, 1.05rem + 0.5vw, 1.6rem);
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.fabricacion__text {
  color: #ffffff;
  font-weight: 300;
  line-height: 1.6;
  opacity: 0.9;
}

.fabricacion-swiper {
  position: relative;
  width: 100%;
  height: clamp(340px, 55vh, 560px);
  overflow: hidden;
}

.fabricacion-swiper .swiper-wrapper {
  height: 100%;
}

.fabricacion-swiper .swiper-slide {
  height: 100%;
  overflow: hidden;
}

.fabricacion-slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fabricacion-slide__controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 3vw, 32px);
  z-index: 10;
  color: #fff;
  pointer-events: none;
}

.fabricacion-slide__count {
  font-size: 18px;
  font-weight: 700;
  font-family: "Helvetica", Arial, sans-serif;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.fabricacion-slide__nav {
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: auto;
}

.fabricacion-slide__arrow {
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(0, 0, 0, 0.18);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.fabricacion-slide__arrow--prev {
  transform: rotate(180deg);
}

.fabricacion-slide__arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.fabricacion-slide__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  z-index: 10;
  overflow: hidden;
}

.fabricacion-slide__progress-bar {
  display: block;
  height: 100%;
  width: 33.333%;
  background: var(--orange);
  transition: width 0.4s ease;
}

.propuesta-card {
  background: #ffffff;
  border: 1px solid #f2edd9;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
  padding: 40px;
}

.propuesta__title {
  color: #1e2939;
  font-size: clamp(1.25rem, 1.05rem + 0.5vw, 1.6rem);
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.propuesta__title-highlight {
  color: var(--orange);
}

.propuesta__text {
  color: #1e2939;
  font-weight: 500;
}


.trabajos-col {
  padding: 0;
  min-width: 0;
}

.btn-orange {
  background-color: #FAAA33;
}

.btn-orange:hover {
  background-color: #e59828;
}

.trabajos-card {
  min-height: 450px;
  background-color: #1f2a38;
  font-size: large;
}

.trabajos-card__bg {
  background-size: cover;
  background-position: center;
  opacity: 1;
  transform: scale(1);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.trabajos-card:hover .trabajos-card__bg {
  transform: scale(1.06);
}

.trabajos-card__overlay {
  background: linear-gradient(180deg, rgba(15, 23, 36, 0.6) 0%, rgba(15, 23, 36, 0.95) 100%);
  opacity: 1;
}

.trabajos-card__text {
  color: #E0E0E0;
  font-size: 0.95rem;
  line-height: 1.55;
  opacity: 1;
  max-height: none;
  display: block;
  margin-bottom: 1rem !important;
}

.trabajos-card__plus-text {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width 0.4s ease, opacity 0.3s ease;
}

.trabajos-card:hover .trabajos-card__plus-text {
  max-width: 100px;
  opacity: 1;
}

.cta-advisor-bar {
  background-color: var(--orange);
  color: #ffffff;
  padding: 30px 0;
}

.btn-dark-pill {
  background-color: var(--navy);
  color: #ffffff;
  border-radius: 50px;
  padding: 10px 28px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

.btn-dark-pill:hover {
  background-color: #111d2e;
  color: #fff;
}

/* ==========================================================================
   ARCHIVO: main.css - Base: variables, nav, hero, secciones, cards
   (Las @font-face viven en assets/css/fuentes.css)
   ========================================================================== */

:root {
  --bg-light: #f8f7f2;
  --text-dark: #1f2a3a;
  --text-muted: rgba(255, 255, 255, 0.78);
  --navy: #1d2b3f;
  --navy-2: #223047;
  --orange: #f2a133;
  --orange-strong: #f59d22;
  --white: #ffffff;
  --card-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  --soft-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --container: 1280px;

  --nav-height: clamp(76px, 8vh, 108px);
  --hero-min: clamp(720px, 100vh, 980px);
  --tag-bg: rgba(203, 196, 191, 0.28);
  --tag-line: #aba3a1;

  --font-body: 'Helvetica', Arial, sans-serif;
  --font-display: 'Helvetica Condensed', 'Helvetica', Arial, sans-serif;
  --font-condensed: 'Helvetica Condensed', 'Helvetica', Arial, sans-serif;
}


*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  color: var(--text-dark);
  background: var(--bg-light);
  font-family: var(--font-body);
  overflow-x: hidden;
}

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

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

button {
  border: none;
  cursor: pointer;
  font: inherit;
}

/* HERO ======================================================================================= */
.hero {
  isolation: isolate;
}

.hero__overlay {
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.08)),
    linear-gradient(90deg, rgba(19, 16, 14, 0.72) 0%, rgba(19, 16, 14, 0.48) 18%, rgba(19, 16, 14, 0.18) 40%, rgba(19, 16, 14, 0.06) 62%, rgba(19, 16, 14, 0.02) 100%);
}

#navbar.koraltec-navbar {
  --bs-navbar-padding-y: 0;
  --bs-navbar-padding-x: 0;
  --bs-navbar-toggler-padding-x: 0;
  --bs-navbar-toggler-focus-width: 0;
  --bs-navbar-color: rgba(255, 255, 255, 0.92);
  --bs-navbar-hover-color: #fff;
  --bs-navbar-active-color: #fff;
  --bs-navbar-nav-link-padding-x: 0;
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.92)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  font-family: var(--font-display);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  min-height: var(--nav-height);
  padding: clamp(18px, 2.4vh, 30px) 0;
  background: transparent;
}

.koraltec-navbar__inner {
  gap: clamp(16px, 2vw, 30px);
}

.koraltec-navbar .navbar-brand {
  margin-bottom: 0;
  margin-right: 0;
}


.logo {
  position: relative;
  z-index: 22;
}

.logo img,
.logo .custom-logo-link img {
  width: clamp(118px, 11vw, 170px);
  height: auto;
}

.nav-links {
  --bs-nav-link-padding-x: 0;
  --bs-nav-link-padding-y: 0;
  gap: clamp(14px, 1.6vw, 30px);
  min-width: 0;
}

.nav-links .nav-link,
.nav-links a {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.88rem, 0.78rem + 0.22vw, 1rem);
  font-weight: 500;
  white-space: nowrap;
}

.nav-links .nav-link:hover,
.nav-links .nav-link:focus-visible,
.nav-links a:hover,
.nav-links a:focus-visible {
  color: rgba(255, 255, 255, 1);
}

.store-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 0.8vw, 12px);
  background: var(--orange);
  color: white;
  min-height: clamp(46px, 4vw, 56px);
  padding: 0 clamp(18px, 1.9vw, 26px);
  border-radius: 999px;
  font-weight: 700;
  font-size: clamp(0.95rem, 0.86rem + 0.18vw, 1.08rem);
  flex-shrink: 0;
}

.store-btn__icon {
  width: clamp(20px, 1.5vw, 24px);
  height: clamp(20px, 1.5vw, 24px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.store-btn__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.store-btn__badge {
  position: absolute;
  top: clamp(4px, 0.3vw, 6px);
  right: clamp(10px, 0.8vw, 14px);
  width: clamp(18px, 1.4vw, 22px);
  height: clamp(18px, 1.4vw, 22px);
  border-radius: 50%;
  background: white;
  color: var(--navy);
  font-size: clamp(0.72rem, 0.66rem + 0.15vw, 0.88rem);
  display: grid;
  place-items: center;
  font-weight: 700;
}

/* Cart tooltip (hover) */
.cart-hover-menu {
  z-index: 30;
}

.cart-hover-container:hover .cart-hover-menu {
  display: block !important;
}

/* Capa puente invisible: rellena el hueco entre el botón y el menú para
   que el hover no se pierda al mover el cursor de tienda a ver carrito. */
.cart-hover-menu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -0.375rem;
  height: 0.375rem;
}

.nav-links__store-mobile {
  display: none;
}

/* hamburger button */
.koraltec-navbar__toggler {
  position: relative;
  z-index: 22;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: none;
  padding: 0;
}

.koraltec-navbar__toggler:focus,
.koraltec-navbar__toggler:focus-visible {
  box-shadow: none;
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 2px;
}

.koraltec-navbar__toggler .navbar-toggler-icon {
  width: 28px;
  height: 28px;
}

.koraltec-navbar__toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.92)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 6l18 18M24 6L6 24'/%3e%3c/svg%3e");
}

/* dropdowns */
.koraltec-navbar .dropdown-menu {
  background: rgba(29, 43, 63, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: none;
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  min-width: 220px;
}

.koraltec-navbar .dropdown-menu .dropdown-item {
  color: rgba(255, 255, 255, 0.92);
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 500;
  white-space: nowrap;
}

.koraltec-navbar .dropdown-menu .dropdown-item:hover,
.koraltec-navbar .dropdown-menu .dropdown-item:focus {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero__bg {
  object-position: center center;
}

.hero__content {
  min-height: calc(100vh - var(--nav-height) - 20px);
  min-height: calc(100svh - var(--nav-height) - 20px);
  padding-top: clamp(12px, 2vh, 22px);
  padding-bottom: clamp(30px, 4vh, 56px);
}

.hero__row {
  min-height: inherit;
}

.hero__left {
  padding-top: clamp(10px, 2vh, 32px);
}

.hero__eyebrow {
  color: white;
  font-size: clamp(1rem, 0.9rem + 0.45vw, 1.35rem);
  line-height: 1.16;
  font-weight: 600;
  margin-bottom: clamp(18px, 3vh, 32px);
}

.hero__title {
  font-family: var(--font-body);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.hero__title--light {
  font-family: var(--font-body);
  font-weight: 100;
  color: rgba(255, 255, 255, 0.56);
  margin-bottom: clamp(6px, 0.8vh, 12px);
  font-size: 4.4rem;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero__title--strong {
  font-family: var(--font-body);
  font-weight: 100;
  color: #fff;
  margin-top: clamp(18px, 4vh, 42px);
  margin-bottom: clamp(18px, 4vh, 42px);
  font-size: 4.4rem;
  word-break: keep-all;
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}


.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 1vw, 14px);
  background: var(--navy);
  color: white;
  min-height: clamp(50px, 4.8vw, 64px);
  padding: 0 clamp(24px, 2.2vw, 34px);
  border-radius: 999px;
  font-weight: 600;
  font-size: clamp(1rem, 0.92rem + 0.24vw, 1.12rem);
  box-shadow: 0 10px 18px rgba(18, 32, 53, 0.28);
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(18, 32, 53, 0.36);
  background: var(--orange);
  color: white;
}

.cta-btn:hover span {
  color: white;
}

.cta-btn span {
  font-size: clamp(1.35rem, 1.2rem + 0.4vw, 1.75rem);
  line-height: 1;
  color: var(--orange);
  transition: transform 0.25s ease, color 0.25s ease;
}

.cta-btn:hover span {
  transform: translateX(4px);
}

.hero__right {
  position: relative;
  min-height: clamp(560px, 72vh, 850px);
  height: 100%;
}

/* HOTSPOTS GENERAL ================================================================================ */
.hotspot {
  position: absolute;
  z-index: 2;
}

.hotspot .tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(40px, 3.8vw, 50px);
  padding: 0 clamp(16px, 1.8vw, 32px);
  border-radius: 999px;
  background: var(--tag-bg);
  color: white;
  font-size: clamp(0.95rem, 0.82rem + 0.4vw, 1.2rem);
  font-weight: 600;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: var(--soft-shadow);
  white-space: nowrap;
}

.dot {
  position: absolute;
  width: clamp(18px, 2vw, 24px);
  height: clamp(18px, 2vw, 24px);
  border-radius: 50%;
  background: var(--tag-line);
}

.line {
  position: absolute;
  height: 3px;
  background: var(--tag-line);
}

/* HOTSPOTS SPECIFICS  ====================================================================================*/
.hotspot--top {
  top: 18%;
  right: 15%;
}

.hotspot--top .dot {
  left: -4vw;
  top: 50%;
  transform: translateY(-50%);
}

.hotspot--top .line {
  width: 4.8vw;
  min-width: 42px;
  max-width: 76px;
  left: calc(-4vw + 10px);
  top: 50%;
  transform: translateY(-50%);
}

.hotspot--mid-left {
  top: 35%;
  left: 30%;
}

.hotspot--mid-left .dot {
  left: -3.8vw;
  top: 50%;
  transform: translateY(-50%);
}

.hotspot--mid-left .line {
  width: 3.6vw;
  min-width: 28px;
  max-width: 56px;
  left: calc(-3.8vw + 20px);
  top: 50%;
  transform: translateY(-50%);
}

.hotspot--main {
  top: 62%;
  left: 35%;
}

.hotspot--main .line {
  height: 3px;
  width: 4.2vw;
  min-width: 38px;
  max-width: 62px;
  left: calc(100% - 2px);
  top: 50%;
  transform: translateY(-50%);
}

.hotspot--main .line--angled {
  width: 6.2vw;
  min-width: 52px;
  max-width: 88px;
  height: 3px;
  left: calc(100% + 3vw);
  top: 50%;
  transform: rotate(-70deg);
  transform-origin: left center;
}

.hotspot--main .dot {
  left: calc(100% + 3.9vw);
  top: calc(50% - 5vw);
}

.hotspot--bottom {
  bottom: 15%;
  left: 65%;
}

.hotspot--bottom .dot {
  left: -4.3vw;
  top: 5.5vw;
}

.hotspot--bottom .line {
  width: 2.9vw;
  min-width: 20px;
  max-width: 40px;
  left: -1.9vw;
  top: 50%;
  transform: translateY(-50%);
}

.hotspot--bottom .line--bottom {
  width: 5.2vw;
  min-width: 70px;
  max-width: 94px;
  left: -6.7vw;
  top: 1.2vw;
  transform: rotate(-70deg);
  transform-origin: right center;
}

/* HOTSPOT HOVER / ACTIVE (orange) =============================================================== */
.hotspot .tag,
.hotspot .dot,
.hotspot .line {
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.hotspot:hover .tag,
.hotspot.is-active .tag {
  background: var(--orange-strong);
  color: #fff;
  box-shadow: 0 8px 16px rgba(245, 157, 34, 0.35);
}

.hotspot:hover .dot,
.hotspot.is-active .dot {
  background: var(--orange-strong);
}

.hotspot:hover .line,
.hotspot.is-active .line {
  background: var(--orange-strong);
}

/* HOTSPOT DESTACADO (permanent orange, estilo Guarda camillas) ================================= */
.hotspot--destacado .tag,
.hotspot--destacado .dot,
.hotspot--destacado .line {
  background: var(--orange-strong);
}

.hotspot--destacado .tag {
  color: #fff;
  box-shadow: 0 8px 16px rgba(245, 157, 34, 0.35);
}

/* HERO LIST — listado de productos alineado a la izquierda (sin hotspot)
   ================================================================================ */
.hero__list .tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(40px, 3.8vw, 50px);
  padding: 0 clamp(16px, 1.8vw, 32px);
  border-radius: 999px;
  background: var(--tag-bg);
  color: #fff;
  font-size: clamp(0.95rem, 0.82rem + 0.4vw, 1.2rem);
  font-weight: 600;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: var(--soft-shadow);
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.25s ease;
}

.hero__list .tag:hover {
  background: var(--orange-strong);
  box-shadow: 0 8px 16px rgba(245, 157, 34, 0.35);
}

/* ABOUT =============================================================================== */
.about {
  background: #faf8f2;
  padding: clamp(34px, 5vw, 52px) 0 clamp(58px, 7vw, 80px);
}

.section-label {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 18px);
  margin-bottom: clamp(22px, 3vw, 30px);
}

.section-label span,
.section-label h2 {
  color: var(--orange);
  font-weight: 700;
  font-size: clamp(0.96rem, 0.88rem + 0.2vw, 1.08rem);
  white-space: nowrap;
  font-family: var(--font-body);
}

.section-label__line {
  width: 100%;
  height: 2px;
  background: #eee9dd;
}

.about__title {
  margin: 0 auto clamp(24px, 3vw, 34px);
  text-align: center;
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.45rem);
  line-height: 1.25;
  font-weight: 700;
  color: #1f2940;
  text-transform: uppercase;
}

.about__text {
  max-width: 830px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(1rem, 0.92rem + 0.55vw, 1.25rem);
  line-height: 1.5;
  color: #333745;
}

.about__text span {
  color: #dc9839;
  font-weight: 700;
}

.feature-card {
  background: #fffdf9;
  border-radius: 18px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 28px rgba(44, 44, 44, 0.08);
  text-align: center;
  padding: 24px 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(44, 44, 44, 0.16);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.feature-icon img {
  width: clamp(52px, 5vw, 68px);
  height: clamp(52px, 5vw, 68px);
  object-fit: contain;
}

.feature-card p {
  font-size: clamp(0.98rem, 0.9rem + 0.25vw, 1.05rem);
  line-height: 1.35;
}

/* PRODUCTS ========================================================================================= */
.products {
  background: var(--navy);
  padding: clamp(40px, 5vw, 54px) 0 clamp(52px, 6vw, 64px);
}

.section-label--dark {
  margin-bottom: clamp(26px, 3vw, 36px);
}

.products-swiper {
  overflow: visible;
  --swiper-navigation-color: #fff;
  --swiper-navigation-size: 20px;
}

.products-swiper .swiper-wrapper {
  height: auto;
}

.products-swiper .swiper-slide {
  height: auto;
}

.products-swiper .swiper-button-prev,
.products-swiper .swiper-button-next {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(18, 32, 53, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
}

.products-swiper .swiper-button-prev::after,
.products-swiper .swiper-button-next::after {
  font-size: 18px;
}

.products-swiper .swiper-button-prev {
  left: 8px;
}

.products-swiper .swiper-button-next {
  right: 8px;
}

.swiper-pagination-bullet-active {
  background: var(--orange) !important;
}

.swiper-pagination {
  position: relative;
  bottom: 0;
  margin-top: 20px;
}

.swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
}


.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #f5f2ec;
  overflow: hidden;
}

.product-card__image {
  position: relative;
  height: clamp(280px, 28vw, 360px);
  flex-shrink: 0;
  background: #ddd5ca;
}

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

.product-card__image a {
  display: block;
  width: 100%;
  height: 100%;
}

.products-swiper .product-card .product-card__vermas {
  position: absolute;
  right: 22px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 26px;
  border-radius: 999px;
  background-color: #f39c12;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(188, 57, 27, 0.35);
  transition: transform 0.2s ease, background-color 0.2s ease;
  width: fit-content;
}

.products-swiper .product-card .product-card__vermas:hover,
.products-swiper .product-card .product-card__vermas:focus-visible {
  transform: scale(1.08);
  background-color: #e08e0b;
  color: #fff;
  outline: none;
}

.product-card__info {
  background: #f7f4ef;
  padding-left: 32px;
  flex-grow: 1;
}

.product-card__title {
  font-size: 1.8rem;
  line-height: 1.15;
  color: var(--text-dark);
  font-weight: 700;
  font-family: var(--font-display);
}

.product-card__price {
  min-width: 122px;
  border-top: 3px solid var(--orange);
  padding-top: 10px;
}


.product-card__price-label {
  display: block;
  color: var(--orange);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.product-card__price-value {
  display: block;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 700;
}

/* RESPONSIVE ====================================================================================== */

/* laptop grande*/

/* laptop mediano */


/* tablet horizontal / tablet grande */

/* mobile / tablet (< lg) */

/* mobile */

/* mobile pequeno */

/* ==========================================================================
   ARCHIVO: blog.css - Blog
   ========================================================================== */
.blog-filters {
  margin-bottom: 40px;
}

.blog-filters .nav-pills {
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.blog-filters .nav-pills .nav-link {
  font-family: var(--font-condensed);
  font-size: clamp(0.85rem, 0.8rem + 0.15vw, 0.95rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  background: transparent;
  border: 2px solid #e0dcd5;
  border-radius: 999px;
  padding: 8px 22px;
  transition: all 0.25s ease;
}

.blog-filters .nav-pills .nav-link:hover,
.blog-filters .nav-pills .nav-link:focus {
  border-color: var(--orange);
  color: var(--orange);
}

.blog-filters .nav-pills .nav-link.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}



.blog-card {
  display: flex;
  flex-direction: column;
  background: #fffdf9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.blog-card__thumb {
  position: relative;
  height: clamp(200px, 18vw, 240px);
  overflow: hidden;
  background: #ddd5ca;
}

.blog-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__thumb img {
  transform: scale(1.05);
}

.blog-card__body {
  padding: clamp(18px, 2vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.blog-card__date {
  font-family: var(--font-condensed);
  font-size: 0.82rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.blog-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1rem + 0.3vw, 1.3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

.blog-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.blog-card__title a:hover {
  color: var(--orange);
}

.blog-card__excerpt {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #666;
  margin: 0;
  flex: 1;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  padding-top: 10px;
  border-top: 2px solid #f0ebe4;
  transition: color 0.2s;
  margin-top: auto;
}

.blog-card__link i {
  font-size: 0.75rem;
  transition: transform 0.2s;
}

.blog-card__link:hover {
  color: var(--orange);
}

.blog-card__link:hover i {
  transform: translateX(4px);
}

.blog-pagination {
  margin-top: 48px;
}

.blog-pagination .pagination {
  gap: 6px;
  justify-content: center;
}

.blog-pagination ul.page-numbers {
  list-style: none !important;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  background: transparent;
  min-width: auto;
  min-height: auto;
  border-radius: 0;
}

.blog-pagination ul.page-numbers li {
  list-style-type: none !important;
}

.blog-pagination li::before,
.blog-pagination li::after,
.blog-pagination .page-numbers li::before,
.blog-pagination .page-numbers li::after {
  content: none !important;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  border-radius: 999px;
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  background: transparent;
  border: 2px solid #e0dcd5;
  text-decoration: none;
  transition: all 0.2s ease;
}

.blog-pagination .page-numbers:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.blog-pagination .page-numbers.current {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.blog-pagination .page-numbers .fas {
  font-size: 0.75rem;
}

.blog-pagination .page-numbers.prev,
.blog-pagination .page-numbers.next {
  border: none;
  background: var(--navy);
  color: #fff;
}

.blog-pagination .page-numbers.prev:hover,
.blog-pagination .page-numbers.next:hover {
  background: var(--orange);
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  border-bottom: 2px solid #f0ebe4;
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.post-meta a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
}

.post-meta a:hover {
  color: var(--navy);
}

.post-meta__date i,
.post-meta__author i,
.post-meta__cats i {
  margin-right: 6px;
  color: var(--orange);
}


/* SINGLE POST - diseño normativas ============================================ */
.btn-orange-outline {
  border: 1px solid var(--orange);
  color: #333;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-orange-outline:hover,
.btn-orange-outline:focus {
  background-color: var(--orange);
  color: #fff;
}

.text-custom-orange {
  color: var(--orange) !important;
}

.bg-custom-orange {
  background-color: var(--orange) !important;
}

.btn-plus-floating {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-plus-floating:hover {
  background-color: var(--orange-strong);
  transform: scale(1.1);
}

/* ==========================================================================
   ARCHIVO: single-product.css - Pagina de producto
   ========================================================================== */
/* ==========================================================================
   SINGLE PRODUCT — Plantilla raíz single-product.php (100% Bootstrap 5.3)
   Basada en single-product.html
   Custom CSS estrictamente necesario: colores de marca exactos y overlays/
   badges donde Bootstrap no tiene clases nativas.
   ========================================================================== */

:root {
  --kt-orange: #f39200;
  --kt-orange-hover: #d98200;
  --kt-bg-light: #f6f5f2;
  --kt-card-bg: #eceae5;
  --kt-dark: #231f20;
}

/* Colores y botones de marca */
.bg-kt-orange {
  background-color: var(--kt-orange) !important;
}

.text-kt-orange {
  color: var(--kt-orange) !important;
}

.btn-kt-orange {
  background-color: var(--kt-orange);
  color: #ffffff;
  font-weight: 700;
  border: none;
}

.btn-kt-orange:hover,
.btn-kt-orange:focus {
  background-color: var(--kt-orange-hover);
  color: #ffffff;
}

.btn-kt-outline {
  border: 1px solid #cccccc;
  background-color: #ffffff;
  color: #333333;
  font-size: 0.85rem;
  font-weight: 600;
}

.btn-kt-outline:hover,
.btn-kt-outline:focus {
  background-color: #f8f9fa;
  color: #333333;
}

/* Badge de descuento */
.badge-discount {
  background-color: #ff3b30;
  font-size: 0.75rem;
  border-radius: 50rem;
}

/* Botón de producto flotante + */
.btn-plus-floating {
  width: 32px;
  height: 32px;
  background-color: var(--kt-orange);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  text-decoration: none;
}

.btn-plus-floating:hover {
  background-color: var(--kt-orange-hover);
  color: #ffffff;
}

/* Card de producto relacionado */
.card-product {
  background-color: var(--kt-card-bg);
  border-radius: 12px;
  overflow: hidden;
  border: none;
}

/* Tabs de producto */
.nav-tabs-custom .nav-link {
  border: none;
  color: #444444;
  font-weight: 700;
  font-size: 0.85rem;
  padding-bottom: 8px;
  text-transform: uppercase;
}

.nav-tabs-custom .nav-link.active {
  color: #000000;
  border-bottom: 2px solid #000000;
  background: transparent;
}

/* Precio nativo */
.price-box {
  border-left: 3px solid #f59d39;
  padding-left: 15px;
}

.price-box .price {
  color: var(--kt-dark);
}

.price-box .price del {
  color: #9aa0a6;
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

.price-box .price ins {
  text-decoration: none;
}

.price-box .woocommerce-Price-currencySymbol {
  font-size: 0.6em;
  vertical-align: super;
}

/* Selectores personalizados de variaciones (botones / círculos de color) */
.selector-buttons .btn-option {
  flex: 1;
  padding: 0.5rem 0.75rem;
  border: 1px solid #e2e2e2;
  background: #ffffff;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  color: #999999;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s;
}

.selector-buttons .btn-option:hover {
  border-color: var(--kt-orange);
  color: #000000;
}

.selector-buttons .btn-option.selected,
.selector-buttons .btn-option.active {
  border-color: var(--kt-orange);
  color: #000000;
  box-shadow: 0 0 0 1px var(--kt-orange);
}

/* Círculo de color: medidas exactas para que nunca se deforme en óvalos */
.color-circle {
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  border-radius: 50% !important;
  display: inline-block;
  border: 1px solid #ccc;
  background-color: #e5e0d8;
  padding: 0;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
}

.color-selector {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.color-selector .color-circle:hover {
  box-shadow: 0 0 0 1px #f59d39;
}

.color-selector .color-circle.selected,
.color-selector .color-circle.active {
  box-shadow: 0 0 0 2px #f59d39;
}

/* El precio dinámico de la variación se oculta: el price-box ya muestra el rango */
.add-to-cart-container .woocommerce-variation-price {
  display: none;
}

/* Descripción corta */
.short-description p {
  margin-bottom: 0.5rem;
}

.short-description p:last-child {
  margin-bottom: 0;
}

/* Formulario nativo WooCommerce estilizado con Bootstrap */
.add-to-cart-container form.cart {
  margin-bottom: 1rem;
}

.add-to-cart-container form.cart:not(.variations_form) {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.add-to-cart-container .quantity {
  display: inline-flex;
  align-items: stretch;
}

.add-to-cart-container .quantity .qty {
  width: 72px;
  text-align: center;
  font-weight: 700;
  border: 1px solid #ced4da;
  border-radius: 0;
  appearance: textfield;
  -moz-appearance: textfield;
}

.add-to-cart-container .quantity .qty::-webkit-outer-spin-button,
.add-to-cart-container .quantity .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.add-to-cart-container .quantity .minus,
.add-to-cart-container .quantity .plus {
  width: 44px;
  border: 1px solid #ced4da;
  background: #ffffff;
  font-weight: 700;
  cursor: pointer;
}

.add-to-cart-container .quantity .minus {
  border-radius: 0.375rem 0 0 0.375rem;
  border-right: 0;
}

.add-to-cart-container .quantity .plus {
  border-radius: 0 0.375rem 0.375rem 0;
  border-left: 0;
}

.add-to-cart-container .single_add_to_cart_button {
  flex-basis: 100%;
  background-color: var(--kt-orange);
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.add-to-cart-container .single_add_to_cart_button:hover,
.add-to-cart-container .single_add_to_cart_button:focus {
  background-color: var(--kt-orange-hover);
  color: #ffffff;
}

/* Variaciones nativas */
.add-to-cart-container .variations label {
  font-weight: 700;
}

.add-to-cart-container .variations select {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  background-color: #ffffff;
}

.add-to-cart-container .reset_variations {
  font-size: 0.8rem;
}

.add-to-cart-container .woocommerce-variation-add-to-cart {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.add-to-cart-container .woocommerce-variation-price .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--kt-dark);
}

/* Avisos WooCommerce como alerts de Bootstrap */
/* Fuente de títulos (Helvetica Condensed): soporta los caracteres especiales del
   español que el Helvetica de base no renderiza en estos avisos. */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  border: 1px solid;
  font-family: var(--font-display);
}

.woocommerce-message {
  background-color: #d1e7dd;
  color: #0f5132;
  border-color: #badbcc;
}

.woocommerce-info {
  background-color: #cff4fc;
  color: #055160;
  border-color: #b6effb;
}

.woocommerce-error {
  background-color: #f8d7da;
  color: #842029;
  border-color: #f5c2c7;
}

.woocommerce-message a,
.woocommerce-info a,
.woocommerce-error a {
  font-weight: 700;
  color: inherit;
}

/* ==========================================================================
   CHECKOUT — BARRA DE PROGRESO (Carrito -> Checkout -> Pedido realizado)
   Dimensiones finas y colores de marca; el layout flex es 100% Bootstrap.
   ========================================================================== */
.checkout-step__dot {
  width: 14px;
  height: 14px;
  background-color: #dcdcd6;
  transition: all 0.3s ease;
}

.checkout-step__line {
  width: 36px;
  height: 2px;
  background-color: #dcdcd6;
  align-self: center;
  margin-bottom: 1.2rem; /* Alinea la línea con los puntos */
}

.checkout-step--active .checkout-step__dot,
.checkout-step--done .checkout-step__dot {
  background-color: var(--kt-orange, #f39200);
  box-shadow: 0 0 0 4px rgba(243, 146, 0, 0.18);
}

.checkout-step__line--filled {
  background-color: var(--kt-orange, #f39200);
}

.checkout-step--active .checkout-step__label {
  color: var(--kt-orange, #f39200);
}

/* ==========================================================================
   ANIMACIONES — REVEAL ON SCROLL (minimalista y fluida)
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  will-change: opacity, transform;
}

[data-reveal].is-revealed {
  opacity: 1;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}

[data-reveal="fade-up"] {
  transform: translateY(26px);
}

[data-reveal="fade-up"].is-revealed {
  transform: translateY(0);
}

[data-reveal="fade-in"] {
  transform: none;
}

[data-reveal="fade-left"] {
  transform: translateX(-30px);
}

[data-reveal="fade-left"].is-revealed {
  transform: translateX(0);
}

[data-reveal="fade-right"] {
  transform: translateX(30px);
}

[data-reveal="fade-right"].is-revealed {
  transform: translateX(0);
}

[data-reveal="zoom"] {
  transform: scale(0.94);
}

[data-reveal="zoom"].is-revealed {
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal].is-revealed {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
