:root {
  --ry-bone: #faf7f2;
  --ry-surface: #ffffff;
  --ry-surface-2: #f2ede4;
  --ry-forest: #1c3a2e;
  --ry-forest-deep: #10271e;
  --ry-forest-soft: #315c49;
  --ry-copper: #ae5623;
  --ry-copper-deep: #8e4319;
  --ry-sand: #dfd6c8;
  --ry-muted: #6b6259;
  --ry-white: #ffffff;
  --ry-danger: #9b342c;
  --ry-success: #2d684f;
  --ry-font-interface: Archivo, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ry-font-editorial: Newsreader, Georgia, serif;
  --ry-font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --ry-container: 1240px;
  --ry-gutter: clamp(18px, 4vw, 48px);
  --ry-radius: 14px;
  --ry-radius-small: 9px;
  --ry-focus: 0 0 0 4px var(--ry-forest);
  --ry-shadow: 0 18px 54px rgba(28, 58, 46, 0.1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ry-bone);
  color: var(--ry-forest);
  font-family: var(--ry-font-interface);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

img {
  height: auto;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
summary,
[role="button"] {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid var(--ry-white);
  outline-offset: 3px;
  box-shadow: var(--ry-focus);
}

::selection {
  background: var(--ry-copper);
  color: var(--ry-white);
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus,
.ry-skip-link:focus {
  z-index: 100000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  background: var(--ry-white);
  color: var(--ry-forest);
}

.ry-container {
  width: min(100%, calc(var(--ry-container) + 2 * var(--ry-gutter)));
  margin-inline: auto;
  padding-inline: var(--ry-gutter);
}

.ry-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ry-kicker {
  margin: 0 0 10px;
  color: var(--ry-copper);
  font-family: var(--ry-font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.ry-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.wp-element-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.ry-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.wp-element-button:hover {
  transform: translateY(-1px);
}

.ry-button--accent,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background: var(--ry-copper);
  color: var(--ry-white);
}

.ry-button--accent:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
  background: var(--ry-copper-deep);
  color: var(--ry-white);
}

.ry-button--light {
  background: var(--ry-bone);
  color: var(--ry-forest);
}

.ry-text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}

.ry-text-link .ry-icon {
  width: 17px;
  transition: transform 180ms ease;
}

.ry-text-link:hover .ry-icon {
  transform: translateX(3px);
}

.ry-announcement {
  min-height: 32px;
  background: var(--ry-forest-deep);
  color: #f6efe5;
  font-family: var(--ry-font-mono);
  font-size: 0.67rem;
  letter-spacing: 0.02em;
}

.ry-announcement .ry-container {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
}

.ry-announcement p {
  margin: 0;
}

.ry-announcement span {
  display: none;
}

.ry-header {
  position: sticky;
  z-index: 500;
  top: 0;
  border-bottom: 1px solid rgba(28, 58, 46, 0.12);
  background: rgba(250, 247, 242, 0.96);
  box-shadow: 0 10px 34px rgba(28, 58, 46, 0.06);
  backdrop-filter: blur(18px);
}

.admin-bar .ry-header {
  top: 32px;
}

.ry-header__row {
  display: grid;
  min-height: 62px;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.ry-header__menu-button,
.ry-icon-button {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
}

.ry-header__menu-button:hover,
.ry-icon-button:hover {
  background: var(--ry-surface-2);
}

.ry-header__logo {
  justify-self: center;
}

.ry-header__logo img,
.ry-header__logo .custom-logo {
  width: 126px;
  max-height: 44px;
  object-fit: contain;
}

.ry-logo-link,
.custom-logo-link {
  display: block;
}

.ry-header__nav,
.ry-header__search {
  display: none;
}

.ry-header__actions {
  display: flex;
  align-items: center;
  gap: 1px;
}

.ry-header__actions > a:first-child {
  display: none;
}

.ry-header__cart {
  position: relative;
}

.ry-header__cart-count {
  position: absolute;
  top: 1px;
  right: 0;
  display: grid;
  min-width: 18px;
  height: 18px;
  place-items: center;
  padding-inline: 4px;
  border: 2px solid var(--ry-bone);
  border-radius: 999px;
  background: var(--ry-copper);
  color: var(--ry-white);
  font-family: var(--ry-font-mono);
  font-size: 0.58rem;
  font-weight: 700;
}

.ry-header__mobile-search {
  padding-bottom: 10px;
}

.ry-search {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
}

.ry-search__icon {
  position: absolute;
  z-index: 1;
  left: 14px;
  color: var(--ry-muted);
  pointer-events: none;
}

.ry-search__icon .ry-icon {
  width: 19px;
}

.ry-search input[type="search"] {
  width: 100%;
  min-width: 0;
  height: 46px;
  grid-column: 1 / -1;
  padding: 0 90px 0 43px;
  border: 1px solid var(--ry-sand);
  border-radius: 999px;
  outline: 0;
  background: var(--ry-white);
  color: var(--ry-forest);
  font-size: 0.82rem;
}

.ry-search input[type="search"]:focus {
  border-color: var(--ry-copper);
  box-shadow: var(--ry-focus);
}

.ry-search > button {
  position: absolute;
  right: 5px;
  min-width: 72px;
  height: 36px;
  padding: 0 13px;
  border: 0;
  border-radius: 999px;
  background: var(--ry-forest);
  color: var(--ry-white);
  font-size: 0.72rem;
  font-weight: 700;
}

.ry-search__results {
  position: absolute;
  z-index: 620;
  top: calc(100% + 8px);
  left: 0;
  width: min(520px, calc(100vw - 2 * var(--ry-gutter)));
  max-height: min(470px, 70vh);
  overflow: auto;
  border: 1px solid var(--ry-sand);
  border-radius: var(--ry-radius);
  background: var(--ry-white);
  box-shadow: var(--ry-shadow);
}

.ry-search__result {
  display: grid;
  min-height: 78px;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 7px 12px;
  border-bottom: 1px solid var(--ry-surface-2);
  text-decoration: none;
}

.ry-search__result:hover,
.ry-search__result.is-active,
.ry-search__result:focus {
  background: var(--ry-surface-2);
}

.ry-search__result-media {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 8px;
  background: var(--ry-white);
}

.ry-search__result-media img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.ry-search__result-copy {
  display: grid;
  gap: 4px;
}

.ry-search__result-copy strong {
  font-size: 0.78rem;
  line-height: 1.28;
}

.ry-search__result-price {
  color: var(--ry-copper);
  font-family: var(--ry-font-mono);
  font-size: 0.74rem;
}

.ry-search__result-price del {
  color: var(--ry-muted);
  font-size: 0.66rem;
}

.ry-search__status {
  margin: 0;
  padding: 18px;
  color: var(--ry-muted);
  font-size: 0.78rem;
}

.ry-mega {
  position: relative;
}

.ry-mega summary {
  display: flex;
  min-height: 44px;
  align-items: center;
  list-style: none;
  cursor: pointer;
}

.ry-mega summary::-webkit-details-marker {
  display: none;
}

.ry-mega summary::after {
  width: 6px;
  height: 6px;
  margin: -4px 0 0 7px;
  border-right: 1.5px solid;
  border-bottom: 1.5px solid;
  content: "";
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.ry-mega[open] summary::after {
  margin-top: 3px;
  transform: rotate(225deg);
}

.ry-mega__panel {
  position: absolute;
  top: calc(100% + 14px);
  left: -26px;
  display: grid;
  width: 660px;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 22px;
  padding: 22px;
  border: 1px solid var(--ry-sand);
  border-radius: var(--ry-radius);
  background: var(--ry-white);
  box-shadow: var(--ry-shadow);
}

.ry-mega--compact .ry-mega__panel {
  width: 520px;
  grid-template-columns: 1fr;
}

.ry-mega__groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.ry-mega__group {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.ry-mega__group p {
  margin: 0 0 3px;
  color: var(--ry-copper);
  font-family: var(--ry-font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ry-mega__group a {
  font-size: 0.82rem;
  text-decoration: none;
}

.ry-mega__group a:hover {
  color: var(--ry-copper);
}

.ry-mega__feature {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: 10px;
  background-position: center;
  background-size: cover;
  color: var(--ry-white);
  text-decoration: none;
}

.ry-mega__feature::after {
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(16, 39, 30, 0.92));
  content: "";
}

.ry-mega__feature--dog {
  background-image: url("../images/categoria-perro.webp");
}

.ry-mega__feature--cat {
  background-image: url("../images/categoria-gato.webp");
}

.ry-mega__feature span {
  position: absolute;
  z-index: 1;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
}

.ry-mega__feature .ry-icon {
  width: 16px;
}

.ry-mega__note {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--ry-sand);
  color: var(--ry-muted);
  font-size: 0.7rem;
}

/* La geometria, el fondo y el backdrop de los cajones los define
 * proto/b1-cabezal.css con `.ry-drawer`, y cada cajon elige su propio color:
 * el panel movil es verde oscuro y el carrito es hueso. Aqui vivia un
 * `dialog.ry-drawer` con `background: var(--ry-bone)` que, por tener mas
 * especificidad, pintaba tambien el panel movil de hueso y dejaba sus
 * etiquetas color crema ilegibles sobre fondo claro. Las clases --left y
 * --right tampoco existen en el marcado: son --izquierda y --derecha. */

.ry-drawer__header {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--ry-sand);
}

.ry-drawer__header strong {
  display: block;
  font-family: var(--ry-font-editorial);
  font-size: 1.35rem;
  font-weight: 500;
}

.ry-drawer__header small {
  display: block;
  color: var(--ry-copper);
  font-family: var(--ry-font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.ry-drawer__body {
  height: calc(100dvh - 138px);
  padding: 18px;
  overflow-y: auto;
}

.ry-mobile-repeat,
.ry-mobile-offers {
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--ry-copper);
  color: var(--ry-white);
  font-weight: 700;
  text-decoration: none;
}

.ry-mobile-offers {
  margin-top: 12px;
  background: var(--ry-forest);
}

.ry-mobile-world {
  border-bottom: 1px solid var(--ry-sand);
}

.ry-mobile-world > summary {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  font-family: var(--ry-font-editorial);
  font-size: 1.4rem;
  cursor: pointer;
}

.ry-mobile-world > summary::after {
  content: "+";
  font-family: var(--ry-font-interface);
  font-size: 1.1rem;
}

.ry-mobile-world[open] > summary::after {
  content: "−";
}

.ry-mobile-world__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 0 0 20px;
}

.ry-mobile-world__links .ry-mega__groups,
.ry-mobile-world__links > .ry-mega__group {
  display: contents;
}

.ry-mobile-world__links .ry-mega__group {
  display: flex;
}

.ry-drawer__footer {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 18px;
  border-top: 1px solid var(--ry-sand);
  background: var(--ry-white);
  font-size: 0.72rem;
  font-weight: 700;
}

.ry-mini-cart {
  display: flex;
  flex-direction: column;
}

.ry-mini-cart:not([open]) {
  display: none;
}

.ry-mini-cart__shipping {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 18px 0;
  padding: 12px;
  border: 1px solid rgba(174, 86, 35, 0.2);
  border-radius: 10px;
  background: rgba(174, 86, 35, 0.05);
}

.ry-mini-cart__shipping .ry-icon {
  color: var(--ry-copper);
}

.ry-mini-cart__shipping span,
.ry-mini-cart__shipping small {
  display: block;
}

.ry-mini-cart__shipping small {
  color: var(--ry-muted);
  font-size: 0.66rem;
}

.ry-mini-cart__content {
  flex: 1;
  padding: 18px;
  overflow-y: auto;
}

.ry-mini-cart .woocommerce-mini-cart {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ry-mini-cart .woocommerce-mini-cart-item {
  position: relative;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  padding: 14px 44px 14px 0;
  border-bottom: 1px solid var(--ry-sand);
  font-size: 0.78rem;
}

.ry-mini-cart .woocommerce-mini-cart-item > a:not(.remove) {
  display: contents;
  font-weight: 700;
  text-decoration: none;
}

.ry-mini-cart .woocommerce-mini-cart-item img {
  width: 76px;
  height: 76px;
  grid-row: 1 / span 2;
  object-fit: contain;
  border-radius: 8px;
  background: var(--ry-white);
}

.ry-mini-cart .remove_from_cart_button {
  position: absolute;
  top: 11px;
  right: 0;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--ry-muted) !important;
  font-size: 1.2rem;
  text-decoration: none;
}

.ry-mini-cart .quantity {
  grid-column: 2;
  color: var(--ry-muted);
  font-family: var(--ry-font-mono);
  font-size: 0.7rem;
}

.ry-mini-cart .woocommerce-mini-cart__total {
  display: flex;
  justify-content: space-between;
  margin: 20px 0 12px;
  padding-top: 16px;
  border-top: 1px solid var(--ry-sand);
  font-family: var(--ry-font-mono);
}

.ry-mini-cart .woocommerce-mini-cart__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.ry-mini-cart .woocommerce-mini-cart__buttons .button {
  text-align: center;
}

.ry-hero {
  position: relative;
  min-height: min(700px, calc(100svh - 120px));
  overflow: hidden;
  background: var(--ry-forest-deep);
  color: var(--ry-white);
}

.ry-hero__media,
.ry-hero__media img,
.ry-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ry-hero__media img {
  object-fit: cover;
  object-position: center;
}

.ry-hero__shade {
  background: linear-gradient(180deg, rgba(16, 39, 30, 0.02) 20%, rgba(16, 39, 30, 0.88) 92%);
}

.ry-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: min(700px, calc(100svh - 120px));
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 90px;
  padding-bottom: clamp(46px, 8vw, 92px);
}

.ry-hero .ry-kicker {
  color: #efaa79;
}

.ry-hero h1 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--ry-font-editorial);
  font-size: clamp(3rem, 10vw, 6.8rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.ry-hero__content > p:not(.ry-kicker) {
  max-width: 42ch;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.98rem, 2vw, 1.13rem);
}

.ry-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.ry-benefits {
  border-bottom: 1px solid var(--ry-sand);
  background: var(--ry-white);
}

.ry-benefits .ry-container {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(190px, 1fr);
  gap: 8px;
  padding-block: 14px;
  overflow-x: auto;
  scrollbar-width: none;
}

.ry-benefits .ry-container::-webkit-scrollbar {
  display: none;
}

.ry-benefits .ry-container > div {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 11px;
  padding-right: 18px;
  border-right: 1px solid var(--ry-sand);
}

.ry-benefits .ry-icon {
  color: var(--ry-copper);
}

.ry-benefits strong,
.ry-benefits small {
  display: block;
}

.ry-benefits strong {
  font-size: 0.76rem;
}

.ry-benefits small {
  margin-top: 1px;
  color: var(--ry-muted);
  font-size: 0.66rem;
}

.ry-section {
  padding-block: clamp(68px, 9vw, 112px);
}

.ry-section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: clamp(28px, 5vw, 52px);
}

.ry-section-heading h2,
.ry-animal-world h2,
.ry-guidance h2,
.ry-logistics h2,
.ry-footer h2 {
  margin: 0;
  font-family: var(--ry-font-editorial);
  font-size: clamp(2.25rem, 6vw, 4.2rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.96;
}

.ry-section-heading h2 em,
.ry-animal-world h2 em,
.ry-guidance h2 em,
.ry-logistics h2 em,
.ry-footer h2 em {
  color: var(--ry-copper);
  font-weight: 500;
}

.ry-section-heading > p {
  max-width: 38ch;
  margin: 0;
  color: var(--ry-muted);
  font-size: 0.92rem;
}

.ry-species__grid {
  display: grid;
  gap: 16px;
}

.ry-species-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--ry-radius);
  background: var(--ry-forest);
  color: var(--ry-white);
  text-decoration: none;
}

