/*
Theme Name: Arcano Astral
Theme URI: https://example.com/arcano-astral
Author: Arcano Team
Author URI: https://example.com
Description: Tema de ecommerce tarot con estetica astral moderna.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: arcano-astral
*/

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Sora:wght@500;600;700&display=swap");

:root {
  --background: #fefcf7;
  --foreground: #111827;
  --muted: #64748b;
  --card: #ffffff;
  --border: #e2e8f0; 
  --primary: #0f172a;
  --ring: #cbd5e1;
  --shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
}

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

html,
body {
  margin: 0;
  padding: 0;
  background-color: #fefcf7 !important;
  background-image: none !important;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--foreground);
  background: #fefcf7 !important;
  background-image: none !important;
  line-height: 1.6;
}

body::before,
body::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

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

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

.arcano-container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: var(--background);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
}

.brand-mark {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 32px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.site-nav a:hover {
  color: var(--foreground);
}

.shop-pill {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 14px;
}

.sb-section {
  padding: 34px 0;
}

.sb-hero {
  padding: 56px 0 28px;
}

.sb-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 22px;
  align-items: center;
}

.sb-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 10px;
}

.sb-hero h1,
.sb-heading h2,
.sb-cta h2 {
  font-family: "Sora", sans-serif;
  line-height: 1.08;
}

.sb-hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  margin: 12px 0;
}

.sb-hero p {
  color: var(--muted);
  margin: 0;
  max-width: 60ch;
}

.sb-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.sb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 11px 15px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
}

.sb-btn-primary {
  background: var(--primary);
  color: #fff;
}

.sb-btn-ghost {
  border-color: var(--border);
  background: var(--card);
}

.sb-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.sb-hero-media {
  overflow: hidden;
  min-height: 420px;
}

.sb-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sb-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.sb-stats .sb-card {
  padding: 18px;
}

.sb-stats strong {
  display: block;
  font-size: 1.25rem;
  font-family: "Sora", sans-serif;
}

.sb-stats span {
  color: var(--muted);
  font-size: 0.9rem;
}

.sb-heading {
  margin-bottom: 14px;
}

.sb-heading h2 {
  margin: 10px 0 0;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.sb-grid {
  display: grid;
  gap: 14px;
}

.sb-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.sb-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.sb-feature {
  padding: 18px;
}

.sb-feature h3,
.sb-product h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
}

.sb-feature p {
  margin: 8px 0 12px;
  color: var(--muted);
}

.sb-feature a {
  font-weight: 600;
  font-size: 0.9rem;
}

.sb-product {
  overflow: hidden;
}

.sb-product img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.sb-product div {
  padding: 13px;
}

.sb-product p {
  margin: 5px 0 0;
  color: var(--muted);
}

.sb-quote {
  padding: 20px;
}

.sb-quote p {
  margin: 0 0 10px;
}

.sb-quote span {
  font-size: 0.9rem;
  color: var(--muted);
}

.sb-cta {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sb-cta h2 {
  margin: 10px 0 8px;
  font-size: clamp(1.4rem, 3.4vw, 2rem);
}

.sb-cta p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  margin-top: 26px;
  border-top: 1px solid var(--border);
  background: var(--background);
  color: var(--muted);
  padding: 18px 0 26px;
}

@media (max-width: 1024px) {
  .sb-hero-grid,
  .sb-grid-4,
  .sb-grid-3,
  .sb-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .sb-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .site-nav {
    display: none;
  }

  .shop-pill {
    display: none;
  }

  .sb-hero {
    padding-top: 40px;
  }

  .sb-hero-grid,
  .sb-grid-4,
  .sb-grid-3,
  .sb-stats {
    grid-template-columns: 1fr;
  }

  .sb-hero-media {
    min-height: 300px;
  }
}

.am-product-page {
  background:
    radial-gradient(circle at top left, rgba(201, 169, 110, 0.18), transparent 28%),
    linear-gradient(180deg, #fbf6ee 0%, #fefcf7 42%, #f8f3e9 100%);
  min-height: 100vh;
}

.am-product-hero {
  padding: 40px 0 72px;
}

.am-product-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8b7a63;
}

.am-product-breadcrumbs a:hover {
  color: #241b14;
}

.am-product-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 28px;
  align-items: start;
}

.am-product-gallery-card,
.am-product-summary-card,
.am-product-panel,
.am-related-card {
  border: 1px solid rgba(117, 94, 62, 0.14);
  border-radius: 28px;
  background: rgba(255, 252, 246, 0.9);
  box-shadow: 0 24px 70px rgba(72, 49, 18, 0.08);
}

.am-product-gallery-card {
  padding: 18px;
}

.am-product-gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #f2eadf;
  min-height: 620px;
}

.am-product-gallery-main::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(24, 18, 13, 0.1));
  pointer-events: none;
}

.am-product-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.am-product-badge,
.am-product-chip,
.am-product-stock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.am-product-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: rgba(255, 251, 243, 0.92);
  color: #18120d;
  padding: 10px 14px;
  font-size: 0.65rem;
}

.am-product-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.am-product-thumb {
  overflow: hidden;
  border-radius: 16px;
  background: #f6efe5;
}

.am-product-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.am-product-summary-card {
  position: sticky;
  top: 92px;
}

.am-product-summary-inner {
  padding: 34px;
}

