*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html,
body{
  width:100%;
  height:100%;
  overflow:hidden;
  font-family:'PT Sans', sans-serif;
  background:#f4f0e8;
  color:#332a1f;
  cursor:auto;
}

body.shop-page {
  padding-top: 0 !important;
  padding-bottom: 64px !important;
}

.shop-topbar {
  position: fixed !important;
  top: auto !important;
  bottom: 0 !important;
  border-top: 1px solid rgba(51,42,31,0.08) !important;
  border-bottom: none !important;
}

/* Slider */

.pages{
  display:flex;

  width:400vw;
  height:calc(100vh - 64px);
  margin-bottom:64px;

  transition: transform 0.8s ease;
}

/* Individual pages */

.page{
  width:100vw;
  min-height:calc(100vh - 64px);
  overflow:auto;
  display:flex;
  justify-content:flex-start;
  align-items:flex-start;
  flex-shrink:0;
  background:transparent;
  color:inherit;
  padding-left:0;
  opacity: 0.4;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.page.active {
  opacity: 1;
  transform: translateY(0);
}

.page .content{
  width:100%;
  max-width:none;
  margin:0;
  padding:40px 32px 24px;
  text-align:center;
}

.page .shop-page {
  width:100% !important;
  padding: 0 24px;
}

.shop-topbar {
  left: 0 !important;
  right: 0 !important;
  width: auto !important;
  z-index: 1000 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px;
  padding: 0 18px;
  min-height: 64px;
  box-sizing: border-box !important;
  background: var(--c-bg) !important;
}

.shop-topbar.horizontal-header .topbar-links {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 12px !important;
}

.shop-topbar.horizontal-header .topbar-links a {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 1 auto !important;
  padding: 0 12px !important;
  min-height: 44px !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: inherit !important;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  white-space: nowrap !important;
}

.shop-topbar.horizontal-header .topbar-links a span {
  display: inline-block !important;
  position: relative !important;
}

.shop-topbar.horizontal-header .topbar-links a span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #332a1f;
  border-radius: 999px;
  transition: width 0.25s ease;
}

.shop-topbar.horizontal-header .topbar-links a:hover span::after,
.shop-topbar.horizontal-header .topbar-links a:focus-visible span::after,
.shop-topbar.horizontal-header .topbar-links a.active span::after {
  width: 100%;
}

.shop-topbar.horizontal-header .topbar-links a:hover,
.shop-topbar.horizontal-header .topbar-links a:focus-visible {
  color: #332a1f !important;
  background: rgba(0,0,0,0.08) !important;
  border-radius: 14px !important;
  transform: none !important;
}

.shop-topbar.horizontal-header .topbar-links a span {
  display: inline-block !important;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.shop-topbar.horizontal-header .topbar-links a:hover > span:first-of-type,
.shop-topbar.horizontal-header .topbar-links a:focus-visible > span:first-of-type {
  transform: scale(0.92) !important;
  opacity: 1 !important;
}

.shop-topbar.horizontal-header .topbar-links a:hover > .topbar-icon,
.shop-topbar.horizontal-header .topbar-links a:focus-visible > .topbar-icon,
.shop-topbar.horizontal-header .topbar-links a:hover > .topbar-svg,
.shop-topbar.horizontal-header .topbar-links a:focus-visible > .topbar-svg,
.shop-topbar.horizontal-header .topbar-links a:hover > .topbar-hover-logo,
.shop-topbar.horizontal-header .topbar-links a:focus-visible > .topbar-hover-logo {
  opacity: 0 !important;
  transform: none !important;
}

.shop-topbar.horizontal-header .topbar-links a i {
  width: 22px !important;
  height: 22px !important;
  font-size: 20px !important;
}

.shop-topbar.horizontal-header .topbar-links a span {
  display: inline-block !important;
  margin: 0 !important;
  font-size: 0.95rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  color: #332a1f;
}

.shop-topbar.horizontal-header .topbar-links a:first-child {
  padding-left: 0 !important;
}

.shop-topbar-mobile-nav {
  display: none;
}

.products-siteHeader {
  display: none;
}

.shop-topbar.horizontal-header .topbar-links a .topbar-icon,
.shop-topbar.horizontal-header .topbar-links a .topbar-svg {
  display: none !important;
}

.shop-topbar.horizontal-header .topbar-links a span {
  display: inline-block !important;
}
}

.siteNavi {
  position: fixed;
  z-index: 10050;
  inset: 0;
  display: none;
  overflow: hidden;
}

.siteNavi.active {
  display: block;
}

.siteNavi_bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-color: rgba(255,255,255,0.96);
}

.siteNavi_close {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  border-bottom: 1px solid rgba(0,0,0,0.12);
  background: transparent;
  transition: background-color .2s cubic-bezier(0.3, 0.1, 0.1, 1);
  cursor: pointer;
}

.siteNavi_close:hover {
  background-color: rgba(0,0,0,0.04);
}

.siteNavi_close .shape {
  position: relative;
  width: 32px;
  height: 32px;
}

.siteNavi_close .shape::before,
.siteNavi_close .shape::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(50% - 1px);
  display: block;
  width: 141.421356%;
  height: 2px;
  background-color: currentColor;
}

.siteNavi_close .shape::before {
  transform: translateX(-50%) rotate(-45deg);
}

.siteNavi_close .shape::after {
  transform: translateX(-50%) rotate(45deg);
}