.ry-species-card::after {
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(16, 39, 30, 0.9));
  content: "";
}

.ry-species-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.ry-species-card:hover > img {
  transform: scale(1.035);
}

.ry-species-card > span {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 22px;
  left: 22px;
}

.ry-species-card small,
.ry-species-card strong,
.ry-species-card b {
  display: block;
}

.ry-species-card small {
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--ry-font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ry-species-card strong {
  margin-top: 3px;
  font-family: var(--ry-font-editorial);
  font-size: clamp(2.7rem, 10vw, 4.5rem);
  font-weight: 500;
  line-height: 0.95;
}

.ry-species-card b {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  font-size: 0.76rem;
}

.ry-species-card b .ry-icon {
  width: 16px;
}

.ry-products-section {
  border-top: 1px solid var(--ry-sand);
  background: var(--ry-surface-2);
}

.ry-section-heading--row {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.ry-product-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 78vw);
  gap: 14px;
  margin-inline: calc(var(--ry-gutter) * -1);
  padding: 4px var(--ry-gutter) 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: var(--ry-gutter);
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--ry-copper) var(--ry-sand);
  scrollbar-width: thin;
}

.ry-product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid var(--ry-sand);
  border-radius: var(--ry-radius);
  background: var(--ry-white);
  color: var(--ry-forest);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ry-product-card:hover {
  border-color: rgba(174, 86, 35, 0.36);
  box-shadow: 0 16px 42px rgba(28, 58, 46, 0.1);
  transform: translateY(-3px);
}