.am-product-chip {
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(163, 130, 82, 0.25);
  background: rgba(201, 169, 110, 0.12);
  color: #8f6d3f;
  font-size: 0.64rem;
}

.am-product-title,
.am-product-panel-head h2,
.am-related-head h2,
.am-related-copy h3 {
  font-family: "Sora", sans-serif;
  color: #18120d;
}

.am-product-title {
  margin: 16px 0 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 0.98;
}

.am-product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(117, 94, 62, 0.12);
}

.am-product-price {
  font-size: 1.9rem;
  font-weight: 700;
  color: #18120d;
}

.am-product-price ins {
  text-decoration: none;
}

.am-product-price del {
  opacity: 0.45;
  margin-right: 10px;
}

.am-product-stock {
  padding: 9px 12px;
  font-size: 0.62rem;
}

.am-product-stock.is-in-stock {
  background: rgba(78, 132, 95, 0.12);
  color: #4f7e5a;
}

.am-product-stock.is-out-stock {
  background: rgba(170, 76, 76, 0.12);
  color: #a74848;
}

.am-product-lead,
.am-product-content,
.am-product-meta-list {
  color: #5f5449;
}

.am-product-lead {
  margin-top: 22px;
  font-size: 1rem;
  line-height: 1.9;
}

.am-product-purchase {
  margin-top: 26px;
}

.am-product-purchase form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
}

.am-product-purchase .quantity {
  display: flex;
  align-items: center;
}

.am-product-purchase .quantity .qty {
  min-height: 54px;
  width: 88px;
  border: 1px solid rgba(117, 94, 62, 0.18);
  border-radius: 999px;
  background: #fffaf3;
  text-align: center;
  font-size: 1rem;
}

.am-product-purchase button.single_add_to_cart_button,
.am-product-purchase .single_add_to_cart_button {
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #18120d 0%, #34261b 100%);
  color: #f8f2e8;
  padding: 0 26px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 18px 35px rgba(24, 18, 13, 0.18);
}

.am-product-purchase button.single_add_to_cart_button:hover,
.am-product-purchase .single_add_to_cart_button:hover {
  opacity: 0.94;
}

.am-product-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.am-product-meta-card {
  padding: 18px;
  border-radius: 20px;
  background: rgba(248, 239, 225, 0.9);
}

.am-product-meta-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.92rem;
  color: #18120d;
}

.am-product-meta-card span,
.am-product-notes li,
.am-related-price,
.am-related-copy p {
  color: #6c6053;
}

.am-product-meta-list {
  margin-top: 22px;
  font-size: 0.94rem;
}

.am-product-meta-list p {
  margin: 8px 0 0;
}

.am-product-details-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.72fr);
  gap: 24px;
  margin-top: 28px;
}

.am-product-panel {
  padding: 28px;
}

.am-product-panel-soft {
  background: rgba(248, 239, 225, 0.75);
}

.am-product-panel-head h2 {
  margin: 14px 0 0;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.am-product-content {
  margin-top: 18px;
  line-height: 1.95;
}

.am-product-content > :first-child {
  margin-top: 0;
}

.am-product-notes {
  margin: 20px 0 0;
  padding-left: 18px;
}

.am-product-notes li + li {
  margin-top: 10px;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  margin: 0 0 20px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(117, 94, 62, 0.15);
  background: rgba(255, 251, 243, 0.94);
}

.am-related-products {
  margin-top: 32px;
}

.am-related-head {
  margin-bottom: 18px;
}

.am-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.am-related-card {
  overflow: hidden;
}

.am-related-media {
  display: block;
  background: #f3eadf;
}

.am-related-media img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.am-related-copy {
  padding: 18px;
}

.am-related-copy h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.3;
}

.am-related-price {
  margin-top: 10px;
  font-weight: 700;
}

@media (max-width: 1080px) {
  .am-product-shell,
  .am-product-details-grid,
  .am-related-grid,
  .am-product-meta-grid {
    grid-template-columns: 1fr;
  }

  .am-product-summary-card {
    position: static;
  }

  .am-product-gallery-main {
    min-height: 460px;
  }
}

@media (max-width: 760px) {
  .am-product-hero {
    padding: 26px 0 56px;
  }

  .am-product-summary-inner,
  .am-product-panel,
  .am-related-copy {
    padding: 22px;
  }

  .am-product-gallery-card {
    padding: 12px;
  }

  .am-product-gallery-main {
    min-height: 340px;
  }

  .am-product-title {
    font-size: 2rem;
  }

  .am-product-price-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .am-product-purchase form.cart {
    flex-direction: column;
    align-items: stretch;
  }

  .am-product-purchase .quantity .qty,
  .am-product-purchase button.single_add_to_cart_button,
  .am-product-purchase .single_add_to_cart_button {
    width: 100%;
  }
}

.am-checkout-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(201, 169, 110, 0.16), transparent 30%),
    linear-gradient(180deg, #fbf6ee 0%, #fefcf7 28%, #f8f3ea 100%);
}

.am-checkout-hero {
  padding: 108px 0 24px;
}

.am-checkout-intro {
  max-width: 760px;
}

.am-checkout-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(163, 130, 82, 0.25);
  background: rgba(201, 169, 110, 0.12);
  color: #8f6d3f;
  padding: 8px 12px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.am-checkout-intro h1 {
  margin: 18px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.98;
  color: #18120d;
}

.am-checkout-intro p {
  margin: 14px 0 0;
  max-width: 62ch;
  color: #6d6052;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1.9;
}

