@charset "utf-8";

/* Customer-facing COCOICOTTO pages: green palette and language control. */
.coco-customer-page {
  --coco-customer-ink: #0e211f;
  --coco-customer-muted: #6c7a76;
  --coco-customer-green: #1d9d86;
  --coco-customer-green-dark: #147563;
  --coco-customer-bg: #e9f0ee;
  --coco-customer-recess: #edf3f1;
  --coco-customer-panel: #f7faf9;
  --coco-customer-deep: rgba(31, 70, 62, 0.13);
  --coco-customer-light: rgba(255, 255, 255, 0.94);
  --coco-customer-gold-line: rgba(173, 137, 80, 0.36);
}

.coco-public-language-control {
  position: relative;
  z-index: 10000;
  width: 58px;
  min-width: 58px;
  color: var(--coco-customer-ink);
}

.coco-public-language-button {
  display: grid;
  place-items: center;
  align-content: center;
  grid-template-rows: 34px auto;
  gap: 1px;
  width: 58px;
  height: 58px;
  padding: 4px;
  color: var(--coco-customer-ink);
  background: var(--coco-customer-recess);
  border: 0;
  box-shadow:
    inset 4px 4px 8px var(--coco-customer-deep),
    inset -4px -4px 8px var(--coco-customer-light);
  outline: 1px solid var(--coco-customer-gold-line);
  outline-offset: -4px;
  cursor: pointer;
}

.coco-public-language-button img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.coco-public-language-label,
.coco-qr-customer-page .qr-language-label {
  color: inherit;
  font-size: 0.54rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.coco-public-language-options {
  position: absolute;
  top: 64px;
  right: 0;
  display: grid;
  width: 150px;
  padding: 6px;
  background: var(--coco-customer-recess);
  box-shadow:
    inset 4px 4px 8px var(--coco-customer-deep),
    inset -4px -4px 8px var(--coco-customer-light),
    0 12px 28px rgba(14, 33, 31, 0.18);
  outline: 1px solid var(--coco-customer-gold-line);
  outline-offset: -4px;
}

.coco-public-language-options[hidden] {
  display: none;
}

.coco-public-language-options button {
  width: 100%;
  min-height: 40px;
  padding: 8px 10px;
  color: var(--coco-customer-ink);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.coco-public-language-options button:hover,
.coco-public-language-options button[aria-current="true"] {
  color: #fff;
  background: var(--coco-customer-green);
}

.coco-public-language-enabled .bwg-format-header,
.coco-public-language-enabled .coco-public-header {
  grid-template-columns: auto minmax(0, 1fr) 58px 58px;
}

/* Customer QR menu/order pages use the same green COCOICOTTO surface. */
.coco-qr-customer-page {
  --qr-ink: var(--coco-customer-ink);
  --qr-muted: var(--coco-customer-muted);
  --qr-accent: var(--coco-customer-green);
  --qr-accent-dark: var(--coco-customer-green-dark);
  --qr-paper: var(--coco-customer-panel);
  --qr-bg: var(--coco-customer-bg);
  --qr-line: #c9d8d4;
  --qr-shadow: 0 12px 30px rgba(31, 70, 62, 0.1);
  color: var(--coco-customer-ink);
  background: var(--coco-customer-bg);
}

.coco-qr-customer-page #container,
.coco-qr-customer-page .qr-page-loader {
  background: var(--coco-customer-bg);
}

.coco-qr-customer-page .qr-page-loader-spinner {
  border-color: rgba(29, 157, 134, 0.2);
  border-top-color: var(--coco-customer-green);
}

.coco-qr-customer-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 58px 68px;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 108px;
  padding: 16px clamp(18px, 4vw, 58px);
  background: var(--coco-customer-recess);
  border: 0;
  box-shadow:
    inset 0 -7px 14px rgba(31, 70, 62, 0.08),
    inset 0 5px 10px rgba(255, 255, 255, 0.78);
  outline: 1px solid var(--coco-customer-gold-line);
  outline-offset: -4px;
  box-sizing: border-box;
}

.coco-qr-customer-header .coco-public-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.coco-qr-customer-header .coco-public-nav a {
  min-width: 112px;
  padding: 11px 14px;
  color: var(--coco-customer-ink);
  font-size: 0.76rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  background: var(--coco-customer-recess);
  box-shadow:
    inset 4px 4px 8px var(--coco-customer-deep),
    inset -4px -4px 8px var(--coco-customer-light);
  outline: 1px solid var(--coco-customer-gold-line);
  outline-offset: -4px;
}

.coco-qr-customer-page .coco-my-menu-trigger {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 3px;
  width: 68px;
  min-width: 68px;
  min-height: 58px;
  padding: 0;
  color: #231815;
  background: transparent;
  border: 0;
  box-shadow: none;
  cursor: pointer;
}

.coco-qr-customer-page .coco-person-icon,
.coco-qr-customer-page .coco-person-icon img {
  display: block;
  width: 36px;
  height: 36px;
}

.coco-qr-customer-page .coco-person-icon img {
  object-fit: contain;
}

.coco-qr-customer-page .coco-my-menu-trigger > strong {
  color: inherit;
  font-size: 0.68rem;
  line-height: 1;
  white-space: nowrap;
}

.coco-qr-customer-page .coco-my-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9998;
  visibility: hidden;
  background: rgba(14, 33, 31, 0.34);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0s linear 0.24s;
}

