/* ===========================
   Essence Wellness — Serviços CSS
   Partilhado por todas as páginas de serviço
   =========================== */

/* -----------------------------------------------
   SKIP LINK
   ----------------------------------------------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 9999;
  background: var(--gold);
  color: #fff;
  padding: 8px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  border-radius: 0 0 6px 0;
  text-decoration: none;
}
.skip-link:focus {
  position: fixed;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  overflow: visible;
}

/* -----------------------------------------------
   NAVIGATION
   ----------------------------------------------- */
.servico-nav {
  background: var(--black);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.servico-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.servico-nav-logo:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 4px;
}
.servico-nav-cta {
  padding: 10px 20px;
  font-size: 0.75rem;
  touch-action: manipulation;
}
.servico-nav-cta:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* -----------------------------------------------
   BREADCRUMB
   ----------------------------------------------- */
.servico-breadcrumb-wrap {
  background: var(--cream);
  padding: 12px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.servico-breadcrumb {
  max-width: 1000px;
  margin: 0 auto;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  color: var(--stone);
  opacity: 0.7;
  display: flex;
  gap: 6px;
  align-items: center;
}
.servico-breadcrumb a {
  color: var(--stone);
  text-decoration: none;
  transition: color 0.2s;
}
.servico-breadcrumb a:hover { color: var(--gold); }
.servico-breadcrumb a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}
.servico-breadcrumb-sep { opacity: 0.4; }
.servico-breadcrumb-current { color: var(--gold); opacity: 1; }

/* -----------------------------------------------
   EYEBROW LABEL (shared)
   ----------------------------------------------- */
.servico-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.servico-eyebrow--dim {
  color: rgba(255, 255, 255, 0.45);
}
.servico-eyebrow--stone {
  color: var(--stone);
  opacity: 0.5;
}

/* -----------------------------------------------
   INDEX — INTRO SECTION
   ----------------------------------------------- */
.servicos-intro {
  background: var(--cream);
  padding: clamp(48px, 8vw, 72px) 20px;
  text-align: center;
}
.servicos-intro-inner {
  max-width: 640px;
  margin: 0 auto;
}
.servicos-intro h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 20px;
  text-wrap: balance;
}
.servicos-intro p {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: var(--stone);
  line-height: 1.8;
}

/* -----------------------------------------------
   INDEX — CARDS GRID
   ----------------------------------------------- */
.servicos-cards-section {
  background: var(--white);
  padding: clamp(40px, 7vw, 64px) 20px;
}
.servicos-cards-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.servico-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease;
}
.servico-card:hover {
  transform: translateY(-3px);
}
.servico-card--dark {
  background: var(--black);
}
.servico-card-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--gold);
  color: #fff;
  padding: 4px 10px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 16px;
  align-self: flex-start;
}
.servico-card-icon {
  text-align: center;
  margin-bottom: 24px;
}
.servico-card-icon img {
  opacity: 0.85;
}
.servico-card-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.servico-card h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.5rem;
  color: var(--black);
  margin-bottom: 12px;
  text-wrap: balance;
}
.servico-card--dark h2 {
  color: #fff;
}
.servico-card-desc {
  font-family: 'Lato', sans-serif;
  font-size: 0.92rem;
  color: var(--stone);
  line-height: 1.8;
  letter-spacing: 0.012em;
  margin-bottom: 20px;
  flex-grow: 1;
}
.servico-card--dark .servico-card-desc {
  color: rgba(255, 255, 255, 0.65);
}
.servico-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
}
.servico-card-price {
  font-family: 'Libre Baskerville', serif;
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.servico-card-price-meta {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  color: var(--stone);
}
.servico-card--dark .servico-card-price-meta {
  color: rgba(255, 255, 255, 0.45);
}
.servico-card-cta {
  display: inline-block;
  text-align: center;
  transition: opacity 0.2s;
}
.servico-card-cta:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* -----------------------------------------------
   INDEX — DRENAGEM SECTION
   ----------------------------------------------- */
.drenagem-section-intro {
  background: var(--cream);
  padding: clamp(40px, 7vw, 56px) 20px 12px;
}
.drenagem-section-intro-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.drenagem-section-intro-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--stone);
  opacity: 0.5;
  display: block;
  margin-bottom: 6px;
}
.drenagem-section-intro p {
  font-family: 'Lato', sans-serif;
  font-size: 0.92rem;
  color: var(--stone);
  margin-bottom: 28px;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.drenagem-section-body {
  background: var(--cream);
  padding: 0 20px clamp(40px, 7vw, 64px);
}
.drenagem-section-body-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.drenagem-card {
  background: var(--black);
  border-radius: 16px;
  padding: clamp(28px, 5vw, 44px);
  position: relative;
  overflow: hidden;
}
.drenagem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.drenagem-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: center;
}
.drenagem-info-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.drenagem-info h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
  text-wrap: balance;
}
.drenagem-info-desc {
  font-family: 'Lato', sans-serif;
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 22px;
}
.drenagem-info-guarantee {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 22px;
  font-style: italic;
}
.drenagem-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 28px;
}
.drenagem-price {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.1rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.drenagem-price-meta {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}
.drenagem-cta {
  background: var(--gold) !important;
}
.drenagem-cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}
.drenagem-list-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201, 166, 107, 0.65);
  display: block;
  margin-bottom: 14px;
}
.drenagem-bullets {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.drenagem-bullets li {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  line-height: 1.5;
}
.drenagem-bullets li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.drenagem-bullets li:last-child { border-bottom: none; }
.drenagem-footer-note {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.28);
  line-height: 1.6;
}

