/* =========================================================================
   page-shop.css  —  Camada de estilo premium da LOJA WooCommerce
   Enfileirado automaticamente pelo dispatcher quando slug = "shop"
   (single product, shop, cart, checkout). Autossuficiente: traz :root + reset,
   pois base.css/tokens.css nao sao carregados nas paginas.
   Cobre: single product, formulario de reserva (Bookings), variacoes (cursos),
   meta, galeria, abas, carrinho e checkout. Escopo: body.atl-shop.
   ========================================================================= */

:root {
  --blue: #0066ff;
  --blue-dark: #002b5c;
  --blue-deep: #001932;
  --blue-soft: #eaf6ff;
  --cyan: #16c7ff;
  --green: #20c86b;
  --green-dark: #159a51;
  --white: #ffffff;
  --text: #0b1f33;
  --muted: #5d7085;
  --line: #dcecf8;
  --sand: #f5fbff;
  --shadow: 0 22px 70px rgba(0, 50, 100, .12);
  --shadow-sm: 0 6px 18px rgba(0, 50, 100, .06);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
}

.atl-shop * { box-sizing: border-box; }
.atl-shop { font-family: 'Inter', Arial, sans-serif; color: var(--text); background: #fff; }
.atl-shop img { max-width: 100%; height: auto; }
.atl-shop a { color: var(--blue); text-decoration: none; }

/* =========================================================================
   HEADER fiel da marca (versao SOLIDA).
   As paginas de loja nao tem hero escuro, entao o header e branco desde o topo
   (equivalente ao estado .scrolled das paginas ricas). Markup em woocommerce.php.
   ========================================================================= */
.atl-shop .atl-shop-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, .94);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220, 236, 248, .72);
  box-shadow: 0 6px 24px rgba(0, 50, 100, .05);
}
.atl-shop .atl-shop-header .container {
  width: min(1180px, 92%);
  margin: 0 auto;
}
.atl-shop .atl-shop-header .nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.atl-shop .atl-shop-header .brand img {
  width: 196px;
  height: auto;
  object-fit: contain;
  display: block;
}
.atl-shop .atl-shop-header .menu {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 800;
}
.atl-shop .atl-shop-header .menu a { color: #1f3a52; transition: color .18s; }
.atl-shop .atl-shop-header .menu a:hover { color: var(--blue); }
.atl-shop .atl-shop-header .menu-cta {
  background: var(--green);
  color: #fff !important;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(32, 200, 107, .24);
  transition: transform .18s, box-shadow .18s;
}
.atl-shop .atl-shop-header .menu-cta:hover { color: #fff !important; transform: translateY(-1px); }
/* logado no wp-admin: compensa a barra fixa de 32px para o header nao ficar sob ela */
.atl-shop.admin-bar .atl-shop-header { top: 32px; }
@media (max-width: 782px) {
  .atl-shop.admin-bar .atl-shop-header { top: 46px; }
}

/* ---------- MAIN: limpa o header fixo ---------- */
.atl-shop .atl-shop-main {
  padding-top: 96px;
  min-height: 60vh;
}

/* =========================================================================
   FOOTER fiel da marca (azul profundo). Markup em woocommerce.php.
   ========================================================================= */
.atl-shop .atl-shop-footer {
  background: var(--blue-deep);
  color: #fff;
  padding: 44px 0 22px;
  margin-top: 64px;
}
.atl-shop .atl-shop-footer .container { width: min(1180px, 92%); margin: 0 auto; }
.atl-shop .atl-shop-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 22px;
  align-items: start;
}
.atl-shop .atl-shop-footer .footer-card {
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  border-radius: 24px;
  padding: 22px;
}
.atl-shop .atl-shop-footer .footer-card img { width: 170px; margin-bottom: 18px; }
.atl-shop .atl-shop-footer .footer-card p,
.atl-shop .atl-shop-footer .footer-card a {
  color: #dff6ff;
  font-size: 14px;
  line-height: 1.55;
  display: block;
  margin-bottom: 8px;
}
.atl-shop .atl-shop-footer .footer-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: #fff;
  font-size: 34px;
  line-height: .92;
  margin-bottom: 14px;
}
.atl-shop .atl-shop-footer .footer-social { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.atl-shop .atl-shop-footer .footer-social a {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  margin: 0;
}
.atl-shop .atl-shop-footer .footer-social a.fs-wa { background: #20c86b; border-color: transparent; }
.atl-shop .atl-shop-footer .footer-social a.fs-ig { background: linear-gradient(135deg, #833ab4 0%, #e1306c 50%, #f77737 100%); border-color: transparent; box-shadow: 0 12px 32px rgba(225, 48, 108, .35); }
.atl-shop .atl-shop-footer .bottom {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #bcd6e8;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
.atl-shop .atl-shop-footer .bottom a { color: #bcd6e8; }

/* ---------- LAYOUT do single product ---------- */
.atl-shop.single-product div.product,
.atl-shop .single-product div.product,
.atl-shop .atl-shop-main div.product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: 56px;
  width: min(1180px, 92%);
  margin: 8px auto 24px;
  align-items: start;
}
.atl-shop div.product .woocommerce-product-gallery,
.atl-shop div.product .summary,
.atl-shop div.product .entry-summary {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
}
.atl-shop div.product .woocommerce-product-gallery {
  position: sticky;
  top: 110px;
}
/* abas e relacionados ocupam a largura toda, abaixo do grid */
.atl-shop div.product .woocommerce-tabs,
.atl-shop div.product .related,
.atl-shop div.product .up-sells {
  grid-column: 1 / -1;
}

/* ---------- GALERIA / placeholder ---------- */
.atl-shop .woocommerce-product-gallery__image img,
.atl-shop .woocommerce-product-gallery img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.atl-shop .woocommerce-product-gallery__wrapper { margin: 0; }
/* zoom no hover desativado: esconde a lente ampliada (caso o script venha do cache) */
.atl-shop .woocommerce-product-gallery img.zoomImg { display: none !important; }
.atl-shop .woocommerce-product-gallery__image { cursor: zoom-in; }

/* ---------- TITULO + DESCRICAO + PRECO ---------- */
.atl-shop .product_title.entry-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--blue-dark);
  margin: 0 0 18px;
}
.atl-shop .woocommerce-product-details__short-description {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 26px;
}
.atl-shop .woocommerce-product-details__short-description p { margin: 0 0 12px; }

/* Ancora de preco "A partir de R$ X" (CRO) para produtos Bookings,
   cujo preco real so aparece apos escolher a data. */
.atl-shop .atl-from-price {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  margin: 0 0 20px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.atl-shop .atl-from-price__value {
  font-weight: 800;
  font-size: 32px;
  color: var(--green);
  letter-spacing: -.01em;
}
.atl-shop .atl-from-price__hint {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

.atl-shop .summary > .price,
.atl-shop .summary .price,
.atl-shop .woocommerce-variation-price .price {
  font-family: 'Inter', sans-serif;  /* numerais sempre Inter */
  font-weight: 800;
  font-size: 30px;
  color: var(--blue-dark);
  margin: 0 0 22px;
}
.atl-shop .price del { color: var(--muted); font-weight: 500; opacity: .7; }
.atl-shop .price ins { text-decoration: none; }
.atl-shop .woocommerce-Price-amount { font-family: 'Inter', sans-serif; }

/* ---------- FORMULARIO DE RESERVA (Bookings) ---------- */
.atl-shop form.cart,
.atl-shop .wc-bookings-booking-form {
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  margin: 0 0 8px;
}
.atl-shop .wc-bookings-booking-form fieldset { border: 0; margin: 0; padding: 0; }

/* campos: tipos de pessoa, quantidade, selects */
.atl-shop .wc-bookings-booking-form .form-field,
.atl-shop .wc-bookings-booking-form .persons .person-type,
.atl-shop .wc-bookings-booking-form > div {
  margin: 0 0 16px;
}
.atl-shop .wc-bookings-booking-form label,
.atl-shop .persons label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: .01em;
}
.atl-shop .wc-bookings-booking-form input[type="number"],
.atl-shop .wc-bookings-booking-form input[type="text"],
.atl-shop .wc-bookings-booking-form select,
.atl-shop .persons input[type="number"],
.atl-shop .quantity input.qty {
  width: 100%;
  max-width: 140px;
  height: 48px;
  padding: 0 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: #fff;
  transition: border-color .18s, box-shadow .18s;
}
.atl-shop .wc-bookings-booking-form input:focus,
.atl-shop .wc-bookings-booking-form select:focus,
.atl-shop .quantity input.qty:focus {
  outline: 0;
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(22, 199, 255, .18);
}
.atl-shop .wc-bookings-booking-form small,
.atl-shop .person-type small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}
/* descricao de cada tipo de pessoa (span#..._-after): o Bookings a coloca inline
   ao lado do input. Tornamos um hint de bloco discreto abaixo do campo. */
.atl-shop .wc-bookings-booking-form .form-field span[id$="-after"] {
  display: block;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

/* ---------- CALENDARIO (jQuery UI datepicker do Bookings) ---------- */
.atl-shop .wc-bookings-date-picker .picker,
.atl-shop .ui-datepicker {
  width: 100% !important;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 34px rgba(0, 50, 100, .08);
  font-family: 'Inter', sans-serif;
  margin-top: 8px;
}
.atl-shop .ui-datepicker-header {
  background: var(--blue-dark);
  color: #fff;
  border: 0;
  padding: 14px 10px;
  position: relative;
}
.atl-shop .ui-datepicker-title {
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-align: center;
}
.atl-shop .ui-datepicker-prev,
.atl-shop .ui-datepicker-next {
  position: absolute;
  top: 12px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  cursor: pointer;
  text-indent: 0;
  background: rgba(255, 255, 255, .14);
  transition: background .18s;
}
.atl-shop .ui-datepicker-prev { left: 10px; }
.atl-shop .ui-datepicker-next { right: 10px; }
.atl-shop .ui-datepicker-prev:hover,
.atl-shop .ui-datepicker-next:hover { background: rgba(255, 255, 255, .30); }
.atl-shop .ui-datepicker-prev span,
.atl-shop .ui-datepicker-next span { display: none; }
.atl-shop .ui-datepicker-prev::before { content: "‹"; }
.atl-shop .ui-datepicker-next::before { content: "›"; }
.atl-shop .ui-datepicker-prev::before,
.atl-shop .ui-datepicker-next::before {
  color: #fff; font-size: 20px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
}
.atl-shop table.ui-datepicker-calendar { width: 100%; border-collapse: collapse; margin: 0; }
.atl-shop .ui-datepicker-calendar thead th {
  padding: 12px 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.atl-shop .ui-datepicker-calendar td { padding: 3px; text-align: center; }
.atl-shop .ui-datepicker-calendar td a,
.atl-shop .ui-datepicker-calendar td span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: background .15s, color .15s;
}
/* dia disponivel (bookable). O frontend.css do Bookings pinta tudo de verde
   solido (#1f874b !important); sobrescrevemos para azul-suave discreto, deixando
   o verde reservado SO para o dia selecionado (CRO: o dia escolhido precisa saltar).
   Especificidade reforcada (.wc-bookings-date-picker .ui-datepicker) + !important
   para vencer a regra !important do plugin. */
.atl-shop .wc-bookings-date-picker .ui-datepicker td.bookable a,
.atl-shop .wc-bookings-date-picker .ui-datepicker td.partial_booked a,
.atl-shop .ui-datepicker-calendar td.bookable a,
.atl-shop .ui-datepicker-calendar td a.ui-state-default {
  background-color: var(--blue-soft) !important;
  background-image: none !important;
  border-color: transparent !important;
  color: var(--blue) !important;
  text-shadow: none !important;
  cursor: pointer;
}
.atl-shop .wc-bookings-date-picker .ui-datepicker td.bookable a:hover,
.atl-shop .wc-bookings-date-picker .ui-datepicker td.partial_booked a:hover,
.atl-shop .ui-datepicker-calendar td.bookable a:hover,
.atl-shop .ui-datepicker-calendar td a.ui-state-default:hover {
  background-color: var(--cyan) !important;
  color: #fff !important;
}
/* dia selecionado */
.atl-shop .wc-bookings-date-picker .ui-datepicker td.ui-datepicker-current-day a,
.atl-shop .wc-bookings-date-picker .ui-datepicker td a.ui-state-active,
.atl-shop .ui-datepicker-calendar td.ui-datepicker-current-day a,
.atl-shop .ui-datepicker-calendar td a.ui-state-active {
  background-color: var(--green) !important;
  color: #fff !important;
  box-shadow: 0 6px 16px rgba(32, 200, 107, .35);
}
/* indisponivel / esgotado / passado */
.atl-shop .ui-datepicker-calendar td.ui-state-disabled span,
.atl-shop .ui-datepicker-calendar td.ui-datepicker-unselectable span,
.atl-shop .ui-datepicker-calendar td.fully_booked span {
  color: #b8c6d6;
  background: transparent;
  cursor: not-allowed;
}
/* esgotado (fully_booked): o plugin pinta marrom (#792d2a !important). Limpamos para
   um cinza discreto, riscado. Escopo por #id para vencer a regra !important do plugin. */
.atl-shop #wc-bookings-booking-form .ui-datepicker td.fully_booked span,
.atl-shop #wc-bookings-booking-form .ui-datepicker td.fully_booked a {
  background-color: #eef3f8 !important;
  background-image: none !important;
  border-color: transparent !important;
  color: #b8c6d6 !important;
  text-shadow: none !important;
  text-decoration: line-through;
  cursor: not-allowed;
}
.atl-shop .ui-datepicker-calendar td.fully_booked span { text-decoration: line-through; }

/* Campos manuais dd/mm/aaaa: redundantes com o calendario sempre-visivel
   (data-display="always_visible"). O form so renderiza com JS (vem display:none),
   entao nao ha cenario no-JS a preservar. Ocultamos para uma UI limpa. */
.atl-shop .wc-bookings-date-picker-date-fields { display: none; }

/* ---------- RESUMO DE CUSTO ---------- */
.atl-shop .wc-bookings-booking-cost {
  background: #fff;
  border: 1.5px dashed var(--cyan);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin: 18px 0 0;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--blue-dark);
}

/* ---------- BOTAO comprar / reservar ----------
   Especificidade reforcada com .atl-shop.woocommerce + tag button para vencer
   o roxo padrao do WooCommerce (.woocommerce button.button.alt = #7f54b3). */
.atl-shop.woocommerce .single_add_to_cart_button,
.atl-shop.woocommerce button.button,
.atl-shop.woocommerce a.button.alt,
.atl-shop.woocommerce button.button.alt,
.atl-shop.woocommerce input.button.alt,
.atl-shop.woocommerce .checkout-button,
.atl-shop.woocommerce .wc-proceed-to-checkout a.button,
.atl-shop .single_add_to_cart_button,
.atl-shop .button.alt,
.atl-shop button.button,
.atl-shop .checkout-button,
.atl-shop .wc-proceed-to-checkout .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  margin-top: 18px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: .01em;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(32, 200, 107, .30);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.atl-shop.woocommerce .single_add_to_cart_button:hover,
.atl-shop.woocommerce button.button:hover,
.atl-shop.woocommerce button.button.alt:hover,
.atl-shop.woocommerce a.button.alt:hover,
.atl-shop.woocommerce .checkout-button:hover,
.atl-shop .single_add_to_cart_button:hover,
.atl-shop .button.alt:hover,
.atl-shop button.button:hover,
.atl-shop .checkout-button:hover {
  transform: translateY(-2px);
  background: #1db85b;
  box-shadow: 0 22px 50px rgba(32, 200, 107, .38);
}
.atl-shop.woocommerce .single_add_to_cart_button.disabled,
.atl-shop.woocommerce button.button.alt.disabled,
.atl-shop.woocommerce button.button.disabled,
.atl-shop.woocommerce .single_add_to_cart_button:disabled,
.atl-shop .single_add_to_cart_button.disabled,
.atl-shop .single_add_to_cart_button:disabled {
  background: #c3d2e0;
  color: #6c8198;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

/* =========================================================================
   ELEMENTOS DE CONVERSAO (produto Batismo) — fieis ao prototipo aprovado.
   Injetados por hooks em functions.php (sec. 6). Escopo: body.atl-shop.
   ========================================================================= */

/* faixa de urgencia acima do form de reserva */
.atl-shop .atl-urgency {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue-dark);
  background: #fff4ed;
  border: 1px solid #ffd9c4;
  border-radius: var(--radius-sm);
  padding: 9px 13px;
  line-height: 1.4;
}
.atl-shop .atl-urgency b { font-weight: 700; color: #d9531e; }
.atl-shop .atl-urgency__pulse {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #ff7a45;
  flex: none;
  box-shadow: 0 0 0 0 rgba(255, 122, 69, .6);
  animation: atlPulse 1.9s infinite;
}
@keyframes atlPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 122, 69, .55); }
  70%  { box-shadow: 0 0 0 9px rgba(255, 122, 69, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 122, 69, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .atl-shop .atl-urgency__pulse { animation: none; }
}

/* "Tudo incluso" */
.atl-shop .atl-incl { margin: 18px 0 0; }
.atl-shop .atl-incl h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin: 0 0 10px;
}
.atl-shop .atl-incl ul { list-style: none; margin: 0; padding: 0; }
.atl-shop .atl-incl li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text);
  margin: 0 0 8px;
  line-height: 1.35;
}
.atl-shop .atl-incl li svg { width: 17px; height: 17px; flex: none; color: var(--green); margin-top: 1px; }

