﻿:root {
  --primary: #96d2d7;
  --ink: #6b6f81;
  --line: #edeef4;
  --bg-soft: #f4f5fa;
  --topbar-height: 48px;
  --search-height: 44px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Dosis", sans-serif;
  background: #fff;
  padding-top: var(--topbar-height);
}

body.search-open {
  padding-top: calc(var(--topbar-height) + var(--search-height));
}

.page-home main {
  margin-top: 0;
  padding-top: 0;
}

.page-account .site-footer {
  display: none;
}

.page-account .pre-footer {
  display: none;
}

.page-profile .site-footer {
  display: none;
}

.page-profile .pre-footer {
  display: none;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.header-shell {
  width: min(1560px, 100%);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.top-search {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 40;
  background: #f4f4f4;
  border-bottom: 1px solid #e1e1e1;
  transform: translateY(-100%);
  transition: transform 0.2s ease;
}

body.search-open .top-search {
  transform: translateY(0);
}

.top-search-inner {
  min-height: var(--search-height);
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #d8d8d8;
  border-right: 1px solid #d8d8d8;
}

.top-search-form {
  width: min(780px, 100%);
}

.top-search-form input {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: center;
  font: 400 0.9rem "Dosis", sans-serif;
  color: #7b7b7b;
  outline: none;
}

.topbar {
  background: #96d2d7;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 45;
  transition: top 0.2s ease;
}

body.search-open .topbar {
  top: var(--search-height);
}

.topbar-inner {
  min-height: var(--topbar-height);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
}

.topbar-actions {
  display: flex;
  align-items: stretch;
}

.topbar-item {
  color: #fff;
  transition: background-color 0.16s ease, color 0.16s ease;
}

.topbar-icon {
  display: inline-flex;
  min-width: 40px;
  min-height: var(--topbar-height);
  padding: 0 11px;
  align-items: center;
  justify-content: center;
}

.topbar-icon-btn {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.topbar-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.topbar-cart {
  display: inline-flex;
  align-items: center;
  min-height: var(--topbar-height);
  padding: 0 11px;
  justify-content: center;
}

.topbar-cart-meta {
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  line-height: 1;
  letter-spacing: 0.01em;
}

.topbar-cart svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.topbar-item:hover,
.topbar-item:focus-visible {
  background: #fff;
  color: #96d2d7;
  outline: none;
}

.site-header {
  position: sticky;
  top: var(--topbar-height);
  z-index: 20;
  background: #fff;
  margin-bottom: 0;
}

body.search-open .site-header {
  top: calc(var(--topbar-height) + var(--search-height));
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 1.2rem;
}

.menu-btn {
  border: 0;
  background: transparent;
  font-size: 1.4rem;
  color: var(--ink);
  cursor: pointer;
}

.logo img {
  width: 140px;
  display: block;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  font-size: 1rem;
}

.main-nav a:hover {
  color: var(--primary);
}

.home-carousel {
  position: relative;
  width: 1180px;
  max-width: calc(100vw - 2rem);
  margin-top: 0;
  margin-bottom: 1rem;
  margin-inline: auto;
  touch-action: pan-y;
  user-select: none;
}

.home-carousel-viewport {
  height: 592.77px;
  overflow: hidden;
  background: #f2f2f2;
}

.home-carousel-track {
  display: flex;
  transition: transform 0.45s ease;
}

.home-carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.home-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-nav {
  position: absolute;
  top: auto;
  bottom: 10px;
  transform: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #8bc8cf;
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.carousel-nav.prev {
  left: calc(50% - 46px);
}

.carousel-nav.next {
  left: calc(50% + 6px);
  right: auto;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  padding: 0;
  z-index: 4;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: #c6cad8;
  cursor: pointer;
}

.carousel-dots button.is-active {
  background: #8bc8cf;
}

.home-news {
  margin-top: 0.35rem;
  margin-bottom: 1.6rem;
}

.home-news-box {
  background: #f2f2f2;
  border-left: 2px solid #7fd1dc;
  border-right: 2px solid #7fd1dc;
  padding: 0.7rem 1rem;
}

.home-news-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-news-list li {
  margin: 0;
  padding: 0.58rem 0.2rem;
}

.home-news-list a {
  color: #6e768c;
  text-decoration: underline;
  font-size: 1.02rem;
}

.home-news-divider {
  margin: 1.1rem 0;
  border: 0;
  border-top: 1px solid #d7dce6;
}

.home-news-search {
  display: flex;
  justify-content: center;
}

.home-news-search input {
  width: min(880px, 100%);
  height: 48px;
  border: 1px solid #d8dce6;
  background: #fff;
  text-align: center;
  font: 400 1rem "Dosis", sans-serif;
  color: #778098;
  padding: 0 14px;
}

.home-banners {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.home-banner-item {
  display: block;
}

.home-banner-item img {
  width: 100%;
  height: auto;
  display: block;
}

.new-arrival {
  padding-top: 0.8rem;
  padding-bottom: 0.5rem;
  border-top: 1px solid #d9dde8;
}

.new-arrival h2 {
  margin-bottom: 1rem;
}

.arrival-section-title {
  text-align: center;
  color: #687089;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 2.2rem 0 0;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid #d9dde8;
}

.new-arrival-viewport {
  overflow: hidden;
}

.new-arrival-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.38s ease;
}

.arrival-card {
  flex: 0 0 calc((100% - 3rem) / 4);
  min-width: calc((100% - 3rem) / 4);
  border: 1px solid #d8dce6;
  background: #fff;
  padding: 0.45rem 0.45rem 0.6rem;
  text-align: center;
}

.arrival-thumb {
  display: block;
}

.arrival-thumb img {
  width: 100%;
  aspect-ratio: 1 / 0.88;
  object-fit: cover;
  display: block;
}

.arrival-card h3 {
  margin: 0.55rem 0 0.3rem;
  color: #6c7388;
  font-size: 1.05rem;
  line-height: 1.3;
  font-weight: 400;
  min-height: 2.9em;
}

.arrival-card p {
  margin: 0 0 0.65rem;
  color: #83c8cf;
  font-size: 1.02rem;
  font-weight: 500;
}

.arrival-detail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 98px;
  height: 33px;
  padding: 0 0.65rem;
  background: #8bc8cf;
  color: #fff;
  font-size: 0.82rem;
}

.arrival-all-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(220px, 100%);
  height: 42px;
  margin: 1.1rem auto 0.8rem;
  border: 2px solid #8bc8cf;
  color: #8bc8cf;
  background: #fff;
  font-size: 0.95rem;
}

.arrival-nav {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 0.6rem;
}

.arrival-arrow {
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: #8bc8cf;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem;
  padding-block: 1.2rem;
}

.hero-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 260px;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section {
  padding-block: 2.5rem;
}

.section h2 {
  text-align: center;
  margin-bottom: 1.4rem;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
}

.alt-bg {
  background: var(--bg-soft);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.product-card,
.collection-card,
.product-detail,
.cart-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.product-card img,
.collection-card img,
.product-detail img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.product-card h3 {
  font-size: 1rem;
  line-height: 1.4;
  padding: 0.8rem 0.8rem 0.3rem;
}

.product-card p {
  margin: 0;
  padding: 0 0.8rem 0.9rem;
  font-weight: 700;
  color: #555;
}

.btn-add,
.btn-outline,
.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  padding: 0.55rem 0.95rem;
  font: inherit;
}

.btn-add {
  margin: 0 0.8rem 1rem;
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.btn-add:hover,
.chip:hover,
.btn-outline:hover {
  opacity: 0.9;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.search-summary {
  text-align: center;
  margin: 0 0 1.1rem;
  color: #727887;
}

.collection-page {
  padding-top: 2rem;
}

.collection-breadcrumb {
  color: #8f95a5;
  font-size: 0.78rem;
  margin-bottom: 1.4rem;
  display: flex;
  gap: 0.45rem;
}

.collection-head {
  position: relative;
  margin-bottom: 1.5rem;
}

.collection-head h1 {
  text-align: center;
  font-size: 2.15rem;
  font-weight: 400;
  color: #707891;
}

.collection-head label {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.collection-head select,
.collection-sidebar select {
  border: 1px solid #d5d9e4;
  background: #fff;
  color: #7b8296;
  height: 34px;
  font: 400 0.85rem "Noto Sans JP", sans-serif;
  padding: 0 1.9rem 0 0.6rem;
}

.collection-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 1rem;
}

.collection-sidebar h2 {
  font-size: 0.93rem;
  margin: 0 0 0.7rem;
  font-weight: 600;
}

.collection-sidebar {
  padding-right: 0.6rem;
}

.collection-sidebar label,
.collection-sidebar select {
  width: 100%;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.collection-product-card {
  border: 1px solid #d8dce6;
  background: #fff;
  padding: 10px;
  width: 280px;
  height: 410px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}

.collection-product-thumb {
  display: block;
}

.collection-product-thumb img {
  width: 258px;
  height: 258px;
  object-fit: cover;
  display: block;
  margin-inline: auto;
}

.collection-product-card h3 {
  margin: 0.48rem 0 0.25rem;
  color: #6f778d;
  font-size: 0.76rem;
  line-height: 1.35;
  font-weight: 400;
  min-height: 2.8em;
}

.collection-product-card p {
  margin: 0 0 0.48rem;
  color: #88c8cf;
  font-size: 0.8rem;
}

.collection-product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 40px;
  padding: 0;
  background: #8bc8cf;
  color: #fff;
  font-size: 0.7rem;
  margin-top: auto;
}

.collection-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  margin: 1.4rem 0 0.2rem;
}

.collection-pagination a {
  min-width: 30px;
  height: 30px;
  border: 1px solid #d5d9e4;
  background: #fff;
  color: #6f778d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
}

.collection-pagination a.is-active {
  background: #8bc8cf;
  border-color: #8bc8cf;
  color: #fff;
}

.title-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.title-grid a {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.85rem;
  text-align: center;
  background: #fff;
}

.title-grid a:hover {
  border-color: var(--primary);
  color: #2f5960;
}

.title-logo-section {
  padding-top: 2.4rem;
  background: #fff;
}

.title-logo-heading {
  text-align: center;
  color: #687089;
  font-size: 3.4rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  margin-bottom: 2.6rem;
}

.title-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 3.2rem 1.6rem;
}

.title-logo-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title-logo-card img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.title-logo-card p {
  margin: 0;
  font: 400 14px "Noto Sans JP", sans-serif;
  color: #8bc8cf;
}

.home-social-check {
  background: #fff;
  padding-top: 3.2rem;
  padding-bottom: 3.8rem;
}

.home-social-check-inner {
  text-align: center;
}

.home-social-check h2 {
  margin: 0;
  font: 400 24px "Noto Sans JP", sans-serif;
  color: #7b8193;
  letter-spacing: 0.03em;
}

.home-social-check a {
  display: inline-block;
  margin-top: 1.4rem;
  font: 400 14px "Dosis", sans-serif;
  color: #8a90a0;
  text-decoration: none;
}

.home-social-check a:hover {
  color: #6f7687;
}

.home-footer-banner {
  background: #fff;
  padding: 1.6rem 0 2.2rem;
}

.home-footer-banner-link {
  display: block;
  width: 100%;
}

.home-footer-banner-link img {
  display: block;
  width: 100%;
  max-width: 1180px;
  aspect-ratio: 1180 / 354;
  height: auto;
  object-fit: cover;
}

.product-detail {
  max-width: 900px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.product-detail img {
  height: 100%;
  min-height: 320px;
}

.product-detail > div {
  padding: 1.2rem;
}

.price {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0.65rem 0;
}

.cart-page {
  background: #f5f5f7;
  min-height: 70vh;
  padding: 1.8rem 0 3rem;
}

.cart-checkout {
  background: #fff;
  padding: 1.6rem 1.6rem 2.1rem;
}

.cart-checkout h1 {
  margin: 0;
  text-align: center;
  color: #5a667f;
  font-size: 2rem;
  font-weight: 500;
}

.cart-summary-total {
  text-align: center;
  color: #5a667f;
  font-size: 1.8rem;
  margin: 0.6rem 0 1.1rem;
}

.cart-summary-bottom {
  margin: 1rem 0;
}

.cart-table-head {
  display: grid;
  grid-template-columns: minmax(0, 2fr) 120px 180px 120px;
  gap: 1rem;
  color: #7c8597;
  font-size: 0.92rem;
  border-bottom: 1px solid #dde1ea;
  padding-bottom: 0.75rem;
}

.cart-items-table {
  min-height: 150px;
}

.cart-row {
  display: grid;
  grid-template-columns: minmax(0, 2fr) 120px 180px 120px;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid #eceff5;
  padding: 1rem 0;
}

.cart-product {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.cart-product img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 1px solid #d8dce6;
}

.cart-product-info h3 {
  margin: 0;
  color: #5f6880;
  font-size: 1rem;
  font-weight: 400;
}

.cart-unit,
.cart-line-total {
  margin: 0;
  color: #6e778e;
  font-size: 1rem;
}

.cart-total-cell {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.cart-remove-item {
  border: 1px solid #d8dce6;
  background: #fff;
  color: #7a8397;
  height: 30px;
  min-width: 48px;
  font-size: 0.75rem;
  padding: 0 0.4rem;
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.cart-qty button {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: #8bc8cf;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
}

.cart-qty input {
  width: 44px;
  height: 32px;
  border: 1px solid #d8dce6;
  text-align: center;
  color: #677089;
  font-size: 0.9rem;
}

.cart-empty {
  color: #79839a;
  font-size: 0.95rem;
  padding: 1.4rem 0;
}

.cart-note-wrap {
  margin-top: 1rem;
}

.cart-note-wrap textarea {
  width: 100%;
  min-height: 80px;
  border: 1px solid #d8dce6;
  font-size: 0.88rem;
  color: #677089;
  padding: 0.65rem;
  resize: vertical;
}

.cart-agree {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  color: #707a90;
  margin: 0.4rem 0 1rem;
}

.cart-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  justify-content: center;
}

.cart-checkout-btn,
.cart-clear-btn {
  border: 1px solid #8bc8cf;
  min-width: 210px;
  height: 40px;
  font-size: 0.9rem;
}

.cart-checkout-btn {
  background: #fff;
  color: #8bc8cf;
}

.cart-clear-btn {
  background: #8bc8cf;
  color: #fff;
  border-color: #8bc8cf;
}

.not-found {
  text-align: center;
}

.account-page {
  background: #f5f5f7;
  min-height: 80vh;
}

.account-nav-wrap {
  background: #fff;
  border-bottom: 1px solid #e5e6eb;
}

.account-nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.1rem;
}

.account-brand img {
  width: 120px;
  height: 67px;
  margin: 30px;
  object-fit: contain;
  display: block;
}

.account-links {
  display: flex;
  flex-wrap: nowrap;
  align-self: center;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: #7b8392;
  margin-inline: auto;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 0;
  padding: 0 0.8rem;
}

.nav-link:hover,
.nav-link:focus-visible {
  background: #8bc8cf;
  color: #fff;
  outline: none;
}

.nav-dropdown {
  position: relative;
}

.nav-trigger {
  min-width: 76px;
  justify-content: center;
}

.nav-dropdown-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: min(240px, 78vw);
  max-height: 620px;
  overflow: auto;
  background: #fff;
  border-left: 1px solid #d8dce6;
  border-right: 1px solid #d8dce6;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  display: none;
  z-index: 30;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.95rem 2rem;
  color: #64708a;
  line-height: 1.45;
  white-space: normal;
}

.nav-dropdown-menu a:hover {
  color: #485770;
}

.nav-items-mega {
  width: min(820px, 88vw);
  padding: 2.1rem 3rem 2.4rem;
  max-height: none;
  overflow: visible;
}

.nav-items-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 2rem 2.5rem;
}

.nav-items-group h3 {
  margin: 0;
  color: #4e5d77;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.2;
}

.nav-items-mega a {
  padding: 0;
  margin-top: 0.9rem;
  color: #6d7890;
  font-size: 0.88rem;
  line-height: 1.4;
}

.nav-items-mega a:hover {
  color: #8bc8cf;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}

.account-notice {
  background: #dcdfea;
  color: #7e8391;
  text-align: center;
  font-size: 0.75rem;
  padding: 0.68rem 1rem;
}

.profile-dashboard {
  padding-block: 2.8rem 4rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 3.2rem;
}

.profile-panel h1,
.profile-orders h2 {
  font-family: "Noto Sans JP", sans-serif;
  color: #5a657b;
  font-weight: 500;
}

.profile-panel h1 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.profile-panel h2 {
  color: #4e6485;
  font-size: 1.85rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.profile-action-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1.2rem;
}

.profile-mini-square {
  width: 24px;
  height: 52px;
  background: #8bc8cf;
  border: 1px solid #8bc8cf;
  display: inline-block;
}

.profile-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 1.15rem;
  border: 1px solid #8bc8cf;
  color: #8bc8cf;
  background: transparent;
  font-size: 0.94rem;
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
}

.profile-email-label {
  margin: 0 0 0.5rem;
  color: #7b8190;
  font-size: 0.92rem;
}

.profile-email-line {
  margin: 0 0 1rem;
  color: #7b8190;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.profile-inline-input {
  height: 52px;
  min-width: 280px;
  border: 1px solid #d8dce6;
  background: #fff;
  color: #657087;
  padding: 0 0.8rem;
  font: inherit;
}

.profile-inline-email {
  height: 44px;
  min-width: 260px;
  border: 1px solid #d8dce6;
  background: #fff;
  color: #657087;
  padding: 0 0.7rem;
  font: inherit;
}

.profile-email-submit {
  border: 0;
  background: transparent;
  color: #7b8190;
  text-decoration: underline;
  font: inherit;
  cursor: pointer;
  padding: 0;
}

.profile-alert {
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.profile-alert-error {
  color: #c44f57;
}

.profile-alert-success {
  color: #3e8f66;
}

.profile-country {
  margin: 0 0 1.5rem;
  color: #7b8190;
  font-size: 1rem;
}

.profile-logout-form {
  margin: 0;
}

.profile-logout-btn {
  min-width: 150px;
}

.profile-address-btn {
  min-width: 190px;
}

.profile-orders {
  padding-top: 4.3rem;
}

.profile-orders h2 {
  font-size: 2rem;
  margin: 0 0 0.8rem;
}

.profile-orders p {
  margin: 0;
  font-size: 1rem;
  color: #7b8190;
}

.account-auth-grid {
  padding-block: 4rem 5rem;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 4rem;
}

.account-panel h1,
.account-panel h2 {
  color: #5a657b;
  font-weight: 500;
  margin-bottom: 1.3rem;
}

.account-panel h1 {
  font-size: 2.8rem;
}

.account-panel h2 {
  font-size: 2.4rem;
}

.account-form label,
.account-pass-row a {
  color: #7d8594;
  font-size: 0.92rem;
}

.account-form input {
  width: 100%;
  height: 52px;
  border: 1px solid #d8dce6;
  background: #fff;
  padding: 0 14px;
  margin: 0.5rem 0 1.1rem;
  font: inherit;
  color: #657087;
}

.account-pass-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.account-btn {
  border: 0;
  background: #8bc8cf;
  color: #fff;
  min-width: 290px;
  height: 52px;
  font: 500 1rem "Dosis", sans-serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.account-panel-create {
  padding-top: 4.8rem;
}

.account-login-error {
  margin: 0 0 1rem;
  color: #c44f57;
  font-size: 0.95rem;
}

.pre-footer {
  margin-top: 0;
  background: #ececef;
  padding: 2.4rem 0 2.8rem;
  color: #6d7383;
}

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

.footer-col {
  padding: 0.8rem 1.9rem;
  border-right: 1px solid #cfd3de;
}

.footer-col:last-child {
  border-right: 0;
}

.footer-col h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-col h4 {
  font-size: 1.12rem;
  margin: 1rem 0 0.7rem;
  padding-top: 0.7rem;
  border-top: 1px solid #d8dbe4;
}

.footer-col p {
  margin: 0;
  line-height: 1.5;
  font-size: 0.96rem;
}

.footer-card-logos {
  background: #fff;
  border: 1px solid #d9dce5;
  padding: 0.7rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.35rem;
}

.footer-card-logos span {
  border: 1px solid #dde0e9;
  background: #fff;
  color: #60687c;
  font-size: 0.72rem;
  line-height: 1;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 0.9rem;
}

.footer-links a {
  color: #616b82;
  text-decoration: underline;
  font-size: 0.95rem;
}

.footer-calendar {
  margin-top: 1.2rem;
}

.footer-calendar-head {
  background: #fff;
  border: 1px solid #d7dbe5;
  border-bottom: 0;
  text-align: center;
  padding: 0.45rem 0.6rem;
  font-size: 0.84rem;
}

.footer-calendar table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
}

.footer-calendar th,
.footer-calendar td {
  border: 1px solid #d7dbe5;
  text-align: center;
  padding: 0.42rem 0.25rem;
  background: #fff;
}

.footer-calendar thead th {
  background: #dcecf2;
}

.footer-calendar .is-holiday {
  background: #f6d8d8;
}

.footer-note {
  margin-top: 0.55rem !important;
  font-size: 0.84rem !important;
}

.footer-logo {
  width: 130px;
  height: auto;
  display: block;
  margin-bottom: 1.1rem;
}

.footer-mail {
  font-size: 1.05rem !important;
  font-weight: 700;
  margin-top: 0.4rem !important;
}

.site-footer {
  margin: 60px 0 0;
  background: #ececef;
  padding: 2.2rem 0 2.6rem;
}

.footer-mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}

.footer-currency {
  min-width: 62px;
  height: 40px;
  border: 1px solid #d7dbe5;
  background: #f6f6f8;
  color: #7d8496;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.76rem;
}

.footer-brand-copy,
.footer-powered {
  margin: 0;
  color: #7f8697;
  font-size: 0.86rem;
}

.footer-payment-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.36rem;
  margin-top: 0.2rem;
}