.coco-qr-customer-page .coco-my-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: grid;
  grid-template-rows: auto 1fr;
  width: min(60vw, 280px);
  min-height: 100dvh;
  color: #231815;
  background: var(--coco-customer-recess);
  box-shadow: -16px 0 34px rgba(24, 51, 46, 0.17);
  visibility: hidden;
  transform: translateX(100%);
  transition: transform 0.28s ease, visibility 0s linear 0.28s;
  overflow-y: auto;
}

.coco-qr-customer-page.coco-my-menu-open {
  overflow: hidden;
}

.coco-qr-customer-page.coco-my-menu-open .coco-my-menu-backdrop {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

.coco-qr-customer-page.coco-my-menu-open .coco-my-menu-panel {
  visibility: visible;
  transform: translateX(0);
  transition-delay: 0s;
}

.coco-qr-customer-page .coco-my-menu-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 84px;
  padding: 16px;
  border-bottom: 1px solid rgba(35, 24, 21, 0.13);
}

.coco-qr-customer-page .coco-my-menu-panel-head h2 {
  margin: 0;
  font-size: 1.15rem;
}

.coco-qr-customer-page .coco-my-menu-close {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0 0 3px;
  color: #231815;
  font: 300 2rem/1 Arial, sans-serif;
  background: transparent;
  border: 1px solid rgba(35, 24, 21, 0.26);
  border-radius: 50%;
  cursor: pointer;
}

.coco-qr-customer-page .coco-my-menu-panel-body {
  min-height: 0;
  padding: 24px 20px;
}

.coco-qr-customer-brand {
  display: inline-grid;
  grid-template-columns: 76px auto;
  align-items: center;
  gap: 17px;
  width: fit-content;
  color: var(--coco-customer-ink);
  text-decoration: none;
}

.coco-qr-customer-brand img {
  display: block;
  width: 76px;
  height: auto;
  margin: 0;
}

.coco-qr-customer-brand > span {
  display: grid;
  gap: 4px;
}

.coco-qr-customer-brand strong {
  font-size: 1.15rem;
  line-height: 1.1;
  letter-spacing: 0.04em;
}