/* cartoes de confianca (review + garantia) */
.atl-shop .atl-tcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 15px 16px;
  margin-top: 14px;
}
.atl-shop .atl-tcard--review .atl-stars { color: #ffb400; font-size: 15px; letter-spacing: 1px; }
.atl-shop .atl-tcard--review p { font-size: 13px; color: var(--text); font-style: italic; margin: 7px 0 6px; line-height: 1.45; }
.atl-shop .atl-tcard--review .atl-who { font-size: 12px; font-weight: 600; color: var(--muted); }
.atl-shop .atl-tcard--review .atl-who span { color: var(--green-dark); font-weight: 700; }
.atl-shop .atl-tcard--guar {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  background: linear-gradient(180deg, #f1fbf5, #fff);
  border-color: #cdeedd;
}
.atl-shop .atl-tcard--guar > svg { width: 26px; height: 26px; flex: none; color: var(--green-dark); }
.atl-shop .atl-tcard--guar h5 { font-size: 14px; font-weight: 700; color: var(--blue-deep); margin: 0 0 3px; }
.atl-shop .atl-tcard--guar p { font-size: 13px; color: var(--muted); line-height: 1.45; margin: 0; }
.atl-shop .atl-tcard--guar a { color: var(--green-dark); font-weight: 600; text-decoration: underline; }

/* selos */
.atl-shop .atl-seals { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; justify-content: center; }
.atl-shop .atl-seal {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--blue-dark);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 11px;
}
.atl-shop .atl-seal svg { width: 13px; height: 13px; color: var(--green); }

/* ---------- VARIACOES (cursos Turma/VIP) ---------- */
.atl-shop .variations { width: 100%; border: 0; margin: 0 0 12px; }
.atl-shop .variations th,
.atl-shop .variations td { padding: 6px 0; text-align: left; vertical-align: middle; }
.atl-shop .variations th label { font-weight: 700; font-size: 14px; color: var(--text); }
.atl-shop .variations select {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  background: #fff;
}
.atl-shop .reset_variations { font-size: 13px; color: var(--muted); }
.atl-shop .single_variation .price { margin: 8px 0 0; }

/* ---------- META do produto ---------- */
.atl-shop .product_meta {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}
.atl-shop .product_meta a { color: var(--blue); font-weight: 600; }
.atl-shop .product_meta > span { display: block; margin-bottom: 4px; }

/* ---------- ABAS ---------- */
.atl-shop .woocommerce-tabs { margin-top: 56px; }
.atl-shop .woocommerce-tabs ul.tabs {
  display: flex; gap: 6px; padding: 0; margin: 0 0 24px;
  border-bottom: 2px solid var(--line); list-style: none;
}
.atl-shop .woocommerce-tabs ul.tabs li {
  margin: 0; padding: 0; background: none; border: 0;
}
.atl-shop .woocommerce-tabs ul.tabs li a {
  display: block; padding: 12px 18px;
  font-weight: 700; font-size: 14px; color: var(--muted);
  border-bottom: 2px solid transparent; margin-bottom: -2px;
}
.atl-shop .woocommerce-tabs ul.tabs li.active a { color: var(--blue-dark); border-bottom-color: var(--green); }
.atl-shop .woocommerce-tabs .panel h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600; font-size: 30px; color: var(--blue-dark); margin: 0 0 14px;
}
.atl-shop .woocommerce-tabs .panel p { color: var(--text); line-height: 1.65; margin: 0 0 12px; }

