:root {
  --hgs-wine-950: #130909;
  --hgs-wine-900: #1a0d0e;
  --hgs-wine-850: #211112;
  --hgs-wine-800: #341315;
  --hgs-wine-700: #5b171c;
  --hgs-gold-500: #caa061;
  --hgs-gold-400: #dfbc82;
  --hgs-gold-200: #f2e1c4;
  --hgs-cream: #f7f1eb;
  --hgs-cream-200: #efe4d8;
  --hgs-text: #3b2a24;
  --hgs-muted: #8f7768;
  --hgs-border: rgba(115, 62, 36, 0.14);
  --hgs-white: #fffdf9;
  --hgs-shadow-lg: 0 26px 60px rgba(24, 12, 12, 0.18);
  --hgs-shadow-md: 0 18px 36px rgba(24, 12, 12, 0.12);
  --hgs-radius-xl: 28px;
  --hgs-radius-lg: 22px;
  --hgs-radius-md: 16px;
  --hgs-radius-sm: 12px;
  --hgs-transition: 220ms ease;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--hgs-text);
  background:
    radial-gradient(circle at top left, rgba(202, 160, 97, 0.14), transparent 28%),
    linear-gradient(180deg, #fbf7f2 0%, #f5eee7 36%, #f9f4ef 100%);
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.75;
  overflow-x: hidden;
}

body.hgs-nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  transition: color var(--hgs-transition), border-color var(--hgs-transition), background-color var(--hgs-transition), transform var(--hgs-transition), box-shadow var(--hgs-transition);
}

a:hover {
  color: var(--hgs-wine-700);
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  position: relative;
}

.hgs-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1040;
}

.hgs-header__bar {
  background: rgba(19, 9, 9, 0.36);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--hgs-transition), box-shadow var(--hgs-transition), border-color var(--hgs-transition);
}

.hgs-header.hgs-is-solid .hgs-header__bar,
.hgs-header.hgs-is-scrolled .hgs-header__bar {
  background: rgba(19, 9, 9, 0.94);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  border-color: rgba(223, 188, 130, 0.16);
}

.hgs-header__inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.hgs-brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--hgs-white);
}

.hgs-brand:hover {
  color: var(--hgs-white);
}

.hgs-brand__logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  padding: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.hgs-brand__crest {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(223, 188, 130, 0.42);
  color: var(--hgs-gold-200);
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.9rem;
  line-height: 1;
  background: linear-gradient(145deg, rgba(202, 160, 97, 0.22), rgba(255, 255, 255, 0.04));
}

.hgs-brand__copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.hgs-brand__copy strong {
  font-family: "Cormorant Garamond", "Songti SC", "STSong", serif;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.08em;
}

.hgs-brand__copy small {
  margin-top: 5px;
  color: rgba(255, 244, 235, 0.7);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hgs-nav-wrap {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  min-width: 0;
  justify-content: flex-end;
}

.hgs-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
  justify-content: flex-end;
}

.hgs-nav__link {
  position: relative;
  padding: 10px 12px;
  color: rgba(255, 245, 236, 0.86);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  border-radius: 999px;
  white-space: nowrap;
}

.hgs-nav__link:hover,
.hgs-nav__link.hgs-is-active {
  color: var(--hgs-white);
  background: rgba(202, 160, 97, 0.14);
}

.hgs-nav__link.hgs-is-active::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--hgs-gold-400), transparent);
}

.hgs-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.hgs-header__action,
.hgs-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(223, 188, 130, 0.25);
  background: linear-gradient(135deg, rgba(202, 160, 97, 0.92), rgba(169, 112, 42, 0.92));
  color: #2a140f;
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 14px 24px rgba(74, 22, 12, 0.16);
}

.hgs-header__action:hover,
.hgs-button:hover {
  color: #2a140f;
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(74, 22, 12, 0.22);
}

.hgs-header__action--ghost,
.hgs-button--ghost {
  background: transparent;
  color: var(--hgs-white);
}