.am-checkout-shell {
  padding: 0 0 90px;
}

.am-checkout-layout .woocommerce {
  display: block;
  font-family: "Sora", sans-serif;
}

.am-checkout-gate {
  max-width: 680px;
  margin: 0 auto;
  padding: 42px 36px;
  border: 1px solid rgba(117, 94, 62, 0.14);
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(201, 169, 110, 0.14), transparent 32%),
    rgba(255, 252, 246, 0.94);
  box-shadow: 0 24px 70px rgba(72, 49, 18, 0.08);
  text-align: center;
}

.am-checkout-gate__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(201, 169, 110, 0.12);
  color: #8f6d3f;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.am-checkout-gate p {
  margin: 18px auto 0;
  max-width: 50ch;
  color: #6d6052;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
  line-height: 1.9;
}

.am-checkout-gate__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 54px;
  margin-top: 28px;
  padding: 0 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #18120d 0%, #34261b 100%);
  color: #f8f2e8;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 18px 35px rgba(24, 18, 13, 0.18);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.am-checkout-gate__button:hover {
  color: #f8f2e8;
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.am-checkout-layout .woocommerce-notices-wrapper,
.am-checkout-layout .woocommerce-NoticeGroup {
  margin-bottom: 18px;
}

.am-checkout-layout .woocommerce form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.78fr);
  gap: 26px;
  align-items: start;
}

.am-checkout-layout #customer_details,
.am-checkout-layout #order_review_heading,
.am-checkout-layout #order_review {
  width: auto;
  float: none;
}

.am-checkout-layout #customer_details {
  display: grid;
  gap: 24px;
}

.am-checkout-layout #customer_details .col-1,
.am-checkout-layout #customer_details .col-2,
.am-checkout-layout #order_review {
  float: none;
  width: auto;
  margin: 0;
  padding: 28px;
  border: 1px solid rgba(117, 94, 62, 0.14);
  border-radius: 30px;
  background: rgba(255, 252, 246, 0.92);
  box-shadow: 0 24px 70px rgba(72, 49, 18, 0.08);
}

.am-checkout-layout #customer_details h3,
.am-checkout-layout #order_review_heading {
  margin: 0 0 18px;
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  color: #18120d;
}

.am-checkout-layout #order_review_heading {
  padding: 0 0 12px;
}

.am-checkout-layout .form-row {
  margin: 0 0 16px;
}

.am-checkout-layout .form-row label {
  display: block;
  margin-bottom: 8px;
  color: #6f6458;
  font-family: "Sora", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
}

.am-checkout-layout .input-text,
.am-checkout-layout select,
.am-checkout-layout textarea {
  min-height: 54px;
  border: 1px solid #dfd1bc;
  border-radius: 18px;
  background: #fffdf9;
  color: #18120d;
  font-family: "Sora", sans-serif;
  padding: 0 16px;
  box-shadow: none;
}

.am-checkout-layout textarea {
  min-height: 120px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.am-checkout-layout .input-text:focus,
.am-checkout-layout select:focus,
.am-checkout-layout textarea:focus {
  border-color: #b99862;
  outline: none;
}

.am-checkout-layout .select2-container--default .select2-selection--single {
  min-height: 54px;
  border: 1px solid #dfd1bc;
  border-radius: 18px;
  background: #fffdf9;
}

.am-checkout-layout .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 54px;
  color: #18120d;
  padding-left: 16px;
}

.am-checkout-layout .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 54px;
  right: 10px;
}

.am-checkout-layout #order_review {
  position: sticky;
  top: 88px;
}

.am-checkout-layout table.shop_table {
  margin: 0;
  border: 0;
  border-collapse: separate;
  border-spacing: 0 12px;
}

.am-checkout-layout table.shop_table thead th,
.am-checkout-layout table.shop_table tbody td,
.am-checkout-layout table.shop_table tfoot th,
.am-checkout-layout table.shop_table tfoot td {
  border: 0;
}

.am-checkout-layout table.shop_table thead th {
  padding: 0 0 6px;
  color: #8f7a5a;
  font-family: "Sora", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.am-checkout-layout table.shop_table tbody td,
.am-checkout-layout table.shop_table tfoot th,
.am-checkout-layout table.shop_table tfoot td {
  padding: 0;
  color: #18120d;
  font-family: "Sora", sans-serif;
}

.am-checkout-layout .shop_table .cart_item td {
  padding-top: 8px;
}

.am-checkout-layout .shop_table .cart_item .product-name,
.am-checkout-layout .shop_table .cart_item .product-total,
.am-checkout-layout .shop_table tfoot tr {
  background: #fffdf9;
}

.am-checkout-layout .shop_table .cart_item .product-name {
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  padding: 14px 16px;
}

.am-checkout-layout .shop_table .cart_item .product-total {
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  padding: 14px 16px;
  text-align: right;
}

.am-checkout-layout .shop_table tfoot tr th,
.am-checkout-layout .shop_table tfoot tr td {
  padding-top: 12px;
}

.am-checkout-layout .woocommerce-checkout-payment {
  margin-top: 18px;
  border: 1px solid #eadfce !important;
  border-radius: 24px !important;
  background: #fbf6ee !important;
}

.am-checkout-layout .woocommerce-checkout-payment .wc_payment_methods {
  border-bottom: 1px solid #eadfce !important;
  padding: 10px 18px 0 !important;
}

.am-checkout-layout .woocommerce-checkout-payment .payment_box {
  background: #fffdf9 !important;
  color: #6b6053 !important;
  border-radius: 16px !important;
}

.am-checkout-layout .woocommerce-checkout-payment .payment_box::before {
  border-bottom-color: #fffdf9 !important;
}

.am-checkout-layout #payment .place-order {
  padding: 18px !important;
}