.footer-payment-row span {
  height: 22px;
  min-width: 38px;
  padding: 0 0.45rem;
  border: 1px solid #cfd4e0;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  background: #fff;
  color: #5f6880;
}

.legal-notice-page {
  background: #fff;
}

.legal-notice-container {
  max-width: 760px;
  padding-top: 2.6rem;
  padding-bottom: 4rem;
}

.legal-notice-page h1 {
  margin: 0 0 1.8rem;
  text-align: center;
  color: #6d7890;
  font-size: 1.7rem;
  font-weight: 400;
}

.legal-notice-block {
  margin-bottom: 2.8rem;
}

.legal-notice-block h2 {
  margin: 0 0 1.1rem;
  color: #5f6b84;
  font-size: 1.3rem;
  font-weight: 500;
}

.legal-notice-block h3 {
  margin: 0 0 0.85rem;
  color: #5f6b84;
  font-size: 1.1rem;
  font-weight: 500;
}

.page-user-guide .legal-notice-block h2,
.page-user-guide .legal-notice-block h3 {
  text-align: left;
  font-weight: 700;
}

.page-user-guide .legal-notice-page h1 {
  text-align: left;
  font-weight: 700;
}

.legal-notice-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.legal-notice-table th,
.legal-notice-table td {
  border: 1px solid #d8dce6;
  padding: 0.65rem 0.8rem;
  color: #6c758a;
  font-size: 0.9rem;
  vertical-align: top;
}