.hgs-header__action--ghost:hover,
.hgs-button--ghost:hover {
  color: var(--hgs-white);
  background: rgba(255, 255, 255, 0.08);
}

.hgs-nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(223, 188, 130, 0.25);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.hgs-nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--hgs-white);
  transition: transform var(--hgs-transition), opacity var(--hgs-transition);
}

.hgs-nav-toggle.hgs-is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hgs-nav-toggle.hgs-is-active span:nth-child(2) {
  opacity: 0;
}

.hgs-nav-toggle.hgs-is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hgs-theme-home main,
.hgs-theme-inner main {
  display: block;
}

.hgs-theme-hero {
  position: relative;
  padding: 152px 0 96px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(19, 9, 9, 0.96), rgba(46, 16, 18, 0.82) 48%, rgba(82, 22, 25, 0.72)),
    radial-gradient(circle at 78% 18%, rgba(223, 188, 130, 0.3), transparent 18%);
  color: var(--hgs-white);
}

.hgs-theme-hero::before,
.hgs-theme-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
}

.hgs-theme-hero::before {
  width: 420px;
  height: 420px;
  right: -120px;
  top: -80px;
  background: radial-gradient(circle, rgba(202, 160, 97, 0.22), transparent 65%);
}

.hgs-theme-hero::after {
  width: 620px;
  height: 620px;
  left: -260px;
  bottom: -260px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 68%);
}

.hgs-theme-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 34px;
  align-items: end;
}

.hgs-theme-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: rgba(242, 225, 196, 0.92);
  font-size: 0.86rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.hgs-theme-eyebrow::before {
  content: "";
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 225, 196, 0.8));
}

.hgs-theme-hero__title,
.hgs-theme-banner__title,
.section-title,
.article-title,
.product-detail__title,
.hgs-theme-panel__title {
  font-family: "Cormorant Garamond", "Songti SC", "STSong", serif;
}

.hgs-theme-hero__title {
  max-width: 10.5em;
  margin: 0;
  font-size: clamp(2.9rem, 5vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: 0.04em;
}

.hgs-theme-hero__lead {
  max-width: 42rem;
  margin: 24px 0 0;
  color: rgba(255, 244, 235, 0.78);
  font-size: 1.04rem;
}

.hgs-theme-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hgs-theme-outline-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(223, 188, 130, 0.22);
  border-radius: 999px;
  color: var(--hgs-white);
  background: rgba(255, 255, 255, 0.06);
}

.hgs-theme-outline-button:hover {
  color: var(--hgs-white);
  background: rgba(255, 255, 255, 0.12);
}

.hgs-theme-hero__panel {
  padding: 28px;
  border-radius: var(--hgs-radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(242, 225, 196, 0.12);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.16);
}

.hgs-theme-hero__panel h2 {
  margin: 0 0 18px;
  font-size: 1.25rem;
  color: var(--hgs-gold-200);
  letter-spacing: 0.08em;
}

.hero-channel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hero-channel-card {
  display: block;
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--hgs-white);
}

.hero-channel-card:hover {
  color: var(--hgs-white);
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
}

.hero-channel-card span {
  display: block;
  color: rgba(242, 225, 196, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-channel-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.04rem;
  font-weight: 600;
}

.hgs-theme-section {
  padding: 88px 0;
}

.hgs-theme-section--compact {
  padding-top: 42px;
}

.hgs-theme-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-kicker {
  color: var(--hgs-wine-700);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.section-title {
  margin: 8px 0 0;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.04;
  color: var(--hgs-wine-900);
}

.section-lead {
  margin: 0;
  max-width: 34rem;
  color: var(--hgs-muted);
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--hgs-wine-700);
  font-weight: 600;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 26px;
}

.story-card,
.story-note,
.hgs-theme-panel,
.product-card,
.news-card,
.contact-cta,
.product-detail__meta,
.article-body,
.message-card,
.message-form,
.detail-side-card {
  border-radius: var(--hgs-radius-xl);
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid var(--hgs-border);
  box-shadow: var(--hgs-shadow-md);
}

.story-card {
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(202, 160, 97, 0.16), rgba(255, 255, 255, 0.88) 42%),
    rgba(255, 253, 249, 0.92);
}

