.landing-page {
  background: #f3efe7;
  color: #141414;
}

.landing {
  width: 100%;
}

.landing-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.landing-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.landing-hero-media {
  position: absolute;
  inset: 0;
}

.landing-swiper,
.landing-swiper .swiper-wrapper,
.landing-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.landing-swiper .swiper-slide {
  opacity: 0 !important;
}

.landing-swiper .swiper-slide-active {
  opacity: 1 !important;
}

.landing-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.65), rgba(10, 10, 10, 0.3) 45%, rgba(10, 10, 10, 0.75));
}

.landing-header {
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 5;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.landing-logo {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 28px;
  letter-spacing: 0.02em;
}

.landing-menu-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 2px;
  position: relative;
}

.menu-icon::before {
  position: absolute;
  top: -6px;
  left: 0;
}

.menu-icon::after {
  position: absolute;
  top: 6px;
  left: 0;
}

.landing-hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 0 18px;
  max-width: 880px;
  color: rgba(255, 255, 255, 0.92);
}

.landing-kicker {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.9;
}

.landing-title {
  margin: 12px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 72px;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.landing-subtitle {
  margin: 14px auto 0;
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.8;
}

.landing-cta {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.12);
  transition: transform 0.15s ease, background 0.15s ease;
}

.landing-cta:hover {
  transform: translateY(-1px);
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
}

.landing-cta--ghost {
  background: transparent;
}

.landing-cta--dark {
  border-color: rgba(18, 18, 18, 0.35);
  color: rgba(18, 18, 18, 0.86);
  background: rgba(255, 255, 255, 0.72);
}

.landing-cta--dark:hover {
  background: rgba(255, 255, 255, 0.9);
  color: rgba(18, 18, 18, 0.95);
}

.landing-menu-open {
  overflow: hidden;
}

.landing-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.landing-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.landing-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.landing-menu-panel {
  position: relative;
  width: 360px;
  max-width: 92vw;
  height: 100%;
  background: rgba(10, 10, 10, 0.92);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.9);
  padding: 18px 18px 16px;
  transform: translateX(18px);
  transition: transform 0.18s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.landing-menu.is-open .landing-menu-panel {
  transform: translateX(0);
}

.landing-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.landing-menu-title {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 18px;
}

.landing-menu-close {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
  cursor: pointer;
}

.landing-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 6px;
}

.landing-menu-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  letter-spacing: 0.02em;
}

.landing-menu-nav a:hover {
  color: #fff;
}

.landing-menu-search {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.landing-menu-search-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.landing-menu-search-row {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.landing-menu-search-row input {
  flex: 1;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.9);
  outline: none;
}

.landing-menu-search-row input:focus {
  border-color: rgba(255, 255, 255, 0.38);
}

.landing-menu-search-btn {
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
}

.landing-section {
  padding: 70px 0;
}

.landing-light {
  background: #f6f1e8;
}

.landing-dark {
  position: relative;
  background: #1b1510;
  color: rgba(255, 255, 255, 0.88);
}

.landing-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 9, 7, 0.74), rgba(12, 9, 7, 0.88)),
    url("../image/landing/dark.jpg") center / cover no-repeat;
  filter: blur(0px);
  opacity: 0.65;
}

.landing-dark .landing-container {
  position: relative;
  z-index: 1;
}

.landing-section-title {
  margin: 0 0 20px;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(18, 18, 18, 0.92);
}

.landing-section-title--light {
  color: rgba(255, 255, 255, 0.92);
}

.landing-product-intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: center;
}

.landing-product-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.landing-product-media-link {
  display: block;
  border-radius: 14px;
  overflow: hidden;
}

.landing-product-media-link:focus-visible {
  outline: 2px solid rgba(12, 74, 110, 0.45);
  outline-offset: 3px;
}

.landing-product-media-link:hover img {
  transform: scale(1.02);
}

.landing-product-gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.75);
  transition: transform 180ms ease;
}

.landing-product-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  padding: 18px;
}

.landing-product-kicker {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(18, 18, 18, 0.65);
}

.landing-product-title {
  margin: 10px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.landing-product-desc {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(18, 18, 18, 0.75);
}

.landing-product-features {
  margin: 14px 0 0;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(18, 18, 18, 0.78);
}

.landing-product-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.landing-contact {
  display: flex;
  justify-content: center;
}

.landing-contact-card {
  width: min(720px, 100%);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  padding: 22px;
  text-align: center;
}

.landing-contact-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 28px;
  font-weight: 600;
}