.ry-product-card__media {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  padding: 16px;
  background: var(--ry-white);
  text-decoration: none;
}

.ry-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 260ms ease;
}

.ry-product-card:hover .ry-product-card__media img {
  transform: scale(1.025);
}

.ry-product-card__badge {
  position: absolute;
  z-index: 1;
  top: 12px;
  left: 12px;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--ry-copper);
  color: var(--ry-white);
  font-family: var(--ry-font-mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ry-product-badge--out-of-stock {
  background: var(--ry-muted);
}

.ry-product-card__body {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  padding: 16px;
  border-top: 1px solid var(--ry-surface-2);
}

.ry-product-card__eyebrow {
  margin: 0 0 5px;
  color: var(--ry-copper);
  font-family: var(--ry-font-mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ry-product-card h3 {
  margin: 0;
  font-family: var(--ry-font-interface);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
}

.ry-product-card h3 a {
  text-decoration: none;
}

.ry-product-card__pricing {
  display: grid;
  gap: 3px;
  margin: auto 0 13px;
  padding-top: 16px;
}

.ry-product-card__price {
  color: var(--ry-copper);
  font-family: var(--ry-font-mono);
  font-size: 1rem;
  font-weight: 700;
}

.ry-product-card__price del {
  margin-right: 5px;
  color: var(--ry-muted);
  font-size: 0.7rem;
  font-weight: 500;
}

.ry-product-card__price ins {
  text-decoration: none;
}

.ry-product-card__pricing small {
  color: var(--ry-muted);
  font-family: var(--ry-font-mono);
  font-size: 0.63rem;
}

.ry-product-card__cta {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 13px;
  border: 1px solid var(--ry-forest);
  border-radius: 999px;
  background: var(--ry-forest);
  color: var(--ry-white);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.ry-product-card__cta:hover {
  background: var(--ry-forest-deep);
  color: var(--ry-white);
}

.ry-product-card__cta--secondary {
  background: transparent;
  color: var(--ry-forest);
}

.ry-product-card__cta--secondary:hover {
  background: var(--ry-surface-2);
  color: var(--ry-forest);
}

.ry-product-card.is-out-of-stock .ry-product-card__media img {
  filter: saturate(0.55);
  opacity: 0.62;
}

.ry-animal-world {
  padding-block: clamp(70px, 10vw, 124px);
}

.ry-animal-world--dog {
  background: var(--ry-forest);
  color: var(--ry-white);
}

.ry-animal-world--cat {
  background: #e9dfd0;
}

.ry-animal-world__intro {
  display: grid;
  align-items: end;
  gap: 18px;
  margin-bottom: 32px;
}

.ry-animal-world__intro > div > p:not(.ry-kicker) {
  max-width: 42ch;
  margin: 18px 0 0;
  color: currentColor;
  opacity: 0.72;
}

.ry-animal-world__intro img {
  max-height: 260px;
  justify-self: center;
  object-fit: contain;
}

.ry-animal-world--dog .ry-kicker {
  color: #efaa79;
}

.ry-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid currentColor;
  border-radius: var(--ry-radius);
  background: currentColor;
}

.ry-category-grid a {
  display: flex;
  min-height: 132px;
  flex-direction: column;
  padding: 16px;
  background: var(--ry-bone);
  color: var(--ry-forest);
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.ry-animal-world--dog .ry-category-grid a {
  background: var(--ry-forest-deep);
  color: var(--ry-white);
}

.ry-category-grid a:hover,
.ry-animal-world--dog .ry-category-grid a:hover {
  background: var(--ry-copper);
  color: var(--ry-white);
}

.ry-category-grid span {
  color: var(--ry-copper);
  font-family: var(--ry-font-mono);
  font-size: 0.62rem;
}

.ry-category-grid a:hover span {
  color: var(--ry-white);
}

.ry-category-grid strong {
  margin-top: auto;
  font-family: var(--ry-font-editorial);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1;
}

.ry-category-grid small {
  margin-top: 6px;
  color: inherit;
  font-size: 0.66rem;
  opacity: 0.68;
}

.ry-animal-world .ry-product-rail {
  margin-top: 32px;
}

.ry-product-rail--on-color .ry-product-card {
  border-color: rgba(255, 255, 255, 0.18);
}

.ry-guidance__card {
  display: grid;
  gap: 28px;
  padding-block: clamp(32px, 6vw, 62px);
  border-top: 1px solid var(--ry-sand);
  border-bottom: 1px solid var(--ry-sand);
}

.ry-guidance__card > div > p:not(.ry-kicker) {
  max-width: 58ch;
  margin: 18px 0 0;
  color: var(--ry-muted);
}

.ry-guidance__actions {
  display: grid;
  align-content: center;
  gap: 18px;
}

.ry-guidance__actions .ry-search__results {
  right: 0;
  left: auto;
}

.ry-logistics {
  padding-block: clamp(72px, 10vw, 130px);
  background: var(--ry-forest-deep);
  color: var(--ry-white);
}

.ry-logistics header {
  max-width: 760px;
  margin-bottom: 38px;
}

.ry-logistics .ry-kicker {
  color: #efaa79;
}

.ry-logistics__grid {
  display: grid;
  gap: 14px;
}

.ry-logistics article {
  position: relative;
  min-height: 270px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--ry-radius);
  background: rgba(255, 255, 255, 0.035);
}

.ry-logistics article > span {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #efaa79;
  font-family: var(--ry-font-mono);
  font-size: 0.7rem;
}

.ry-logistics article > .ry-icon {
  width: 38px;
  height: 38px;
  color: #efaa79;
}

.ry-logistics h3 {
  max-width: 12ch;
  margin: 72px 0 12px;
  font-family: var(--ry-font-editorial);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 500;
  line-height: 1;
}

.ry-logistics article p {
  max-width: 42ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
}

.ry-footer {
  padding-top: clamp(42px, 7vw, 76px);
  background: #0a1d16;
  color: #f6efe5;
}

.ry-footer__cta {
  display: grid;
  gap: 26px;
  align-items: center;
  padding-bottom: clamp(42px, 7vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.ry-footer__cta > div > span,
.ry-footer__contact > span {
  color: #efaa79;
  font-family: var(--ry-font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ry-footer__cta h2 {
  margin-top: 10px;
}

.ry-footer__grid {
  display: grid;
  gap: 34px;
  padding-block: 44px;
}

.ry-footer__logo img {
  width: 160px;
  filter: brightness(0) invert(1);
}

.ry-footer__identity p,
.ry-footer__identity address,
.ry-footer__contact p {
  max-width: 30ch;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-style: normal;
}

.ry-footer nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.ry-footer nav strong {
  margin-bottom: 4px;
  color: #efaa79;
  font-family: var(--ry-font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
}

.ry-footer nav a,
.ry-footer__contact a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  text-decoration: none;
}

.ry-footer nav a:hover,
.ry-footer__contact a:hover {
  color: var(--ry-white);
}

.ry-footer__contact h3 {
  margin: 6px 0;
  font-family: var(--ry-font-editorial);
  font-size: 1.7rem;
  font-weight: 500;
}

.ry-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 22px;
  padding-block: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--ry-font-mono);
  font-size: 0.6rem;
}

.ry-footer__legal a {
  color: inherit;
}

.ry-footer__legal small {
  margin-left: auto;
}

.ry-whatsapp {
  position: fixed;
  z-index: 390;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: #087a43;
  box-shadow: 0 12px 32px rgba(16, 39, 30, 0.28);
  color: var(--ry-white);
  font-family: var(--ry-font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
}

.ry-content,
.ry-shop {
  min-height: 60vh;
  padding-block: clamp(48px, 8vw, 92px);
}

.ry-content__inner {
  max-width: 860px;
}

.ry-page-header {
  margin-bottom: 34px;
}

.ry-page-header h1,
.woocommerce-products-header__title.page-title,
.woocommerce div.product .product_title {
  margin: 0;
  font-family: var(--ry-font-editorial);
  font-size: clamp(2.5rem, 7vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.ry-prose {
  color: #344b41;
}

.ry-prose a {
  color: var(--ry-copper-deep);
  font-weight: 650;
  text-decoration: none;
}

.ry-prose a:hover { color: var(--ry-forest); }

.ry-prose > * {
  max-width: 72ch;
}

.ry-prose > .alignwide {
  max-width: 1080px;
}

.ry-prose h2,
.ry-prose h3 {
  margin-top: 1.8em;
  font-family: var(--ry-font-editorial);
  line-height: 1.05;
}

.ry-entry-media {
  margin: 0 0 34px;
}

.ry-entry-media img {
  width: 100%;
  border-radius: var(--ry-radius);
}

.ry-entry-card {
  padding-block: 28px;
  border-bottom: 1px solid var(--ry-sand);
}

.ry-entry-card h2 {
  margin: 0;
  font-family: var(--ry-font-editorial);
  font-size: 2rem;
}

.ry-empty-state {
  max-width: 640px;
  margin: 40px auto;
  padding: clamp(30px, 7vw, 62px);
  border: 1px solid var(--ry-sand);
  border-radius: var(--ry-radius);
  background: var(--ry-white);
  text-align: center;
}

.ry-empty-state h1 {
  margin: 0 0 12px;
  font-family: var(--ry-font-editorial);
  font-size: clamp(2.2rem, 7vw, 4rem);
  font-weight: 500;
  line-height: 1;
}

.ry-empty-state p {
  color: var(--ry-muted);
}

.ry-empty-state .ry-search {
  margin: 26px auto 18px;
}

/* WooCommerce archives */
.woocommerce .woocommerce-breadcrumb {
  margin: 0 0 26px;
  color: var(--ry-muted);
  font-size: 0.68rem;
}

.woocommerce .woocommerce-breadcrumb a {
  color: var(--ry-forest);
}

.woocommerce-products-header {
  margin-bottom: 28px;
}

.woocommerce-products-header__description {
  max-width: 68ch;
  color: var(--ry-muted);
}

.ry-catalog-shortcuts {
  display: flex;
  gap: 8px;
  margin: 0 0 24px;
  padding-bottom: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.ry-catalog-shortcuts::-webkit-scrollbar {
  display: none;
}

.ry-catalog-shortcuts a {
  flex: 0 0 auto;
  padding: 9px 13px;
  border: 1px solid var(--ry-sand);
  border-radius: 999px;
  background: var(--ry-white);
  font-size: 0.7rem;
  font-weight: 600;
  text-decoration: none;
}

.ry-catalog-shortcuts a:hover {
  border-color: var(--ry-copper);
  color: var(--ry-copper);
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  margin-bottom: 28px;
}

.woocommerce .woocommerce-result-count {
  color: var(--ry-muted);
  font-size: 0.72rem;
}

.woocommerce .woocommerce-ordering select,
.woocommerce div.product form.cart .variations select,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single {
  min-height: 44px;
  padding: 0 38px 0 12px;
  border: 1px solid var(--ry-sand);
  border-radius: 9px;
  background-color: var(--ry-white);
  color: var(--ry-forest);
  font-size: 0.75rem;
}

.woocommerce ul.products {
  display: grid;
  clear: both;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 42px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  position: relative;
  width: auto;
  min-width: 0;
  float: none;
  overflow: hidden;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--ry-sand);
  border-radius: var(--ry-radius);
  background: var(--ry-white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.woocommerce ul.products li.product:hover {
  box-shadow: var(--ry-shadow);
  transform: translateY(-3px);
}

.woocommerce ul.products li.product a img {
  aspect-ratio: 1;
  margin: 0 0 14px;
  object-fit: contain;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  min-height: 3.9em;
  padding: 0;
  font-family: var(--ry-font-interface);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
}

.woocommerce ul.products li.product .price {
  min-height: 2.6em;
  margin: 13px 0;
  color: var(--ry-copper);
  font-family: var(--ry-font-mono);
  font-size: 0.82rem;
  font-weight: 700;
}

.woocommerce ul.products li.product .price del {
  color: var(--ry-muted);
  font-size: 0.64rem;
}

.woocommerce ul.products li.product .price ins {
  text-decoration: none;
}

.woocommerce span.onsale {
  top: 10px;
  right: auto;
  left: 10px;
  min-width: auto;
  min-height: auto;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--ry-copper);
  color: var(--ry-white);
  font-family: var(--ry-font-mono);
  font-size: 0.58rem;
  line-height: 1;
}

.woocommerce span.onsale.ry-product-badge--out-of-stock {
  background: var(--ry-muted);
}

.woocommerce ul.products li.product .button {
  width: 100%;
  min-height: 40px;
  padding: 9px 11px;
  background: var(--ry-forest);
  color: var(--ry-white);
  font-size: 0.68rem;
}

.woocommerce nav.woocommerce-pagination ul {
  display: flex;
  gap: 6px;
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: grid;
  min-width: 42px;
  min-height: 42px;
  place-items: center;
  border: 1px solid var(--ry-sand);
  border-radius: 50%;
  background: var(--ry-white);
}

.woocommerce nav.woocommerce-pagination ul li span.current {
  border-color: var(--ry-forest);
  background: var(--ry-forest);
  color: var(--ry-white);
}

/* WooCommerce product detail */
.single-product .ry-shop__inner > .product {
  padding-top: 10px;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  width: 100%;
  float: none;
}

.woocommerce div.product div.images {
  margin-bottom: 28px;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
  overflow: hidden;
  border: 1px solid var(--ry-sand);
  border-radius: var(--ry-radius);
  background: var(--ry-white);
}

.woocommerce div.product div.images img {
  object-fit: contain;
}

.woocommerce div.product div.images .flex-control-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 9px;
}

.woocommerce div.product div.images .flex-control-thumbs li {
  width: auto;
  padding: 5px;
  border: 1px solid var(--ry-sand);
  border-radius: 8px;
  background: var(--ry-white);
}

.woocommerce div.product .summary {
  padding: 4px 0 30px;
}

.woocommerce div.product .product_title {
  font-size: clamp(2.3rem, 7vw, 4rem);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  margin: 20px 0 0;
  color: var(--ry-copper);
  font-family: var(--ry-font-mono);
  font-size: clamp(1.35rem, 4vw, 1.9rem);
  font-weight: 700;
}

.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
  color: var(--ry-muted);
  font-size: 0.8rem;
}

.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
  text-decoration: none;
}

.ry-unit-price {
  min-height: 1.4em;
  margin: 4px 0 18px;
  color: var(--ry-muted);
  font-family: var(--ry-font-mono);
  font-size: 0.7rem;
}

.woocommerce-product-details__short-description {
  color: var(--ry-muted);
  font-size: 0.9rem;
}

.woocommerce div.product form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--ry-sand);
}

.woocommerce div.product form.cart .variations {
  width: 100%;
  margin: 0 0 16px;
}

.woocommerce div.product form.cart .variations th,
.woocommerce div.product form.cart .variations td {
  display: block;
  padding: 0;
  text-align: left;
}

.woocommerce div.product form.cart .variations label {
  display: block;
  margin-bottom: 7px;
  font-family: var(--ry-font-mono);
  font-size: 0.67rem;
  text-transform: uppercase;
}

.woocommerce div.product form.cart .variations select {
  width: 100%;
  margin-right: 0;
}

.woocommerce div.product form.cart .reset_variations {
  display: inline-block;
  margin-top: 7px;
  color: var(--ry-copper);
  font-size: 0.68rem;
}

.woocommerce .quantity .qty {
  width: 72px;
  min-height: 46px;
  border: 1px solid var(--ry-sand);
  border-radius: 999px;
  background: var(--ry-white);
  font-family: var(--ry-font-mono);
}

.woocommerce div.product form.cart .button {
  min-height: 46px;
  flex: 1;
  background: var(--ry-forest);
  color: var(--ry-white);
}

.woocommerce div.product .stock {
  color: var(--ry-success);
  font-size: 0.76rem;
  font-weight: 700;
}

.woocommerce div.product .stock.out-of-stock {
  color: var(--ry-danger);
}

.woocommerce div.product .product_meta {
  display: grid;
  gap: 5px;
  margin-top: 22px;
  color: var(--ry-muted);
  font-size: 0.68rem;
}

.woocommerce div.product .woocommerce-tabs {
  margin-top: clamp(44px, 8vw, 82px);
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  gap: 4px;
  margin: 0;
  padding: 0;
  overflow-x: auto;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  border-color: var(--ry-sand);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  flex: 0 0 auto;
  margin: 0;
  padding: 0 14px;
  border: 1px solid var(--ry-sand);
  border-radius: 9px 9px 0 0;
  background: var(--ry-surface-2);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: var(--ry-white);
}

.woocommerce div.product .woocommerce-tabs .panel {
  padding: 24px;
  border: 1px solid var(--ry-sand);
  border-top: 0;
  border-radius: 0 0 var(--ry-radius) var(--ry-radius);
  background: var(--ry-white);
  color: #344b41;
}

.woocommerce div.product .woocommerce-tabs .panel h2,
.woocommerce .related.products > h2,
.woocommerce .upsells.products > h2 {
  font-family: var(--ry-font-editorial);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 500;
}

.woocommerce .related.products,
.woocommerce .upsells.products {
  margin-top: clamp(48px, 8vw, 86px);
}

/* WooCommerce notices, forms, cart, checkout and account */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  margin-bottom: 24px;
  padding: 16px 18px 16px 48px;
  border: 1px solid var(--ry-sand);
  border-top: 3px solid var(--ry-copper);
  border-radius: var(--ry-radius-small);
  background: var(--ry-white);
  color: var(--ry-forest);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce-input-wrapper input,
.woocommerce-input-wrapper textarea {
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--ry-sand);
  border-radius: 9px;
  background: var(--ry-white);
}

.woocommerce form .form-row textarea {
  min-height: 120px;
}

.woocommerce table.shop_table {
  border: 1px solid var(--ry-sand);
  border-collapse: separate;
  border-radius: var(--ry-radius);
  background: var(--ry-white);
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: 14px;
  border-color: var(--ry-surface-2);
}

.woocommerce-cart-form,
.cart-collaterals,
.woocommerce-checkout-review-order,
.woocommerce-checkout-payment,
.woocommerce-MyAccount-content,
.woocommerce-MyAccount-navigation {
  margin-bottom: 24px;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
  width: 100%;
  float: none;
  padding: 20px;
  border: 1px solid var(--ry-sand);
  border-radius: var(--ry-radius);
  background: var(--ry-white);
}

.woocommerce-checkout #payment {
  background: var(--ry-surface-2);
}

.woocommerce-checkout #payment div.payment_box {
  background: var(--ry-white);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  display: flex;
  gap: 7px;
  margin: 0;
  padding: 0 0 14px;
  overflow-x: auto;
  list-style: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
  display: block;
  padding: 9px 12px;
  border: 1px solid var(--ry-sand);
  border-radius: 999px;
  background: var(--ry-white);
  font-size: 0.7rem;
  text-decoration: none;
  white-space: nowrap;
}

.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
  width: 100%;
  float: none;
}