.story-card h3,
.story-note h3,
.detail-side-card h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", "Songti SC", "STSong", serif;
  font-size: 2rem;
  color: var(--hgs-wine-900);
}

.story-card p,
.story-note p,
.detail-side-card p {
  margin: 0;
  color: var(--hgs-muted);
}

.story-note {
  padding: 30px;
  background: linear-gradient(180deg, rgba(47, 17, 18, 0.96), rgba(77, 24, 28, 0.92));
  color: rgba(255, 244, 235, 0.92);
}

.story-note h3 {
  color: var(--hgs-white);
}

.story-note p {
  color: rgba(255, 244, 235, 0.76);
}

.story-note__list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.story-note__list li {
  position: relative;
  padding-left: 18px;
  margin-top: 12px;
}

.story-note__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hgs-gold-400);
}

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

.product-card {
  overflow: hidden;
  position: relative;
}

.product-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 288px;
  padding: 28px;
  background:
    radial-gradient(circle at top, rgba(202, 160, 97, 0.24), transparent 44%),
    linear-gradient(180deg, #fff8f1 0%, #f4e7da 100%);
}

.product-card__media img {
  max-height: 236px;
  object-fit: contain;
  transform: translateY(0);
  transition: transform var(--hgs-transition);
}

.product-card:hover .product-card__media img {
  transform: translateY(-4px);
}

.product-card__body {
  padding: 22px;
}

.product-card__label,
.news-card__label,
.message-card__label,
.product-detail__badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(202, 160, 97, 0.14);
  color: var(--hgs-wine-700);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card__title {
  margin: 14px 0 8px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--hgs-wine-900);
}

.product-card__text {
  margin: 0;
  color: var(--hgs-muted);
  min-height: 3.5em;
}

.product-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.product-price {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--hgs-wine-700);
}

.product-price small {
  font-size: 0.8rem;
}

.news-list,
.message-list {
  display: grid;
  gap: 20px;
}

.news-card {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  overflow: hidden;
}

.news-card__media {
  min-height: 100%;
  background:
    linear-gradient(135deg, rgba(70, 18, 20, 0.95), rgba(114, 31, 38, 0.8)),
    linear-gradient(180deg, #201112, #5b171c);
  position: relative;
}

.news-card__media img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.news-card__placeholder {
  height: 100%;
  min-height: 240px;
  display: flex;
  align-items: end;
  padding: 28px;
  color: rgba(255, 245, 236, 0.86);
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.news-card__body {
  padding: 26px 28px;
}

.news-card__meta,
.article-meta,
.product-detail__meta-line,
.message-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--hgs-muted);
  font-size: 0.9rem;
}

.news-card__title {
  margin: 14px 0 12px;
  font-size: 1.48rem;
  line-height: 1.35;
  color: var(--hgs-wine-900);
}

.news-card__text {
  margin: 0;
  color: var(--hgs-muted);
}

.contact-cta {
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background:
    linear-gradient(135deg, rgba(44, 16, 17, 0.96), rgba(92, 23, 30, 0.88)),
    linear-gradient(135deg, rgba(202, 160, 97, 0.3), transparent);
  color: var(--hgs-white);
}

.contact-cta h3 {
  margin: 0 0 10px;
  font-size: 2.2rem;
  line-height: 1.04;
}

.contact-cta p {
  margin: 0;
  max-width: 36rem;
  color: rgba(255, 244, 235, 0.78);
}

.contact-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hgs-theme-banner {
  position: relative;
  padding: 156px 0 52px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(19, 9, 9, 0.96), rgba(58, 17, 20, 0.92) 44%, rgba(89, 29, 32, 0.78)),
    radial-gradient(circle at 82% 24%, rgba(223, 188, 130, 0.24), transparent 18%);
  color: var(--hgs-white);
}

.hgs-theme-banner::after {
  content: "";
  position: absolute;
  inset: auto -100px -180px auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(202, 160, 97, 0.18), transparent 70%);
}