/* ---------- AVISOS / mensagens ---------- */
.atl-shop .woocommerce-message,
.atl-shop .woocommerce-info,
.atl-shop .woocommerce-error {
  border-radius: var(--radius);
  border: 0;
  border-left: 4px solid var(--cyan);
  background: var(--blue-soft);
  padding: 16px 18px;
  font-size: 15px;
  color: var(--blue-dark);
}
.atl-shop .woocommerce-error { border-left-color: #ff5a5a; background: #fff1f1; color: #a4242c; }
.atl-shop .woocommerce-message .button,
.atl-shop .woocommerce-info .button { width: auto; min-height: 40px; margin: 0; }

/* ---------- CARRINHO + CHECKOUT (essencial) ---------- */
.atl-shop .woocommerce { width: min(1180px, 92%); margin: 48px auto 72px; }
.atl-shop .single-product .woocommerce { width: auto; margin: 0; }
.atl-shop table.shop_table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  border-collapse: collapse;
}
.atl-shop table.shop_table th { background: var(--sand); font-weight: 700; color: var(--text); padding: 14px 16px; }
.atl-shop table.shop_table td { padding: 14px 16px; border-top: 1px solid var(--line); }
.atl-shop .cart_totals h2,
.atl-shop #order_review_heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600; font-size: 28px; color: var(--blue-dark); margin: 0 0 14px;
}
.atl-shop .checkout .form-row input.input-text,
.atl-shop .checkout .form-row textarea,
.atl-shop .checkout .form-row select,
.atl-shop #coupon_code {
  height: 48px; padding: 0 14px;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif; font-size: 15px;
}
.atl-shop .checkout .form-row textarea { height: auto; padding: 12px 14px; }