.woocommerce-account.logged-in .ry-content__inner { max-width: 1120px; }

.woocommerce-account.logged-in .woocommerce-MyAccount-navigation {
  overflow: hidden;
  border-radius: 18px;
  background: var(--ry-forest);
  box-shadow: 0 18px 44px rgb(10 39 29 / .12);
}

.woocommerce-account.logged-in .woocommerce-MyAccount-navigation ul {
  gap: 2px;
  padding: 10px;
}

.woocommerce-account.logged-in .woocommerce-MyAccount-navigation a {
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: rgb(255 248 239 / .78);
  font-size: 12px;
  font-weight: 650;
  transition: background-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.woocommerce-account.logged-in .woocommerce-MyAccount-navigation a:hover,
.woocommerce-account.logged-in .woocommerce-MyAccount-navigation .is-active a {
  background: rgb(255 255 255 / .1);
  color: #fff8ef;
  transform: translateX(2px);
}

.woocommerce-account.logged-in .woocommerce-MyAccount-content {
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--ry-sand);
  border-radius: 18px;
  background: var(--ry-white);
  box-shadow: 0 18px 50px rgb(10 39 29 / .07);
}

.woocommerce-account.logged-in .woocommerce-MyAccount-content > :first-child { margin-top: 0; }
.woocommerce-account.logged-in .woocommerce-MyAccount-content a { color: var(--ry-copper-deep); font-weight: 650; }
.woocommerce-account.logged-in .woocommerce-MyAccount-content a:hover { color: var(--ry-forest); }