.hgs-theme-banner__title {
  margin: 0;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0.04em;
}

.hgs-theme-banner__lead {
  max-width: 42rem;
  margin: 18px 0 0;
  color: rgba(255, 244, 235, 0.76);
}

.hgs-theme-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 244, 235, 0.76);
}

.hgs-theme-breadcrumb li::after {
  content: "/";
  margin-left: 10px;
  color: rgba(255, 244, 235, 0.36);
}

.hgs-theme-breadcrumb li:last-child::after {
  display: none;
}

.hgs-theme-breadcrumb a {
  color: rgba(255, 244, 235, 0.9);
}

.hgs-theme-shell {
  position: relative;
  margin-top: -18px;
  padding: 0 0 84px;
}

.hgs-theme-shell__grid {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.hgs-theme-panel {
  padding: 28px;
}

.hgs-theme-panel__title {
  margin: 0;
  font-size: 2rem;
  line-height: 1;
  color: var(--hgs-wine-900);
}

.hgs-theme-panel__desc {
  margin: 14px 0 0;
  color: var(--hgs-muted);
}

.hgs-theme-side-nav {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.hgs-theme-side-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 16px;
  background: rgba(248, 242, 236, 0.98);
  border: 1px solid rgba(115, 62, 36, 0.1);
  color: var(--hgs-text);
  font-weight: 500;
}

.hgs-theme-side-nav__link:hover,
.hgs-theme-side-nav__link.hgs-is-active {
  color: var(--hgs-white);
  border-color: rgba(202, 160, 97, 0.28);
  background: linear-gradient(135deg, rgba(57, 19, 20, 0.96), rgba(104, 28, 33, 0.9));
}

.hgs-theme-side-nav__link span:last-child {
  color: rgba(143, 119, 104, 0.8);
}

.hgs-theme-side-nav__link.hgs-is-active span:last-child,
.hgs-theme-side-nav__link:hover span:last-child {
  color: rgba(242, 225, 196, 0.86);
}

.hgs-theme-side-note {
  margin-top: 22px;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(37, 14, 16, 0.98), rgba(76, 23, 27, 0.94));
  color: rgba(255, 244, 235, 0.88);
}

.hgs-theme-side-note h4 {
  margin: 0 0 12px;
  font-size: 1.1rem;
  color: var(--hgs-gold-200);
}

.hgs-theme-side-note p,
.hgs-theme-side-note li {
  color: rgba(255, 244, 235, 0.72);
}

.hgs-theme-side-note ul {
  padding-left: 1.1rem;
  margin: 14px 0 0;
}

.hgs-theme-main {
  min-width: 0;
}

.article-body,
.product-detail__meta,
.message-form,
.message-card {
  padding: 34px;
}

.article-title,
.product-detail__title {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.08;
  color: var(--hgs-wine-900);
}

.article-summary {
  margin: 18px 0 0;
  color: var(--hgs-muted);
}

.article-content {
  margin-top: 28px;
  color: var(--hgs-text);
}

.article-content img,
.article-content table,
.article-content iframe,
.article-content video {
  max-width: 100%;
}

.article-content img {
  height: auto;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(22, 10, 10, 0.12);
}

.article-content table {
  width: 100%;
}

.article-content a {
  color: var(--hgs-wine-700);
  text-decoration: underline;
  text-decoration-color: rgba(202, 160, 97, 0.46);
}