.coco-qr-customer-brand small {
  color: var(--coco-customer-green);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.coco-qr-customer-page .qr-language-control {
  position: relative;
  top: auto;
  right: auto;
  width: 58px;
  min-width: 58px;
  order: 3;
}

.coco-qr-customer-page .coco-my-menu-trigger {
  order: 4;
}

.coco-qr-customer-page .qr-language-button {
  display: grid;
  place-items: center;
  align-content: center;
  grid-template-rows: 34px auto;
  gap: 1px;
  width: 58px;
  height: 58px;
  padding: 4px;
  background: var(--coco-customer-recess);
  border: 0;
  box-shadow:
    inset 4px 4px 8px var(--coco-customer-deep),
    inset -4px -4px 8px var(--coco-customer-light);
  outline: 1px solid var(--coco-customer-gold-line);
  outline-offset: -4px;
}

.coco-qr-customer-page .qr-language-button img {
  width: 34px;
  height: 34px;
}

.coco-qr-customer-page .qr-language-options {
  top: 64px;
  border: 0;
  box-shadow:
    inset 4px 4px 8px var(--coco-customer-deep),
    inset -4px -4px 8px var(--coco-customer-light),
    0 12px 28px rgba(14, 33, 31, 0.18);
  outline: 1px solid var(--coco-customer-gold-line);
  outline-offset: -4px;
}

.coco-qr-customer-page .qr-language-options button[aria-checked="true"],
.coco-qr-customer-page .qr-language-options button:hover {
  color: #fff;
  background: var(--coco-customer-green);
}

.coco-qr-customer-page .search-btn,
.coco-qr-customer-page .qr-directory-primary-link {
  background: var(--coco-customer-green);
  border-color: var(--coco-customer-green);
}

.coco-qr-customer-page .search-btn {
  color: #fff;
}

.coco-qr-customer-page .order-cart-bar {
  color: var(--coco-customer-ink);
  background: #edf4f1;
  border: 0;
  box-shadow:
    inset 4px 4px 8px var(--coco-customer-deep),
    inset -4px -4px 8px var(--coco-customer-light),
    0 -8px 22px rgba(14, 33, 31, 0.1);
  outline: 1px solid var(--coco-customer-gold-line);
  outline-offset: -4px;
}

.coco-qr-customer-page .order-cart-bar *,
.coco-qr-customer-page .order-cart-bar #orderTotal,
.coco-qr-customer-page .order-cart-bar #cartTotal {
  color: var(--coco-customer-ink);
}

.coco-qr-customer-page .order-cart-bar .search-btn {
  color: #fff;
  background: var(--coco-customer-green);
  border-color: var(--coco-customer-green);
}

.coco-qr-customer-page .order-cart-bar .search-btn:disabled {
  color: #677772;
  background: #d9e6e1;
  border-color: transparent;
  box-shadow:
    inset 3px 3px 7px rgba(31, 70, 62, 0.1),
    inset -3px -3px 7px rgba(255, 255, 255, 0.72);
  opacity: 1;
}

.coco-qr-customer-page .qr-category-nav button {
  color: var(--coco-customer-ink);
}

.coco-qr-customer-page .qr-category-nav button.is-active,
.coco-qr-customer-page .qr-category-nav button[aria-current="true"] {
  color: #fff;
  background: var(--coco-customer-green);
}

.coco-qr-customer-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto auto;
  align-items: center;
  gap: 32px;
  min-height: 190px;
  margin-top: 90px;
  padding: 42px clamp(24px, 6vw, 90px);
  color: #231815;
  background: var(--coco-customer-recess);
  box-shadow:
    inset 0 8px 16px rgba(31, 70, 62, 0.1),
    inset 0 -5px 10px rgba(255, 255, 255, 0.75);
  outline: 1px solid var(--coco-customer-gold-line);
  outline-offset: -4px;
}

.coco-qr-customer-footer nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.coco-qr-customer-footer nav a,
.coco-qr-customer-footer > small {
  color: #231815;
  font-size: 0.76rem;
  font-weight: 800;
}

/* Match My menu to the framed language button on every customer page. */
.coco-customer-page .coco-my-menu-trigger,
.coco-customer-page.cocoicotto-home[data-directory-variant="C"] .coco-my-menu-trigger {
  display: grid;
  flex: 0 0 58px;
  place-items: center;
  align-content: center;
  gap: 1px;
  width: 58px;
  min-width: 58px;
  height: 58px;
  min-height: 58px;
  margin: 0;
  padding: 4px;
  color: #231815;
  background: var(--coco-customer-recess);
  border: 0;
  border-radius: 0;
  box-shadow:
    inset 4px 4px 8px var(--coco-customer-deep),
    inset -4px -4px 8px var(--coco-customer-light);
  outline: 1px solid var(--coco-customer-gold-line);
  outline-offset: -4px;
}