.legal-notice-table th {
  width: 38%;
  font-weight: 600;
  color: #5f6880;
}

.legal-notice-block p,
.legal-notice-block li {
  margin: 0 0 0.55rem;
  color: #6f7890;
  font-size: 0.9rem;
  line-height: 1.6;
}

.legal-notice-block ol {
  margin: 0.4rem 0 0;
  padding-left: 1.6rem;
}

.legal-payment-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.5rem;
  border: 1px solid #d8dce6;
  background: #fff;
  padding: 0.8rem;
  margin-bottom: 1rem;
}

.legal-payment-grid span {
  border: 1px solid #cfd4e0;
  border-radius: 3px;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #5f6880;
  background: #fff;
}

.legal-bank-box {
  border: 1px solid #d8dce6;
  background: #fff;
  padding: 0.8rem;
}

.contact-page {
  background: #efefef;
  min-height: 62vh;
}

.contact-spacer {
  height: 74px;
  background: #fff;
}

.contact-wrapper {
  padding: 3.2rem 0 3.8rem;
}

.contact-card {
  background: #fff;
  max-width: 980px;
  margin: 0 auto;
  padding: 2.2rem 2.4rem 2.6rem;
}

.contact-card h1 {
  margin: 0 0 1.8rem;
  color: #1f2a3f;
  font-size: 2.2rem;
  font-weight: 700;
}