.ry-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 480ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.ry-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 700px) {
  .ry-announcement .ry-container {
    justify-content: space-between;
  }

  .ry-announcement span {
    display: inline;
    opacity: 0.7;
  }

  .ry-header__actions > a:first-child {
    display: inline-flex;
  }

  .ry-section-heading {
    grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.6fr);
    align-items: end;
  }

  .ry-section-heading--row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .ry-species__grid,
  .ry-logistics__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ry-species-card {
    min-height: 570px;
  }

  .ry-product-rail {
    grid-auto-columns: minmax(250px, 31vw);
  }

  .ry-animal-world__intro {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr);
  }

  .ry-category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ry-category-grid a {
    min-height: 180px;
  }

  .ry-guidance__card,
  .ry-footer__cta {
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  }

  .ry-footer__cta > .ry-button {
    justify-self: end;
  }

  .ry-footer__grid {
    grid-template-columns: 1.3fr 0.7fr 0.8fr 1fr;
  }

  .woocommerce ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (min-width: 960px) {
  .ry-product-rail {
    grid-auto-columns: minmax(250px, calc((100% - 42px) / 4));
    margin-inline: 0;
    padding-inline: 0;
  }

  .woocommerce ul.products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .woocommerce div.product {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: clamp(42px, 6vw, 82px);
  }

  .woocommerce div.product div.images,
  .woocommerce div.product div.summary {
    grid-column: auto;
  }

  .woocommerce div.product div.summary {
    align-self: start;
    padding-top: 24px;
  }

  .woocommerce div.product .woocommerce-tabs,
  .woocommerce div.product .related,
  .woocommerce div.product .upsells {
    grid-column: 1 / -1;
  }

  body.logged-in.woocommerce-account .woocommerce {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 34px;
  }

  body.logged-in.woocommerce-account .woocommerce > .woocommerce-notices-wrapper,
  body.logged-in.woocommerce-account .woocommerce > .woocommerce-message,
  body.logged-in.woocommerce-account .woocommerce > .woocommerce-info,
  body.logged-in.woocommerce-account .woocommerce > .woocommerce-error {
    grid-column: 1 / -1;
  }

  body.logged-in.woocommerce-account .woocommerce > .woocommerce-MyAccount-navigation {
    grid-column: 1;
  }

  body.logged-in.woocommerce-account .woocommerce > .woocommerce-MyAccount-content {
    grid-column: 2;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation ul {
    flex-direction: column;
    overflow: visible;
  }
}

@media (min-width: 1120px) {
  .ry-header__row {
    min-height: 78px;
    grid-template-columns: 160px minmax(0, 1fr) minmax(230px, 290px) auto;
    gap: clamp(16px, 2.2vw, 34px);
  }

  .ry-header__menu-button,
  .ry-header__mobile-search {
    display: none;
  }

  .ry-header__logo {
    justify-self: start;
  }

  .ry-header__logo img,
  .ry-header__logo .custom-logo {
    width: 150px;
  }

  .ry-header__nav {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: clamp(12px, 1.5vw, 22px);
    font-size: 0.76rem;
    font-weight: 600;
  }

  .ry-header__nav > a {
    display: flex;
    min-height: 44px;
    align-items: center;
    text-decoration: none;
    white-space: nowrap;
  }

  .ry-header__nav > a:hover,
  .ry-header__nav summary:hover {
    color: var(--ry-copper);
  }

  .ry-header__repeat {
    gap: 6px;
    padding: 0 13px;
    border-radius: 999px;
    background: var(--ry-forest);
    color: var(--ry-white);
  }

  .ry-header__repeat:hover {
    background: var(--ry-forest-deep);
    color: var(--ry-white) !important;
  }

  .ry-header__repeat .ry-icon {
    width: 16px;
  }

  .ry-header__search {
    display: block;
  }

  .ry-header__search .ry-search__results {
    right: 0;
    left: auto;
  }

  .ry-search input[type="search"] {
    font-size: 0.76rem;
  }

  .ry-hero__content {
    justify-content: center;
    padding-top: 170px;
    padding-bottom: 90px;
  }

  .ry-hero__shade {
    background: linear-gradient(90deg, rgba(16, 39, 30, 0.87) 0%, rgba(16, 39, 30, 0.47) 40%, rgba(16, 39, 30, 0.03) 72%);
  }
}

@media (max-width: 782px) {
  .admin-bar .ry-header {
    top: 46px;
  }
}

@media (max-width: 480px) {
  .ry-hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .ry-section-heading--row {
    grid-template-columns: 1fr;
  }

  .ry-mobile-world__links {
    grid-template-columns: 1fr;
  }

  .ry-footer__legal small {
    width: 100%;
    margin-left: 0;
  }

  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    padding: 9px;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 0.72rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .ry-reveal {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   PÁGINAS SECUNDARIAS · 27-ago-2026

   Cuenta, pedidos, 404 y vista rápida venían con el WooCommerce de fábrica
   asomando por debajo del tema: botones lavanda, cajas sin sistema, íconos
   pegados al borde del campo. Este bloque los alinea con el resto sin copiar
   plantillas de WooCommerce: son estilos sobre el marcado que el plugin ya
   emite.
   ========================================================================== */

/* --- Botones de WooCommerce -----------------------------------------------
   El «Acceso» del formulario de ingreso salía gris lavanda —el botón por
   omisión del plugin— al lado de una tienda que usa verde y terracota. No es
   un detalle de gusto: es el botón que confirma una identidad, y parecía de
   otro sitio. Se toman todas las variantes que emite WooCommerce de una vez
   para que no vuelva a aparecer uno suelto en checkout o en la cuenta. */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce input[type="submit"].button,
.woocommerce .woocommerce-Button,
.woocommerce-page a.button,
.woocommerce-page button.button,
.woocommerce-page input.button {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  background: var(--ry-forest);
  color: var(--ry-bone);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: -0.005em;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  cursor: pointer;
  transition: background-color 160ms ease;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce .woocommerce-Button:hover,
.woocommerce-page a.button:hover,
.woocommerce-page button.button:hover {
  background: var(--ry-forest-deep);
  color: var(--ry-bone);
}

/* La acción principal de cada pantalla va en terracota; el resto en verde. */
.woocommerce button.button.alt,
.woocommerce a.button.alt,
.woocommerce input.button.alt,
.woocommerce #place_order {
  background: var(--ry-copper);
  color: var(--ry-white);
}

.woocommerce button.button.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce #place_order:hover {
  background: var(--ry-copper-deep);
  color: var(--ry-white);
}

.woocommerce .button:focus-visible,
.woocommerce .woocommerce-Button:focus-visible {
  outline: 2px solid var(--ry-forest);
  outline-offset: 3px;
}

/* --- Ingreso y alta de cuenta --------------------------------------------
   El formulario era la caja punteada de WooCommerce, pegada a la izquierda de
   una página de 1240 px con medio metro de vacío al lado. Se centra, se le da
   una medida legible y se lo trata como lo que es: una tarjeta. */
/* Sin sesión iniciada, la página de cuenta es un formulario y nada más: se
   centra entero —título incluido— en una medida de lectura. Antes el título
   quedaba pegado a la izquierda y la tarjeta centrada debajo, desalineados
   entre sí. Con sesión iniciada vuelve al ancho completo, porque ahí hay
   navegación de cuenta, pedidos y direcciones. */
.woocommerce-account:not(.logged-in) .ry-content__inner,
.woocommerce-account:not(.logged-in) .woocommerce {
  max-width: 560px;
  margin-inline: auto;
}

.woocommerce-account.ry-account-registration:not(.logged-in) .ry-content__inner,
.woocommerce-account.ry-account-registration:not(.logged-in) .woocommerce {
  max-width: 1040px;
}

.woocommerce-account:not(.logged-in) .ry-page-header {
  margin-bottom: 20px;
  text-align: center;
}

.woocommerce-account:not(.logged-in) .woocommerce-form-login h2,
.woocommerce-account:not(.logged-in) > .ry-content h2 {
  text-align: left;
}

/* El botón ocupa el ancho de la tarjeta: era el único elemento del formulario
   que no llegaba al borde y se leía descuadrado contra los dos campos. */
.woocommerce form.woocommerce-form-login .woocommerce-form-login__submit,
.woocommerce form.woocommerce-form-register .woocommerce-form-register__submit {
  width: 100%;
}

.woocommerce form.woocommerce-form-login,
.woocommerce form.woocommerce-form-register,
.woocommerce form.woocommerce-ResetPassword {
  margin: 0;
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid var(--ry-sand);
  border-radius: var(--ry-radius);
  background: var(--ry-white);
}

.woocommerce-account:not(.logged-in) #customer_login {
  display: grid;
  gap: 18px;
}

.ry-cuenta__portada {
  margin: 0 0 18px;
  padding: clamp(20px, 4vw, 30px);
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / .12);
  border-radius: 20px;
  background:
    radial-gradient(circle at 88% 0%, rgb(232 154 88 / .24), transparent 38%),
    var(--ry-forest);
  color: #fff8ef;
  box-shadow: 0 24px 62px rgb(10 39 29 / .14);
}