.am-checkout-layout #place_order {
  width: 100%;
  min-height: 56px;
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #18120d 0%, #34261b 100%) !important;
  color: #f8f2e8 !important;
  box-shadow: 0 18px 35px rgba(24, 18, 13, 0.18);
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.am-checkout-layout #place_order:hover {
  opacity: 0.95;
}

.am-checkout-layout .woocommerce-privacy-policy-text,
.am-checkout-layout .woocommerce-form__label-for-checkbox,
.am-checkout-layout .payment_method_paypal,
.am-checkout-layout .payment_method_stripe {
  color: #6d6052;
  font-family: "Sora", sans-serif;
}

@media (max-width: 1024px) {
  .am-checkout-layout .woocommerce form.checkout {
    grid-template-columns: 1fr;
  }

  .am-checkout-layout #order_review {
    position: static;
  }
}

@media (max-width: 760px) {
  .am-checkout-hero {
    padding-top: 94px;
  }

  .am-checkout-layout #customer_details .col-1,
  .am-checkout-layout #customer_details .col-2,
  .am-checkout-layout #order_review {
    padding: 22px;
    border-radius: 24px;
  }
}

.am-account-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(201, 169, 110, 0.16), transparent 30%),
    linear-gradient(180deg, #fbf6ee 0%, #fefcf7 28%, #f8f3ea 100%);
}

.am-account-hero {
  padding: 108px 0 24px;
}

.am-account-intro {
  max-width: 760px;
}

.am-account-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(163, 130, 82, 0.25);
  background: rgba(201, 169, 110, 0.12);
  color: #8f6d3f;
  padding: 8px 12px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.am-account-intro h1 {
  margin: 18px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.98;
  color: #18120d;
}

.am-account-intro p {
  margin: 14px 0 0;
  max-width: 62ch;
  color: #6d6052;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1.9;
}

.am-account-shell {
  padding: 0 0 90px;
}

.am-account-layout .woocommerce {
  display: block;
}

.am-account-layout .woocommerce-notices-wrapper,
.am-account-layout .woocommerce-NoticeGroup {
  margin-bottom: 18px;
}

.am-account-layout .woocommerce-notices-wrapper .woocommerce-message,
.am-account-layout .woocommerce-notices-wrapper .woocommerce-info,
.am-account-layout .woocommerce-notices-wrapper .woocommerce-error,
.am-account-layout .woocommerce-NoticeGroup .woocommerce-message,
.am-account-layout .woocommerce-NoticeGroup .woocommerce-info,
.am-account-layout .woocommerce-NoticeGroup .woocommerce-error {
  border-radius: 20px;
  border: 1px solid rgba(201, 169, 110, 0.22);
  background: rgba(255, 252, 246, 0.92);
  box-shadow: 0 18px 45px rgba(72, 49, 18, 0.06);
}

.am-account-layout .woocommerce form.login,
.am-account-layout .woocommerce form.register,
.am-account-layout .woocommerce-account .addresses .title,
.am-account-layout .woocommerce-account .woocommerce-MyAccount-content,
.am-account-layout .woocommerce-account .woocommerce-MyAccount-navigation {
  border: 1px solid rgba(117, 94, 62, 0.14);
  border-radius: 30px;
  background: rgba(255, 252, 246, 0.92);
  box-shadow: 0 24px 70px rgba(72, 49, 18, 0.08);
}

.am-account-layout .woocommerce form.login,
.am-account-layout .woocommerce form.register {
  margin: 0;
  padding: 28px;
}

.am-account-layout .woocommerce .u-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  max-width: 720px;
}

.am-account-layout .woocommerce .u-column1,
.am-account-layout .woocommerce .u-column2 {
  width: auto;
  float: none;
  margin: 0;
}

.am-account-layout .woocommerce .u-column2 {
  order: 1;
}

.am-account-layout .woocommerce .u-column1 {
  order: 2;
}

.am-account-layout .woocommerce .u-column1 {
  display: none;
}

.am-account-layout.am-account-show-login .woocommerce .u-column1 {
  display: block;
}

.am-account-layout.am-account-show-login .woocommerce .u-column2 {
  display: none;
}

.am-account-layout .woocommerce h2,
.am-account-layout .woocommerce-account .woocommerce-MyAccount-content h2,
.am-account-layout .woocommerce-account .woocommerce-MyAccount-content h3,
.am-account-layout .woocommerce-account .woocommerce-Address-title h3 {
  margin: 0 0 18px;
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  color: #18120d;
}

.am-account-layout .woocommerce .u-column2 h2::after {
  content: "Crea tu cuenta";
}

.am-account-layout .woocommerce .u-column1 h2::after {
  content: "Ya tienes cuenta";
}

.am-account-layout .woocommerce .u-column1 h2,
.am-account-layout .woocommerce .u-column2 h2 {
  font-size: 0;
  margin-bottom: 14px;
}

.am-account-layout .woocommerce .u-column1 h2::after,
.am-account-layout .woocommerce .u-column2 h2::after {
  font-size: 1.35rem;
}