.contact-form label {
  display: block;
  margin-bottom: 1rem;
}

.contact-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.contact-form label span {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: #6f778b;
  font-size: 1rem;
}

.contact-form label span em {
  font-style: normal;
  color: #d06464;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #d5d9e3;
  background: transparent;
  color: #5f6880;
  font-size: 0.96rem;
  padding: 0.5rem 0;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #c0c6d0;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.8rem;
}

.contact-actions button {
  border: 0;
  width: 86px;
  height: 36px;
  background: #b9a04f;
  color: #fff;
  font-size: 0.92rem;
}

.register-page {
  background: #f5f5f7;
  min-height: 62vh;
}

.register-auth-grid {
  padding-block: 3rem 4rem;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 4rem;
}

.register-panel h1,
.register-panel h2 {
  color: #5a657b;
  font-weight: 500;
  margin: 0 0 1.2rem;
}

.register-panel h1 {
  font-size: 3rem;
}

.register-panel h2 {
  font-size: 2.8rem;
}

.register-form label,
.register-panel-login p {
  color: #7d8594;
  font-size: 0.92rem;
}

.register-form input {
  width: 100%;
  border: 1px solid #d6dae4;
  height: 52px;
  font-size: 1.6rem;
  padding: 0 1.1rem;
  margin: 0.6rem 0 1.35rem;
  color: #5a657b;
}