.coco-customer-page .coco-person-icon,
.coco-customer-page .coco-person-icon img,
.coco-customer-page.cocoicotto-home[data-directory-variant="C"] .coco-person-icon,
.coco-customer-page.cocoicotto-home[data-directory-variant="C"] .coco-person-icon img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.coco-customer-page .coco-my-menu-trigger > strong,
.coco-customer-page.cocoicotto-home[data-directory-variant="C"] .coco-my-menu-trigger > strong {
  color: inherit;
  font-size: 0.54rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.coco-customer-page .coco-my-menu-trigger:focus-visible,
.coco-customer-page.cocoicotto-home[data-directory-variant="C"] .coco-my-menu-trigger:focus-visible {
  outline: 1px solid var(--coco-customer-gold-line);
  outline-offset: -4px;
  box-shadow:
    inset 4px 4px 8px var(--coco-customer-deep),
    inset -4px -4px 8px var(--coco-customer-light),
    0 0 0 3px rgba(29, 157, 134, 0.2);
}

@media (max-width: 760px) {
  .coco-public-language-enabled .bwg-format-header,
  .coco-public-language-enabled .coco-public-header {
    grid-template-columns: minmax(0, 1fr) 52px 52px;
    gap: 8px;
  }

  .coco-public-language-control,
  .coco-public-language-button {
    width: 52px;
    min-width: 52px;
    height: 54px;
  }

  .coco-public-language-button img {
    width: 32px;
    height: 32px;
  }

  .coco-public-language-button,
  .coco-qr-customer-page .qr-language-button {
    grid-template-rows: 32px auto;
  }

  .coco-public-language-label,
  .coco-qr-customer-page .qr-language-label {
    font-size: 0.5rem;
  }

  .coco-customer-page .coco-my-menu-trigger,
  .coco-customer-page.cocoicotto-home[data-directory-variant="C"] .coco-my-menu-trigger {
    flex-basis: 52px;
    width: 52px;
    min-width: 52px;
    height: 54px;
    min-height: 54px;
    padding: 3px;
  }

  .coco-customer-page .coco-person-icon,
  .coco-customer-page .coco-person-icon img,
  .coco-customer-page.cocoicotto-home[data-directory-variant="C"] .coco-person-icon,
  .coco-customer-page.cocoicotto-home[data-directory-variant="C"] .coco-person-icon img {
    width: 32px;
    height: 32px;
  }

  .coco-customer-page .coco-my-menu-trigger > strong,
  .coco-customer-page.cocoicotto-home[data-directory-variant="C"] .coco-my-menu-trigger > strong {
    font-size: 0.5rem;
  }

  .coco-qr-customer-header {
    grid-template-columns: minmax(0, 1fr) 52px 52px;
    gap: 8px;
    min-height: 92px;
    padding: 9px 14px;
  }

  .coco-qr-customer-header .coco-public-nav {
    display: none;
  }

  .coco-qr-customer-brand {
    grid-template-columns: 66px auto;
    gap: 13px;
  }

  .coco-qr-customer-brand img {
    width: 66px;
  }

  .coco-qr-customer-brand strong {
    font-size: 1rem;
  }

  .coco-qr-customer-page .qr-language-control,
  .coco-qr-customer-page .qr-language-button {
    width: 52px;
    min-width: 52px;
    height: 54px;
  }

  .coco-qr-customer-footer {
    grid-template-columns: 1fr;
    min-height: 0;
    margin-top: 72px;
    padding: 34px 18px;
  }

  .coco-qr-customer-footer nav {
    justify-content: flex-start;
  }
}

/* Customer footer links: primary routes and site information share one panel. */
.coco-footer-primary,
.coco-footer-information {
  display: grid !important;
  justify-content: stretch !important;
  gap: 0 !important;
  grid-column: 1 / -1;
  width: min(100%, 760px);
  margin-inline: auto;
  background: #edf3f1;
  border: 1px solid rgba(173, 137, 80, 0.42);
  box-shadow:
    inset 5px 5px 10px rgba(31, 70, 62, 0.09),
    inset -5px -5px 10px rgba(255, 255, 255, 0.84);
}

.coco-footer-primary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
  border-bottom: 0;
}