.siteNavi_content {
  position: absolute;
  left: 0;
  top: 50px;
  width: 100%;
  height: calc(100% - 50px);
}

.siteNavi_pages {
  height: calc(50% - 25px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.siteNavi_pageItem {
  height: 33.3333%;
  border-bottom: 1px solid rgba(0,0,0,0.12);
  transition: background-color .2s cubic-bezier(0.3, 0.1, 0.1, 1);
}

.siteNavi_pageItem:hover {
  background-color: rgba(0,0,0,0.04);
}

.siteNavi_pageItem a {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  color: var(--c-text);
  text-decoration: none;
}

.siteNavi_pageItem a .inner {
  display: flex;
  align-items: baseline;
  line-height: .85;
  padding: 20px 24px;
}

.siteNavi_pageItem a .index {
  display: none;
}

.siteNavi_pageItem a .title {
  font-size: 7vh;
  flex: 1;
}

.siteNavi_pageItem a .text {
  text-align: right;
  opacity: 0.7;
  font-size: 0.85rem;
}

.siteNavi_cr {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: flex;
  gap: 0.5rem;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .products-siteHeader {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(51, 42, 31, 0.08);
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    z-index: 100;
  }

  .products-siteHeader .siteHeader_title {
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 400;
  }

  .products-siteHeader .siteHeader_title a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--c-text);
  }

  .products-siteHeader .shop-search {
    flex: 1;
    max-width: 200px;
    margin: 0 16px;
  }

  .products-siteHeader .shop-search input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid rgba(51, 42, 31, 0.2);
    border-radius: 4px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--c-text);
  }

  .products-siteHeader .shop-search input:focus {
    outline: none;
    border-color: var(--c-primary);
    background: rgba(255, 255, 255, 1);
  }

  body.shop-page {
    padding-top: 64px !important;
  }

  .shop-topbar.horizontal-header .topbar-links {
    display: none !important;
  }

  .shop-topbar.horizontal-header {
    padding: 10px 14px !important;
    gap: 10px !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .shop-topbar-mobile-nav {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
  }

  .shop-topbar-mobile-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    color: var(--c-text);
    cursor: pointer;
  }

  .shop-topbar-mobile-dots {
    display: flex;
    gap: 10px;
    padding: 0 6px;
  }

  .shop-topbar-mobile-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.15);
    background: rgba(0,0,0,0.08);
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
  }

  .shop-topbar-mobile-dot.active {
    background: var(--c-text) !important;
    transform: scale(1.15);
  }

  .shop-topbar.horizontal-header .topbar-links {
    display: none !important;
  }
}

.shop-search-bottom {
  display: none;
}

@media (min-width: 901px) {
  .shop-topbar {
    background: transparent !important;
    border-top: 1px solid rgba(51,42,31,0.12) !important;
    box-shadow: none !important;
  }

  .shop-topbar-mobile-nav {
    display: none;
  }

  .shop-search-bottom {
    display: flex;
    align-items: center;
    margin-left: auto;
  }

  .shop-search-bottom input {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid var(--c-border);
    background: var(--c-bg-alt);
    font-size: 0.9rem;
    width: 200px;
    outline: none;
  }

  .shop-search-bottom input:focus {
    border-color: var(--c-primary);
    box-shadow: 0 0 0 2px rgba(220, 188, 139, 0.2);
  }

  .products-siteHeader .shop-search {
    display: none;
  }
}

/* Backgrounds */

.p1{
  background:#374046;
}

.p2{
  background:#fff;
}

.p3{
  background:#fff;
}

.p4{
  background:#fff;
}

.slide-page {
  padding-top:0;
}

.page .shop-page {
  width:100% !important;
  min-height:calc(100vh - 64px) !important;
  background:#fff !important;
}

.shop-layout,
.shop-content {
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.shop-header-block {
  padding: 24px 24px 0 !important;
}

.shop-layout {
  padding:24px 24px 24px 0;
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
}

.shop-content {
  width: 100% !important;
  max-width: none !important;
}

.shop-header-block {
  width: 100%;
  padding-bottom: 24px;
}

.shop-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  width: 100%;
}

.product-card {
  border:1px solid rgba(0,0,0,0.08);
  border-radius:20px;
  overflow:hidden;
  background:var(--c-bg);
}

.product-card__image {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
  background: var(--c-bg-alt);
}

.product-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  content-visibility: auto;
}

.product-card:hover .product-card__image img,
.product-card:focus-within .product-card__image img {
  transform: scale(1.05);
}

/* Content */

.content{
  text-align:center;
}

.big{
  font-size:100px;
  margin-bottom:20px;
}

.content h1{
  font-size:48px;
  font-weight:300;
}

/* Navigation */

.nav{
  position:fixed;
  top:50%;
  left:20px;
  transform:translateY(-50%);
  list-style:none;
  z-index:1000;
  background:rgba(255,255,255,0.96);
  border:1px solid rgba(0,0,0,0.12);
  border-radius:24px;
  padding:14px 10px;
  box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

.nav li{
  margin:16px 0;
}

.nav button{
  width:48px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  border:1px solid rgba(0,0,0,0.08);
  border-radius:16px;
  color:#374046;
  font-size:22px;
  cursor:pointer;
  transition:transform 0.2s ease, box-shadow 0.2s ease;
}

.nav button:hover{
  transform:scale(1.2);
  opacity:0.7;
}