.register-form input::placeholder {
  color: #b2b8c5;
}

.register-check {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0.1rem 0 1.4rem;
}

.register-check input {
  width: 18px;
  height: 18px;
  margin: 0;
}

.register-btn {
  border: 0;
  min-width: 290px;
  height: 52px;
  background: #8bc8cf;
  color: #fff;
  font: 500 1rem "Dosis", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.register-error {
  color: #c25050;
  font-size: 0.9rem;
  margin: 0 0 0.9rem;
}

.register-panel-login {
  padding-top: 2.2rem;
}

.product-page {
  background:
    radial-gradient(circle at 85% 10%, rgba(141, 200, 206, 0.16), transparent 34%),
    radial-gradient(circle at 15% 85%, rgba(93, 104, 128, 0.08), transparent 36%),
    #f5f6fa;
  padding-bottom: 2.5rem;
}

.product-main {
  background: #fff;
  padding: 1.6rem 1.6rem 2.2rem;
  margin-top: 1.2rem;
  border: 1px solid #e2e6ef;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(39, 58, 93, 0.08);
}

.product-breadcrumb {
  color: #8a91a0;
  font-size: 0.75rem;
  display: flex;
  gap: 0.45rem;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 1.8rem;
  align-items: start;
}

.product-gallery-main {
  border: 1px solid #dce2ee;
  border-radius: 12px;
  background: #fff;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery-thumbs {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.45rem;
}

.product-thumb {
  border: 1px solid #d8dce6;
  border-radius: 10px;
  background: #fff;
  padding: 0;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.product-thumb:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(39, 58, 93, 0.12);
}

.product-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.product-info h1 {
  margin: 0;
  font-size: 1.85rem;
  line-height: 1.22;
  color: #485878;
  font-weight: 600;
}

.product-info {
  position: sticky;
  top: 112px;
  align-self: start;
}

.product-badges {
  margin-top: 0.65rem;
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0.15rem 0.55rem;
  border: 1px solid #d3dae8;
  border-radius: 999px;
  background: #f6f8fd;
  color: #5c6780;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.product-price {
  margin: 0.5rem 0 0.95rem;
  color: #68b5be;
  font-size: 1.95rem;
  font-weight: 700;
}

.product-note,
.product-code {
  color: #798094;
  font-size: 0.78rem;
  margin: 0.35rem 0;
}

.product-select-wrap {
  display: block;
  margin-top: 0.7rem;
}

.product-select-wrap select {
  width: 100%;
  height: 42px;
  border: 1px solid #d3dae8;
  border-radius: 10px;
  background: #fff;
  color: #5b667f;
  font-size: 0.9rem;
  padding: 0 0.75rem;
}


.product-qty {
  margin: 1rem 0 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.product-qty button {
  width: 32px;
  height: 32px;
  border: 1px solid #d8dce6;
  border-radius: 8px;
  background: #7fbec7;
  color: #fff;
}

.product-qty input {
  width: 54px;
  height: 32px;
  text-align: center;
  border: 1px solid #d8dce6;
  border-radius: 8px;
  color: #60697f;
}

.product-info .btn-add {
  width: 100%;
  max-width: 300px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #73b6c0 0%, #8ac8cf 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 8px 20px rgba(115, 182, 192, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.product-info .btn-add:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(115, 182, 192, 0.42);
}

.product-specs {
  margin-top: 1.6rem;
}

.product-specs h2 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  color: #6c758b;
}

.product-specs table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(39, 58, 93, 0.06);
}