.ry-cuenta__portada-icono {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgb(255 255 255 / .1);
  color: #efa164;
}

.ry-cuenta__portada-icono .ry-i { width: 22px; height: 22px; }
.ry-cuenta__portada p { margin: 0 0 4px; color: #efa164; font-size: 10px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.ry-cuenta__portada h2 { margin: 0; max-width: 19ch; font-family: var(--ry-serif); font-size: clamp(1.45rem, 4vw, 2.05rem); font-weight: 500; letter-spacing: -.025em; line-height: 1.04; }
.ry-cuenta__portada ul { grid-column: 1 / -1; margin: 4px 0 0; padding: 0; display: grid; gap: 8px; list-style: none; }
.ry-cuenta__portada li { min-height: 34px; padding: 7px 10px; display: flex; align-items: center; gap: 8px; border-radius: 9px; background: rgb(255 255 255 / .065); color: rgb(255 248 239 / .78); font-size: 11px; font-weight: 650; }
.ry-cuenta__portada li .ry-i { width: 15px; height: 15px; color: #efa164; }

.woocommerce-account:not(.logged-in) #customer_login::before,
.woocommerce-account:not(.logged-in) #customer_login::after {
  display: none;
}

.woocommerce-account:not(.logged-in) #customer_login .u-column1,
.woocommerce-account:not(.logged-in) #customer_login .u-column2 {
  inline-size: auto;
  float: none;
  padding: 18px;
  border: 1px solid var(--ry-sand);
  border-radius: 18px;
  background: var(--ry-white);
  box-shadow: 0 16px 46px rgb(10 39 29 / .065);
}

