/* ============================================================
   Témpora Tienda (editable) — CSS de los widgets tempora-shop-*-edit.
   Portado VERBATIM del snippet 73 (grid) y del HTML#1 (hero). Todo scopeado
   bajo el wrapper de cada widget para NO sangrar a la página viva.
   IMPORTANTE: grid y hero usan la MISMA var --at-lime con valores DISTINTOS
   (#b2ca04 vs #d6ef48) → las vars NO van en un :root global; se definen
   scopeadas por widget para evitar el conflicto.
   ============================================================ */

/* ===== GRID DE TIENDA (tempora-shop-grid-edit) ===== */
.elementor-widget-tempora-shop-grid-edit {
  --at-lime: #b2ca04;
  --at-dark-green: #525945;
  --at-border: #e2e8f0;
}
.elementor-widget-tempora-shop-grid-edit .at-store-container { max-width: 1200px; margin: 0 auto; padding: 40px 20px; font-family: 'Manrope', sans-serif; }

.elementor-widget-tempora-shop-grid-edit .at-store-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 50px; flex-wrap: wrap; gap: 30px; }

.elementor-widget-tempora-shop-grid-edit .at-main-title { font-size: 80px; font-weight: 800; line-height: 0.8; margin: 0; color: #1a1a1a; font-style: italic; }
.elementor-widget-tempora-shop-grid-edit .at-sub-title { font-size: 80px; font-weight: 300; line-height: 0.8; margin: 0; color: #d1d5db; font-style: italic; }

.elementor-widget-tempora-shop-grid-edit .at-featured-badge { display: flex; align-items: center; gap: 8px; margin-bottom: 15px; }
.elementor-widget-tempora-shop-grid-edit .at-dot { width: 8px; height: 8px; background-color: var(--at-lime); border-radius: 50%; }
.elementor-widget-tempora-shop-grid-edit .at-badge-text { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.3em; color: #1a1a1a; }

.elementor-widget-tempora-shop-grid-edit .at-store-filters { display: flex; gap: 10px; flex-wrap: wrap; }
.elementor-widget-tempora-shop-grid-edit .at-filter-btn {
  padding: 8px 20px; border-radius: 20px; border: 1px solid #e5e7eb; background: #fff;
  font-size: 11px; font-weight: 700; cursor: pointer; transition: 0.3s; color: #9ca3af;
}
.elementor-widget-tempora-shop-grid-edit .at-filter-btn.active { background: var(--at-dark-green); color: #fff; border-color: var(--at-dark-green); }
.elementor-widget-tempora-shop-grid-edit .at-filter-btn:hover:not(.active) { border-color: var(--at-dark-green); color: var(--at-dark-green); }

/* Auto-centrado (patrón e27efbd): con pocos productos las cards quedan centradas,
   no pegadas a la izquierda. flex-basis = ancho de columna del grid original (4 col). */
.elementor-widget-tempora-shop-grid-edit .at-products-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; }
.elementor-widget-tempora-shop-grid-edit .at-products-grid .at-product-card { flex: 0 1 calc((100% - 3 * 30px) / 4); min-width: 260px; }

.elementor-widget-tempora-shop-grid-edit .at-product-card { transition: 0.4s ease; }
.elementor-widget-tempora-shop-grid-edit .at-card-link { text-decoration: none; display: block; }

.elementor-widget-tempora-shop-grid-edit .at-card-image-wrap {
  position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 4/5;
  background: #f3f4f6; margin-bottom: 15px;
}
.elementor-widget-tempora-shop-grid-edit .at-card-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%); transition: 0.6s ease;
}

.elementor-widget-tempora-shop-grid-edit .at-card-category {
  position: absolute; top: 15px; left: 15px; z-index: 10;
  background: rgba(255,255,255,0.9); padding: 5px 12px; border-radius: 15px;
  font-size: 9px; font-weight: 800; letter-spacing: 0.1em; color: #1a1a1a;
}

.elementor-widget-tempora-shop-grid-edit .at-card-overlay {
  position: absolute; inset: 0; background: rgba(82, 89, 69, 0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: 0.3s;
}
.elementor-widget-tempora-shop-grid-edit .at-btn-fake {
  background: var(--at-dark-green); color: #fff; padding: 12px 20px;
  border-radius: 12px; font-size: 11px; font-weight: 700; transform: translateY(10px); transition: 0.3s;
}

.elementor-widget-tempora-shop-grid-edit .at-product-card:hover .at-card-image-wrap img { filter: grayscale(0%); transform: scale(1.05); }
.elementor-widget-tempora-shop-grid-edit .at-product-card:hover .at-card-overlay { opacity: 1; }
.elementor-widget-tempora-shop-grid-edit .at-product-card:hover .at-btn-fake { transform: translateY(0); }
.elementor-widget-tempora-shop-grid-edit .at-product-card:hover .at-card-title { color: var(--at-lime); }

.elementor-widget-tempora-shop-grid-edit .at-card-title { font-size: 18px; font-weight: 800; color: #1a1a1a; margin-bottom: 5px; text-transform: uppercase; transition: 0.3s; }
.elementor-widget-tempora-shop-grid-edit .at-card-price { font-size: 16px; font-weight: 600; color: #4b5563; }
.elementor-widget-tempora-shop-grid-edit .at-card-price ins { text-decoration: none; }
.elementor-widget-tempora-shop-grid-edit .at-card-price del { font-size: 14px; opacity: 0.5; margin-right: 8px; }

@media (max-width: 768px) {
  .elementor-widget-tempora-shop-grid-edit .at-store-container { padding: 28px 16px; }
  .elementor-widget-tempora-shop-grid-edit .at-store-header { flex-direction: column; align-items: flex-start; gap: 22px; margin-bottom: 32px; }
  .elementor-widget-tempora-shop-grid-edit .at-store-titles { width: 100%; max-width: 100%; min-width: 0; box-sizing: border-box; }
  .elementor-widget-tempora-shop-grid-edit .at-main-title,
  .elementor-widget-tempora-shop-grid-edit .at-sub-title {
    display: block; max-width: 100%; font-size: clamp(22px, 8vw, 44px);
    line-height: 0.92; overflow-wrap: break-word; word-wrap: break-word;
  }
  .elementor-widget-tempora-shop-grid-edit .at-featured-badge { flex-wrap: wrap; margin-bottom: 10px; }
  .elementor-widget-tempora-shop-grid-edit .at-badge-text { letter-spacing: 0.18em; font-size: 9px; }
  .elementor-widget-tempora-shop-grid-edit .at-products-grid { gap: 12px !important; }
  .elementor-widget-tempora-shop-grid-edit .at-products-grid .at-product-card { flex-basis: calc((100% - 12px) / 2) !important; min-width: 0 !important; }
  .elementor-widget-tempora-shop-grid-edit .at-card-title { font-size: 13px !important; margin-bottom: 4px !important; }
  .elementor-widget-tempora-shop-grid-edit .at-card-price { font-size: 13px !important; }
  .elementor-widget-tempora-shop-grid-edit .at-card-image-wrap { margin-bottom: 10px !important; }
}

/* ===== HERO DE TIENDA (tempora-shop-hero-edit) — portado de HTML#1 ===== */
/* Vars propias del hero (¡OJO: --at-lime distinto del grid!). Scopeadas al wrapper. */
.elementor-widget-tempora-shop-hero-edit {
  --at-lime: #d6ef48;
  --at-navy-dark: #303e48;
  --at-navy-card: #3c4c57;
  --at-white: #ffffff;
  --at-text-dim: rgba(255, 255, 255, 0.7);
  --at-border-rgba: rgba(255, 255, 255, 0.1);
  --at-fixed-width: 1120px;
}
.elementor-widget-tempora-shop-hero-edit .at-shop-main-wrapper { width: 100%; background-color: var(--at-navy-dark); color: var(--at-white); font-family: 'Manrope', sans-serif; margin: 0; padding: 0; overflow-x: hidden; }
.elementor-widget-tempora-shop-hero-edit .at-fixed-container { max-width: var(--at-fixed-width); margin: 0 auto; padding: 0 20px; box-sizing: border-box; }
.elementor-widget-tempora-shop-hero-edit .at-hero-section { position: relative; overflow: hidden; padding: 160px 0 100px 0; }
.elementor-widget-tempora-shop-hero-edit .at-hero-grid { display: flex; align-items: center; gap: 80px; position: relative; z-index: 2; }
.elementor-widget-tempora-shop-hero-edit .at-hero-content { flex: 1.2; }
.elementor-widget-tempora-shop-hero-edit .at-hero-badge { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; }
.elementor-widget-tempora-shop-hero-edit .at-badge-label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.25em; color: var(--at-lime); }
.elementor-widget-tempora-shop-hero-edit .at-hero-headline { font-size: clamp(45px, 7vw, 100px); line-height: 0.85 !important; text-transform: uppercase; margin: 0 0 35px 0; }
.elementor-widget-tempora-shop-hero-edit .at-text-italic { font-style: italic; font-weight: 300; display: block; }
.elementor-widget-tempora-shop-hero-edit .at-text-ghost { font-weight: 800; display: block; color: rgba(255, 255, 255, 0.3); }
.elementor-widget-tempora-shop-hero-edit .at-hero-desc { max-width: 400px; font-size: 13px; font-weight: 600; line-height: 1.7; text-transform: uppercase; letter-spacing: 0.05em; color: var(--at-text-dim); margin-bottom: 45px; }
.elementor-widget-tempora-shop-hero-edit .at-hero-actions { display: flex; gap: 20px; align-items: center; }
.elementor-widget-tempora-shop-hero-edit .at-btn-primary { background-color: var(--at-lime); color: var(--at-navy-dark) !important; padding: 22px 38px; border-radius: 12px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; text-decoration: none; transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); box-shadow: 0 4px 0px #a8bc39; }
.elementor-widget-tempora-shop-hero-edit .at-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 0px #a8bc39; background-color: var(--at-white); }
.elementor-widget-tempora-shop-hero-edit .at-btn-outline { display: flex; align-items: center; gap: 10px; padding: 20px 32px; border: 1px solid var(--at-border-rgba); border-radius: 50px; color: var(--at-white) !important; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.15em; text-decoration: none; transition: 0.3s ease; }
.elementor-widget-tempora-shop-hero-edit .at-btn-outline:hover { border-color: var(--at-lime); color: var(--at-lime) !important; background: rgba(214, 239, 72, 0.03); }
.elementor-widget-tempora-shop-hero-edit .at-hero-media { flex: 1; position: relative; }
.elementor-widget-tempora-shop-hero-edit .at-media-frame { aspect-ratio: 4/5; background-color: transparent; border-radius: 35px; overflow: hidden; border: 1px solid var(--at-border-rgba); box-shadow: 0 40px 80px rgba(0,0,0,0.3); position: relative; }
.elementor-widget-tempora-shop-hero-edit .at-hero-slide { position: absolute; inset: 0; display: block; width: 100% !important; height: 100% !important; object-fit: cover; transition: opacity 0.8s ease-in-out; opacity: 0; pointer-events: none; }
.elementor-widget-tempora-shop-hero-edit .at-hero-slide.active { opacity: 1; }
.elementor-widget-tempora-shop-hero-edit .at-hero-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.28); background: rgba(48, 62, 72, 0.72); color: var(--at-white); display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 5; transition: all 0.25s ease; backdrop-filter: blur(2px); }
.elementor-widget-tempora-shop-hero-edit .at-hero-nav svg { width: 18px; height: 18px; }
.elementor-widget-tempora-shop-hero-edit .at-hero-prev { left: 12px; }
.elementor-widget-tempora-shop-hero-edit .at-hero-next { right: 12px; }
.elementor-widget-tempora-shop-hero-edit .at-hero-nav:hover { background: var(--at-lime); color: var(--at-navy-dark); border-color: var(--at-lime); }
.elementor-widget-tempora-shop-hero-edit .at-hero-media:hover .at-hero-slide.active { filter: grayscale(0%) brightness(1); }
.elementor-widget-tempora-shop-hero-edit .at-cert-floating-card { position: absolute; bottom: -15px; right: -15px; background: var(--at-navy-card); padding: 22px; border-radius: 18px; box-shadow: 0 20px 40px rgba(0,0,0,0.4); display: flex; align-items: center; gap: 15px; border: 1px solid var(--at-border-rgba); }
.elementor-widget-tempora-shop-hero-edit .at-cert-icon-box { width: 40px; height: 40px; background-color: rgba(214, 239, 72, 0.08); color: var(--at-lime); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.elementor-widget-tempora-shop-hero-edit .at-cert-tag { display: block; font-size: 9px; font-weight: 800; text-transform: uppercase; color: var(--at-lime); letter-spacing: 0.1em; }
.elementor-widget-tempora-shop-hero-edit .at-cert-title { font-size: 14px; font-weight: 800; }
.elementor-widget-tempora-shop-hero-edit .ct-head-photo { position: absolute; left: 18%; bottom: 0; width: 30%; max-width: 520px; height: auto; z-index: 0; pointer-events: none; transform-origin: 50% 100%; animation: ctHeadSway 9s ease-in-out infinite; }
.elementor-widget-tempora-shop-hero-edit .ct-hero-flora { position: absolute; left: 0; right: 0; bottom: 0; height: 280px; pointer-events: none; z-index: 1; overflow: visible; }
.elementor-widget-tempora-shop-hero-edit .ct-hero-flora svg { position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; display: block; overflow: visible; }
.elementor-widget-tempora-shop-hero-edit .ct-hero-flora .ct-plant { transform-box: fill-box; transform-origin: 50% 100%; animation: ctSway var(--sway-dur, 8s) ease-in-out infinite; animation-delay: var(--sway-delay, 0s); will-change: transform; }
.elementor-widget-tempora-shop-hero-edit .ct-hero-flora .ct-plant--1 { --sway-dur: 7s;   --sway-delay: -0.5s; }
.elementor-widget-tempora-shop-hero-edit .ct-hero-flora .ct-plant--2 { --sway-dur: 9s;   --sway-delay: -2s;   }
.elementor-widget-tempora-shop-hero-edit .ct-hero-flora .ct-plant--3 { --sway-dur: 6.5s; --sway-delay: -3.5s; }
.elementor-widget-tempora-shop-hero-edit .ct-hero-flora .ct-plant--4 { --sway-dur: 10s;  --sway-delay: -1.2s; }
.elementor-widget-tempora-shop-hero-edit .ct-hero-flora .ct-plant--5 { --sway-dur: 8.5s; --sway-delay: -4s;   }
.elementor-widget-tempora-shop-hero-edit .ct-hero-flora .ct-plant--6 { --sway-dur: 7.5s; --sway-delay: -2.8s; }
.elementor-widget-tempora-shop-hero-edit .ct-hero-flora .ct-pollen { opacity: 0; animation: ctPollenFadeIn 1.2s ease-out 3.2s forwards, ctFloat 14s ease-in-out 3.2s infinite; }
.elementor-widget-tempora-shop-hero-edit .ct-hero-flora .ct-pollen--1 { animation-duration: 1.2s, 13s; animation-delay: 3.2s, 3.2s; }
.elementor-widget-tempora-shop-hero-edit .ct-hero-flora .ct-pollen--2 { animation-duration: 1.2s, 17s; animation-delay: 3.5s, 3.5s; }
.elementor-widget-tempora-shop-hero-edit .ct-hero-flora .ct-pollen--3 { animation-duration: 1.2s, 15s; animation-delay: 3.8s, 3.8s; }
.elementor-widget-tempora-shop-hero-edit .ct-hero-flora .ct-pollen--4 { animation-duration: 1.2s, 19s; animation-delay: 4.1s, 4.1s; }
.elementor-widget-tempora-shop-hero-edit .ct-hero-flora .ct-pollen--5 { animation-duration: 1.2s, 21s; animation-delay: 4.4s, 4.4s; }
@keyframes ctSway { 0%, 100% { transform: rotate(-2deg); } 50% { transform: rotate(2.5deg); } }
@keyframes ctPollenFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes ctFloat { 0% { transform: translateY(0) translateX(0); opacity: 0.75; } 25% { transform: translateY(-15px) translateX(6px); } 50% { transform: translateY(-32px) translateX(-5px); opacity: 1; } 75% { transform: translateY(-48px) translateX(4px); } 100% { transform: translateY(-65px) translateX(-3px); opacity: 0; } }
@keyframes ctHeadSway { 0%, 100% { transform: rotate(-0.8deg); } 50% { transform: rotate(0.9deg); } }
@media (prefers-reduced-motion: reduce) {
  .elementor-widget-tempora-shop-hero-edit .ct-hero-flora .ct-plant { animation: none; }
  .elementor-widget-tempora-shop-hero-edit .ct-hero-flora .ct-pollen { animation: none; }
  .elementor-widget-tempora-shop-hero-edit .ct-head-photo { animation: none; }
}
/* Mobile: sin flora en el header — solo la foto de cabeza (decisión CEO 2026-07-03). */
@media (max-width: 768px) { .elementor-widget-tempora-shop-hero-edit .ct-hero-flora { display: none; } }
@media (max-width: 767px) {
  .elementor-widget-tempora-shop-hero-edit .ct-head-photo {
    display: block; position: absolute; top: 0; bottom: auto; left: 50%;
    transform: translateX(-50%) scaleY(-1); transform-origin: 50% 50%;
    width: 90vw; max-width: 600px; height: auto; animation: none; z-index: 10;
    content: url("https://clinicatempora.cl/wp-content/uploads/cabeza_hero_mobile.webp");
  }
  /* Reserva el espacio de la foto de cabeza (arriba, volteada) para que no
     tape el badge/heading. Fórmula fluida idéntica al original: escala con
     el viewport porque la imagen es width:90vw/height:auto (a mayor ancho,
     más alta la imagen), con techo en 382px. */
  .elementor-widget-tempora-shop-hero-edit .at-hero-section {
    /* !important necesario: el child-theme trae `.at-hero-section{padding-top:32px!important}`
       en este mismo breakpoint (la tienda viva se salva por una regla scopeada a su page-id). */
    padding-top: min(20px + 54.3vw, 382px) !important;
    padding-bottom: 20px !important;
  }
  /* Anula los 120px de padding-top que el contenedor Elementor padre
     (auto-generado, e-parent) trae por defecto en mobile — en la tienda
     viva esto se anula con `.page-id-6886 .elementor-element-51043ba
     {padding-top:0}`, pero ese ID es propio de la página 6886 y no existe
     en el clon/demo. El margen negativo va en el WRAPPER (no en
     .at-hero-section): si fuera en la sección, el overflow:hidden del
     wrapper recorta los 120px superiores de la foto (bug medido por
     píxeles 2026-07-03). En el wrapper, su propia caja sube a y=0 y su
     overflow no recorta nada. Header fixed (.smart-header, z-index:990,
     transparente) queda flotando sobre la foto. */
  .elementor-widget-tempora-shop-hero-edit .at-shop-main-wrapper {
    margin-top: -120px !important;
  }
  /* EXCEPCIÓN 6886 (tienda viva): su child-theme YA anula el padding del container
     con `.page-id-6886 .elementor-element-51043ba{padding-top:0!important}` → la
     compensación genérica de arriba produciría DOBLE resta (foto 120px fuera del
     viewport — medido en rollout 2026-07-03). En esa página, sin compensación. */
  body.page-id-6886 .elementor-widget-tempora-shop-hero-edit .at-shop-main-wrapper {
    margin-top: 0 !important;
  }
}
@media (max-width: 991px) {
  .elementor-widget-tempora-shop-hero-edit .at-hero-grid { flex-direction: column; text-align: center; gap: 50px; }
  .elementor-widget-tempora-shop-hero-edit .at-hero-badge { justify-content: center; }
  .elementor-widget-tempora-shop-hero-edit .at-hero-desc { margin: 0 auto 40px; }
  .elementor-widget-tempora-shop-hero-edit .at-hero-actions { justify-content: center; flex-direction: column; width: 100%; }
  .elementor-widget-tempora-shop-hero-edit .at-btn-primary, .elementor-widget-tempora-shop-hero-edit .at-btn-outline { width: 100%; justify-content: center; }
  .elementor-widget-tempora-shop-hero-edit .at-hero-media { width: 100%; max-width: 400px; }
  .elementor-widget-tempora-shop-hero-edit .at-cert-floating-card { right: 0; bottom: -5px; padding: 15px; }
  .elementor-widget-tempora-shop-hero-edit .at-hero-nav { width: 38px; height: 38px; }
  .elementor-widget-tempora-shop-hero-edit .at-hero-prev { left: 10px; }
  .elementor-widget-tempora-shop-hero-edit .at-hero-next { right: 10px; }
}

/* ============================================================
 * FASE 2 — secciones editoriales. Cada bloque scopeado a su wrapper de widget
 * (vars incluidas) para evitar colisiones de clases/vars entre secciones.
 * ============================================================ */

/* ---- #2 MARQUEE (tempora-shop-marquee-edit) ---- */
.elementor-widget-tempora-shop-marquee-edit { --at-lime: #d6ef48; --at-navy-dark: #303e48; --at-white: #ffffff; --at-border-rgba: rgba(255,255,255,0.1); }
.elementor-widget-tempora-shop-marquee-edit .at-marquee-container { --at-speed: 30s; background-color: var(--at-navy-dark); border-top: 1px solid var(--at-border-rgba); border-bottom: 1px solid var(--at-border-rgba); padding: 20px 0; overflow: hidden; display: flex; position: relative; }
.elementor-widget-tempora-shop-marquee-edit .at-marquee-content { display: flex; width: max-content; animation: at-scroll var(--at-speed) linear infinite; }
.elementor-widget-tempora-shop-marquee-edit .at-marquee-group { display: flex; align-items: center; gap: 60px; padding-right: 60px; }
.elementor-widget-tempora-shop-marquee-edit .at-marquee-group span { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.25em; white-space: nowrap; font-family: 'Manrope', sans-serif; }
.elementor-widget-tempora-shop-marquee-edit .at-text-light { color: var(--at-white); opacity: 0.7; }
.elementor-widget-tempora-shop-marquee-edit .at-text-bold { color: var(--at-lime); }
.elementor-widget-tempora-shop-marquee-edit .at-marquee-container:hover .at-marquee-content { animation-play-state: paused; }
@keyframes at-scroll { from { transform: translateX(0); } to { transform: translateX(-33.333%); } }
@media (max-width: 768px) {
  .elementor-widget-tempora-shop-marquee-edit .at-marquee-container { padding: 15px 0; }
  .elementor-widget-tempora-shop-marquee-edit .at-marquee-group { gap: 40px; padding-right: 40px; }
}

/* ---- #3 PRODUCTO DESTACADO (tempora-shop-featured-edit) ---- */
.elementor-widget-tempora-shop-featured-edit { --pd-lime: #d6ef48; --pd-navy-bg: #303e48; --pd-white: #ffffff; --pd-text-dim: rgba(255,255,255,0.7); --pd-border-rgba: rgba(255,255,255,0.1); --pd-max-width: 1120px; }
.elementor-widget-tempora-shop-featured-edit .pd-featured-showcase { background-color: var(--pd-navy-bg); padding: 60px 0; border-bottom: 1px solid var(--pd-border-rgba); font-family: 'Manrope', sans-serif; }
.elementor-widget-tempora-shop-featured-edit .pd-fixed-layout { max-width: var(--pd-max-width); margin: 0 auto; padding: 0 20px; box-sizing: border-box; }
.elementor-widget-tempora-shop-featured-edit .pd-main-grid { display: flex; align-items: center; gap: 80px; }
.elementor-widget-tempora-shop-featured-edit .pd-visual-column { flex: 1; display: flex; justify-content: flex-start; }
.elementor-widget-tempora-shop-featured-edit .pd-image-frame { width: 100%; max-width: 450px; }
.elementor-widget-tempora-shop-featured-edit .pd-image-frame img { width: 100%; height: auto; transition: all 0.6s ease-in-out; object-fit: contain; }
.elementor-widget-tempora-shop-featured-edit .pd-image-frame:hover img { filter: grayscale(0%) brightness(1); }
.elementor-widget-tempora-shop-featured-edit .pd-content-column { flex: 1; }
.elementor-widget-tempora-shop-featured-edit .pd-status-pill { display: flex; align-items: center; gap: 10px; margin-bottom: 25px; }
.elementor-widget-tempora-shop-featured-edit .pd-status-dot { width: 8px; height: 8px; background-color: var(--pd-lime); border-radius: 50%; box-shadow: 0 0 10px var(--pd-lime); }
.elementor-widget-tempora-shop-featured-edit .pd-status-text { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.25em; color: var(--pd-lime); }
.elementor-widget-tempora-shop-featured-edit .pd-main-title { font-size: clamp(40px, 5vw, 68px); font-weight: 800; line-height: 0.85; text-transform: uppercase; margin: 0 0 30px 0; color: var(--pd-white); }
.elementor-widget-tempora-shop-featured-edit .pd-title-ghost { color: rgba(255,255,255,0.3); }
.elementor-widget-tempora-shop-featured-edit .pd-main-description { font-size: 16px; line-height: 1.6; color: var(--pd-text-dim); margin-bottom: 45px; max-width: 440px; }
.elementor-widget-tempora-shop-featured-edit .pd-metrics-row { display: flex; gap: 50px; padding: 35px 0; border-top: 1px solid var(--pd-border-rgba); border-bottom: 1px solid var(--pd-border-rgba); margin-bottom: 45px; }
.elementor-widget-tempora-shop-featured-edit .pd-metric-label { display: block; font-size: 10px; font-weight: 800; text-transform: uppercase; color: var(--pd-lime); margin-bottom: 8px; letter-spacing: 0.15em; }
.elementor-widget-tempora-shop-featured-edit .pd-metric-value { font-size: 28px; font-weight: 700; color: var(--pd-white); }
.elementor-widget-tempora-shop-featured-edit .pd-commerce-row { display: flex; align-items: center; gap: 40px; }
.elementor-widget-tempora-shop-featured-edit .pd-pricing-block { display: flex; flex-direction: column; }
.elementor-widget-tempora-shop-featured-edit .pd-price-label { font-size: 11px; font-weight: 800; text-transform: uppercase; color: var(--pd-text-dim); margin-bottom: 4px; letter-spacing: 0.1em; }
.elementor-widget-tempora-shop-featured-edit .pd-price-amount { font-size: 36px; font-weight: 800; color: var(--pd-white); letter-spacing: -1px; line-height: 1; }
.elementor-widget-tempora-shop-featured-edit .pd-action-button { background-color: var(--pd-lime); color: #303e48 !important; padding: 20px 38px; border-radius: 14px; font-size: 13px; font-weight: 800; text-transform: uppercase; text-decoration: none; display: inline-flex; align-items: center; gap: 12px; transition: all 0.4s cubic-bezier(0.175,0.885,0.32,1.275); box-shadow: 0 4px 0px #a8bc39; letter-spacing: 0.1em; }
.elementor-widget-tempora-shop-featured-edit .pd-action-button:hover { background-color: var(--pd-white); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
@media (max-width: 1160px) { .elementor-widget-tempora-shop-featured-edit .pd-fixed-layout { padding: 0 30px; } }
@media (max-width: 991px) {
  .elementor-widget-tempora-shop-featured-edit .pd-featured-showcase { padding: 40px 0; }
  .elementor-widget-tempora-shop-featured-edit .pd-fixed-layout { padding: 0 18px; }
  .elementor-widget-tempora-shop-featured-edit .pd-main-grid { flex-direction: column; gap: 26px; }
  .elementor-widget-tempora-shop-featured-edit .pd-visual-column { width: 100%; justify-content: center; }
  .elementor-widget-tempora-shop-featured-edit .pd-image-frame { max-width: 260px; }
  .elementor-widget-tempora-shop-featured-edit .pd-status-pill { margin-bottom: 16px; justify-content: center; }
  .elementor-widget-tempora-shop-featured-edit .pd-main-title { margin: 0 0 18px 0; font-size: clamp(32px, 12vw, 44px); }
  .elementor-widget-tempora-shop-featured-edit .pd-content-column { text-align: center; }
  .elementor-widget-tempora-shop-featured-edit .pd-main-description { margin: 0 auto 24px; font-size: 15px; line-height: 1.5; }
  .elementor-widget-tempora-shop-featured-edit .pd-metrics-row { justify-content: center; gap: 24px; padding: 18px 0; margin-bottom: 24px; }
  .elementor-widget-tempora-shop-featured-edit .pd-metric-value { font-size: 24px; }
  .elementor-widget-tempora-shop-featured-edit .pd-commerce-row { flex-direction: column; gap: 16px; align-items: center; }
  .elementor-widget-tempora-shop-featured-edit .pd-price-amount { font-size: 30px; }
  .elementor-widget-tempora-shop-featured-edit .pd-action-button { width: 100%; justify-content: center; box-sizing: border-box; padding: 16px 24px; }
}

/* ---- #4 EQUIPO MÉDICO (tempora-shop-team-edit) ---- */
.elementor-widget-tempora-shop-team-edit .sd-doctor-section { position: relative; background: linear-gradient(180deg, #18222b 0%, #0e1820 100%); color: #ffffff; font-family: 'Manrope', sans-serif; padding: 60px 20px; overflow: hidden; box-sizing: border-box; }
.elementor-widget-tempora-shop-team-edit .sd-doctor-section__bg { position: absolute; inset: 0; pointer-events: none; }
.elementor-widget-tempora-shop-team-edit .sd-doctor-section__glow { position: absolute; top: -150px; right: -150px; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(197,241,104,0.10) 0%, transparent 65%); }
.elementor-widget-tempora-shop-team-edit .sd-inner { position: relative; max-width: 1100px; margin: 0 auto; box-sizing: border-box; }
.elementor-widget-tempora-shop-team-edit .sd-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.22fr); grid-template-rows: auto auto; grid-template-areas: "text-top image" "text-bottom image"; gap: 0 clamp(32px, 4vw, 56px); align-items: center; }
.elementor-widget-tempora-shop-team-edit .sd-col-text-top { grid-area: text-top; }
.elementor-widget-tempora-shop-team-edit .sd-col-text-bottom { grid-area: text-bottom; }
.elementor-widget-tempora-shop-team-edit .sd-col-image { grid-area: image; display: flex; justify-content: center; }
.elementor-widget-tempora-shop-team-edit .sd-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.7); font-weight: 600; }
.elementor-widget-tempora-shop-team-edit .sd-eyebrow__num { color: #c5f168; font-weight: 700; }
.elementor-widget-tempora-shop-team-edit .sd-title { margin: 0 0 12px; font-size: clamp(36px, 5vw, 64px); font-weight: 500; line-height: 0.95; letter-spacing: -0.03em; }
.elementor-widget-tempora-shop-team-edit .sd-title__italic { font-style: italic; font-weight: 500; display: block; }
.elementor-widget-tempora-shop-team-edit .sd-title__ghost { display: block; color: rgba(255,255,255,0.3); font-weight: 700; }
.elementor-widget-tempora-shop-team-edit .sd-role { margin: 0 0 16px; font-size: 15px; line-height: 1.4; color: rgba(255,255,255,0.92); display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.elementor-widget-tempora-shop-team-edit .sd-role__tags { display: inline-flex; gap: 6px; }
.elementor-widget-tempora-shop-team-edit .sd-role__tags span { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; background: rgba(197,241,104,0.14); color: #c5f168; border: 1px solid rgba(197,241,104,0.4); }
.elementor-widget-tempora-shop-team-edit .sd-lead { margin: 0 0 22px; font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.78); max-width: 520px; }
.elementor-widget-tempora-shop-team-edit .sd-lead strong { color: #ffffff; font-weight: 700; }
.elementor-widget-tempora-shop-team-edit .sd-stats { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 0; border-top: 1px solid rgba(255,255,255,0.12); border-bottom: 1px solid rgba(255,255,255,0.12); }
.elementor-widget-tempora-shop-team-edit .sd-stats__item { flex: 0 0 25%; padding: 14px; border-right: 1px solid rgba(255,255,255,0.08); box-sizing: border-box; }
.elementor-widget-tempora-shop-team-edit .sd-stats__item:first-child { padding-left: 0; }
.elementor-widget-tempora-shop-team-edit .sd-stats__item:last-child { border-right: 0; padding-right: 0; }
.elementor-widget-tempora-shop-team-edit .sd-stats__num { display: block; font-size: clamp(24px, 2.6vw, 32px); font-weight: 600; font-style: italic; color: #c5f168; line-height: 1; letter-spacing: -0.02em; margin-bottom: 4px; }
.elementor-widget-tempora-shop-team-edit .sd-stats__lbl { display: block; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.62); line-height: 1.4; font-weight: 500; }
.elementor-widget-tempora-shop-team-edit .sd-creds { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.elementor-widget-tempora-shop-team-edit .sd-cred { display: flex; align-items: center; gap: 12px; padding: 8px 12px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; transition: all 0.25s ease; }
.elementor-widget-tempora-shop-team-edit .sd-cred > div { min-width: 0; align-self: center; }
.elementor-widget-tempora-shop-team-edit .sd-cred:hover { border-color: rgba(197,241,104,0.4); background: rgba(197,241,104,0.04); }
.elementor-widget-tempora-shop-team-edit .sd-cred__icon { box-sizing: border-box; flex: 0 0 32px; width: 32px; height: 32px; border-radius: 8px; background: rgba(197,241,104,0.12); color: #c5f168; display: flex; align-items: center; justify-content: center; line-height: 0; align-self: center; }
.elementor-widget-tempora-shop-team-edit .sd-cred__icon svg { width: 18px; height: 18px; display: block; flex-shrink: 0; }
.elementor-widget-tempora-shop-team-edit .sd-cred > div strong { display: block; font-size: 13px; font-weight: 700; color: #ffffff; line-height: 1.2; margin-bottom: 1px; }
.elementor-widget-tempora-shop-team-edit .sd-cred > div > span { display: block; font-size: 11px; color: rgba(255,255,255,0.6); line-height: 1.3; }
.elementor-widget-tempora-shop-team-edit .sd-cta { display: inline-flex; align-items: center; gap: 10px; padding: 13px 24px; background: #c5f168; color: #0e1820; border-radius: 999px; font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-decoration: none; transition: all 0.25s ease; }
.elementor-widget-tempora-shop-team-edit .sd-cta svg { width: 14px; height: 14px; transition: transform 0.25s ease; }
.elementor-widget-tempora-shop-team-edit .sd-cta:hover { background: #d4ff5c; transform: translateY(-2px); }
.elementor-widget-tempora-shop-team-edit .sd-cta:hover svg { transform: translateX(4px); }
.elementor-widget-tempora-shop-team-edit .sd-photo { position: relative; aspect-ratio: 4 / 4.6; width: 100%; max-width: 100%; margin-inline: auto; }
.elementor-widget-tempora-shop-team-edit .sd-photo__frame { position: relative; width: 100%; height: 100%; border-radius: 18px; overflow: hidden; background: #303e48; }
.elementor-widget-tempora-shop-team-edit .sd-photo__frame::before { content: ""; position: absolute; inset: -8px; border: 1px solid rgba(197,241,104,0.35); border-radius: 24px; pointer-events: none; }
.elementor-widget-tempora-shop-team-edit .sd-photo__frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(14,24,32,0.55) 100%); }
.elementor-widget-tempora-shop-team-edit .sd-photo__frame img { max-height: 480px; object-fit: cover; object-position: top center; width: 100%; height: 100%; display: block; }
.elementor-widget-tempora-shop-team-edit .sd-photo__chip { position: absolute; left: -22px; top: 22px; background: #ffffff; color: #0e1820; padding: 9px 13px; border-radius: 11px; box-shadow: 0 14px 32px rgba(0,0,0,0.4); display: flex; align-items: center; gap: 10px; max-width: 210px; }
.elementor-widget-tempora-shop-team-edit .sd-photo__chip svg { width: 22px; height: 22px; color: #0e1820; flex-shrink: 0; }
.elementor-widget-tempora-shop-team-edit .sd-photo__chip span { display: block; font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(14,24,32,0.55); font-weight: 600; line-height: 1; margin-bottom: 3px; }
.elementor-widget-tempora-shop-team-edit .sd-photo__chip strong { display: block; font-size: 11px; font-weight: 700; color: #0e1820; line-height: 1; }
.elementor-widget-tempora-shop-team-edit .sd-photo__signature { position: absolute; left: 18px; bottom: 18px; color: #ffffff; }
.elementor-widget-tempora-shop-team-edit .sd-photo__signature-label { display: block; font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: #c5f168; font-weight: 600; margin-bottom: 4px; }
.elementor-widget-tempora-shop-team-edit .sd-photo__signature-name { display: block; font-size: 18px; font-style: italic; font-weight: 500; line-height: 1; color: #ffffff; }
@media (max-width: 1024px) {
  .elementor-widget-tempora-shop-team-edit .sd-doctor-section { padding: 48px 20px; }
  .elementor-widget-tempora-shop-team-edit .sd-grid { grid-template-columns: 1fr; grid-template-areas: "text-top" "image" "text-bottom"; gap: 24px; }
  .elementor-widget-tempora-shop-team-edit .sd-col-image { max-width: 320px; margin: 0 auto; }
  .elementor-widget-tempora-shop-team-edit .sd-photo { max-width: min(540px, 100%); }
  .elementor-widget-tempora-shop-team-edit .sd-photo__chip { left: -10px; }
}
@media (max-width: 768px) {
  .elementor-widget-tempora-shop-team-edit .sd-doctor-section { padding: 40px 16px; }
  .elementor-widget-tempora-shop-team-edit .sd-grid { grid-template-columns: 1fr; grid-template-areas: "text-top" "image" "text-bottom"; gap: 20px; align-items: start; }
  .elementor-widget-tempora-shop-team-edit .sd-col-image { max-width: 280px; }
  .elementor-widget-tempora-shop-team-edit .sd-photo__frame img { max-height: 350px; }
  .elementor-widget-tempora-shop-team-edit .sd-lead { max-width: none; }
  .elementor-widget-tempora-shop-team-edit .sd-photo { max-width: min(500px, 100%); }
}
@media (max-width: 640px) {
  .elementor-widget-tempora-shop-team-edit .sd-stats__item { flex-basis: 50%; }
  .elementor-widget-tempora-shop-team-edit .sd-stats__item:nth-child(2) { border-right: 0; padding-right: 0; }
  .elementor-widget-tempora-shop-team-edit .sd-stats__item:nth-child(1), .elementor-widget-tempora-shop-team-edit .sd-stats__item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .elementor-widget-tempora-shop-team-edit .sd-stats__item:nth-child(3), .elementor-widget-tempora-shop-team-edit .sd-stats__item:nth-child(4) { padding-top: 14px; }
  .elementor-widget-tempora-shop-team-edit .sd-photo__chip { left: 0; max-width: 180px; }
  .elementor-widget-tempora-shop-team-edit .sd-photo__signature-name { font-size: 16px; }
  .elementor-widget-tempora-shop-team-edit .sd-photo { margin: 0 auto; max-width: min(420px, calc(100vw - 32px)); }
}

/* ---- #5 STATS (tempora-shop-stats-edit) ---- */
.elementor-widget-tempora-shop-stats-edit { --at-green-dark: #525945; --at-green-lime: #b2ca04; --at-white: #ffffff; }
.elementor-widget-tempora-shop-stats-edit .at-stats-section { background-color: var(--at-green-dark); padding: 100px 20px; position: relative; overflow: hidden; }
.elementor-widget-tempora-shop-stats-edit .at-stats-bg-overlay { position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: rgba(255,255,255,0.04); transform: skewX(-15deg) translateX(25%); pointer-events: none; }
.elementor-widget-tempora-shop-stats-edit .at-stats-container { max-width: 1100px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; position: relative; z-index: 10; }
.elementor-widget-tempora-shop-stats-edit .at-stat-item { flex: 0 1 calc((100% - 2 * 40px) / 3); display: flex; flex-direction: column; gap: 10px; }
.elementor-widget-tempora-shop-stats-edit .at-stat-label { color: var(--at-green-lime); text-transform: uppercase; font-size: 11px; font-weight: 800; letter-spacing: 0.3em; }
.elementor-widget-tempora-shop-stats-edit .at-stat-number { font-size: clamp(60px, 8vw, 90px); font-weight: 800; color: var(--at-white); line-height: 1; margin: 0; letter-spacing: -0.05em; }
.elementor-widget-tempora-shop-stats-edit .at-stat-sub { color: rgba(255,255,255,0.5); text-transform: uppercase; font-size: 12px; font-weight: 700; letter-spacing: 0.15em; margin-top: 5px; }
@media (max-width: 768px) {
  .elementor-widget-tempora-shop-stats-edit .at-stats-section { padding: 54px 16px; }
  .elementor-widget-tempora-shop-stats-edit .at-stat-item { flex-basis: 100%; }
  .elementor-widget-tempora-shop-stats-edit .at-stats-container { text-align: center; gap: 60px; }
  .elementor-widget-tempora-shop-stats-edit .at-stats-bg-overlay { width: 100%; transform: skewY(-5deg) translateY(50%); }
}

/* ---- #6 TESTIMONIOS (tempora-shop-testimonials-edit) ---- */
.elementor-widget-tempora-shop-testimonials-edit { --at-lime: #d6ef48; --at-navy-dark: #303e48; --at-white: #ffffff; --at-text-dim: rgba(255,255,255,0.7); --at-border-rgba: rgba(255,255,255,0.1); }
.elementor-widget-tempora-shop-testimonials-edit .at-testimonials-section { background-color: var(--at-navy-dark); padding: 120px 20px; font-family: 'Manrope', sans-serif; overflow: hidden; }
.elementor-widget-tempora-shop-testimonials-edit .at-testimonials-container { max-width: 1000px; margin: 0 auto; position: relative; }
.elementor-widget-tempora-shop-testimonials-edit .at-test-header { display: flex; align-items: center; gap: 20px; margin-bottom: 70px; }
.elementor-widget-tempora-shop-testimonials-edit .at-test-label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.25em; color: var(--at-lime); }
.elementor-widget-tempora-shop-testimonials-edit .at-test-slider { position: relative; min-height: 280px; }
.elementor-widget-tempora-shop-testimonials-edit .at-test-slide { position: absolute; top: 0; left: 0; width: 100%; opacity: 0; visibility: hidden; transition: transform 0.6s cubic-bezier(0.23,1,0.32,1), opacity 0.6s ease; transform: translateY(15px); }
.elementor-widget-tempora-shop-testimonials-edit .at-test-slide.active { opacity: 1; visibility: visible; transform: translateY(0); position: relative; }
.elementor-widget-tempora-shop-testimonials-edit .at-test-quote { font-size: clamp(26px, 4.5vw, 44px); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; text-transform: uppercase; color: var(--at-white); margin: 0 0 60px 0; }
.elementor-widget-tempora-shop-testimonials-edit .at-test-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--at-border-rgba); padding-top: 30px; }
.elementor-widget-tempora-shop-testimonials-edit .at-test-author { display: flex; flex-direction: column; gap: 5px; }
.elementor-widget-tempora-shop-testimonials-edit .at-author-name { font-size: 19px; font-weight: 700; color: var(--at-white); }
.elementor-widget-tempora-shop-testimonials-edit .at-author-info { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.15em; color: var(--at-text-dim); }
.elementor-widget-tempora-shop-testimonials-edit .at-test-nav-wrapper { position: absolute; bottom: 0; right: 0; z-index: 20; }
.elementor-widget-tempora-shop-testimonials-edit .at-test-nav { display: flex; gap: 15px; }
.elementor-widget-tempora-shop-testimonials-edit .at-nav-btn { width: 60px; height: 60px; border-radius: 50%; border: 1px solid var(--at-border-rgba); background: transparent; color: var(--at-white); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.4s cubic-bezier(0.165,0.84,0.44,1); outline: none; }
.elementor-widget-tempora-shop-testimonials-edit .at-nav-btn:hover { background-color: var(--at-white); border-color: var(--at-lime); color: var(--at-lime); transform: scale(1.05) translateY(-2px); box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
@media (max-width: 991px) {
  .elementor-widget-tempora-shop-testimonials-edit .at-testimonials-section { padding: 90px 20px; }
  .elementor-widget-tempora-shop-testimonials-edit .at-test-slider { min-height: 350px; }
}
@media (max-width: 768px) {
  .elementor-widget-tempora-shop-testimonials-edit .at-test-header { margin-bottom: 50px; }
  .elementor-widget-tempora-shop-testimonials-edit .at-test-quote { font-size: 26px; margin-bottom: 45px; }
  .elementor-widget-tempora-shop-testimonials-edit .at-test-footer { flex-direction: column; align-items: flex-start; gap: 30px; }
  .elementor-widget-tempora-shop-testimonials-edit .at-test-nav-wrapper { position: relative; margin-top: 40px; right: auto; }
  .elementor-widget-tempora-shop-testimonials-edit .at-test-nav { justify-content: flex-start; }
}

/* ---- #7 GUÍA CARD (tempora-shop-guide-edit) ---- */
.elementor-widget-tempora-shop-guide-edit .at-guia-card-wrapper { display: flex; justify-content: center; padding: 20px; font-family: 'Manrope', sans-serif; }
.elementor-widget-tempora-shop-guide-edit .at-guia-card { background: #ffffff; border-radius: 30px; padding: 40px; width: 100%; max-width: 450px; box-shadow: 0 20px 60px rgba(0,0,0,0.06); border: 1px solid #f0f0f0; }
.elementor-widget-tempora-shop-guide-edit .at-card-rating { display: flex; align-items: center; gap: 15px; margin-bottom: 30px; }
.elementor-widget-tempora-shop-guide-edit .at-star-icon { width: 50px; height: 50px; background: #fbfde8; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.elementor-widget-tempora-shop-guide-edit .at-star-icon svg { width: 26px; height: 26px; }
.elementor-widget-tempora-shop-guide-edit .at-rating-text strong { display: block; font-size: 22px; font-weight: 800; color: #1b1c1c; line-height: 1; }
.elementor-widget-tempora-shop-guide-edit .at-rating-text span { font-size: 9px; font-weight: 800; color: #9ca3af; letter-spacing: 0.1em; }
.elementor-widget-tempora-shop-guide-edit .at-guia-list { list-style: none; padding: 0; margin: 0; }
.elementor-widget-tempora-shop-guide-edit .at-guia-list li { display: flex; align-items: center; gap: 15px; margin-bottom: 18px; }
.elementor-widget-tempora-shop-guide-edit .at-check-bg { width: 22px; height: 22px; background-color: #d6ef48; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; color: #586400; }
.elementor-widget-tempora-shop-guide-edit .at-guia-list span { font-size: 12px; font-weight: 800; color: #1b1c1c; letter-spacing: 0.05em; }

/* ---- CF7 FORM (vecino del bloque guía) — GLOBAL a propósito ----
 * El form CF7 es un widget aparte; este CSS no se scopea (igual que el original).
 * Se activa porque el guide widget está presente en la página y enquea shop-v1.css. */
.at-form-custom-container { max-width: 400px; margin-top: 20px; }
.at-form-custom-container input[type="email"] { width: 100% !important; padding: 18px 25px !important; background-color: #f5f3f3 !important; border: none !important; border-radius: 12px !important; font-size: 15px !important; font-weight: 700 !important; color: #1b1c1c !important; margin-bottom: 15px !important; }
.at-form-custom-container input[type="submit"] { width: 100% !important; padding: 18px !important; background-color: #d6ef48 !important; color: #586400 !important; border: none !important; border-radius: 12px !important; font-size: 13px !important; font-weight: 800 !important; text-transform: uppercase !important; letter-spacing: 0.15em !important; cursor: pointer !important; transition: 0.3s !important; }
.at-form-custom-container input[type="submit"]:hover { background-color: #c2d93d !important; transform: translateY(-2px); }
