:root {
  --chrome-ink: #101c18;
  --chrome-green: #0d3f34;
  --chrome-green-2: #0f705c;
  --chrome-accent: #12a884;
  --chrome-gold: #c5a45a;
  --chrome-ivory: #fbfaf7;
  --chrome-muted: #c7d8d1;
  --chrome-border: #e3e9e6;
  --chrome-white: #ffffff;
  --chrome-container: 1600px;
  --chrome-shadow: 0 22px 54px rgba(15, 35, 48, .12);
}

.ed-chrome-topbar {
  background: #0b342b;
  color: #f2fffb;
  font-size: 0.92rem;
  font-weight: 800;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.ed-chrome-container {
  width: min(var(--chrome-container), calc(100% - 32px));
  margin: 0 auto;
}

.ed-chrome-topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.ed-chrome-topbar-left,
.ed-chrome-topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ed-chrome-topbar a,
.ed-chrome-footer a {
  color: inherit;
  text-decoration: none;
}

.ed-chrome-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid rgba(13,63,52,.10);
  box-shadow: 0 10px 30px rgba(15,35,48,.05);
  backdrop-filter: blur(18px);
}

.ed-chrome-header-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(12px, 1.5vw, 24px);
  align-items: center;
}

.ed-chrome-logo {
  display: inline-flex;
  align-items: center;
}

.ed-chrome-logo img {
  display: block;
  width: clamp(108px, 7.6vw, 134px);
  max-height: 84px;
  object-fit: contain;
  border-radius: 0;
}

.ed-chrome-nav {
  display: flex;
  justify-content: center;
  gap: clamp(8px, .8vw, 14px);
  flex-wrap: wrap;
  min-width: 0;
  overflow: hidden;
}

.ed-chrome-nav a {
  position: relative;
  color: #2f3b3f;
  text-decoration: none;
  font-size: clamp(.8rem, .76vw, .9rem);
  font-weight: 900;
  line-height: 1;
  padding: 12px 2px;
  white-space: nowrap;
  transition: color .2s ease;
}

.ed-chrome-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: var(--chrome-accent);
  opacity: 0;
  transform: scaleX(.4);
  transition: opacity .2s ease, transform .2s ease;
}

.ed-chrome-nav a:hover,
.ed-chrome-nav a.is-active {
  color: var(--chrome-green-2);
}

.ed-chrome-nav a:hover::after,
.ed-chrome-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.ed-chrome-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: nowrap;
  min-width: 0;
}

.ed-chrome-icon,
.ed-chrome-login {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--chrome-border);
  background: var(--chrome-white);
  color: var(--chrome-ink);
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(15,35,48,.07);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.ed-chrome-icon:hover,
.ed-chrome-login:hover {
  transform: translateY(-1px);
  border-color: rgba(15,112,92,.28);
  box-shadow: var(--chrome-shadow);
}

.ed-chrome-icon {
  position: relative;
  min-width: 66px;
  border-radius: 14px;
  font-size: .86rem;
  padding: 0 12px;
  letter-spacing: 0;
}

.ed-chrome-cart-action{
  padding-right:18px;
}

.ed-chrome-login {
  border-radius: 14px;
  padding: 0 15px;
}

.ed-chrome-logout {
  cursor: pointer;
  font-family: inherit;
}

.ed-chrome-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--chrome-border);
  border-radius: 14px;
  background: var(--chrome-white);
  box-shadow: 0 12px 28px rgba(15,35,48,.07);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.ed-chrome-menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #0d3f34;
  transition: transform .2s ease, opacity .2s ease;
}

