/* =============================================
   MARÍA REULA — Psicología y autocuidado
   Estilos globales
   ============================================= */

:root {
  --color-bg: #f4f0e6;
  --color-bg-section: #ede8dc;
  --color-green: #7c923f;
  --color-green-dark: #637530;
  --color-green-light: #8fa84e;
  --color-text: #1f1f1f;
  --color-text-muted: #474747;
  --color-white: #ffffff;
  --color-border: #ddd8cc;
  --color-link: #00acad;

  --font-sans: "Instrument Sans", Arial, sans-serif;
  --font-heading: "Instrument Sans", Arial, sans-serif;

  --max-width: 1200px;
  --nav-height: 72px;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.55;
  font-size: 1.05rem;
}

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

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

ul {
  list-style: none;
}

/* ---- Typography ---- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text);
}

h1 {
  font-size: clamp(2.5rem, 2.5rem + ((1vw - 0.2rem) * 1.283), 3.27rem);
  margin-bottom: 1rem;
}
h2 {
  font-size: clamp(1.85rem, 1.85rem + ((1vw - 0.2rem) * 1.083), 2.5rem);
  margin-bottom: 0.9rem;
}
h3 {
  font-size: clamp(1.39rem, 1.39rem + ((1vw - 0.2rem) * 0.767), 1.85rem);
  margin-bottom: 0.6rem;
}
h4 {
  font-size: clamp(1.1rem, 1.1rem + ((1vw - 0.2rem) * 0.767), 1.5rem);
  margin-bottom: 0.4rem;
  font-weight: 400;
}

p {
  margin-bottom: 1.25rem;
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.55;
}

p:last-child {
  margin-bottom: 0;
}

strong {
  color: var(--color-text);
  font-weight: 600;
}

/* ---- Layout ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: calc(0.667em + 2px) calc(1.5em + 2px);
  border-radius: 100px;
  font-size: 0.9rem;
  font-family: "Jost", Arial, sans-serif;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition:
    background-color 0.2s ease,
    transform 0.1s ease;
  text-align: center;
  line-height: 1.4;
  width: auto;
  min-width: 0;
  flex-shrink: 0;
}

.btn,
.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background-color: var(--color-green);
  color: var(--color-bg);
}

.btn-primary:hover {
  background-color: var(--color-text);
  transform: translateY(-1px);
}

.btn-primary {
  background-color: var(--color-green);
  color: var(--color-bg);
}

.btn-primary:hover {
  background-color: var(--color-green-dark);
  transform: translateY(-1px);
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  background-color: var(--color-bg);
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--color-text);
}

.navbar__logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.navbar__name {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.navbar__name-text {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-green);
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}

.navbar__tagline {
  font-size: 0.9rem;
  color: var(--color-text);
  font-weight: 400;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 0;
}

.navbar__links a {
  padding: 0.45rem 0.9rem;
  border-radius: 6px;
  font-size: 0.93rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition:
    color 0.2s,
    background-color 0.2s;
  white-space: nowrap;
  font-weight: 400;
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--color-text);
  text-decoration: underline;
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

.navbar__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.navbar__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.navbar__mobile {
  display: none;
  flex-direction: column;
  background-color: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: 1rem 2rem 1.5rem;
  position: absolute;
  top: var(--nav-height);
  left: 0;
  right: 0;
  z-index: 99;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.navbar__mobile.is-open {
  display: flex;
}

.navbar__mobile a {
  padding: 0.75rem 0;
  font-size: 1rem;
  color: var(--color-text);
  text-decoration: none;
}

.navbar__mobile a:last-child {
  border-bottom: none;
}

.navbar__mobile a:hover,
.navbar__mobile a.active {
  color: var(--color-green);
  text-decoration: underline;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background-color: var(--color-bg);
  padding: 4rem 0 2.5rem;
  margin-top: 6rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__brand-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.footer__brand-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-green);
  font-family: var(--font-heading);
}

.footer__tagline {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.footer__bio {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}

.footer__col h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1rem;
  font-family: var(--font-sans);
  letter-spacing: 0.01em;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__col ul a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  transition: color 0.2s;
}

.footer__col ul a:hover {
  color: var(--color-green);
}

.footer__col p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 0.35rem;
}

.footer__col a {
  font-size: 0.9rem;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__col a:hover {
  text-decoration: underline;
}

/* Enlaces column - underline always */
.footer__col:nth-of-type(1) a {
  text-decoration: underline;
}

