@import url("../assets/css/inner-premium.css?v=20260827-2");

:root {
  --ocani-deep: #0a3834;
  --ocani-green: #0c5e59;
  --ocani-gold: #d1b06b;
  --ocani-cream: #f4f1ea;
}

/* Mantiene la paleta del proyecto en modo claro y evita recoloreados automáticos
   de navegadores Chromium/Opera sobre las superficies diseñadas por el sitio. */
html {
  color-scheme: only light;
}

body {
  color-scheme: light;
}

ocani-header,
ocani-footer {
  display: block;
}

/*
 * El contenido descriptivo incluido dentro de #root sirve como respaldo para
 * buscadores y para el caso excepcional de que JavaScript no llegue a cargar.
 * Mientras React inicia, no debe aparecer como una pagina sin estilos.
 */
.ocani-react-fallback {
  position: fixed;
  inset: 0;
  visibility: hidden;
  pointer-events: none;
}

.ocani-shell-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 64px;
  box-sizing: border-box;
  border-top: 1px solid rgba(209,176,107,.46);
  border-bottom: 1px solid rgba(209,176,107,.46);
  color: white;
  background: linear-gradient(90deg, #082f2c, #0c5e59, #082f2c);
  transition: height .35s ease, box-shadow .35s ease;
}

.ocani-shell-header.is-scrolled {
  height: 56px;
  box-shadow: 0 12px 28px rgba(2, 20, 18, .28);
}