.landing-contact-card p {
  margin: 12px 0 0;
  color: rgba(18, 18, 18, 0.7);
  line-height: 1.9;
}

.landing-contact-actions {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

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

.landing-category {
  text-decoration: none;
  color: inherit;
}

.landing-category-media {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  overflow: hidden;
}

.landing-category-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.landing-category:hover .landing-category-media img {
  transform: scale(1.02);
}

.landing-category-label {
  margin-top: 12px;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  color: #b48d57;
}

.landing-banner {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.landing-banner-media {
  position: absolute;
  inset: 0;
}

.landing-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.06) brightness(0.82);
}

.landing-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.72), rgba(10, 10, 10, 0.52));
}

.landing-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 18px;
  max-width: 900px;
  color: rgba(255, 255, 255, 0.92);
}

.landing-banner-content h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 42px;
  font-weight: 600;
}

.landing-banner-content p {
  margin: 14px 0 0;
  line-height: 2;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}

.landing-why {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 22px;
}

.why-item {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 16px;
  align-items: center;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 16px;
}

.why-copy h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.why-copy p {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
}

.why-media {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.why-media img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.landing-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.landing-link {
  color: rgba(18, 18, 18, 0.65);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.landing-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.landing-product {
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.landing-product:hover {
  transform: translateY(-2px);
  box-shadow: var(--gogo-shadow-md);
}

.landing-product-media {
  background: #fff;
}

.landing-product-media img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  padding: 14px;
}

.landing-product-body {
  padding: 12px 14px 14px;
}

.landing-product-name {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  min-height: 36px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.landing-product-price {
  margin-top: 8px;
  font-weight: 900;
  color: #b48d57;
}

.landing-empty {
  padding: 18px;
  border: 1px dashed rgba(0, 0, 0, 0.25);
  border-radius: 14px;
  text-align: center;
  color: rgba(18, 18, 18, 0.65);
}

@media (max-width: 1024px) {
  .landing-title {
    font-size: 56px;
  }

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

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

  .landing-product-gallery-grid img {
    height: 200px;
  }

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

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

  .why-item {
    grid-template-columns: 1fr;
  }

  .why-media img {
    height: 200px;
  }
}

@media (max-width: 640px) {
  .landing-section {
    padding: 54px 0;
  }

  .landing-product-title {
    font-size: 32px;
  }

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

  .landing-product-gallery-grid img {
    height: 220px;
  }

  .landing-title {
    font-size: 44px;
  }

  .landing-section-title {
    font-size: 28px;
  }

  .landing-categories {
    grid-template-columns: 1fr;
  }

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

  .landing-banner-content h2 {
    font-size: 34px;
  }
}


/* Buyer Showcase Section */
.buyer-showcase-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
}

.buyer-showcase-track {
  display: flex;
  gap: 24px;
  animation: buyer-scroll 35s linear infinite;
  padding: 0 20px;
}

.buyer-showcase-track:hover {
  animation-play-state: paused;
}

@keyframes buyer-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.buyer-showcase-card {
  flex-shrink: 0;
  width: 300px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
}

.buyer-showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.buyer-showcase-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
  border-color: rgba(180, 141, 87, 0.3);
}

.buyer-showcase-card:hover::before {
  opacity: 1;
}

.buyer-showcase-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.buyer-showcase-card:hover img {
  transform: scale(1.08);
}

.buyer-showcase-info {
  padding: 18px 20px;
  background: linear-gradient(to bottom, #ffffff, #fafafa);
  position: relative;
}

.buyer-showcase-info h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: rgba(18, 18, 18, 0.95);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.buyer-showcase-buyer {
  font-size: 13px;
  color: rgba(180, 141, 87, 0.9);
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.buyer-showcase-buyer::before {
  content: '★';
  font-size: 11px;
  color: rgba(180, 141, 87, 0.7);
}

@media (max-width: 1024px) {
  .buyer-showcase-card {
    width: 280px;
  }
  
  .buyer-showcase-track {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .buyer-showcase-wrapper {
    padding: 15px 0;
  }
  
  .buyer-showcase-track {
    gap: 16px;
    padding: 0 15px;
  }
  
  .buyer-showcase-card {
    width: 260px;
  }
  
  .buyer-showcase-card img {
    height: 180px;
  }
  
  .buyer-showcase-info {
    padding: 14px 16px;
  }
  
  .buyer-showcase-info h4 {
    font-size: 14px;
  }
  
  .buyer-showcase-buyer {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .buyer-showcase-card {
    width: 240px;
  }
  
  .buyer-showcase-track {
    gap: 14px;
  }
}