.article-gallery {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.article-gallery figure {
  margin: 0;
}

.article-gallery figcaption {
  margin-top: 10px;
  color: var(--hgs-muted);
  font-size: 0.92rem;
}

.detail-links,
.file-list {
  margin-top: 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.detail-links a,
.file-list a {
  color: var(--hgs-wine-700);
  font-weight: 500;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
}

.product-detail__visual {
  min-height: 420px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--hgs-radius-xl);
  background:
    radial-gradient(circle at top, rgba(202, 160, 97, 0.24), transparent 48%),
    linear-gradient(180deg, #fff8f1 0%, #f4e7da 100%);
  border: 1px solid var(--hgs-border);
  box-shadow: var(--hgs-shadow-md);
}

.product-detail__visual img {
  max-height: 360px;
  object-fit: contain;
}

.product-detail__placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(202, 160, 97, 0.18);
  color: var(--hgs-wine-700);
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 3rem;
}

.product-detail__meta {
  background:
    linear-gradient(135deg, rgba(202, 160, 97, 0.12), rgba(255, 253, 249, 0.92) 42%),
    rgba(255, 253, 249, 0.92);
}

.product-detail__price {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.product-detail__price-item {
  min-width: 180px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(115, 62, 36, 0.08);
}

.product-detail__price-item span {
  display: block;
  color: var(--hgs-muted);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail__price-item strong {
  display: block;
  margin-top: 8px;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 2rem;
  color: var(--hgs-wine-700);
}

.product-detail__summary {
  margin-top: 18px;
  color: var(--hgs-muted);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  margin-top: 24px;
}

.detail-side-card {
  padding: 28px;
}

.detail-side-card ul {
  margin: 18px 0 0;
  padding-left: 1.1rem;
  color: var(--hgs-muted);
}

.message-card {
  position: relative;
}

.message-card__status {
  min-width: 86px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}

.message-card__status.hgs-is-replied {
  background: rgba(40, 167, 69, 0.12);
  color: #1b7d36;
}

.message-card__status.hgs-is-pending {
  background: rgba(202, 160, 97, 0.16);
  color: #8a5c1b;
}

.message-card__title {
  margin: 14px 0 10px;
  font-size: 1.28rem;
  color: var(--hgs-wine-900);
}

.message-card__text {
  margin: 0;
  color: var(--hgs-muted);
}

.message-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.message-filter {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(115, 62, 36, 0.12);
  background: rgba(255, 253, 249, 0.86);
  color: var(--hgs-text);
}

.message-filter.hgs-is-active,
.message-filter:hover {
  color: var(--hgs-white);
  background: linear-gradient(135deg, rgba(57, 19, 20, 0.96), rgba(104, 28, 33, 0.9));
}

.message-form {
  background:
    linear-gradient(135deg, rgba(202, 160, 97, 0.12), rgba(255, 253, 249, 0.92) 42%),
    rgba(255, 253, 249, 0.92);
}

.message-form .form-group,
.message-form fieldset {
  margin-bottom: 1.4rem;
}

.message-form .form-control,
.message-form .custom-select,
.message-form .input-group-text {
  min-height: 52px;
  border-radius: 16px;
  border-color: rgba(115, 62, 36, 0.14);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: none;
}

.message-form textarea.form-control {
  min-height: 180px;
  padding-top: 14px;
}

.message-form .form-control:focus {
  border-color: rgba(202, 160, 97, 0.72);
  box-shadow: 0 0 0 0.2rem rgba(202, 160, 97, 0.14);
}

.message-form .custom-control-label {
  padding-left: 8px;
}

.message-form .custom-control-input:checked~.custom-control-label::before {
  border-color: var(--hgs-wine-700);
  background-color: var(--hgs-wine-700);
}

.hgs-theme-empty {
  padding: 54px 28px;
  border-radius: var(--hgs-radius-xl);
  border: 1px dashed rgba(115, 62, 36, 0.2);
  background: rgba(255, 253, 249, 0.64);
  color: var(--hgs-muted);
  text-align: center;
}

.hgs-pagination-wrap {
  margin-top: 30px;
}

.hgs-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0;
  gap: 8px;
  padding-left: 0;
  list-style: none;
}

.hgs-pagination .hgs-page-link {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(115, 62, 36, 0.12);
  color: var(--hgs-text);
  background: rgba(255, 253, 249, 0.82);
}

.hgs-pagination .hgs-page-item.hgs-is-active .hgs-page-link,
.hgs-pagination .hgs-page-link:hover {
  color: var(--hgs-white);
  border-color: rgba(202, 160, 97, 0.16);
  background: linear-gradient(135deg, rgba(57, 19, 20, 0.96), rgba(104, 28, 33, 0.9));
}

.hgs-pagination .hgs-page-item.hgs-is-disabled .hgs-page-link {
  pointer-events: none;
}

.hgs-footer {
  padding: 76px 0 34px;
  background:
    linear-gradient(180deg, #170b0b 0%, #220d0e 100%),
    radial-gradient(circle at 10% 10%, rgba(202, 160, 97, 0.2), transparent 24%);
  color: rgba(255, 244, 235, 0.84);
}

.hgs-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
}

.hgs-footer__eyebrow {
  display: inline-block;
  color: rgba(242, 225, 196, 0.9);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.hgs-footer__brand h2 {
  margin: 12px 0 14px;
  font-family: "Cormorant Garamond", "Songti SC", "STSong", serif;
  font-size: 2.8rem;
  color: var(--hgs-white);
}

.hgs-footer__brand p,
.hgs-footer__bottom,
.hgs-footer__friend-links a {
  color: rgba(255, 244, 235, 0.7);
}

.hgs-footer__nav h3 {
  margin: 0 0 18px;
  color: var(--hgs-gold-200);
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hgs-footer__links,
.hgs-footer__friend-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.hgs-footer__links a,
.hgs-footer__friend-links a {
  color: rgba(255, 244, 235, 0.74);
}

.hgs-footer__links a:hover,
.hgs-footer__friend-links a:hover {
  color: var(--hgs-white);
}

.hgs-footer__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.hgs-footer__friends {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hgs-footer__friends>span {
  display: block;
  margin-bottom: 12px;
  color: var(--hgs-gold-200);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hgs-footer__bottom {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 18px;
  font-size: 0.92rem;
}

.hgs-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 540ms ease, transform 540ms ease;
}

.hgs-reveal.hgs-is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1199.98px) {

  .hgs-theme-hero__grid,
  .story-grid,
  .product-detail,
  .detail-grid,
  .hgs-footer__top {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 991.98px) {
  .hgs-header__inner {
    min-height: 78px;
  }

  .hgs-nav-toggle {
    display: inline-flex;
  }

  .hgs-nav-wrap {
    position: absolute;
    top: calc(100% + 12px);
    left: 12px;
    right: 12px;
    display: none;
    padding: 18px;
    border-radius: 24px;
    background: rgba(19, 9, 9, 0.98);
    border: 1px solid rgba(223, 188, 130, 0.14);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.32);
  }

  .hgs-nav-wrap.hgs-is-open {
    display: grid;
    gap: 18px;
  }

  .hgs-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .hgs-nav__link {
    padding: 12px 16px;
  }

  .hgs-header__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hgs-theme-banner,
  .hgs-theme-hero {
    padding-top: 126px;
  }

  .hgs-theme-shell__grid,
  .news-card {
    grid-template-columns: 1fr;
  }

  .contact-cta {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 767.98px) {
  .hgs-theme-section {
    padding: 66px 0;
  }

  .hgs-theme-section__head {
    flex-direction: column;
    align-items: start;
  }

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

  .hgs-theme-panel,
  .article-body,
  .product-detail__meta,
  .message-form,
  .message-card,
  .story-card,
  .story-note,
  .contact-cta {
    padding: 24px;
    border-radius: 22px;
  }

  .product-card__media,
  .product-detail__visual {
    min-height: 260px;
  }

  .product-card__media {
    padding: 22px;
  }

  .news-card__body {
    padding: 22px;
  }

  .article-title,
  .product-detail__title {
    font-size: 2rem;
  }

  .hgs-theme-banner__title {
    font-size: 2.3rem;
  }

  .hgs-footer {
    padding-top: 58px;
  }

  .hgs-footer__cta {
    justify-content: flex-start;
  }
}

.w_grid-concat {
  margin-left: 0;
  clear: left;
  background-color: #292828;
}
.pagebox {
  margin-left: 0;
  clear: left;
  background-color: #292828;
}
.hgs-js-channel-category{
  display: flex;
  justify-content: center;
}