.am-account-form-copy {
  margin: 0 0 18px;
  color: #6d6052;
  font-family: "Sora", sans-serif;
  line-height: 1.8;
}

.am-account-form-copy--login {
  margin-bottom: 14px;
}

.am-account-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid #d8cab3;
  background: transparent;
  color: #18120d;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0 20px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.am-account-toggle:hover {
  border-color: #b99862;
  background: #f4ede2;
}

.am-account-layout .woocommerce form .form-row {
  margin: 0 0 16px;
}

.am-account-layout .woocommerce form .form-row label {
  display: block;
  margin-bottom: 8px;
  color: #6f6458;
  font-size: 0.85rem;
  font-weight: 600;
}

.am-account-layout .woocommerce form .input-text,
.am-account-layout .woocommerce form select,
.am-account-layout .woocommerce form textarea {
  min-height: 54px;
  border: 1px solid #dfd1bc;
  border-radius: 18px;
  background: #fffdf9;
  color: #18120d;
  padding: 0 16px;
  box-shadow: none;
}

.am-account-layout .woocommerce form textarea {
  min-height: 120px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.am-account-layout .woocommerce form .input-text:focus,
.am-account-layout .woocommerce form select:focus,
.am-account-layout .woocommerce form textarea:focus {
  border-color: #b99862;
  outline: none;
}

.am-account-layout .woocommerce form button.button,
.am-account-layout .woocommerce a.button,
.am-account-layout .woocommerce .button {
  min-height: 54px;
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #18120d 0%, #34261b 100%) !important;
  color: #f8f2e8 !important;
  box-shadow: 0 18px 35px rgba(24, 18, 13, 0.18);
  font-size: 0.74rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0 24px !important;
}

.am-account-layout .woocommerce form .show-password-input,
.am-account-layout .woocommerce form .show-password-input::after {
  top: 16px;
}

.am-account-layout .woocommerce .woocommerce-form-login__rememberme,
.am-account-layout .woocommerce .lost_password,
.am-account-layout .woocommerce form .woocommerce-form__label-for-checkbox,
.am-account-layout .woocommerce-privacy-policy-text {
  color: #6d6052;
}

.am-account-layout .woocommerce-account {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 26px;
}

.am-client-account__panel .woocommerce-MyAccount-content,
.am-client-account__panel .woocommerce {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.am-client-account__panel p,
.am-client-account__panel li,
.am-client-account__panel label,
.am-client-account__panel .woocommerce-info,
.am-client-account__panel .woocommerce-message,
.am-client-account__panel .woocommerce-error,
.am-client-account__panel .shop_table th,
.am-client-account__panel .shop_table td {
  font-family: "Sora", sans-serif;
}

.am-client-account__panel {
  padding: 28px;
}

.am-client-account__panel .woocommerce-MyAccount-content > :first-child {
  margin-top: 0;
}

.am-client-account__panel .woocommerce-MyAccount-content > :last-child {
  margin-bottom: 0;
}

.am-client-account__panel .woocommerce-order,
.am-client-account__panel .woocommerce-order-details,
.am-client-account__panel .woocommerce-customer-details {
  display: grid;
  gap: 18px;
}

.am-client-account__panel .woocommerce-order-details {
  margin-top: 12px;
}

.am-client-account__panel .woocommerce-order-details__title,
.am-client-account__panel .woocommerce-column__title,
.am-client-account__panel .woocommerce-order-details h2,
.am-client-account__panel .woocommerce-order-details h3,
.am-client-account__panel .woocommerce-customer-details h2,
.am-client-account__panel .woocommerce-customer-details h3 {
  margin: 0;
  color: #18120d;
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  line-height: 1.2;
}

.am-client-account__panel .woocommerce-order > p,
.am-client-account__panel .woocommerce-order-details > p,
.am-client-account__panel .woocommerce-customer-details address,
.am-client-account__panel .woocommerce-column address {
  margin: 0;
  color: #6d6052;
  font-family: "Sora", sans-serif;
  line-height: 1.85;
  font-style: normal;
}

.am-client-account__panel .woocommerce-order-overview {
  list-style: none;
  margin: 0;
  padding: 18px 20px;
  border: 1px solid #eadfce;
  border-radius: 24px;
  background: linear-gradient(180deg, #fffdf9 0%, #f7efe3 100%);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}

.am-client-account__panel .woocommerce-order-overview li {
  margin: 0;
  padding: 0;
  color: #8f7a5a;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.6;
  text-transform: uppercase;
}

.am-client-account__panel .woocommerce-order-overview li strong,
.am-client-account__panel .woocommerce-order-overview li .amount {
  display: block;
  margin-top: 6px;
  color: #18120d;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
}

.am-client-account__panel .woocommerce-table,
.am-client-account__panel table.shop_table,
.am-client-account__panel .shop_table_responsive {
  width: 100%;
  margin: 0;
  border: 1px solid #eadfce;
  border-radius: 24px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  background: #fffdf9;
}

.am-client-account__panel .woocommerce-table th,
.am-client-account__panel .woocommerce-table td,
.am-client-account__panel table.shop_table th,
.am-client-account__panel table.shop_table td {
  padding: 16px 18px;
  border: 0;
  border-bottom: 1px solid #f0e7da;
  color: #3e3328;
  vertical-align: top;
}

.am-client-account__panel .woocommerce-table thead th,
.am-client-account__panel table.shop_table thead th {
  color: #8f7a5a;
  background: #fbf5eb;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.am-client-account__panel .woocommerce-table tbody tr:last-child td,
.am-client-account__panel .woocommerce-table tfoot tr:last-child th,
.am-client-account__panel .woocommerce-table tfoot tr:last-child td,
.am-client-account__panel table.shop_table tbody tr:last-child td,
.am-client-account__panel table.shop_table tfoot tr:last-child th,
.am-client-account__panel table.shop_table tfoot tr:last-child td {
  border-bottom: 0;
}

.am-client-account__panel .woocommerce-table tfoot th,
.am-client-account__panel .woocommerce-table tfoot td,
.am-client-account__panel table.shop_table tfoot th,
.am-client-account__panel table.shop_table tfoot td {
  background: #fffaf3;
  font-weight: 600;
}

.am-client-account__panel .woocommerce-table__product-name a,
.am-client-account__panel table.shop_table td.product-name a {
  color: #18120d;
  text-decoration: none;
  font-weight: 600;
}

.am-client-account__panel .woocommerce-customer-details .woocommerce-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.am-client-account__panel .woocommerce-customer-details .woocommerce-column {
  margin: 0;
  padding: 20px;
  border: 1px solid #eadfce;
  border-radius: 22px;
  background: linear-gradient(180deg, #fffdf9 0%, #f7efe3 100%);
}

.am-client-account__panel .woocommerce-customer-details address p {
  margin: 10px 0 0;
}

.am-client-account__panel .woocommerce-button.button,
.am-client-account__panel .button {
  min-height: 48px;
  padding: 0 20px !important;
  border-radius: 999px !important;
  font-family: "Sora", sans-serif;
  font-size: 0.72rem !important;
  letter-spacing: 0.14em;
}

.am-booking-card {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid rgba(117, 94, 62, 0.14);
  border-radius: 28px;
  background: rgba(255, 252, 246, 0.92);
  box-shadow: 0 24px 70px rgba(72, 49, 18, 0.08);
}

.am-booking-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.am-booking-card__eyebrow {
  display: block;
  color: #8f7a5a;
  font-family: "Sora", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.am-booking-card__head h2 {
  margin: 10px 0 0;
  color: #18120d;
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  line-height: 1.1;
}

.am-booking-card__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.am-booking-card__item {
  padding: 18px 20px;
  border: 1px solid #eadfce;
  border-radius: 22px;
  background: linear-gradient(180deg, #fffdf9 0%, #f7efe3 100%);
}

.am-booking-card__item span {
  display: block;
  color: #8f7a5a;
  font-family: "Sora", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.am-booking-card__item strong {
  display: block;
  margin-top: 10px;
  color: #18120d;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1.55;
}

.am-booking-card__actions {
  margin-top: 18px;
}

.am-open-reschedule-modal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid #d8cab3;
  border-radius: 999px;
  background: #fffdf9;
  color: #18120d;
  font-family: "Sora", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.am-open-reschedule-modal:hover {
  background: #f4ede2;
  border-color: #b99862;
}

.am-reschedule-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(24, 18, 13, 0.46);
  backdrop-filter: blur(8px);
}

.am-reschedule-modal.is-visible {
  display: flex;
}

.am-reschedule-modal__dialog {
  position: relative;
  width: min(100%, 620px);
  max-height: min(88vh, 820px);
  overflow: auto;
  border: 1px solid rgba(117, 94, 62, 0.14);
  border-radius: 28px;
  background: rgba(255, 252, 246, 0.98);
  box-shadow: 0 24px 70px rgba(72, 49, 18, 0.18);
  padding: 28px;
}

.am-reschedule-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: #f4ede2;
  color: #18120d;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.am-reschedule-modal__header {
  margin-bottom: 20px;
  padding-right: 48px;
}

.am-reschedule-modal__eyebrow,
.am-reschedule-label {
  display: block;
  color: #8f7a5a;
  font-family: "Sora", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.am-reschedule-modal__header h3 {
  margin: 10px 0 0;
  color: #18120d;
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  line-height: 1.05;
}

.am-reschedule-modal__header p,
.am-reschedule-panel__state,
.am-reschedule-panel__notice {
  margin: 12px 0 0;
  color: #6d6052;
  font-family: "Sora", sans-serif;
  line-height: 1.8;
}

.am-reschedule-panel {
  display: grid;
  gap: 18px;
}

.am-reschedule-panel__notice,
.am-reschedule-panel__state {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid #eadfce;
  border-radius: 20px;
  background: #fffdf9;
}

.am-reschedule-panel__notice.is-error {
  border-color: rgba(183, 72, 72, 0.22);
  background: #fff8f7;
  color: #8e3b32;
}

.am-reschedule-panel__notice.is-success {
  border-color: rgba(73, 142, 107, 0.24);
  background: #f7fcf8;
  color: #36674b;
}

.am-reschedule-field {
  display: grid;
  gap: 10px;
}

.am-reschedule-date {
  width: 100%;
  min-height: 52px;
  border: 1px solid #dfd1bc;
  border-radius: 18px;
  background: #fffdf9;
  color: #18120d;
  font-family: "Sora", sans-serif;
  padding: 0 16px;
}

.am-reschedule-slots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}

.am-reschedule-slot {
  min-height: 46px;
  border: 1px solid #d8cab3;
  border-radius: 16px;
  background: #fffdf9;
  color: #18120d;
  font-family: "Sora", sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.am-reschedule-slot:hover,
.am-reschedule-slot.is-selected {
  border-color: #18120d;
  background: #18120d;
  color: #f8f2e8;
}

.am-reschedule-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.am-reschedule-primary,
.am-reschedule-secondary {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-family: "Sora", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.am-reschedule-secondary {
  border: 1px solid #d8cab3;
  background: transparent;
  color: #18120d;
}

.am-reschedule-primary {
  border: 0;
  background: linear-gradient(135deg, #18120d 0%, #34261b 100%);
  color: #f8f2e8;
  box-shadow: 0 18px 35px rgba(24, 18, 13, 0.18);
}

.am-reschedule-primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

body.am-reschedule-modal-open {
  overflow: hidden;
}

.am-account-tabs,
.am-client-account__panel {
  display: grid;
  gap: 22px;
}

.am-account-tabs__hero,
.am-account-tabs__panel,
.am-client-account__panel {
  border: 1px solid rgba(117, 94, 62, 0.14);
  border-radius: 28px;
  background: rgba(255, 252, 246, 0.92);
  box-shadow: 0 24px 70px rgba(72, 49, 18, 0.08);
}

.am-account-tabs__hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
}

.am-account-tabs__eyebrow,
.am-account-tabs__label {
  color: #8f7a5a;
  font-family: "Sora", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.am-account-tabs__hero h2,
.am-account-tabs__panel h3 {
  margin: 10px 0 0;
  font-family: "Sora", sans-serif;
  color: #18120d;
}

.am-account-tabs__hero h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  line-height: 1.02;
}

.am-account-tabs__hero p,
.am-account-tabs__item p,
.am-account-tabs__empty,
.am-account-tabs__profile span,
.am-account-tabs__item-meta span,
.am-account-tabs__item-meta a {
  font-family: "Sora", sans-serif;
}

.am-account-tabs__hero p {
  margin: 14px 0 0;
  max-width: 58ch;
  color: #6d6052;
  line-height: 1.85;
}

.am-account-tabs__logout,
.am-account-tabs__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid #d8cab3;
  color: #18120d;
  text-decoration: none;
  font-family: "Sora", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.am-account-tabs__logout:hover {
  background: #f4ede2;
  border-color: #b99862;
}

.am-account-tabs__logout {
  color: #8b5a3c;
}

.am-account-tabs__switch {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
}

.am-account-tabs__trigger {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid #d8cab3;
  background: rgba(255, 253, 249, 0.88);
  color: #5f5449;
  font-family: "Sora", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.am-account-tabs__trigger.is-active {
  background: #18120d;
  border-color: #18120d;
  color: #f8f2e8;
}

.am-account-tabs__panel {
  display: none;
  padding: 24px;
}

.am-account-tabs__panel.is-active {
  display: block;
}

.am-account-tabs__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.am-account-tabs__panel h3 {
  font-size: 1.35rem;
}

.am-account-tabs__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f4ede2;
  color: #18120d;
  font-family: "Sora", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
}

.am-account-tabs__list {
  display: grid;
  gap: 12px;
}

.am-account-tabs__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid #efe5d8;
}

.am-account-tabs__item:first-child {
  border-top: 0;
  padding-top: 0;
}

.am-account-tabs__item-main strong {
  display: block;
  color: #18120d;
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
}

.am-account-tabs__item-main p {
  margin: 8px 0 0;
  color: #6d6052;
  line-height: 1.7;
}

.am-account-tabs__item-meta {
  display: grid;
  justify-items: end;
  gap: 6px;
  text-align: right;
}

.am-account-tabs__item-meta span {
  color: #7b6e60;
  font-size: 0.88rem;
}

.am-account-tabs__item-meta a {
  color: #18120d;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.am-account-tabs__empty {
  margin: 0;
  color: #6d6052;
  line-height: 1.8;
}

.am-account-tabs__profile {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.am-account-tabs__profile article {
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fffdf9 0%, #f5ede0 100%);
  border: 1px solid #eadfce;
}

.am-account-tabs__profile span {
  display: block;
  color: #8f7a5a;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.am-account-tabs__profile strong {
  display: block;
  margin-top: 10px;
  color: #18120d;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1.55;
}

.am-account-tabs__actions {
  margin-top: 18px;
}

.am-account-tabs__button {
  border: 0;
  background: linear-gradient(135deg, #18120d 0%, #34261b 100%);
  color: #f8f2e8;
  box-shadow: 0 18px 35px rgba(24, 18, 13, 0.18);
}

.am-account-layout .woocommerce-account .woocommerce-MyAccount-navigation {
  padding: 20px;
}

.am-account-layout .woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.am-account-layout .woocommerce-account .woocommerce-MyAccount-navigation li {
  margin: 0;
}

.am-account-layout .woocommerce-account .woocommerce-MyAccount-navigation a {
  display: block;
  border-radius: 18px;
  padding: 14px 16px;
  color: #5f5449;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.am-account-layout .woocommerce-account .woocommerce-MyAccount-navigation .is-active a,
.am-account-layout .woocommerce-account .woocommerce-MyAccount-navigation a:hover {
  background: #f4ede2;
  color: #18120d;
}

.am-account-layout .woocommerce-account .woocommerce-MyAccount-content {
  padding: 28px;
}

.am-account-layout .woocommerce-account .woocommerce-MyAccount-content p,
.am-account-layout .woocommerce-account .woocommerce-MyAccount-content li {
  color: #5f5449;
  line-height: 1.9;
}

.am-account-layout .woocommerce-account table.shop_table {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #eadfce;
}

.am-account-layout .woocommerce-account table.shop_table th,
.am-account-layout .woocommerce-account table.shop_table td {
  padding: 14px 16px;
}

@media (max-width: 1024px) {
  .am-account-layout .woocommerce .u-columns,
  .am-account-layout .woocommerce-account {
    grid-template-columns: 1fr;
  }

  .am-account-tabs__profile {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .am-account-hero {
    padding-top: 94px;
  }

  .am-account-layout .woocommerce form.login,
  .am-account-layout .woocommerce form.register,
  .am-account-layout .woocommerce-account .woocommerce-MyAccount-content,
  .am-account-layout .woocommerce-account .woocommerce-MyAccount-navigation {
    padding: 22px;
    border-radius: 24px;
  }

  .am-account-tabs__hero,
  .am-account-tabs__item,
  .am-account-tabs__profile {
    display: grid;
  }

  .am-account-tabs__hero,
  .am-account-tabs__panel {
    padding: 22px;
  }

  .am-account-tabs__item-meta {
    justify-items: start;
    text-align: left;
  }

  .am-account-tabs__switch {
    width: 100%;
  }

  .am-account-tabs__trigger {
    flex: 1 1 100%;
  }

  .am-client-account__panel {
    padding: 22px;
  }

  .am-client-account__panel .woocommerce-order-overview {
    grid-template-columns: 1fr;
    padding: 16px 18px;
  }

  .am-client-account__panel .woocommerce-table th,
  .am-client-account__panel .woocommerce-table td,
  .am-client-account__panel table.shop_table th,
  .am-client-account__panel table.shop_table td {
    padding: 14px;
  }

  .am-reschedule-modal {
    padding: 16px;
  }

  .am-reschedule-modal__dialog {
    padding: 22px;
  }

  .am-reschedule-actions {
    flex-direction: column-reverse;
  }

  .am-booking-card {
    padding: 22px;
    border-radius: 24px;
  }

  .am-booking-card__grid {
    grid-template-columns: 1fr;
  }
}

.am-login-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(201, 169, 110, 0.12), transparent 30%),
    linear-gradient(180deg, #fbf6ee 0%, #fefcf7 100%);
}

.am-login-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 0;
}

.am-login-stack {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.am-login-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.am-login-logo img {
  width: auto;
  height: 72px;
}

.am-login-card {
  width: min(100%, 420px);
  padding: 32px;
  border: 1px solid rgba(117, 94, 62, 0.14);
  border-radius: 24px;
  background: rgba(255, 252, 246, 0.96);
  box-shadow: 0 24px 70px rgba(72, 49, 18, 0.08);
}

.am-login-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: #f4ede2;
  margin-bottom: 22px;
}

.am-login-switch__button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.am-login-switch__button {
  min-height: 42px;
  border-radius: 999px;
  color: #6d6052;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.am-login-switch__button.is-active {
  background: #fffdf9;
  color: #18120d;
  box-shadow: 0 8px 18px rgba(72, 49, 18, 0.08);
}

.am-login-pane {
  display: none;
}

.am-login-pane.is-active {
  display: block;
}

.am-login-card h1 {
  margin: 0;
  color: #18120d;
  font-family: "Athelas", serif;
  font-size: 2rem;
  line-height: 1.1;
}

.am-login-copy {
  margin: 10px 0 0;
  color: #6d6052;
  line-height: 1.7;
}

.am-login-alert {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(163, 130, 82, 0.16);
  font-size: 0.94rem;
  line-height: 1.7;
}

.am-login-alert--error {
  border-color: rgba(169, 88, 67, 0.2);
  background: rgba(255, 243, 240, 0.92);
  color: #7d3626;
}

.am-login-alert--success {
  border-color: rgba(109, 137, 95, 0.2);
  background: rgba(243, 250, 239, 0.92);
  color: #36512d;
}

.am-login-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.am-login-field {
  display: grid;
  gap: 8px;
}

.am-login-field label {
  color: #6f6458;
  font-size: 0.9rem;
  font-weight: 600;
}

.am-login-field input {
  width: 100%;
  min-height: 54px;
  border: 1px solid #dfd1bc;
  border-radius: 18px;
  background: #fffdf9;
  color: #18120d;
  padding: 0 16px;
}

.am-login-field input:focus {
  border-color: #b99862;
  outline: none;
  box-shadow: 0 0 0 4px rgba(185, 152, 98, 0.12);
}

.am-login-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  width: 100%;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #18120d 0%, #34261b 100%);
  color: #f8f2e8;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.am-login-links,
.am-login-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 18px;
}

.am-login-links a,
.am-login-actions a {
  color: #6d6052;
  text-decoration: none;
  font-size: 0.9rem;
}

.am-login-text-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #6d6052;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
}

.am-login-links a:hover,
.am-login-actions a:hover,
.am-login-text-button:hover {
  color: #18120d;
}

@media (max-width: 760px) {
  .am-login-shell {
    padding: 40px 0;
  }

  .am-login-logo img {
    height: 60px;
  }

  .am-login-card {
    padding: 26px;
    border-radius: 22px;
  }

  .am-login-links,
  .am-login-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}