.product-specs th,
.product-specs td {
  border: 1px solid #d8dce6;
  padding: 0.55rem 0.7rem;
  font-size: 0.78rem;
  color: #6e778d;
  text-align: left;
  vertical-align: top;
}

.product-specs th {
  width: 22%;
  color: #5f6880;
}

.product-related {
  margin-top: 1.6rem;
  background: #fff;
  padding: 1.6rem 1.2rem 2rem;
  border: 1px solid #e2e6ef;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(39, 58, 93, 0.08);
}

.product-related h2 {
  margin: 0 0 1rem;
  text-align: center;
  color: #6d758d;
  font-size: 2rem;
  font-weight: 500;
}

.product-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.product-related-card {
  border: 1px solid #d8dce6;
  border-radius: 12px;
  background: #fff;
  padding: 0.6rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.product-related-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(39, 58, 93, 0.12);
}

.product-related-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-related-card h3 {
  margin: 0.55rem 0 0.2rem;
  font-size: 0.75rem;
  color: #6f778d;
  min-height: 2.8em;
}

.product-related-card p {
  margin: 0 0 0.4rem;
  color: #88c8cf;
  font-size: 0.8rem;
}

@media (max-width: 1000px) {
  .product-info {
    position: static;
    top: auto;
  }

  .account-nav {
    min-height: 76px;
    gap: 1.2rem;
    justify-content: flex-start;
  }

  .account-brand img {
    width: 110px;
  }

  .account-links {
    gap: 0.45rem;
    font-size: 0.9rem;
  }

  .nav-link {
    min-height: 76px;
    padding: 0 0.6rem;
  }

  .nav-dropdown-menu {
    width: min(230px, 92vw);
    max-height: 420px;
  }

  .nav-items-mega {
    width: min(640px, 94vw);
    padding: 1.5rem;
    max-height: 72vh;
    overflow: auto;
  }

  .nav-items-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem 1.6rem;
  }

  .nav-items-group h3 {
    font-size: 0.88rem;
  }

  .nav-items-mega a {
    font-size: 0.88rem;
    margin-top: 0.7rem;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .home-carousel {
    margin-top: 0.2rem;
    width: 100%;
  }

  .home-carousel-viewport {
    height: auto;
    aspect-ratio: 1180 / 592.77;
  }

  .home-news-box {
    padding: 0.6rem 0.7rem;
  }

  .home-news-list a {
    font-size: 0.92rem;
  }

  .home-banners {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .arrival-card {
    flex-basis: calc((100% - 1rem) / 2);
    min-width: calc((100% - 1rem) / 2);
  }

  .hero-card {
    min-height: 220px;
  }

  .product-grid,
  .title-grid,
  .title-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-layout {
    grid-template-columns: 1fr;
  }

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

  .collection-head label {
    position: static;
    transform: none;
    display: flex;
    justify-content: flex-end;
    margin-top: 0.8rem;
  }

  .title-logo-heading {
    font-size: 2.5rem;
  }

  .title-logo-card p {
    font-size: 1.45rem;
  }

  .home-social-check h2 {
    font-size: 24px;
  }

  .home-social-check a {
    font-size: 14px;
  }

  .product-detail {
    grid-template-columns: 1fr;
  }

  .footer-columns {
    grid-template-columns: 1fr;
  }

  .footer-col {
    border-right: 0;
    border-bottom: 1px solid #cfd3de;
    padding: 1.2rem 0;
  }

  .footer-col:last-child {
    border-bottom: 0;
  }

  .profile-dashboard {
    grid-template-columns: 1fr;
    gap: 2.6rem;
    padding-block: 2.6rem 3.3rem;
  }

  .profile-panel h1 {
    font-size: 1.55rem;
  }

  .profile-panel h2 {
    font-size: 1.6rem;
  }

  .profile-outline-btn {
    height: 46px;
    font-size: 1rem;
  }

  .profile-mini-square {
    height: 46px;
  }

  .profile-inline-input,
  .profile-inline-email {
    min-width: 0;
    width: 100%;
  }

  .profile-email-line {
    gap: 0.55rem;
  }

  .profile-email-line,
  .profile-country,
  .profile-orders p {
    font-size: 1rem;
  }

  .profile-orders {
    padding-top: 0;
  }

  .profile-orders h2 {
    font-size: 1.55rem;
  }

  .account-auth-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
    padding-block: 2.5rem;
  }

  .account-panel-create {
    padding-top: 0;
  }

  .account-btn {
    width: 100%;
    min-width: 0;
  }

  .legal-notice-container {
    max-width: 100%;
  }

  .legal-payment-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-card {
    padding: 1.6rem 1.2rem 1.8rem;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .register-auth-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
    padding-block: 2.5rem;
  }

  .register-panel h1,
  .register-panel h2 {
    font-size: 2.4rem;
  }

  .register-panel-login {
    padding-top: 0;
  }

  .register-btn {
    width: 100%;
    min-width: 0;
  }

  .product-layout {
    grid-template-columns: 1fr;
  }

  .product-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cart-table-head {
    grid-template-columns: minmax(0, 1.6fr) 90px 120px 90px;
    gap: 0.6rem;
  }

  .cart-row {
    grid-template-columns: minmax(0, 1.6fr) 90px 120px 90px;
    gap: 0.6rem;
  }

  .cart-product img {
    width: 84px;
    height: 84px;
  }
}