.footer__bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* =============================================
   PAGE HEADER (inner pages)
   ============================================= */
.page-header {
  text-align: center;
  padding: 5rem 2rem 2.5rem;
}

.page-header h1 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 2.5rem + ((1vw - 0.2rem) * 1.283), 3.27rem);
}

/* =============================================
   HOME PAGE
   ============================================= */

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem 2rem 6rem;
  min-height: calc(80vh - var(--nav-height));
}

.hero__image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.hero__image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero__content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  color: var(--color-text);
  font-weight: 400;
}

.hero__content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-muted);
}

/* Section alternates */
.section {
  padding: 5rem 0;
  background-color: var(--color-white);
}

.section--alt {
  background-color: var(--color-white);
}

.section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section--two-col .section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section--two-col.reverse .section__inner {
  direction: rtl;
}

.section--two-col.reverse .section__inner > * {
  direction: ltr;
}

.section__image {
  border-radius: 12px;
  overflow: hidden;
}

.section__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.section__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.section__content {
  display: flex;
  flex-direction: column;
}

/* =============================================
   PSICOTERAPIA / CONTENT PAGES
   ============================================= */
.content-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 1.5rem 2rem 6rem;
}

.content-page__hero-image {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.content-page__hero-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.content-page__intro {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 3rem;
  color: var(--color-text-muted);
}

.content-page__intro strong {
  color: var(--color-text);
}

.content-section {
  margin-bottom: 3rem;
}

.content-section h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  margin-bottom: 1rem;
  color: var(--color-text);
  font-weight: 400;
}

.content-section p {
  font-size: 1rem;
  line-height: 1.85;
}

.content-section ul {
  list-style: disc;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.content-section ul li {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* =============================================
   TALLERES PAGE
   ============================================= */
.talleres-grid {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.5rem 2rem 6rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.taller-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.taller-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.taller-card__image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.taller-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.taller-card:hover .taller-card__image img {
  transform: scale(1.03);
}

.taller-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.taller-card__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.taller-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  font-family: var(--font-heading);
  line-height: 1.3;
}

.taller-card__desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0;
}

.taller-card--proximamente {
  opacity: 0.6;
  cursor: default;
  pointer-events: none;
}

.taller-card--proximamente .taller-card__label {
  color: var(--color-text-muted);
}

/* =============================================
   TALLER DETAIL PAGE
   ============================================= */

/* Hero banner with text overlay */
.taller-hero {
  position: relative;
  height: 380px;
  overflow: hidden;
  margin-bottom: 0;
}

.taller-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.taller-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 35, 15, 0.58);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: var(--color-white);
}

.taller-hero__subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  opacity: 0.85;
  color: var(--color-white);
}

.taller-hero__title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.taller-hero__desc {
  font-size: 1rem;
  opacity: 0.9;
  max-width: 540px;
  margin: 0;
  color: var(--color-white);
  line-height: 1.7;
}

/* Taller content */
.taller-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 2rem 6rem;
}

.taller-content__image {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 2rem auto;
  display: block;
  border-radius: 8px;
}

.taller-content p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.taller-content h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--color-text);
  margin: 3rem 0 1rem;
  font-weight: 400;
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.feature-card__img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
}

.feature-card__title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.1rem;
}

.feature-card__text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Requirements list */
.requirements-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 2rem;
  margin: 1.5rem 0;
}

.requirements-list li {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  padding-left: 1.4em;
  position: relative;
  line-height: 1.6;
}

.requirements-list li::before {
  content: "•";
  color: var(--color-green);
  position: absolute;
  left: 0;
  font-weight: 700;
}

/* Price box */
.price-box {
  background-color: var(--color-green);
  color: var(--color-white);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  margin: 2.5rem 0;
  text-align: center;
}