.coco-footer-information {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0;
}

.coco-footer-primary a,
.coco-footer-information a {
  color: #231815 !important;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  border-left: 1px solid rgba(35, 24, 21, 0.24);
  text-decoration: none !important;
}

.coco-footer-primary a {
  padding: 13px 10px;
  color: #17352f !important;
  font-size: .78rem !important;
}

.coco-footer-information a {
  padding: 10px 8px;
  font-size: .68rem !important;
}

.coco-footer-primary a:first-child,
.coco-footer-information a:first-child {
  border-left: 0;
}

@media (hover: hover) {
  .coco-footer-primary a:hover,
  .coco-footer-primary a:focus-visible {
    color: #fff !important;
    background: #1d9b83;
  }

  .coco-footer-information a:hover,
  .coco-footer-information a:focus-visible {
    color: #fff !important;
    background: #f16f50;
  }
}

@media (max-width: 700px) {
  .coco-footer-primary,
  .coco-footer-information {
    width: min(100%, 360px);
  }

  .coco-footer-primary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .coco-footer-information {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coco-footer-primary a,
  .coco-footer-information a {
    padding: 11px 6px;
  }

  .coco-footer-information a {
    border-top: 1px solid rgba(35, 24, 21, 0.2);
  }

  .coco-footer-information a:nth-child(odd) {
    border-left: 0;
  }

  .coco-footer-information a:nth-child(-n + 2) {
    border-top: 0;
  }
}

/* Shared Cocoicotto wordmark in customer-facing headers and footers. */
.coco-customer-page .cocoicotto-wordmark-brand,
.bwc-public-page .cocoicotto-wordmark-brand {
  display: inline-grid !important;
  grid-template-columns: minmax(98px, 112px) auto !important;
  align-items: center;
  gap: 12px !important;
  width: fit-content !important;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.coco-customer-page .cocoicotto-wordmark-brand > .cocoicotto-wordmark-logo,
.bwc-public-page .cocoicotto-wordmark-brand > .cocoicotto-wordmark-logo {
  display: block;
  width: 112px !important;
  height: auto !important;
  max-width: 100%;
  max-height: 30px !important;
  margin: 0 !important;
  object-fit: contain;
  object-position: left center;
  filter: none !important;
}

.coco-customer-page .cocoicotto-wordmark-brand > span,
.bwc-public-page .cocoicotto-wordmark-brand > span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.coco-customer-page .cocoicotto-wordmark-brand strong,
.bwc-public-page .cocoicotto-wordmark-brand strong {
  line-height: 1;
  white-space: nowrap;
}

.coco-customer-page .cocoicotto-wordmark-brand small,
.bwc-public-page .cocoicotto-wordmark-brand small {
  white-space: nowrap;
}

/* Directory detail and guide footers are dark, so show the supplied mark in white. */
.qr-directory-page:not(.cocoicotto-home) .qr-directory-footer
  .cocoicotto-wordmark-logo {
  filter: invert(1) !important;
}

@media (max-width: 760px) {
  .coco-customer-page .cocoicotto-wordmark-brand > .cocoicotto-wordmark-logo,
  .bwc-public-page .cocoicotto-wordmark-brand > .cocoicotto-wordmark-logo {
    width: 88px !important;
    max-height: 24px !important;
  }

  .coco-customer-page .cocoicotto-wordmark-brand,
  .bwc-public-page .cocoicotto-wordmark-brand {
    grid-template-columns: 88px auto !important;
    gap: 8px !important;
  }
}

/* Supplied full COCOICOTTO wordmark: customer-facing headers only. */
.coco-customer-page header .cocoicotto-wordmark-brand,
.bwc-public-page header .cocoicotto-wordmark-brand {
  display: inline-grid !important;
  grid-template-columns: minmax(140px, 160px) auto !important;
  align-items: center;
  gap: 12px !important;
  width: fit-content !important;
  min-width: 0;
}

.coco-customer-page header .cocoicotto-wordmark-brand > .cocoicotto-header-logo,
.bwc-public-page header .cocoicotto-wordmark-brand > .cocoicotto-header-logo {
  display: block;
  width: 160px !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 48px !important;
  object-fit: contain;
  object-position: left center;
}

.coco-customer-page header .cocoicotto-wordmark-brand > .cocoicotto-header-logo + span,
.bwc-public-page header .cocoicotto-wordmark-brand > .cocoicotto-header-logo + span {
  display: grid !important;
}

@media (max-width: 760px) {
  .coco-customer-page header .cocoicotto-wordmark-brand,
  .bwc-public-page header .cocoicotto-wordmark-brand {
    grid-template-columns: 112px auto !important;
    gap: 8px !important;
    width: fit-content !important;
  }

  .coco-customer-page header .cocoicotto-wordmark-brand > .cocoicotto-header-logo,
  .bwc-public-page header .cocoicotto-wordmark-brand > .cocoicotto-header-logo {
    width: 112px !important;
    max-width: 112px !important;
    max-height: 34px !important;
  }
}

/* Match customer-facing footers to the supplied header wordmark. */
.coco-customer-page footer .cocoicotto-wordmark-brand,
.bwc-public-page footer .cocoicotto-wordmark-brand {
  display: inline-grid !important;
  grid-template-columns: minmax(140px, 160px) auto !important;
  align-items: center;
  gap: 12px !important;
  width: fit-content !important;
  min-width: 0;
}

.coco-customer-page footer .cocoicotto-wordmark-brand > .cocoicotto-footer-logo,
.bwc-public-page footer .cocoicotto-wordmark-brand > .cocoicotto-footer-logo {
  display: block;
  width: 160px !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 48px !important;
  object-fit: contain;
  object-position: left center;
  filter: none !important;
}

.coco-customer-page footer .cocoicotto-wordmark-brand > .cocoicotto-footer-logo + span,
.bwc-public-page footer .cocoicotto-wordmark-brand > .cocoicotto-footer-logo + span {
  display: grid !important;
}

@media (max-width: 760px) {
  .coco-customer-page footer .cocoicotto-wordmark-brand,
  .bwc-public-page footer .cocoicotto-wordmark-brand {
    grid-template-columns: 112px auto !important;
    gap: 8px !important;
  }

  .coco-customer-page footer .cocoicotto-wordmark-brand > .cocoicotto-footer-logo,
  .bwc-public-page footer .cocoicotto-wordmark-brand > .cocoicotto-footer-logo {
    width: 112px !important;
    max-width: 112px !important;
    max-height: 34px !important;
  }
}

/* Icon-only header actions: keep the frames fixed and use the full inner area. */
.coco-public-language-button,
.coco-qr-customer-page .qr-language-button,
.coco-customer-page .coco-my-menu-trigger,
.coco-customer-page.cocoicotto-home[data-directory-variant="C"] .coco-my-menu-trigger {
  grid-template-rows: 1fr;
  gap: 0;
}

.coco-public-language-button img,
.coco-qr-customer-page .qr-language-button img,
.coco-customer-page .coco-person-icon,
.coco-customer-page .coco-person-icon img,
.coco-customer-page.cocoicotto-home[data-directory-variant="C"] .coco-person-icon,
.coco-customer-page.cocoicotto-home[data-directory-variant="C"] .coco-person-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.coco-public-language-label,
.coco-qr-customer-page .qr-language-label,
.coco-customer-page .coco-my-menu-trigger > strong,
.coco-customer-page.cocoicotto-home[data-directory-variant="C"] .coco-my-menu-trigger > strong {
  display: none;
}

@media (max-width: 760px) {
  .coco-public-language-button img,
  .coco-qr-customer-page .qr-language-button img,
  .coco-customer-page .coco-person-icon,
  .coco-customer-page .coco-person-icon img,
  .coco-customer-page.cocoicotto-home[data-directory-variant="C"] .coco-person-icon,
  .coco-customer-page.cocoicotto-home[data-directory-variant="C"] .coco-person-icon img {
    width: 44px;
    height: 46px;
  }
}