@media (max-width: 600px) {
  :root {
    --topbar-height: 44px;
    --search-height: 40px;
  }

  .topbar-inner {
    gap: 0.55rem;
  }

  .topbar-cart-meta {
    font-size: 0.82rem;
  }

  .product-grid,
  .title-grid,
  .title-logo-grid {
    grid-template-columns: 1fr;
  }

  .collection-grid {
    grid-template-columns: 1fr;
  }

  .collection-head h1 {
    font-size: 1.7rem;
  }

  .title-logo-grid {
    gap: 2rem 0.8rem;
  }

  .title-logo-heading {
    font-size: 2rem;
    margin-bottom: 1.8rem;
  }

  .home-social-check h2 {
    font-size: 24px;
  }

  .home-social-check a {
    font-size: 14px;
    margin-top: 1rem;
  }

  .arrival-card {
    flex-basis: 100%;
    min-width: 100%;
  }

  .cart-table-head {
    display: none;
  }

  .cart-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .cart-unit::before {
    content: "??: ";
  }

  .cart-line-total::before {
    content: "??: ";
  }

  .cart-actions {
    flex-direction: column;
  }

  .cart-checkout-btn,
  .cart-clear-btn {
    width: 100%;
    min-width: 0;
  }
}



/* Global crop tweak: hides bottom embedded captions on non-logo media */
:root {
  --non-logo-image-y-offset: 18px;
}

.home-carousel-slide img,
.arrival-thumb img,
.hero-card img,
.product-card img,
.collection-card img,
.product-detail img,
.collection-product-thumb img,
.home-footer-banner-link img,
.cart-product img,
.product-gallery-main img,
.product-thumb img,
.product-related-thumb img {
  object-position: center calc(50% - var(--non-logo-image-y-offset));
}

/* Strong global bottom crop for non-logo content images */
:root {
  --non-logo-bottom-cut: 30px;
}

.home-carousel-slide img,
.home-banner-item img,
.arrival-thumb img,
.hero-card img,
.product-card img,
.collection-card img,
.product-detail img,
.collection-product-thumb img,
.home-footer-banner-link img,
.cart-product img,
.product-gallery-main img,
.product-thumb img,
.product-related-thumb img {
  clip-path: inset(0 0 var(--non-logo-bottom-cut) 0);
}

/* Final override: stronger crop + container height compensation */
:root {
  --non-logo-bottom-cut: 56px;
}

/* Carousel: cut more and shrink viewport height accordingly */
.home-carousel-viewport {
  height: calc(592.77px - var(--non-logo-bottom-cut));
}

.home-carousel-slide img {
  clip-path: none;
  height: calc(100% + var(--non-logo-bottom-cut));
  transform: translateY(calc(-1 * var(--non-logo-bottom-cut)));
}

/* Banners with auto height: crop and remove reserved bottom space */
.home-banner-item,
.home-footer-banner-link {
  overflow: hidden;
}

.home-banner-item img,
.home-footer-banner-link img {
  clip-path: inset(0 0 var(--non-logo-bottom-cut) 0);
  margin-bottom: calc(-1 * var(--non-logo-bottom-cut));
}

/* Keep mobile ratio aligned with the stronger crop */
@media (max-width: 1200px) {
  .home-carousel-viewport {
    aspect-ratio: 1180 / 536.77;
    height: auto;
  }
}

/* Product-page override: lower crop + container fit */
.product-page {
  --product-bottom-cut-main: 42px;
  --product-bottom-cut-thumb: 28px;
}

.product-page .product-gallery-main {
  aspect-ratio: auto;
  align-items: flex-start;
  overflow: hidden;
}

.product-page .product-gallery-main img {
  width: 100%;
  height: auto;
  max-height: none;
  clip-path: inset(0 0 var(--product-bottom-cut-main) 0);
  margin-bottom: calc(-1 * var(--product-bottom-cut-main));
}

.product-page .product-thumb,
.product-page .product-related-thumb {
  overflow: hidden;
}

.product-page .product-thumb img,
.product-page .product-related-thumb img {
  clip-path: inset(0 0 var(--product-bottom-cut-thumb) 0);
  margin-bottom: calc(-1 * var(--product-bottom-cut-thumb));
}

/* Home banners: unified to banner_1 original ratio (810x272) */
.home-banner-item {
  aspect-ratio: 810 / 272;
  overflow: hidden;
}

.home-banner-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #fff;
  clip-path: none;
  margin-bottom: 0;
  transform: none;
}

@media (max-width: 1000px) {
  .home-banner-item {
    aspect-ratio: 810 / 272;
  }
}

/* Home banners final normalization: all four same visual size */
.home-banners {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.home-banner-item {
  display: block;
  width: 100%;
  aspect-ratio: 810 / 272;
  overflow: hidden;
}

.home-banner-item img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  background: transparent !important;
  clip-path: none !important;
  margin: 0 !important;
  transform: none !important;
}

/* Home pre-footer single-column */
.page-home .pre-footer .footer-columns {
  grid-template-columns: minmax(0, 1fr);
  max-width: 760px;
  margin: 0 auto;
}

.page-home .pre-footer .footer-col {
  border-right: 0;
  border-bottom: 0;
  padding: 1rem 2rem;
  text-align: center;
}

.page-home .pre-footer .footer-logo {
  width: 170px;
  margin: 0 auto 1.4rem;
}

.page-home .pre-footer .footer-links {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 32px;
  margin: 50px;
}

