@import url("https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@400;500;600&family=Open+Sans:wght@400;600;700&display=swap");
.logo-main {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .logo-main {
    width: 32px;
    height: 32px;
  }
}

:root {
  --accent: #00756f;
  --accent-hover: #005c57;
  --accent-soft: #e0f1ed;
  --accent-bright: #5ee3cb;
  --graphite: #14252b;
  --surface: #ffffff;
  --muted: #5d6e76;
  --border: #d5e0e3;
  --blue: var(--accent);
  --ink: #172c34;
  --bg: #eef3f4;
}

/* Graphite and teal storefront branding. */
.top {
  border-bottom: 1px solid var(--border);
}
.top .brand {
  color: var(--ink);
}
.top .brand small {
  color: var(--muted);
}
header nav {
  color: #e4eef0;
}
header nav > a:hover {
  color: var(--accent-bright);
}
header nav .category-toggle {
  background: #233a42;
  color: #ffffff;
}
header nav .tool {
  background: #2a424a;
  color: #ffffff;
}
header nav .cart-nav .tool {
  background: var(--accent);
}
header nav .tool sup {
  background: var(--accent-bright);
  color: #102d29;
}
.primary {
  transition:
    background-color 0.18s ease,
    box-shadow 0.18s ease;
}
.primary:hover:not(:disabled) {
  background: var(--accent-hover);
  box-shadow: 0 3px 12px #005c5720;
}
.search:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px #00756f16;
}
.products {
  background: transparent;
  border: 0;
}
.products .product {
  border: 1px solid var(--border);
  border-radius: 10px;
}
.product:hover {
  border-color: #8ebbb3;
}
.category img {
  border: 1px solid var(--border);
}
.category:hover h3 {
  color: var(--accent);
}
.secondary:hover {
  background: var(--accent-soft);
  color: var(--accent-hover);
}
.benefits,
.detail,
.panel,
.footer-intro {
  border: 1px solid var(--border);
}
.product-actions button:hover {
  color: var(--accent);
  background: var(--accent-soft);
}
.mini-promos .promo-content {
  text-shadow: 0 1px 3px #0004;
}
.mini-promos .secondary {
  text-shadow: none;
}
.promo > .promo-content > h2,
.promo > .promo-content > p {
  color: #26363c;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font:
    14px "Open Sans",
    Arial,
    sans-serif;
}
button,
input,
select {
  font: inherit;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  border: 0;
  background: none;
  color: inherit;
}
button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
h1,
h2,
h3,
.brand {
  font-family: "Lexend Deca", Arial, sans-serif;
}
h2 {
  font-size: 25px;
  font-weight: 500;
  margin: 0;
}
h3 {
  font-size: 16px;
  font-weight: 500;
}
p {
  line-height: 1.7;
}
input,
select {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 12px;
  background: white;
  min-width: 0;
}
.rail {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 60px;
  background: white;
  border-right: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-direction: column;
  padding: 10px;
  z-index: 20;
}
.rail button {
  font-size: 23px;
  width: 40px;
  height: 34px;
}
.rail .round {
  height: 42px;
}
.round {
  border-radius: 50%;
  background: var(--blue);
  color: white;
  padding: 11px;
}
.shell {
  margin-left: 0;
}
.top {
  height: 80px;
  background: white;
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 12px 18px;
}
.brand {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--ink);
  font-size: 26px;
  font-weight: 600;
  white-space: nowrap;
}
.brand b {
  background: var(--ink);
  color: white;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  font-style: italic;
}
.brand small {
  font:
    11px "Open Sans",
    sans-serif;
  display: block;
  color: var(--muted);
  letter-spacing: 1px;
}
.search {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 30px;
  padding: 3px;
  flex: 1;
}
.search input {
  border: 0;
  border-radius: 30px;
  flex: 1;
  outline: 0;
}
.search button {
  width: 40px;
  height: 40px;
  font-size: 23px;
  padding: 0;
}
.service {
  display: flex;
  gap: 12px;
  align-items: center;
  white-space: nowrap;
}
.service > span {
  font-size: 32px;
}
.service p {
  margin: 0;
}
.muted {
  color: var(--muted);
}
.blue {
  color: var(--blue);
}
nav {
  background: var(--graphite);
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 10px 18px;
  min-height: 60px;
}
nav > a {
  font-size: 13px;
}
nav .push {
  margin-left: auto;
}
.category-toggle {
  border-radius: 24px;
  background: white;
  padding: 6px 14px 6px 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.category-toggle span {
  font-size: 20px;
  padding: 6px 9px;
}
.tool {
  position: relative;
  background: white;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 22px;
}
.tool sup {
  position: absolute;
  font-size: 10px;
  color: var(--blue);
  right: -3px;
  top: -3px;
  background: white;
  border-radius: 50%;
  padding: 2px 5px;
}
.cart-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 12px;
}
.cart-nav .tool {
  background: var(--blue);
  color: white;
}
.category-menu {
  position: absolute;
  z-index: 30;
  left: 17px;
  top: 140px;
  background: white;
  box-shadow: 0 10px 35px #0002;
  width: 270px;
  padding: 12px;
  border-radius: 8px;
}
.category-menu a {
  display: block;
  padding: 12px;
}
.category-menu a:hover {
  background: var(--accent-soft);
  color: var(--blue);
}
main {
  padding: 20px 15px 60px;
  max-width: 1700px;
  margin: auto;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.hero-main {
  height: 460px;
  border-radius: 11px;
  background: #eae8ff;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 30px 50px;
}
.hero-main > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.hero-copy h1 {
  font-size: 35px;
  color: #ff9900;
  line-height: 1.4;
  margin: 5px 0 12px;
}
.hero-copy p {
  color: white;
  font-size: 15px;
  margin: 10px 0;
}
.primary {
  display: inline-block;
  background: var(--blue);
  color: white;
  border-radius: 4px;
  padding: 13px 22px;
  font-weight: 700;
  font-size: 13px;
}
.secondary {
  display: inline-block;
  background: white;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 10px 16px;
  font-size: 12px;
}
.dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 20px;
  background: white;
  padding: 5px;
  display: flex;
  gap: 5px;
}
.dots button {
  width: 10px;
  height: 10px;
  background: #bbb;
  border-radius: 50%;
  padding: 0;
}
.dots button.active {
  background: #333;
}
.hero-side {
  display: grid;
  grid-template-rows: 278px 164px;
  gap: 18px;
}
.promo {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #eed4db;
}
.promo > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.promo-content {
  position: relative;
  padding: 36px 30px;
  color: white;
}
.promo h2 {
  font-size: 28px;
  margin: 24px 0 10px;
}
.timer {
  display: flex;
  gap: 5px;
  margin: 10px 0 15px;
}
.timer span {
  background: white;
  border-radius: 10px;
  color: #333;
  text-align: center;
  padding: 6px 10px;
  font-size: 20px;
}
.timer small {
  display: block;
  font-size: 11px;
  color: var(--muted);
}
.mini-promos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.mini-promos .promo-content {
  padding: 22px 30px;
}
.mini-promos h3 {
  font-size: 18px;
  margin: 7px 0;
}
.mini-promos p {
  margin: 6px 0 14px;
}
section {
  margin-top: 60px;
}
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.section-heading a {
  color: var(--blue);
}
.categories {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
}
.category {
  text-align: center;
}
.category img {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
  border-radius: 10px;
  display: block;
  background: white;
  transition: transform 0.2s;
}
.category:hover img {
  transform: translateY(-5px);
}
.category h3 {
  margin: 11px 0 3px;
}
.category p {
  margin: 0;
  color: var(--muted);
}
.products {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  background: transparent;
  border: 0;
  border-radius: 10px;
  overflow: hidden;
}
.product {
  position: relative;
  background: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.product-image {
  height: 200px;
  display: block;
  margin: 15px 0;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.2s;
}
.product:hover img {
  transform: scale(1.04);
}
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--blue);
  color: white;
  padding: 4px 9px;
  border-radius: 14px;
  font-size: 11px;
}
.product h3 {
  line-height: 1.5;
  margin: 4px 0;
}
.product .muted {
  font-size: 12px;
}
.rating {
  color: #efa92f;
  margin: 12px 0 5px;
}
.stock {
  color: #25704d;
  font-size: 12px;
  margin: 7px 0;
}
.price {
  color: var(--blue);
  font-size: 17px;
  font-weight: 600;
  margin: 10px 0 15px;
}
.price del {
  color: var(--muted);
  font-size: 12px;
  margin-right: 6px;
}
.product .primary {
  width: 100%;
  margin-top: auto;
}
.product-actions {
  position: absolute;
  right: 10px;
  top: 10px;
  display: flex;
  gap: 3px;
}
.product-actions button {
  background: #f6f6f6;
  border-radius: 50%;
  height: 28px;
  width: 28px;
}
.wide-promo {
  border-radius: 10px;
  background: #deeeea;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 25px;
}
.wide-promo img {
  max-width: 45%;
  height: 230px;
  object-fit: contain;
}
.wide-promo h2 {
  font-size: 32px;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  background: white;
  border-radius: 10px;
  padding: 30px;
}
.benefits h3 {
  margin-top: 0;
}
.benefits p {
  margin-bottom: 0;
  color: var(--muted);
}
footer {
  background: white;
  padding: 40px 30px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer a {
  margin-left: 20px;
  color: var(--muted);
}
.breadcrumb {
  color: var(--muted);
  font-size: 13px;
  margin: 14px 0 28px;
}
.shop-toolbar {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}
.detail {
  background: white;
  border-radius: 10px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
}
.detail > img {
  width: 100%;
  height: 440px;
  object-fit: contain;
}
.detail h1 {
  font-size: 30px;
}
.detail label {
  display: block;
  margin: 20px 0;
}
.detail select {
  margin-left: 10px;
}
.detail .price {
  font-size: 27px;
}
.detail input[type="number"] {
  width: 75px;
  margin-right: 12px;
}
.empty {
  padding: 70px 20px;
  text-align: center;
  background: white;
  border-radius: 10px;
  grid-column: 1/-1;
}
.empty p {
  color: var(--muted);
}
dialog {
  border: 0;
  border-radius: 12px;
  width: min(900px, 94vw);
  padding: 30px;
  max-height: 90vh;
  overflow: auto;
}
dialog::backdrop {
  background: #0006;
}
.close {
  float: right;
  font-size: 25px;
}
.drawer {
  margin: 0 0 0 auto;
  height: 100vh;
  max-height: 100vh;
  width: 450px;
  border-radius: 0;
}
.cart-row {
  display: grid;
  grid-template-columns: 65px 1fr 25px;
  gap: 12px;
  border-bottom: 1px solid #eee;
  padding: 18px 0;
}
.cart-row img {
  width: 65px;
  height: 75px;
  object-fit: contain;
}
.cart-row h3 {
  margin: 0 0 5px;
  font-size: 14px;
}
.quantity {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}
.quantity button {
  border: 1px solid #ddd;
  width: 25px;
  height: 25px;
}
.total {
  display: flex;
  justify-content: space-between;
  font-size: 19px;
  margin: 25px 0;
}
.checkout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 30px;
}
.panel {
  background: white;
  padding: 30px;
  border-radius: 10px;
}
.checkout label {
  display: block;
  margin: 17px 0;
}
.checkout input,
.checkout textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
}
.checkout textarea {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 12px;
  font: inherit;
}
.notice {
  background: var(--accent-soft);
  padding: 14px;
  border-radius: 6px;
  line-height: 1.7;
}
.success {
  text-align: center;
  padding: 60px;
  background: white;
}
.success > span {
  display: inline-grid;
  place-items: center;
  background: #e7f4ea;
  color: green;
  border-radius: 50%;
  width: 75px;
  height: 75px;
  font-size: 35px;
}
.mobile-menu {
  display: none;
}
#toast {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translate(-50%, 20px);
  background: #222;
  color: white;
  border-radius: 6px;
  padding: 13px 25px;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
  z-index: 100;
}
#toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
.info {
  max-width: 800px;
  background: white;
  padding: 40px;
  margin: 30px auto;
  line-height: 1.9;
}
.secondary {
  color: var(--ink);
}
nav .tool {
  flex-shrink: 0;
}
.cart-nav .tool svg {
  width: 23px;
  height: 23px;
}
nav .tool svg {
  width: 22px;
  height: 22px;
}
nav {
  height: 60px;
}
.category-toggle {
  flex-shrink: 0;
}
@media (min-width: 1600px) {
  .hero-main {
    height: 510px;
  }
  .hero-side {
    grid-template-rows: 310px 182px;
  }
}
@media (max-width: 1100px) {
  .service {
    display: none;
  }
  nav {
    gap: 17px;
  }
  nav .region {
    display: none;
  }
  .hero-copy h1 {
    font-size: 28px;
  }
  .hero-main {
    padding: 30px 20px;
  }
  .products {
    grid-template-columns: repeat(3, 1fr);
  }
  .categories {
    gap: 10px;
  }
  .mini-promos .promo-content {
    padding: 20px 15px;
  }
  .mini-promos h3 {
    font-size: 15px;
  }
}
@media (max-width: 700px) {
  .rail {
    display: none;
  }
  .shell {
    margin: 0;
  }
  .top {
    height: auto;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 15px;
  }
  .brand {
    font-size: 23px;
  }
  .brand b {
    width: 38px;
    height: 38px;
  }
  .search {
    flex-basis: 100%;
    order: 2;
  }
  .mobile-menu {
    display: block;
    margin-left: auto;
    font-size: 25px;
  }
  nav {
    padding: 8px 15px;
    gap: 12px;
  }
  nav > a,
  nav .region,
  nav .compare-tool {
    display: none;
  }
  nav .push {
    margin-left: auto;
  }
  .cart-nav > span {
    display: none;
  }
  .category-toggle {
    font-size: 12px;
  }
  .category-menu {
    left: 15px;
    top: 190px;
  }
  main {
    padding: 15px 12px 40px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hero-main {
    height: 360px;
  }
  .hero-copy h1 {
    font-size: 28px;
  }
  .hero-side {
    grid-template-rows: 230px 155px;
    gap: 12px;
  }
  .promo h2 {
    margin: 10px 0;
    font-size: 23px;
  }
  .mini-promos {
    gap: 12px;
  }
  .mini-promos .promo-content {
    padding: 15px 12px;
  }
  .mini-promos p {
    font-size: 12px;
    max-width: 110px;
  }
  .categories {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px 10px;
  }
  .category h3 {
    font-size: 12px;
  }
  .category p {
    font-size: 10px;
  }
  section {
    margin-top: 35px;
  }
  h2 {
    font-size: 21px;
  }
  .section-heading a {
    font-size: 12px;
  }
  .products {
    grid-template-columns: repeat(2, 1fr);
  }
  .product {
    padding: 12px;
  }
  .product-image {
    height: 155px;
  }
  .product h3 {
    font-size: 13px;
  }
  .product .primary {
    padding: 12px 5px;
  }
  .wide-promo {
    padding: 24px;
  }
  .wide-promo h2 {
    font-size: 23px;
  }
  .wide-promo img {
    height: 180px;
  }
  .benefits {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 25px;
  }
  .detail {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 15px;
  }
  .detail > img {
    height: 260px;
  }
  .detail h1 {
    font-size: 25px;
  }
  .checkout {
    grid-template-columns: 1fr;
  }
  .panel {
    padding: 20px;
  }
  .shop-toolbar {
    flex-wrap: wrap;
  }
  .shop-toolbar select {
    max-width: 48%;
  }
  footer {
    display: block;
    padding: 25px;
  }
  footer div:last-child {
    margin-top: 20px;
  }
  footer a {
    margin: 0 15px 0 0;
  }
  .info {
    padding: 24px;
  }
  .drawer {
    width: min(450px, 100vw);
  }
}

.rating {
  display: flex;
  gap: 1px;
}
.rating-star {
  display: inline-block;
  background: linear-gradient(to right, #efa92f var(--fill), #ddd var(--fill));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