/* -----------------------------------------------
   INDEX — GARANTIA / CTA FINAL
   ----------------------------------------------- */
.servicos-garantia {
  background: var(--black);
  padding: clamp(40px, 7vw, 64px) 20px;
  text-align: center;
}
.servicos-garantia-inner {
  max-width: 580px;
  margin: 0 auto;
}
.servicos-garantia h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: #fff;
  line-height: 1.35;
  margin-bottom: 20px;
  text-wrap: balance;
}
.servicos-garantia-desc {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 32px;
}
.servicos-garantia-cta {
  display: block;
  text-align: center;
}
.servicos-garantia-cta:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
.servicos-garantia-note {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 12px;
}

/* -----------------------------------------------
   SERVICE DETAIL — HERO
   ----------------------------------------------- */
.servico-hero {
  background: var(--cream);
  padding: clamp(48px, 8vw, 80px) 20px;
}
.servico-hero--dark {
  background: var(--black);
}
.servico-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.servico-hero-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--gold);
  color: #fff;
  padding: 4px 10px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 16px;
}
.servico-hero h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 20px;
  text-wrap: balance;
}
.servico-hero--dark h1 {
  color: #fff;
}
.servico-hero-desc {
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  color: var(--stone);
  line-height: 1.8;
  letter-spacing: 0.012em;
  margin-bottom: 28px;
}
.servico-hero--dark .servico-hero-desc {
  color: rgba(255, 255, 255, 0.72);
}
.servico-hero-quote {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: var(--gold);
  font-style: italic;
  line-height: 1.75;
  letter-spacing: 0.01em;
  padding: 14px 18px;
  background: rgba(201, 166, 107, 0.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  margin: 0 0 32px;
}
.servico-hero-price-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.servico-hero-price {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.4rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.servico-hero-price-detail {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  color: var(--stone);
  line-height: 1.5;
}
.servico-hero--dark .servico-hero-price-detail {
  color: rgba(255, 255, 255, 0.6);
}
.servico-hero-price-duo {
  font-size: 0.8rem;
  opacity: 0.6;
}
.servico-hero--dark .servico-hero-price-duo {
  color: rgba(255, 255, 255, 0.35);
  opacity: 1;
}
.servico-hero-cta {
  display: inline-flex;
  gap: 8px;
  touch-action: manipulation;
}
.servico-hero-cta:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
.servico-hero-guarantee {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  color: var(--stone);
  margin-top: 10px;
  opacity: 0.6;
}
.servico-hero--dark .servico-hero-guarantee {
  color: rgba(255, 255, 255, 0.35);
  opacity: 1;
}
.servico-hero-icon {
  text-align: center;
}

/* -----------------------------------------------
   SERVICE DETAIL — INCLUDES
   ----------------------------------------------- */
.servico-includes {
  background: var(--white);
  padding: clamp(40px, 7vw, 64px) 20px;
}
.servico-includes-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.servico-includes h2 {
  font-family: 'Libre Baskerville', serif;
  color: var(--black);
  margin-bottom: 36px;
  text-wrap: balance;
}
.servico-includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  text-align: left;
}
.servico-include-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.2s ease;
}
.servico-include-card:hover {
  transform: translateY(-2px);
}
.servico-include-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.servico-include-text {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: var(--stone);
  margin: 0;
  line-height: 1.6;
}

/* -----------------------------------------------
   SERVICE DETAIL — PARA QUEM É
   ----------------------------------------------- */