.page-home .pre-footer .footer-links a {
  display: inline-block;
  margin: 0;
  font-size: 1.04rem;
  white-space: nowrap;
}
.pre-footer-copy {
  margin-top: 1rem;
  margin: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  color: #5f687f;
}
/* Top Search Refresh */
.top-search {
  background: linear-gradient(180deg, #f7fbfc 0%, #eef6f8 100%);
  border-bottom: 1px solid #d7e7eb;
}

.top-search-inner {
  min-height: var(--search-height);
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 0;
  border-right: 0;
}

.top-search-form {
  width: min(820px, 100%);
  position: relative;
}

.top-search-form input {
  width: 100%;
  height: 42px;
  border: 1.5px solid #c8dfe4;
  border-radius: 999px;
  background: #fff;
  text-align: center;
  font: 500 0.95rem "Noto Sans JP", "Dosis", sans-serif;
  color: #5f6f85;
  outline: none;
  padding: 0 16px;
  box-shadow: 0 4px 14px rgba(120, 165, 173, 0.12);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.top-search-form input::placeholder {
  color: #8b9bb0;
}

.top-search-form input:focus {
  border-color: #8bc8cf;
  box-shadow: 0 0 0 4px rgba(139, 200, 207, 0.18), 0 8px 18px rgba(120, 165, 173, 0.16);
  background: #fcfeff;
}

.topbar-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.top-search-form input::placeholder {
  text-align: center;
}

.page-terms-of-service .legal-notice-page h1,
.page-terms-of-service .legal-notice-block h2,
.page-terms-of-service .legal-notice-block h3 {
  text-align: left;
  font-weight: 700;
}

.page-privacy .legal-notice-page h1,
.page-privacy .legal-notice-block h2,
.page-privacy .legal-notice-block h3 {
  text-align: left;
  font-weight: 700;
}

/* Checkout */
.checkout-page {
  background: #f5f5f7;
}

.checkout-container {
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 1.4rem;
  align-items: start;
  padding-top: 1.2rem;
  padding-bottom: 2.4rem;
}

.checkout-main {
  background: #fff;
  border: 1px solid #e5e7ee;
  padding: 1.4rem;
}

.checkout-title {
  font-size: 1.65rem;
  margin: 0 0 1.2rem;
  color: #3f4f72;
}

.checkout-sub {
  text-align: center;
  color: #7f889d;
  margin: 0 0 0.6rem;
  font-size: 0.84rem;
}

.checkout-express-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.checkout-express-btn {
  border: 0;
  border-radius: 8px;
  min-height: 44px;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.checkout-express-btn.shop { background: #5a30f0; }
.checkout-express-btn.paypal { background: #f8c33c; color: #1f2c55; }
.checkout-express-btn.gpay { background: #111; }

.checkout-block {
  margin-top: 1.1rem;
}

.checkout-block h2 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  color: #2f3f67;
}

.checkout-block-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checkout-block-head a {
  color: #f15a40;
  font-size: 0.88rem;
}

.checkout-main input:not([type="radio"]),
.checkout-main select {
  width: 100%;
  border: 1px solid #d9deea;
  border-radius: 7px;
  padding: 0.74rem 0.75rem;
  margin-top: 0.52rem;
  font-size: 0.95rem;
  color: #5a647d;
  background: #fff;
}

.checkout-payment-option input[type="radio"] {
  width: auto;
  margin: 0;
  flex: 0 0 auto;
}

.checkout-payment-option label {
  justify-content: flex-start;
}

.checkout-payment-option label span {
  white-space: nowrap;
}

.checkout-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.checkout-payment-option {
  border: 1px solid #dde3ef;
  border-top: 0;
  padding: 0.72rem 0.7rem;
}

.checkout-payment-option:first-of-type {
  border-top: 1px solid #dde3ef;
  border-radius: 8px 8px 0 0;
}

.checkout-payment-option:last-of-type {
  border-radius: 0 0 8px 8px;
}

.checkout-payment-option.is-active {
  border-color: #f15a40;
}

.checkout-payment-option label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #404d6c;
}

.checkout-card-fields {
  border: 1px solid #dde3ef;
  border-top: 0;
  padding: 0.6rem 0.7rem 0.9rem;
  border-radius: 0 0 8px 8px;
}

.checkout-payment-note {
  border: 1px solid #dde3ef;
  border-top: 0;
  padding: 0.8rem 0.9rem;
  border-radius: 0 0 8px 8px;
  color: #4c5877;
  background: #fafbfd;
  font-size: 0.93rem;
}

.checkout-payment-note.is-hidden,
.checkout-card-fields.is-hidden {
  display: none;
}

.checkout-pay-btn {
  width: 100%;
  margin-top: 1.15rem;
  min-height: 50px;
  border: 0;
  border-radius: 8px;
  background: #ea3f06;
  color: #fff;
  font-size: 1.06rem;
  font-weight: 700;
  cursor: pointer;
}

.checkout-summary {
  background: #fff;
  border: 1px solid #e5e7ee;
  padding: 1.15rem;
}

.checkout-summary h2 {
  margin: 0 0 0.75rem;
  color: #3e4e73;
}

.checkout-item-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 0.6rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.checkout-item-row img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #e3e6ef;
}

.checkout-item-title {
  margin: 0;
  color: #495778;
  font-size: 0.86rem;
}

.checkout-item-qty {
  margin: 0.2rem 0 0;
  color: #7f879a;
  font-size: 0.78rem;
}

.checkout-item-price {
  margin: 0;
  color: #2e3e66;
  font-weight: 700;
}

.checkout-coupon {
  margin-top: 0.6rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.45rem;
}

.checkout-coupon input {
  border: 1px solid #d9deea;
  border-radius: 7px;
  min-height: 42px;
  padding: 0 0.7rem;
}

.checkout-coupon button {
  border: 1px solid #d9deea;
  border-radius: 7px;
  min-height: 42px;
  padding: 0 1rem;
  background: #f3f5fa;
  color: #62708f;
}

.checkout-totals {
  margin-top: 0.8rem;
  border-top: 1px solid #e3e7f0;
  padding-top: 0.75rem;
}

.checkout-totals > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.45rem;
  color: #4f5c79;
}

.checkout-totals .grand {
  margin-top: 0.55rem;
  padding-top: 0.55rem;
  border-top: 1px solid #e3e7f0;
}

.checkout-totals .grand strong {
  font-size: 1.3rem;
  color: #24345e;
}

.checkout-empty {
  color: #7f879a;
  margin: 0.3rem 0 1rem;
}

@media (max-width: 980px) {
  .checkout-container {
    grid-template-columns: 1fr;
  }
}



@keyframes cartIconBump {
  0% { transform: scale(1) rotate(0deg); }
  35% { transform: scale(1.12) rotate(-8deg); }
  60% { transform: scale(0.96) rotate(5deg); }
  100% { transform: scale(1) rotate(0deg); }
}

.topbar-cart-bump {
  animation: cartIconBump 320ms ease;
}