.ocani-shell-bar {
  width: min(100% - 24px, 1280px);
  height: 100%;
  margin-inline: auto;
  box-sizing: border-box;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.ocani-shell-cluster,
.ocani-shell-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ocani-shell-cluster { gap: 24px; }

.ocani-shell-icon,
.ocani-shell-music,
.ocani-shell-user,
.ocani-shell-close,
.ocani-shell-up {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ocani-shell-icon,
.ocani-shell-user {
  width: 44px;
  height: 44px;
  color: rgba(255,255,255,.8);
}

.ocani-shell-icon:hover,
.ocani-shell-user:hover { color: var(--ocani-gold); }
.ocani-shell-icon:focus-visible,
.ocani-shell-user:focus-visible {
  outline: 1px solid rgba(209,176,107,.78);
  outline-offset: -2px;
  border-radius: 5px;
  color: var(--ocani-gold);
  box-shadow: 0 0 8px rgba(209,176,107,.14);
}
.ocani-shell-icon svg,
.ocani-shell-user svg { width: 23px; height: 23px; }

.ocani-shell-logo img {
  display: block;
  width: auto;
  height: 44px;
  object-fit: contain;
  transition: transform .2s ease;
}
.ocani-shell-logo:hover img { transform: scale(1.04); }

.ocani-shell-music {
  width: auto;
  min-width: 68px;
  height: 28px;
  padding: 0 12px;
  border: 1px solid rgba(209,176,107,.82);
  border-radius: 999px;
  background: rgba(12,94,89,.28);
  color: var(--ocani-gold);
  font: 700 10px/1 Inter, sans-serif;
  letter-spacing: .13em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .22s ease, background-color .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.ocani-shell-music:hover {
  background: rgba(12,94,89,.55);
  box-shadow: 0 0 11px rgba(209,176,107,.22);
}
.ocani-shell-music.is-playing {
  border-color: rgba(209,176,107,.82);
  background: rgba(12,94,89,.28);
  box-shadow: none;
}
.ocani-shell-header .ocani-shell-music { width: auto; min-width: 68px; height: 28px; border-radius: 999px; }

.ocani-shell-contact {
  width: 82px;
  height: 28px;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(209,176,107,.8);
  border-radius: 999px;
  background: rgba(12,94,89,.28);
  color: var(--ocani-gold);
  font: 700 10px/1 Inter, sans-serif;
  letter-spacing: .10em;
  text-transform: uppercase;
  cursor: pointer;
}
.ocani-shell-contact:hover { background: rgba(12,94,89,.55); }

/* PLAY y CONTACTO se integran en la superficie del header como controles grabados. */
.ocani-shell-header .ocani-shell-music,
.ocani-shell-header .ocani-shell-music.is-playing,
.ocani-shell-header .ocani-shell-contact {
  border: 0;
  background: transparent;
  text-shadow: none;
  box-shadow:
    inset 0 1px 2px rgba(1, 22, 19, .28),
    inset 0 -1px 0 rgba(244, 241, 234, .045);
  transition: color .22s ease, box-shadow .22s ease, text-shadow .22s ease;
}

.ocani-shell-header .ocani-shell-music:hover,
.ocani-shell-header .ocani-shell-music.is-playing:hover,
.ocani-shell-header .ocani-shell-contact:hover {
  background: transparent;
  color: #e7c98a;
  text-shadow: 0 0 7px rgba(231, 201, 138, .58);
  box-shadow:
    inset 0 1px 3px rgba(1, 22, 19, .34),
    inset 0 -1px 0 rgba(244, 241, 234, .055),
    0 0 10px rgba(209, 176, 107, .22);
}

.ocani-shell-language {
  color: rgba(255,255,255,.65);
  font: 700 13.5px/1 Inter, sans-serif;
  letter-spacing: .06em;
  text-decoration: none;
  padding: 7px 8px;
}
.ocani-shell-language.is-active { color: var(--ocani-gold); }
.ocani-shell-divider { color: rgba(255,255,255,.28); }

.ocani-shell-overlay {
  position: fixed;
  inset: 0;
  z-index: 58;
  opacity: 0;
  visibility: hidden;
  background: rgba(3,28,24,.12);
  backdrop-filter: blur(.75px);
  -webkit-backdrop-filter: blur(.75px);
  transition: opacity .25s ease, visibility .25s ease;
}
.ocani-shell-overlay.is-open { opacity: 1; visibility: visible; }

.ocani-shell-drawer {
  position: fixed;
  z-index: 60;
  top: 76px;
  left: clamp(18px, 1.5vw, 24px);
  width: min(320px, calc(100vw - 44px));
  max-height: calc(100vh - 88px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(91,153,141,.62) transparent;
  padding: 30px 24px 36px;
  border: 1px solid rgba(209,176,107,.56);
  border-radius: 18px;
  color: white;
  background: rgba(5,55,50,.52);
  box-shadow: 0 24px 60px rgba(0,0,0,.22), inset 0 1px 0 rgba(231,201,138,.10);
  backdrop-filter: blur(1.5px) saturate(103%);
  -webkit-backdrop-filter: blur(1.5px) saturate(103%);
  transform: translateX(calc(-100% - 24px));
  opacity: 0;
  transition: transform .28s ease, opacity .28s ease;
}
.ocani-shell-drawer::-webkit-scrollbar { width: 4px; }
.ocani-shell-drawer::-webkit-scrollbar-track { background: transparent; }
.ocani-shell-drawer::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(111,174,161,.64), rgba(5,47,43,.78));
}
.ocani-shell-drawer.is-open { transform: translateX(0); opacity: 1; }
.ocani-shell-close { position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; color: white; }
.ocani-shell-close svg { width: 22px; height: 22px; }

.ocani-shell-nav { display: grid; gap: 20px; padding: 16px 30px 0 0; }
.ocani-shell-nav a,
.ocani-shell-service-row > a {
  color: rgba(255,255,255,.74);
  text-decoration: none;
  font: 700 13px/1.35 Inter, sans-serif;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.ocani-shell-nav a:hover,
.ocani-shell-nav a[aria-current="page"] { color: var(--ocani-gold); }
.ocani-shell-service-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.ocani-shell-submenu-toggle {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(209,176,107,.72);
  border-radius: 50%;
  background: rgba(10,56,52,.28);
  color: #f2dba8;
  cursor: pointer;
}
.ocani-shell-submenu { display: none; gap: 12px; margin: 12px 0 0 12px; padding: 10px 0 4px 14px; border-left: 1px solid rgba(209,176,107,.4); }
.ocani-shell-submenu.is-open { display: grid; }
.ocani-shell-submenu a { color: #e7c98a; font-size: 10px; letter-spacing: .1em; }
.ocani-shell-social { display: flex; gap: 10px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1); }
.ocani-shell-social a,
.ocani-shell-drawer-user { width: 36px; height: 36px; border: 1px solid rgba(209,176,107,.40); border-radius: 50%; color: rgba(231,201,138,.82); background: transparent; box-shadow: inset 0 1px 2px rgba(1,22,19,.24), inset 0 -1px 0 rgba(244,241,234,.035); display: inline-flex; align-items: center; justify-content: center; text-decoration: none; transition: color .22s ease, border-color .22s ease, box-shadow .22s ease, filter .22s ease; }
.ocani-shell-drawer-user { display: none; }
.ocani-shell-social a:hover,
.ocani-shell-social a:focus-visible { border-color: rgba(231,201,138,.78); color: #e7c98a; box-shadow: inset 0 1px 2px rgba(1,22,19,.24), 0 0 10px rgba(209,176,107,.24); filter: drop-shadow(0 0 3px rgba(231,201,138,.28)); }
.ocani-shell-social svg { width: 17px; height: 17px; }
.ocani-shell-drawer-user svg { width: 18px; height: 18px; }

.ocani-shell-footer {
  position: relative;
  box-sizing: border-box;
  border-top: 1px solid rgba(209,176,107,.46);
  border-bottom: 1px solid rgba(209,176,107,.46);
  color: rgba(255,255,255,.55);
  background: linear-gradient(135deg, #082f2c, #0c5e59 55%, #082f2c);
  padding: 30px 0 28px;
}
.ocani-shell-footer::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  height: 14px;
  opacity: .50;
  pointer-events: none;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='20' viewBox='0 0 64 20' preserveAspectRatio='none'%3E%3Cg fill='none' stroke-linejoin='round'%3E%3Cpath d='M0 1H64M0 19H64' stroke='%23D1B06B' stroke-width='.65'/%3E%3Cpath d='M0 10L8 1.5L16 10L8 18.5ZM32 10L40 1.5L48 10L40 18.5Z' stroke='%23D1B06B' stroke-width='.8'/%3E%3Cpath d='M16 10L24 1.5L32 10L24 18.5Z' stroke='%23A8B69B' stroke-width='.75'/%3E%3Cpath d='M48 10L56 1.5L64 10L56 18.5Z' stroke='%236A9E98' stroke-width='.75'/%3E%3Cpath d='M3.5 10L8 5L12.5 10L8 15ZM35.5 10L40 5L44.5 10L40 15Z' stroke='%236A9E98' stroke-width='.7'/%3E%3Cpath d='M19.5 10L24 5L28.5 10L24 15ZM51.5 10L56 5L60.5 10L56 15Z' stroke='%23155F58' stroke-width='.75'/%3E%3Ccircle cx='8' cy='10' r='1.15' stroke='%23D1B06B' stroke-width='.7'/%3E%3Ccircle cx='24' cy='10' r='1.15' stroke='%23A8B69B' stroke-width='.7'/%3E%3Ccircle cx='40' cy='10' r='1.15' stroke='%23D1B06B' stroke-width='.7'/%3E%3Ccircle cx='56' cy='10' r='1.15' stroke='%236A9E98' stroke-width='.7'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: left top;
  background-size: 64px 14px;
}
.ocani-shell-footer-inner { width: min(100% - 32px, 1240px); margin-inline: auto; }
.ocani-shell-footer-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; }
.ocani-shell-footer h2 { margin: 0 0 17px; color: var(--ocani-gold); font: 400 19px/1.2 "Playfair Display", serif; }
.ocani-shell-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.ocani-shell-footer a,
.ocani-shell-footer-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  font: 300 14px/1.5 Inter, sans-serif;
}
.ocani-shell-footer a:hover,
.ocani-shell-footer-link:hover { color: var(--ocani-gold); }
.ocani-shell-footer-social { display: flex; flex-wrap: wrap; gap: 8px; }
.ocani-shell-footer-social a { width: 34px; height: 34px; border: 1px solid rgba(209,176,107,.40); border-radius: 50%; color: rgba(231,201,138,.82); background: transparent; box-shadow: inset 0 1px 2px rgba(1,22,19,.24), inset 0 -1px 0 rgba(244,241,234,.035); display: inline-flex; align-items: center; justify-content: center; font-size: 11px; transition: color .22s ease, border-color .22s ease, box-shadow .22s ease, filter .22s ease; }
.ocani-shell-footer-social a:hover,
.ocani-shell-footer-social a:focus-visible { border-color: rgba(231,201,138,.78); color: #e7c98a; box-shadow: inset 0 1px 2px rgba(1,22,19,.24), 0 0 10px rgba(209,176,107,.24); filter: drop-shadow(0 0 3px rgba(231,201,138,.28)); }
.ocani-shell-footer-social a svg { width: 16px; height: 16px; }
.ocani-shell-footer .ocani-shell-music,
.ocani-shell-footer .ocani-shell-music.is-playing {
  width: 68px;
  min-width: 68px;
  height: 34px;
  padding-inline: 10px;
  font-size: 9px;
  border: 0;
  background: transparent;
  text-shadow: none;
  box-shadow:
    inset 0 1px 2px rgba(1, 22, 19, .28),
    inset 0 -1px 0 rgba(244, 241, 234, .045);
  transition: color .22s ease, box-shadow .22s ease, text-shadow .22s ease;
}
.ocani-shell-footer .ocani-shell-music:hover,
.ocani-shell-footer .ocani-shell-music.is-playing:hover {
  background: transparent;
  color: #e7c98a;
  text-shadow: 0 0 7px rgba(231, 201, 138, .58);
  box-shadow:
    inset 0 1px 3px rgba(1, 22, 19, .34),
    inset 0 -1px 0 rgba(244, 241, 234, .055),
    0 0 10px rgba(209, 176, 107, .22);
}
.ocani-shell-footer-logo { height: 40px; width: auto; opacity: .9; margin-bottom: 10px; }
.ocani-shell-footer p { margin: 0; font: 300 14px/1.65 Inter, sans-serif; }
.ocani-shell-footer-bottom { margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); display: grid; grid-template-columns: minmax(44px, 1fr) auto minmax(44px, 1fr); align-items: center; gap: 16px; }
.ocani-shell-legal { grid-column: 2; display: flex; flex-wrap: nowrap; align-items: center; justify-content: center; gap: 18px; white-space: nowrap; font: 500 10px/1.4 Inter, sans-serif; letter-spacing: .16em; text-transform: uppercase; }
.ocani-shell-policies { display: flex; align-items: center; justify-content: center; gap: 8px; white-space: nowrap; }
.ocani-shell-legal button { font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.ocani-shell-up { grid-column: 3; justify-self: end; width: 44px; height: 44px; border-radius: 50%; background: var(--ocani-gold); color: var(--ocani-deep); font-size: 22px; }

.ocani-shell-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.ocani-shell-modal.is-open { display: flex; }
.ocani-shell-modal-backdrop { position: absolute; inset: 0; background: rgba(5,35,32,.66); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.ocani-shell-modal-card { position: relative; width: min(100%, 560px); max-height: 88vh; overflow: auto; border: 1px solid rgba(209,176,107,.38); border-radius: 24px; background: linear-gradient(145deg, #eceadf 0%, #e4e8dc 58%, #e8e2d7 100%); color: var(--ocani-deep); box-shadow: 0 22px 64px rgba(0,0,0,.30); }
.ocani-shell-modal-head { position: relative; padding: 31px 60px 28px; color: white; text-align: center; background: linear-gradient(115deg, #0a3834 0%, #104f49 56%, #155f58 100%); }
.ocani-shell-modal-head h2 { margin: 0 0 5px; color: var(--ocani-gold); font: 400 30px/1.15 "Playfair Display", serif; }
.ocani-shell-modal-head p { margin: 0; color: rgba(255,255,255,.65); font: 600 10px/1.4 Inter, sans-serif; letter-spacing: .13em; text-transform: uppercase; }
.ocani-shell-modal-x { position: absolute; top: 17px; right: 17px; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; background: transparent; color: white; cursor: pointer; font-size: 24px; }
.ocani-shell-modal-body { padding: 30px 32px 32px; font: 400 13px/1.65 Inter, sans-serif; }
.ocani-shell-modal-body form { display: grid; gap: 13px; }
.ocani-shell-modal-body input,
.ocani-shell-modal-body textarea { width: 100%; box-sizing: border-box; border: 1px solid rgba(10,56,52,.22); border-radius: 12px; padding: 12px 14px; background: rgba(247,244,234,.82); color: var(--ocani-deep); font: 400 14px/1.4 Inter, sans-serif; box-shadow: inset 0 1px 3px rgba(10,56,52,.04); }
.ocani-shell-modal-body input::placeholder,
.ocani-shell-modal-body textarea::placeholder { color: rgba(10,56,52,.48); }
.ocani-shell-modal-body input:focus,
.ocani-shell-modal-body textarea:focus { outline: 0; border-color: rgba(164,122,40,.62); background: rgba(250,247,238,.94); box-shadow: 0 0 0 3px rgba(209,176,107,.12); }
.ocani-shell-modal-submit { min-height: 46px; border: 0; border-radius: 999px; background: var(--ocani-green); color: white; font: 700 12px/1 Inter, sans-serif; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; }

/* Los formularios React de las páginas interiores comparten el mismo acabado sereno. */
[class~="fixed"][class~="inset-0"][class~="z-[100]"] > [class~="absolute"][class~="inset-0"] {
  background: rgba(5,35,32,.66) !important;
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
}
[class~="fixed"][class~="inset-0"][class~="z-[100]"] > [class~="relative"][class~="bg-cream"] {
  border: 1px solid rgba(209,176,107,.38) !important;
  background: linear-gradient(145deg, #eceadf 0%, #e4e8dc 58%, #e8e2d7 100%) !important;
  color: var(--ocani-deep) !important;
  box-shadow: 0 22px 64px rgba(0,0,0,.30) !important;
}
[class~="fixed"][class~="inset-0"][class~="z-[100]"] > [class~="relative"][class~="bg-cream"] > .header-gradient {
  background: linear-gradient(115deg, #0a3834 0%, #104f49 56%, #155f58 100%) !important;
}
[class~="fixed"][class~="inset-0"][class~="z-[100]"] > [class~="relative"][class~="bg-cream"] input:not([type="hidden"]),
[class~="fixed"][class~="inset-0"][class~="z-[100]"] > [class~="relative"][class~="bg-cream"] textarea {
  border-color: rgba(10,56,52,.22) !important;
  background: rgba(247,244,234,.82) !important;
  color: var(--ocani-deep) !important;
  box-shadow: inset 0 1px 3px rgba(10,56,52,.04) !important;
}
[class~="fixed"][class~="inset-0"][class~="z-[100]"] > [class~="relative"][class~="bg-cream"] input::placeholder,
[class~="fixed"][class~="inset-0"][class~="z-[100]"] > [class~="relative"][class~="bg-cream"] textarea::placeholder {
  color: rgba(10,56,52,.48) !important;
}
[class~="fixed"][class~="inset-0"][class~="z-[100]"] > [class~="relative"][class~="bg-cream"] input:focus,
[class~="fixed"][class~="inset-0"][class~="z-[100]"] > [class~="relative"][class~="bg-cream"] textarea:focus {
  outline: 0 !important;
  border-color: rgba(164,122,40,.62) !important;
  background: rgba(250,247,238,.94) !important;
  box-shadow: 0 0 0 3px rgba(209,176,107,.12) !important;
}
.ocani-shell-policy-copy { display: grid; gap: 15px; color: rgba(10,56,52,.8); }
.ocani-shell-policy-copy p { margin: 0; }
.ocani-shell-policy-copy strong { color: rgba(10,56,52,.88); font-weight: 700; }
.ocani-shell-policy-actions { display: flex; gap: 16px; padding-top: 15px; }
.ocani-shell-policy-button {
  flex: 1 1 0;
  min-height: 48px;
  border-radius: 999px;
  font: 700 10px/1 Inter, sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease;
}
.ocani-shell-policy-button.is-secondary { border: 1px solid var(--ocani-green); background: white; color: var(--ocani-green); }
.ocani-shell-policy-button.is-secondary:hover { background: rgba(12,94,89,.06); }
.ocani-shell-policy-button.is-primary { border: 1px solid var(--ocani-green); background: var(--ocani-green); color: white; }
.ocani-shell-policy-button.is-primary:hover { background: #104541; }
body.ocani-shell-locked { overflow: hidden; }

/*
 * Compatibilidad móvil y tablet:
 * Samsung Internet y algunos Chromium móviles pueden repintar por bloques
 * cuando una capa fija con backdrop-filter se anima sobre fondos complejos.
 * Conservamos la transparencia del menú, pero evitamos el desenfoque dinámico
 * y la doble transición en dispositivos táctiles o pantallas pequeñas.
 */
@media (max-width: 1024px), (hover: none), (pointer: coarse) {
  .ocani-shell-overlay {
    background: rgba(3,28,24,.34);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .ocani-shell-drawer {
    background: rgba(5,55,50,.88);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: transform .24s ease;
  }

  .ocani-shell-modal-backdrop,
  [class~="fixed"][class~="inset-0"][class~="z-[100]"] > [class~="absolute"][class~="inset-0"] {
    background: rgba(5,35,32,.76) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

/* Distribuye mejor los controles de la cabecera en tablet y teléfono. */
@media (max-width: 1024px) {
  .ocani-shell-header .ocani-shell-logo {
    margin-right: clamp(5px, 1vw, 10px);
  }

  .ocani-shell-header .ocani-shell-contact {
    margin-right: clamp(5px, 1vw, 10px);
  }

  .ocani-shell-header .ocani-shell-language + .ocani-shell-language {
    margin-left: clamp(4px, .8vw, 8px);
  }
}

@media (max-width: 760px) {
  .ocani-shell-divider { display: none; }
  .ocani-shell-header .ocani-shell-user { display: none; }
  .ocani-shell-drawer-user { display: inline-flex; }
  .ocani-shell-bar { width: min(100% - 8px, 1280px); padding-inline: 4px; gap: 7px; }
  .ocani-shell-cluster { gap: 7px; }
  .ocani-shell-actions { gap: 6px; }
  .ocani-shell-icon,
  .ocani-shell-user { width: 36px; height: 42px; }
  .ocani-shell-icon svg,
  .ocani-shell-user svg { width: 22px; height: 22px; }
  .ocani-shell-logo img { height: 30px; }
  .ocani-shell-music,
  .ocani-shell-header .ocani-shell-music { min-width: 58px; height: 28px; padding-inline: 8px; font-size: 9px; }
  .ocani-shell-contact { display: inline-flex; align-items: center; justify-content: center; width: 74px; height: 28px; min-height: 28px; padding-inline: 7px; font-size: 9px; }
  .ocani-shell-language { font-size: 10.5px; letter-spacing: .01em; padding: 7px 3px; }
  .ocani-shell-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 20px; }
  .ocani-shell-footer-grid > section { min-width: 0; }
  .ocani-shell-footer-social { flex-wrap: nowrap; gap: 5px; }
  .ocani-shell-footer .ocani-shell-music,
  .ocani-shell-footer .ocani-shell-music.is-playing {
    width: 50px;
    min-width: 50px;
    height: 34px;
    padding-inline: 4px;
    font-size: 8.5px;
  }
  .ocani-shell-footer a,
  .ocani-shell-footer-link { overflow-wrap: anywhere; }
  .ocani-shell-footer-bottom { grid-template-columns: 1fr; justify-items: center; }
  .ocani-shell-legal { grid-column: 1; flex-direction: column; gap: 10px; }
  .ocani-shell-policies { gap: 6px; }
  .ocani-shell-policies button { font-size: 9px; letter-spacing: .08em; }
  .ocani-shell-up { grid-column: 1; justify-self: center; }
  .ocani-shell-footer { padding-bottom: 27px; }
  .ocani-shell-footer::after {
    height: 13px;
    background-size: 64px 13px;
  }
}

@media (max-width: 430px) {
  .ocani-shell-bar { width: calc(100% - 6px); padding-inline: 2px; gap: 4px; }
  .ocani-shell-cluster { gap: 5px; }
  .ocani-shell-actions { gap: 4px; }
  .ocani-shell-logo img { height: 28px; }
  .ocani-shell-icon,
  .ocani-shell-user { width: 33px; height: 40px; }
  .ocani-shell-icon svg,
  .ocani-shell-user svg { width: 21px; height: 21px; }
  .ocani-shell-music,
  .ocani-shell-header .ocani-shell-music { min-width: 56px; height: 27px; padding-inline: 6px; font-size: 9px; }
  .ocani-shell-contact { width: 70px; height: 27px; min-height: 27px; padding-inline: 5px; font-size: 9px; letter-spacing: .07em; }
  .ocani-shell-language { font-size: 10px; padding-inline: 2px; }
}

@media (max-width: 340px) {
  .ocani-shell-bar { gap: 2px; }
  .ocani-shell-cluster,
  .ocani-shell-actions { gap: 3px; }
  .ocani-shell-logo img { height: 22px; }
  .ocani-shell-icon,
  .ocani-shell-user { width: 28px; }
  .ocani-shell-music,
  .ocani-shell-header .ocani-shell-music { min-width: 46px; height: 25px; padding-inline: 4px; font-size: 7.5px; }
  .ocani-shell-contact { width: 56px; height: 25px; min-height: 25px; padding-inline: 3px; font-size: 7px; }
  .ocani-shell-language { font-size: 8.5px; padding-inline: 1px; }
  .ocani-shell-footer-grid > section:first-child { grid-column: 1 / -1; }
  .ocani-shell-footer .ocani-shell-music,
  .ocani-shell-footer .ocani-shell-music.is-playing { width: 68px; min-width: 68px; }
}

@media (max-width: 520px) {
  .ocani-shell-modal-head { padding: 26px 54px 23px; }
  .ocani-shell-modal-head h2 { font-size: 27px; }
  .ocani-shell-modal-body { padding: 24px 22px 26px; }
  .ocani-shell-policy-actions { gap: 10px; }
}