.servico-para-quem {
  padding: clamp(40px, 7vw, 64px) 20px;
  text-align: center;
}
.servico-para-quem--dark {
  background: var(--black);
}
.servico-para-quem--cream {
  background: var(--cream);
}
.servico-para-quem-inner {
  max-width: 680px;
  margin: 0 auto;
}
.servico-para-quem h2 {
  font-family: 'Libre Baskerville', serif;
  color: var(--black);
  margin-bottom: 24px;
  text-wrap: balance;
}
.servico-para-quem--dark h2 {
  color: #fff;
}
.servico-para-quem-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 40px;
}
.servico-para-quem-list li {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.servico-para-quem-list li:last-child {
  border-bottom: none;
}
.servico-para-quem-list--light li {
  color: var(--stone);
  border-bottom-color: rgba(0, 0, 0, 0.06);
}
.servico-para-quem-quote {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-bottom: 32px;
}
.servico-para-quem-quote--light {
  color: var(--stone);
  opacity: 0.7;
}
.servico-para-quem-cta:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
.servico-para-quem-note {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 12px;
}
.servico-para-quem-note--light {
  color: var(--stone);
  opacity: 0.6;
}

/* -----------------------------------------------
   SERVICE DETAIL — SEO CONTENT
   ----------------------------------------------- */
.servico-content {
  background: var(--cream);
  padding: 48px 20px;
}
.servico-content-inner {
  max-width: 700px;
  margin: 0 auto;
}
.servico-content h2 {
  font-family: 'Libre Baskerville', serif;
  color: var(--black);
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-wrap: balance;
  text-wrap: balance;
}
.servico-content p {
  font-family: 'Lato', sans-serif;
  color: var(--stone);
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.servico-content ul {
  font-family: 'Lato', sans-serif;
  color: var(--stone);
  line-height: 1.9;
  margin: 0 0 16px;
  padding-left: 20px;
}
.servico-content ul li { margin-bottom: 4px; }

/* -----------------------------------------------
   CROSS-SELL
   ----------------------------------------------- */
.cross-sell {
  padding: clamp(36px, 6vw, 56px) 20px;
  text-align: center;
}
.cross-sell--cream { background: var(--cream); }
.cross-sell--dark  { background: var(--black); }
.cross-sell-inner {
  max-width: 720px;
  margin: 0 auto;
}
.cross-sell-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--stone);
  opacity: 0.6;
  display: block;
  margin-bottom: 24px;
}
.cross-sell--dark .cross-sell-label {
  color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}
.cross-sell-cards {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cross-sell-card {
  background: var(--white);
  border: 1px solid rgba(201, 166, 107, 0.25);
  border-radius: 8px;
  padding: 16px 24px;
  text-decoration: none;
  text-align: center;
  min-width: 160px;
  touch-action: manipulation;
  transition: transform 0.2s ease;
}
.cross-sell--dark .cross-sell-card {
  background: rgba(255, 255, 255, 0.05);
}
.cross-sell-card:hover {
  transform: translateY(-2px);
}
.cross-sell-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 8px;
}
.cross-sell-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.cross-sell-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.95rem;
  color: var(--black);
  display: block;
}
.cross-sell--dark .cross-sell-name { color: #fff; }
.cross-sell-back {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  color: var(--stone);
  display: block;
  margin-top: 24px;
  opacity: 0.7;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.cross-sell--dark .cross-sell-back { color: rgba(255, 255, 255, 0.5); }
.cross-sell-back:hover { opacity: 1; }
.cross-sell-back:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}

/* -----------------------------------------------
   FOOTER
   ----------------------------------------------- */
.servico-footer {
  background: var(--black);
  padding: 32px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.servico-footer-line {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}
.servico-footer-legal {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 8px;
}
.servico-footer a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.servico-footer a:hover { color: var(--gold); }
.servico-footer a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
.servico-footer-legal a {
  color: rgba(255, 255, 255, 0.25);
}

/* -----------------------------------------------
   RESPONSIVE
   ----------------------------------------------- */
@media (max-width: 860px) {
  .servicos-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .drenagem-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .servico-card-cta {
    display: block;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
}
@media (max-width: 680px) {
  .servico-hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .servico-hero-icon { display: none; }
  .servico-hero-cta {
    display: block;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
  .cross-sell-cards {
    flex-direction: column;
    align-items: stretch;
  }
  .cross-sell-cards .cross-sell-card { min-width: 0; }
  .servico-hero-price-row { margin-bottom: 20px; }
}

/* -----------------------------------------------
   HERO ENTRANCE ANIMATION
   ----------------------------------------------- */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.servico-hero-inner > div:first-child {
  animation: heroFadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.servico-intro-inner {
  animation: heroFadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* -----------------------------------------------
   REDUCED MOTION
   ----------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .servico-card,
  .servico-include-card,
  .cross-sell-card {
    transition: none;
  }
  .servico-hero-inner > div:first-child,
  .servico-intro-inner {
    animation: none;
  }
  .cross-sell-back {
    transition: none;
  }
}