.price-box h3 {
  font-size: 1.4rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.price-box p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.price-box__discount {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.price-box__discount p {
  font-size: 0.9rem;
}

.price-box__code {
  font-family: monospace;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.2em 0.5em;
  border-radius: 4px;
  font-size: 0.9rem;
}

/* =============================================
   CONTACTO PAGE
   ============================================= */
.contacto-layout {
  max-width: 880px;
  margin: 0 auto;
  padding: 1.5rem 2rem 6rem;
}

.contacto-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.contacto-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.4rem;
  font-family: var(--font-sans);
}

.contacto-item p {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.contacto-item a {
  font-size: 1rem;
  color: var(--color-text);
  text-decoration: underline;
}

.contacto-map {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
}

.contacto-map iframe {
  width: 100%;
  height: 400px;
  display: block;
  border: none;
}

.contacto-legal {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* =============================================
   QUIEN SOY PAGE
   ============================================= */
.quien-soy-layout {
  max-width: 800px;
  margin: 0 auto;
  padding: 1.5rem 2rem 6rem;
}

.quien-soy-photo {
  aspect-ratio: 3 / 4;
  margin-bottom: 2.5rem;
  overflow: hidden;
  border-radius: 8px;
}

.quien-soy-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quien-soy-intro {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.quien-soy-quote {
  border-left: 3px solid var(--color-green);
  padding: 1.25rem 1.75rem;
  background: rgba(124, 146, 63, 0.06);
  border-radius: 0 8px 8px 0;
  margin: 2.5rem 0;
  font-style: italic;
  color: var(--color-text);
  font-size: 1.05rem;
  line-height: 1.8;
}

.white-quote {
  padding: 1.5rem 2rem;
  background-color: var(--color-white);
  border-radius: 8px;
  margin: 2rem 0;
  font-style: italic;
  color: var(--color-text);
  font-size: 1.1rem;
  line-height: 1.7;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .navbar__links {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .navbar__inner {
    padding: 0 1.25rem;
  }

  .navbar__logo {
    width: 44px;
    height: 44px;
  }

  .navbar__name-text {
    font-size: 1.1rem;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.25rem 3rem;
    gap: 2rem;
    min-height: auto;
  }

  .hero__image img {
    height: 300px;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section--two-col .section__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section--two-col.reverse .section__inner {
    direction: ltr;
  }

  .section__image img {
    height: 280px;
  }

  .section__inner {
    padding: 0 1.25rem;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.25rem;
  }

  .footer {
    padding: 3rem 0 2rem;
    margin-top: 4rem;
  }

  .page-header {
    padding: 3.5rem 1.25rem 2rem;
  }

  .content-page,
  .taller-content,
  .contacto-layout,
  .quien-soy-layout {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .contacto-info {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .requirements-list {
    grid-template-columns: 1fr;
  }

  .talleres-grid {
    grid-template-columns: 1fr;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .taller-hero {
    height: 300px;
  }

  .price-box {
    padding: 1.5rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Map consent overlay ---- */
#map-container {
  position: relative;
  min-height: 350px;
}

.map-consent-overlay {
  position: absolute;
  inset: 0;
  background-color: var(--color-bg-section);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem;
  text-align: center;
}

.map-consent-overlay p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  max-width: 360px;
  margin: 0;
}

.map-consent-btn {
  margin-top: 0.25rem;
}

/* ---- Cookies table ---- */
.cookies-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.cookies-table th,
.cookies-table td {
  border: 1px solid var(--color-border);
  padding: 0.6rem 0.9rem;
  text-align: left;
  vertical-align: top;
}

.cookies-table thead {
  background-color: var(--color-bg-section);
}

.cookies-table th {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-text);
}

.cookies-table td {
  color: var(--color-text-muted);
}

.cookies-table code {
  background-color: var(--color-bg-section);
  padding: 0.1em 0.35em;
  border-radius: 3px;
  font-size: 0.85em;
  color: var(--color-green-dark);
}

@media (max-width: 600px) {
  .cookies-table {
    display: block;
    overflow-x: auto;
  }
}

/* ---- Breadcrumb accent links ---- */
/* Override any inline color styles on breadcrumb anchors to use the teal accent */
.taller-content ~ * a[href*="talleres"],
[style*="color: var(--color-green)"] {
  color: var(--color-link) !important;
}

/* ---- Cookie consent banner ---- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: #2c2c2c;
  color: #f0ece4;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1 1 300px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #d4cfc7;
  margin: 0;
}

.cookie-banner__text a {
  color: #8fb886;
  text-decoration: underline;
}

.cookie-banner__text a:hover {
  color: #a8d0a4;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-banner__accept {
  background-color: var(--color-green);
  color: #fff;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-family: "Jost", Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.cookie-banner__accept:hover {
  background-color: var(--color-green-dark);
}

.cookie-banner__reject {
  background-color: transparent;
  color: #d4cfca;
  border: 1px solid #6a6460;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-family: "Jost", Arial, sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    color 0.2s ease;
}

.cookie-banner__reject:hover {
  border-color: #a0999380;
  color: #f0ece4;
}

@media (max-width: 600px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner__accept,
  .cookie-banner__reject {
    flex: 1;
    text-align: center;
  }
}