.woocommerce-account:not(.logged-in) #customer_login h2 {
  margin: 0 0 12px;
  font-family: var(--ry-serif);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 500;
  letter-spacing: -.025em;
}

.woocommerce-account:not(.logged-in) form.woocommerce-form-register {
  border-color: transparent;
  background: color-mix(in srgb, var(--ry-copper) 4%, var(--ry-white));
}

.woocommerce-account:not(.logged-in) form.woocommerce-form-login,
.woocommerce-account:not(.logged-in) form.woocommerce-form-register {
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.woocommerce-account:not(.logged-in) .woocommerce-LostPassword a,
.woocommerce-account:not(.logged-in) .woocommerce-privacy-policy-link {
  color: var(--ry-copper-deep);
  font-weight: 650;
  text-decoration: none;
}

.ry-cuenta__intro {
  margin-block-end: 20px;
  padding-block-end: 16px;
  border-block-end: 1px solid var(--ry-sand);
}

.ry-cuenta__intro span {
  display: block;
  margin-block-end: 5px;
  color: var(--ry-forest);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ry-cuenta__intro--registro span { color: var(--ry-copper-deep); }

.ry-cuenta__intro p {
  margin: 0;
  color: var(--ry-ink-muted);
  font-size: 13px;
  line-height: 1.5;
}

@media (min-width: 780px) {
  .woocommerce-account:not(.logged-in) #customer_login {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .woocommerce-account:not(.logged-in) #customer_login .u-column1,
  .woocommerce-account:not(.logged-in) #customer_login .u-column2 {
    display: grid;
    grid-template-rows: auto 1fr;
  }

  .ry-cuenta__portada {
    grid-template-columns: 52px minmax(0, 1fr) auto;
    align-items: center;
  }

  .ry-cuenta__portada ul {
    grid-column: 3;
    grid-template-columns: repeat(3, auto);
  }
}

.woocommerce form .form-row {
  margin: 0 0 16px;
  padding: 0;
}

.woocommerce form .form-row label {
  margin-bottom: 6px;
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
}

.woocommerce form .form-row .required {
  color: var(--ry-copper);
  text-decoration: none;
}

/* El ojo de «ver contraseña» quedaba montado sobre el borde derecho del campo,
   encima del propio texto. Se le hace lugar dentro del campo. */
.woocommerce form .woocommerce-form__input-wrapper,
.woocommerce form .password-input {
  position: relative;
  display: block;
}

.woocommerce form .password-input input.input-text {
  padding-right: 46px;
}

.woocommerce form .show-password-input {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  cursor: pointer;
}

/* «Recordarme» venía en la misma línea que el botón y a distinta altura. */
.woocommerce form.woocommerce-form-login .form-row {
  display: grid;
  gap: 14px;
}

.woocommerce form.woocommerce-form-login .woocommerce-form-login__rememberme {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
}

.woocommerce form.woocommerce-form-login .woocommerce-form-login__rememberme input {
  margin: 0;
}

.woocommerce-LostPassword {
  margin: 14px 0 0;
  font-size: 0.78rem;
}

/* --- Pedidos (repetir pedido) ---------------------------------------------
   La tabla de WooCommerce a 1240 px de ancho tiene cuatro columnas angostas y
   un botón «Ver» perdido a la derecha. En el teléfono directamente se sale de
   la pantalla. Se la deja desplazarse sola en horizontal y en móvil pasa a
   fichas, que es como se lee un pedido: una arriba de la otra. */
.woocommerce-orders-table,
.woocommerce-orders-table__row {
  font-size: 0.82rem;
}

.woocommerce table.shop_table.woocommerce-orders-table {
  overflow: hidden;
}

.woocommerce-orders-table__cell-order-actions .button {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.74rem;
}

.woocommerce-orders-table__cell-order-actions .button + .button {
  margin-left: 8px;
}

@media (max-width: 720px) {
  .woocommerce table.shop_table.woocommerce-orders-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
  }

  .woocommerce table.shop_table.woocommerce-orders-table,
  .woocommerce table.shop_table.woocommerce-orders-table tbody,
  .woocommerce table.shop_table.woocommerce-orders-table tr,
  .woocommerce table.shop_table.woocommerce-orders-table td {
    display: block;
    width: 100%;
  }

  .woocommerce table.shop_table.woocommerce-orders-table tr {
    margin-bottom: 12px;
    padding: 6px 0;
    border: 1px solid var(--ry-sand);
    border-radius: var(--ry-radius-small, 10px);
    background: var(--ry-white);
  }

  .woocommerce table.shop_table.woocommerce-orders-table td {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding: 9px 14px;
    border: 0;
    text-align: right;
  }

  /* El rótulo de la columna vuelve como etiqueta de la fila: sin encabezado,
     «$3.130,00» suelto no dice si es el total o el envío. */
  .woocommerce table.shop_table.woocommerce-orders-table td::before {
    content: attr(data-title);
    color: var(--ry-muted);
    font-size: 0.72rem;
    font-weight: 600;
    text-align: left;
  }

  .woocommerce-orders-table__cell-order-actions {
    justify-content: stretch;
  }

  .woocommerce-orders-table__cell-order-actions::before {
    display: none;
  }

  .woocommerce-orders-table__cell-order-actions .button {
    width: 100%;
  }

  .woocommerce-orders-table__cell-order-actions .button + .button {
    margin: 8px 0 0;
  }
}