/* ---------- MOBILE-FIRST ---------- */
@media (max-width: 880px) {
  .atl-shop.single-product div.product,
  .atl-shop .single-product div.product,
  .atl-shop .atl-shop-main div.product {
    grid-template-columns: 1fr;
    gap: 28px;
    margin: 8px auto 32px;
  }
  /* header compacto: logo + CTA WhatsApp; oculta os links de texto */
  .atl-shop .atl-shop-header .brand img { width: 150px; }
  .atl-shop .atl-shop-header .menu { gap: 0; }
  .atl-shop .atl-shop-header .menu a:not(.menu-cta) { display: none; }
  .atl-shop .atl-shop-header .menu-cta { padding: 10px 14px; font-size: 13px; }
  .atl-shop .atl-shop-main { padding-top: 88px; }
  .atl-shop div.product .woocommerce-product-gallery { position: static; top: auto; }
  .atl-shop .product_title.entry-title { font-size: clamp(30px, 8vw, 40px); }
  .atl-shop form.cart,
  .atl-shop .wc-bookings-booking-form { padding: 20px; }
  .atl-shop .ui-datepicker-calendar td a,
  .atl-shop .ui-datepicker-calendar td span { width: 38px; height: 38px; }
  /* footer empilha */
  .atl-shop .atl-shop-footer .footer-grid { grid-template-columns: 1fr; }
  .atl-shop .atl-shop-footer .bottom { flex-direction: column; gap: 8px; }
}
