:root {
  --cn-navy: #06182e;
  --cn-navy-2: #082442;
  --cn-blue: #164b78;
  --cn-ice: #eef6ff;
  --cn-text: #12263d;
  --cn-muted: #60748a;
  --cn-gold: #e7a51d;
  --cn-border: rgba(9, 38, 72, 0.14);
  --cn-shadow: 0 22px 50px rgba(6, 24, 46, 0.16);
}

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  background: #f3f7fb;
  color: var(--cn-text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

body.admin-bar .cn-site-header {
  top: 32px;
}

a {
  color: #0d4f86;
}

a:hover {
  color: #07345c;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.cn-skip-link {
  background: #fff;
  border: 2px solid var(--cn-blue);
  color: var(--cn-text);
  left: 16px;
  padding: 10px 14px;
  position: fixed;
  top: -80px;
  z-index: 100000;
}

.cn-skip-link:focus {
  top: 16px;
}

.cn-site {
  min-height: 100vh;
}

.cn-site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(8, 34, 64, 0.08);
  box-shadow: 0 4px 18px rgba(8, 34, 64, 0.08);
  color: #202020;
  position: relative;
  top: 0;
  z-index: 100;
}

.cn-site-header::after {
  content: none;
}

.cn-header-inner {
  align-items: center;
  display: flex;
  gap: clamp(42px, 5vw, 88px);
  justify-content: flex-start;
  margin: 0 auto;
  max-width: 1190px;
  min-height: 80px;
  padding: 5px 24px 4px;
}

.cn-brand {
  align-items: center;
  color: #202020;
  display: inline-flex;
  gap: 12px;
  flex: 0 0 auto;
  margin-right: clamp(120px, 12vw, 210px);
  padding: 0;
  text-decoration: none;
  white-space: nowrap;
}

.cn-brand:hover {
  color: #202020;
}

.cn-brand-logo {
  display: block;
  height: 70px;
  object-fit: contain;
  width: auto;
}

.cn-menu,
.cn-footer-menu {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cn-menu a,
.cn-footer-menu a {
  color: #272727;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
}

.cn-menu a {
  border: 1px solid transparent;
  display: inline-flex;
  padding: 8px 0;
  transition: color 160ms ease;
}

.cn-menu a:hover,
.cn-footer-menu a:hover {
  color: #149ed8;
}

.cn-menu a:hover {
  background: transparent;
  border-color: transparent;
}

.cn-menu .current-menu-item > a,
.cn-menu .current_page_item > a,
.cn-menu .current-menu-ancestor > a {
  color: #149ed8;
}

.cn-site-main {
  min-height: 65vh;
}

.cn-container {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 24px;
}

.cn-page-container,
.cn-woocommerce-main {
  padding-bottom: clamp(48px, 7vw, 88px);
  padding-top: clamp(34px, 6vw, 72px);
}

.cn-page {
  background: #fff;
  border: 1px solid var(--cn-border);
  border-radius: 8px;
  box-shadow: var(--cn-shadow);
  padding: clamp(24px, 5vw, 52px);
}

.cn-page-header h1,
.cn-page h1,
.cn-page h2 {
  color: var(--cn-navy);
  letter-spacing: 0;
  line-height: 1.15;
  margin-top: 0;
}

.cn-page-header h1 {
  font-size: clamp(34px, 5vw, 54px);
}

.cn-page-content > *:first-child {
  margin-top: 0;
}

.cn-page-content > *:last-child {
  margin-bottom: 0;
}

.cn-site-footer {
  background: #06182e;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.82);
}

.cn-footer-inner {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1240px;
  min-height: 76px;
  padding: 20px 24px;
}

.cn-footer-inner strong,
.cn-footer-inner span {
  display: block;
}

.cn-footer-inner strong {
  color: #fff;
  font-size: 17px;
}

.cn-footer-inner span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.cn-footer-widgets {
  max-width: 360px;
}

.cn-template-home > .cn-shop-shell,
.cn-template-booking > .cn-shop-shell {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

.cn-template-home .cn-shop-header,
.cn-template-home .cn-shop-footer,
.cn-template-booking .cn-shop-header,
.cn-template-booking .cn-shop-footer {
  display: none;
}

.woocommerce .cn-woocommerce-main {
  background:
    linear-gradient(180deg, rgba(6, 24, 46, 0.04), rgba(6, 24, 46, 0.08)),
    #f3f7fb;
}

.woocommerce .woocommerce-breadcrumb {
  color: var(--cn-muted);
  font-size: 14px;
  margin-bottom: 18px;
}

.woocommerce .woocommerce-breadcrumb a {
  color: var(--cn-blue);
  text-decoration: none;
}

.woocommerce ul.products {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  background: #fff;
  border: 1px solid var(--cn-border);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(6, 24, 46, 0.1);
  float: none;
  margin: 0;
  overflow: hidden;
  padding: 0 0 18px;
  width: auto;
}

.woocommerce ul.products li.product a img {
  aspect-ratio: 1.4;
  margin: 0 0 16px;
  object-fit: cover;
  width: 100%;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button {
  margin-left: 18px;
  margin-right: 18px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: var(--cn-navy);
  font-size: 20px;
  font-weight: 850;
  letter-spacing: 0;
  padding: 0;
}

.woocommerce ul.products li.product .price {
  color: var(--cn-blue);
  font-size: 18px;
  font-weight: 800;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .single_add_to_cart_button {
  background: var(--cn-navy);
  border-radius: 6px;
  color: #fff;
  font-weight: 800;
  min-height: 44px;
  padding: 13px 18px;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce .single_add_to_cart_button:hover {
  background: var(--cn-blue);
  color: #fff;
}

.woocommerce div.product {
  background: #fff;
  border: 1px solid var(--cn-border);
  border-radius: 8px;
  box-shadow: var(--cn-shadow);
  padding: clamp(20px, 4vw, 42px);
}

.woocommerce div.product .product_title {
  color: var(--cn-navy);
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.12;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--cn-blue);
  font-size: 26px;
  font-weight: 850;
}

.woocommerce-cart .cart_totals,
.woocommerce-checkout #order_review,
.woocommerce-checkout #customer_details,
.woocommerce .woocommerce-order {
  background: #fff;
  border: 1px solid var(--cn-border);
  border-radius: 8px;
  box-shadow: var(--cn-shadow);
  padding: clamp(18px, 3vw, 32px);
}

.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select,
.woocommerce-page input.input-text,
.woocommerce-page textarea,
.woocommerce-page select {
  border: 1px solid rgba(9, 38, 72, 0.22);
  border-radius: 6px;
  min-height: 44px;
  padding: 10px 12px;
}

.woocommerce form .form-row label {
  color: var(--cn-text);
  font-weight: 700;
}

@media (max-width: 920px) {
  .cn-header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    min-height: 0;
    padding-bottom: 14px;
    padding-top: 10px;
  }

  .cn-brand {
    margin-right: 0;
  }

  .cn-brand-logo {
    height: 58px;
  }

  .cn-menu {
    gap: 18px;
  }

  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cn-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .cn-header-inner,
  .cn-footer-inner,
  .cn-container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .cn-menu {
    display: flex;
    gap: 12px 16px;
  }

  .cn-menu a {
    font-size: 14px;
    padding: 5px 0;
  }

  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .cn-page {
    padding: 22px;
  }
}