.ed-chrome-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.ed-chrome-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.ed-chrome-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.ed-chrome-mobile-panel {
  position: absolute;
  left: 16px;
  right: 16px;
  top: calc(100% + 10px);
  z-index: 1002;
  display: none;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(220px, .8fr);
  gap: 14px;
  max-height: calc(100vh - 138px);
  overflow: auto;
  padding: 16px;
  border: 1px solid rgba(13,63,52,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 28px 70px rgba(15,35,48,.22);
}

.ed-chrome-mobile-panel.is-open {
  display: grid;
}

.ed-mobile-group,
.ed-mobile-actions {
  display: grid;
  gap: 8px;
  align-content: start;
}

.ed-mobile-group strong {
  color: #0d3f34;
  font-size: .84rem;
  text-transform: uppercase;
}

.ed-mobile-group a,
.ed-mobile-actions a,
.ed-mobile-actions button {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 13px;
  border: 1px solid rgba(13,63,52,.10);
  border-radius: 12px;
  background: #f8fbfa;
  color: #20342f;
  text-decoration: none;
  font: inherit;
  font-weight: 850;
}

.ed-mobile-group a.is-active,
.ed-mobile-group a:hover,
.ed-mobile-actions a:hover,
.ed-mobile-actions button:hover {
  border-color: rgba(15,112,92,.24);
  background: #e8f8f3;
  color: #0f705c;
}

.ed-mobile-actions button {
  cursor: pointer;
}

body.ed-mobile-menu-open {
  overflow: hidden;
}

body.ed-mobile-menu-open .ed-luxury-cookie {
  display: none;
}

body.ed-mobile-menu-open .ed-chrome-contact-float {
  display: none;
}

@media (min-width: 1080px) {
  .ed-chrome-nav,
  .ed-chrome-actions {
    flex-wrap: nowrap;
  }
}

@media (max-width: 1450px) {
  .ed-chrome-nav {
    display: none;
  }

  .ed-chrome-menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 900px) {
  .ed-chrome-topbar {
    font-size: .8rem;
  }

  .ed-chrome-topbar-inner {
    min-height: 34px;
    gap: 8px;
  }

  .ed-topbar-separator,
  .ed-topbar-secondary,
  .ed-topbar-email {
    display: none;
  }

  .ed-chrome-topbar-left {
    flex: 1 1 auto;
  }

  .ed-chrome-topbar-right {
    flex: 0 0 auto;
  }

  .ed-chrome-topbar-left,
  .ed-chrome-topbar-right {
    flex-wrap: nowrap;
    min-width: 0;
  }

  .ed-chrome-topbar-left span,
  .ed-chrome-topbar-right a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .ed-chrome-header-inner {
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 74px;
    gap: 12px;
    padding: 8px 0;
  }

  .ed-chrome-actions {
    gap: 8px;
    justify-content: flex-end;
  }

  .ed-chrome-actions > .ed-chrome-icon:not(.ed-chrome-cart-action),
  .ed-chrome-actions > .ed-chrome-account,
  .ed-chrome-actions > .ed-chrome-logout {
    display: none;
  }

  .ed-chrome-cart-action {
    min-width: 50px;
    width: 50px;
    padding: 0;
  }

  .ed-chrome-cart-action span:first-child {
    font-size: 0;
    position: relative;
    display: inline-block;
    width: 19px;
    height: 18px;
  }

  .ed-chrome-cart-action span:first-child::before {
    content: "";
    position: absolute;
    left: 2px;
    right: 2px;
    bottom: 1px;
    height: 10px;
    border: 2px solid #0d3f34;
    border-radius: 3px;
    background: transparent;
  }

  .ed-chrome-cart-action span:first-child::after {
    content: "";
    position: absolute;
    left: 6px;
    right: 6px;
    top: 1px;
    height: 8px;
    border: 2px solid #0d3f34;
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
  }

  .ed-chrome-mobile-panel {
    left: 12px;
    right: 12px;
    grid-template-columns: 1fr;
    max-height: calc(100vh - 118px);
  }
}

.ed-chrome-count {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  border-radius: 999px;
  background: #ff4d4f;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.ed-chrome-footer {
  background:
    linear-gradient(180deg, #0d1714 0%, #09120f 100%);
  color: var(--chrome-muted);
  padding: 76px 0 30px;
}

.ed-chrome-footer-grid {
  display: grid;
  grid-template-columns: minmax(230px, 1.25fr) repeat(4, minmax(150px, 1fr));
  gap: 44px;
}

.ed-chrome-footer-brand img {
  display: block;
  width: 108px;
  margin-bottom: 20px;
}

.ed-chrome-footer-brand p {
  max-width: 310px;
  margin: 0;
  line-height: 1.55;
}

.ed-chrome-footer h3 {
  color: #fff;
  font-size: 1.02rem;
  margin: 0 0 18px;
}

.ed-chrome-footer ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ed-chrome-footer a:hover {
  color: #fff;
}

.ed-chrome-footer-bottom {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.ed-chrome-contact-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #65df55, #37c86a);
  color: #10221d;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 1.45rem;
  box-shadow: 0 18px 38px rgba(0,0,0,0.20);
  z-index: 1000;
}

.ed-chrome-contact-float:hover {
  transform: translateY(-2px);
}

body:not([class*="admin"]) {
  background:
    radial-gradient(circle at 12% 0%, rgba(18,168,132,.08), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(197,164,90,.10), transparent 26%),
    linear-gradient(180deg, #fbfaf7 0%, #f1f6f3 46%, #eef4f2 100%);
  color: var(--chrome-ink);
  text-rendering: optimizeLegibility;
}

body:not([class*="admin"]) .ed-card,
body:not([class*="admin"]) .card,
body:not([class*="admin"]) .payment-card {
  border-color: rgba(13,63,52,.12);
  box-shadow: 0 22px 54px rgba(15,35,48,.10);
}

body:not([class*="admin"]) h1,
body:not([class*="admin"]) h2,
body:not([class*="admin"]) h3 {
  letter-spacing: 0;
}

body:not([class*="admin"]) img {
  max-width: 100%;
}

body:not([class*="admin"]) .btn,
body:not([class*="admin"]) .ed-btn,
body:not([class*="admin"]) button,
body:not([class*="admin"]) select,
body:not([class*="admin"]) input,
body:not([class*="admin"]) textarea {
  letter-spacing: 0;
}

body:not([class*="admin"]) .btn:hover,
body:not([class*="admin"]) .ed-btn:hover,
body:not([class*="admin"]) button:hover {
  transform: translateY(-1px);
}

.ed-luxury-cookie {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2000;
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(197,164,90,.32);
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  color: #14231f;
  box-shadow: 0 28px 70px rgba(15,35,48,.2);
  backdrop-filter: blur(18px);
}

.ed-luxury-cookie strong,
.ed-luxury-cookie span {
  display: block;
}

.ed-luxury-cookie strong {
  margin-bottom: 5px;
  color: #0d3f34;
}

.ed-luxury-cookie span {
  color: #52645e;
  line-height: 1.45;
}

.ed-luxury-cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ed-luxury-cookie button,
.ed-luxury-cookie a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 0 14px;
  font-weight: 900;
  text-decoration: none;
}

.ed-luxury-cookie button {
  border: 0;
  background: #0d3f34;
  color: #fff;
  cursor: pointer;
}

.ed-luxury-cookie a {
  border: 1px solid rgba(13,63,52,.16);
  color: #0d3f34;
  background: #fff;
}

@media (max-width: 1020px) {
  .ed-chrome-header-inner {
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 76px;
    padding: 10px 0;
  }

  .ed-chrome-logo {
    justify-content: flex-start;
  }

  .ed-chrome-actions {
    justify-content: flex-end;
  }

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

@media (max-width: 1260px) {
  .ed-chrome-header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .ed-chrome-nav {
    display: none;
  }
}

@media (max-width: 900px) {
  .ed-chrome-header-inner {
    grid-template-columns: auto minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .ed-chrome-container {
    width: min(100% - 24px, var(--chrome-container));
  }

  .ed-chrome-topbar {
    font-size: .76rem;
  }

  .ed-chrome-topbar-inner {
    min-height: 32px;
    gap: 8px;
    padding: 5px 0;
    justify-content: space-between;
  }

  .ed-chrome-topbar-left {
    justify-content: flex-start;
    text-align: left;
  }

  .ed-chrome-topbar-right {
    justify-content: flex-end;
    text-align: right;
  }

  .ed-chrome-topbar-left,
  .ed-chrome-topbar-right {
    gap: 6px;
    flex-wrap: nowrap;
    min-width: 0;
  }

  .ed-chrome-topbar-left span,
  .ed-chrome-topbar-right a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .ed-chrome-logo img {
    width: 86px;
    max-height: 56px;
  }

  .ed-chrome-icon {
    min-height: 40px;
  }

  .ed-chrome-cart-action {
    min-width: 42px;
    width: 42px;
    padding: 0;
  }

  .ed-chrome-menu-toggle {
    width: 40px;
    height: 40px;
  }

  .ed-chrome-mobile-panel {
    left: 10px;
    right: 10px;
    top: calc(100% + 8px);
    grid-template-columns: 1fr;
    max-height: calc(100vh - 112px);
    padding: 12px;
    border-radius: 16px;
  }

  .ed-chrome-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ed-luxury-cookie {
    left: 12px;
    right: 12px;
    grid-template-columns: 1fr;
  }

  .ed-luxury-cookie-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .ed-chrome-container {
    width: min(100% - 18px, var(--chrome-container));
  }

  .ed-chrome-topbar-left span {
    max-width: 142px;
  }

  .ed-chrome-topbar-right a {
    max-width: 112px;
  }

  .ed-chrome-header-inner {
    min-height: 66px;
    gap: 8px;
  }

  .ed-chrome-logo img {
    width: 74px;
    max-height: 50px;
  }

  .ed-chrome-actions {
    gap: 6px;
  }

  .ed-chrome-cart-action {
    min-width: 38px;
    width: 38px;
    padding: 0;
  }

  .ed-chrome-cart-action span:first-child::before {
    content: "";
  }

  .ed-chrome-menu-toggle {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .ed-chrome-count {
    top: -7px;
    right: -7px;
    min-width: 20px;
    height: 20px;
    font-size: .7rem;
  }
}