/* --- 404 ------------------------------------------------------------------
   La tarjeta flotaba en el medio de 800 px de vacío porque `.ry-content` le
   reservaba una altura mínima pensada para un catálogo. Y el botón «Buscar»
   quedaba clavado contra el filo del campo redondeado. */
body.error404 .ry-content {
  min-height: 0;
}

body.error404 .ry-empty-state {
  margin-block: clamp(28px, 6vw, 64px);
}

body.error404 .ry-kicker {
  margin-bottom: 10px;
  letter-spacing: 0.22em;
}

.ry-empty-state .ry-search form,
.ry-empty-state form.ry-search {
  gap: 8px;
  padding: 5px 5px 5px 6px;
}

.ry-empty-state .ry-search button[type="submit"] {
  flex: 0 0 auto;
}

/* --- Vista rápida ---------------------------------------------------------
   Tres cosas: el botón de cerrar apoyado justo sobre la esquina, encima del
   nombre del producto; el diálogo pegado a los dos filos de la pantalla en el
   teléfono; y el pie del panel cortado contra el borde inferior. */
.ry-vista-dialogo {
  margin: auto;
}

.ry-vista-dialogo__cerrar {
  inset-block-start: 14px;
  inset-inline-end: 14px;
  box-shadow: 0 2px 10px color-mix(in srgb, var(--ry-forest) 14%, transparent);
}

.ry-vista-dialogo__cerrar:hover {
  background: var(--ry-surface-2);
}

.ry-vista__compra {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.ry-vista__compra form.cart {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin: 0;
}

.ry-vista__compra .quantity {
  margin: 0;
  flex: 0 0 auto;
}

.ry-vista__compra .single_add_to_cart_button {
  flex: 1 1 190px;
}

@media (max-width: 767px) {
  .ry-vista-dialogo {
    max-inline-size: calc(100vw - 24px);
    max-block-size: 88svh;
  }

  .ry-vista-dialogo__caja {
    max-block-size: 88svh;
  }

  /* En el teléfono el cerrar convive con el título: se lo separa del texto en
     lugar de apoyarlo encima. */
  .ry-vista-dialogo__cerrar {
    inset-block-start: 10px;
    inset-inline-end: 10px;
    inline-size: 40px;
    block-size: 40px;
  }
}
