/*
Theme Name: Gang Chu
Author: CZECH.click
Description: Gang Chu Korean Wine - custom WordPress theme
Version: 0.0.1
Requires at least: 6.0
Requires PHP: 8.0
*/
/* CSS RESET, thanks https://www.joshwcomeau.com/css/custom-css-reset/ */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
input,
button,
textarea,
select {
  font: inherit;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
#root,
#__next {
  isolation: isolate;
}
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  color: #1c3658;
  background: #FFFEF6;
}
@font-face {
  font-family: 'Noto Sans';
  src: url('fonts/Noto-Sans-regular.woff2') format('woff2'), url('fonts/Noto-Sans-regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
h1 {
  font-weight: 700;
  font-size: 3em;
  padding-bottom: 20px;
}
h2 {
  font-size: 2.4em;
  padding-bottom: 20px;
  line-height: 1.1;
  font-weight: 800;
}
h2 strong {
  font-weight: 400;
}
p {
  font-size: 20px;
  margin-bottom: 20px;
}
.wp-block-file {
  display: block;
  margin-bottom: 10px;
}
.wp-block-file .wp-block-file__button {
  display: none;
}
.wp-block-file > a:not(.wp-block-file__button) {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #1c3658;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 28px 5px 5px;
  border-radius: 40px;
  transition: opacity 0.2s ease;
}
.wp-block-file > a:not(.wp-block-file__button)::before {
  content: 'FILE';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  font-size: 0.5rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.wp-block-file > a:not(.wp-block-file__button)[href$=".pdf"]::before {
  content: 'PDF';
  background: #c0392b;
}
.wp-block-file > a:not(.wp-block-file__button)[href$=".ppt"]::before,
.wp-block-file > a:not(.wp-block-file__button)[href$=".pptx"]::before {
  content: 'PPT';
  background: #c0580d;
}
.wp-block-file > a:not(.wp-block-file__button)[href$=".doc"]::before,
.wp-block-file > a:not(.wp-block-file__button)[href$=".docx"]::before {
  content: 'DOC';
  background: #2980b9;
}
.wp-block-file > a:not(.wp-block-file__button)[href$=".xls"]::before,
.wp-block-file > a:not(.wp-block-file__button)[href$=".xlsx"]::before {
  content: 'XLS';
  background: #27ae60;
}
.wp-block-file > a:not(.wp-block-file__button):hover {
  opacity: 0.8;
}
.wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.wp-block-button__link,
.wp-block-button__link:visited {
  display: inline-block;
  background: transparent;
  color: #1c3658;
  border: 2px solid #1c3658;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 32px;
  border-radius: 40px;
  transition: background 0.25s ease, color 0.25s ease;
}
.wp-block-button__link:hover,
.wp-block-button__link:visited:hover {
  background: #1c3658;
  color: #fff;
}
.wp-block-columns {
  margin: 80px 0;
}
.product-slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0 80px;
}
.product-slider__circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 640px;
  pointer-events: none;
  user-select: none;
}
.product-slider__track {
  position: relative;
  z-index: 2;
  width: 55%;
  max-width: 480px;
  cursor: grab;
  user-select: none;
}
.product-slider__track:active {
  cursor: grabbing;
}
@media (max-width: 960px) {
  .product-slider__track {
    width: 70%;
  }
}
@media (max-width: 600px) {
  .product-slider__track {
    width: 85%;
  }
}
.product-slider__slide {
  opacity: 0;
  transition: opacity 0.5s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}
.product-slider__slide.is-active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}
.product-slider__slide img,
.product-slider__slide video {
  width: 100%;
  height: auto;
}
.product-slider__slide video {
  border-radius: 12px;
}
.product-slider__dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.product-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(28, 54, 88, 0.3);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease;
}
.product-slider__dot.is-active {
  background: #1c3658;
}
.product-slider__dot:hover {
  background: rgba(28, 54, 88, 0.6);
}
.product-showcase {
  position: relative;
  cursor: grab;
  user-select: none;
}
.product-showcase:active {
  cursor: grabbing;
}
.product-showcase__track {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 12px 48px rgba(28, 54, 88, 0.13);
}
.product-showcase__slide {
  opacity: 0;
  transition: opacity 0.5s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}
.product-showcase__slide.is-active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}
.product-showcase__slide img,
.product-showcase__slide video {
  width: 100%;
  height: auto;
  display: block;
}
.product-showcase__slide video {
  border-radius: 12px;
}
.product-showcase__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}
.product-showcase__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(28, 54, 88, 0.3);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease;
}
.product-showcase__dot.is-active {
  background: #1c3658;
}
.product-showcase__dot:hover {
  background: rgba(28, 54, 88, 0.6);
}
.page-hero {
  width: 100%;
  overflow: hidden;
}
.page-hero img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 960px) {
  .page-hero img {
    height: max(360px, 40vh);
    object-fit: cover;
  }
}
.page-content {
  padding: 20px 40px 60px;
}
@media (max-width: 960px) {
  .page-content {
    padding: 60px 24px;
  }
}
@media (max-width: 600px) {
  .page-content {
    padding: 40px 16px;
  }
}
.page-content__inner {
  max-width: 1340px;
  margin: 0 auto;
}
.page-content--thin .page-content__inner {
  max-width: 900px;
}
.page-content__inner ul,
.page-content__inner ol {
  margin: 0 0 20px 24px;
}
.page-content__inner ul li,
.page-content__inner ol li {
  font-size: 20px;
  margin-bottom: 8px;
  padding-left: 6px;
}
.page-content__inner ul {
  list-style: disc;
}
.page-content__inner ol {
  list-style: decimal;
}
.page-content__inner ul ul,
.page-content__inner ol ol,
.page-content__inner ul ol,
.page-content__inner ol ul {
  margin-top: 6px;
  margin-bottom: 0;
}
footer.site-footer {
  background: #E2DDD2;
}
footer.site-footer .site-footer__inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 60px 40px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
@media (max-width: 600px) {
  footer.site-footer .site-footer__inner {
    padding: 40px 16px 32px;
    gap: 20px;
  }
}
footer.site-footer .site-footer-logo a {
  display: block;
}
footer.site-footer .site-footer-logo img {
  height: 120px;
  width: auto;
}
footer.site-footer .site-footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
}
footer.site-footer .site-footer-nav__list li a {
  color: #1c3658;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}
footer.site-footer .site-footer-nav__list li a:hover {
  opacity: 0.6;
}
footer.site-footer .site-footer-social {
  display: flex;
  gap: 12px;
}
footer.site-footer .site-footer-social__link {
  display: block;
  transition: opacity 0.2s ease;
}
footer.site-footer .site-footer-social__link:hover {
  opacity: 0.6;
}
footer.site-footer .site-footer-social__link img {
  display: block;
}
footer.site-footer .site-footer-faq {
  display: inline-block;
  background: #1c3658;
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 48px;
  border-radius: 30px;
  transition: opacity 0.2s ease;
}
footer.site-footer .site-footer-faq:hover {
  opacity: 0.8;
}
footer.site-footer .site-footer-tagline {
  font-weight: 700;
  font-size: 1.1rem;
  color: #1c3658;
}
footer.site-footer .site-footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
footer.site-footer .site-footer-legal a {
  color: #1c3658;
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}
footer.site-footer .site-footer-legal a:hover {
  opacity: 0.6;
}
footer.site-footer .site-footer-legal span {
  color: #1c3658;
  font-size: 0.72rem;
}
footer.site-footer .site-footer-copyright {
  font-size: 0.7rem;
  color: #1c3658;
  opacity: 0.65;
  line-height: 1.7;
}
header.site-header {
  background: #FFFEF6;
  z-index: 100;
}
header.site-header .site-header-top {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
@media (max-width: 960px) {
  header.site-header .site-header-top {
    padding: 0 24px;
  }
}
@media (max-width: 600px) {
  header.site-header .site-header-top {
    padding: 0 16px;
  }
}
header.site-header .site-header-top__inner {
  max-width: 1340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  padding: 0 0 30px;
}
@media (max-width: 960px) {
  header.site-header .site-header-top__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    justify-items: center;
    gap: 12px;
    padding: 0 0 20px;
  }
}
header.site-header .site-header-hamburger {
  display: none;
}
@media (max-width: 960px) {
  header.site-header .site-header-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }
  header.site-header .site-header-hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: #1c3658;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
  }
  header.site-header .site-header-hamburger.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  header.site-header .site-header-hamburger.is-open span:nth-child(2) {
    opacity: 0;
  }
  header.site-header .site-header-hamburger.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}
header.site-header .site-header-logo {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
}
@media (max-width: 960px) {
  header.site-header .site-header-logo {
    grid-column: 1;
    grid-row: 1;
  }
}
header.site-header .site-header-logo a {
  display: block;
}
header.site-header .site-header-logo img {
  height: 200px;
  width: auto;
}
header.site-header .site-header-logo__text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1c3658;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
header.site-header .site-header-nav {
  grid-column: 2;
  grid-row: 2;
  justify-self: center;
}
@media (max-width: 960px) {
  header.site-header .site-header-nav {
    display: none;
  }
  header.site-header .site-header-nav.is-open {
    display: block;
    position: absolute;
    top: 100%;
    right: 0;
    width: 280px;
    background: #FFFEF6;
    z-index: 99;
    box-shadow: -4px 4px 20px rgba(0, 0, 0, 0.08);
  }
}
@media (max-width: 600px) {
  header.site-header .site-header-nav.is-open {
    right: auto;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }
}
header.site-header .site-header-nav__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 960px) {
  header.site-header .site-header-nav__list {
    flex-direction: column;
    gap: 0;
    padding: 16px 0 24px;
  }
}
@media (max-width: 960px) {
  header.site-header .site-header-nav__list li {
    width: 100%;
    text-align: center;
  }
}
header.site-header .site-header-nav__list li a {
  color: #1c3658;
  text-decoration: none;
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}
@media (max-width: 960px) {
  header.site-header .site-header-nav__list li a {
    display: block;
    padding: 12px 0;
  }
}
header.site-header .site-header-nav__list li a:hover {
  opacity: 0.6;
}
header.site-header .site-header-nav__list li.current-menu-item > a {
  opacity: 0.6;
}
header.site-header .site-header-social {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 960px) {
  header.site-header .site-header-social {
    right: auto;
    left: 24px;
  }
}
@media (max-width: 600px) {
  header.site-header .site-header-social {
    left: 16px;
  }
}
header.site-header .site-header-social__link {
  display: block;
  transition: opacity 0.2s ease;
}
header.site-header .site-header-social__link:hover {
  opacity: 0.6;
}
header.site-header .site-header-social__link img {
  display: block;
  width: 34px;
  height: 34px;
}
.store-locator {
  max-width: 560px;
}
.sl-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.sl-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: none;
  padding: 0;
  margin: 0;
}
.sl-form__label {
  font-weight: 700;
  font-size: 1rem;
  color: #1c3658;
}
.sl-form .sl-required {
  color: #b32d2e;
  margin-left: 2px;
}
.sl-form__hint {
  font-size: 0.85rem;
  color: rgba(28, 54, 88, 0.55);
  margin: 0;
}
.sl-form__input {
  width: 100%;
  padding: 14px 22px;
  border: 2px solid #1c3658;
  border-radius: 40px;
  font-size: 1rem;
  color: #1c3658;
  background: transparent;
  outline: none;
  transition: border-color 0.2s ease;
}
.sl-form__input:focus {
  border-color: rgba(28, 54, 88, 0.5);
}
.sl-form__input::placeholder {
  color: rgba(28, 54, 88, 0.35);
}
.sl-form__radios {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 4px;
}
.sl-form__radio {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 1rem;
  color: #1c3658;
}
.sl-form__radio input[type="radio"] {
  accent-color: #1c3658;
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
}
.sl-form__submit {
  align-self: flex-start;
  background: #1c3658;
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 48px;
  border-radius: 40px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.sl-form__submit:hover {
  opacity: 0.8;
}
.sl-results {
  margin-top: 48px;
}
.sl-results__heading {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 0;
}
.sl-results__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sl-results__item {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 3px 16px;
  padding: 16px 20px;
  border-left: 3px solid #1c3658;
  background: rgba(28, 54, 88, 0.04);
  border-radius: 0 8px 8px 0;
}
.sl-results__name {
  grid-column: 1;
  grid-row: 1;
  font-weight: 700;
  font-size: 1rem;
}
.sl-results__address {
  grid-column: 1;
  grid-row: 2;
  font-size: 0.88rem;
  opacity: 0.7;
}
.sl-results__distance {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #1c3658;
  white-space: nowrap;
  opacity: 0.7;
}
.sl-loading {
  color: rgba(28, 54, 88, 0.6);
  font-style: italic;
  margin: 0;
}
.sl-error {
  color: #b32d2e;
  margin: 0;
}
.sl-no-results {
  color: #1c3658;
  margin: 0;
}
.fluentform .ff-el-group {
  margin-bottom: 20px;
}
.fluentform .ff-el-input--label {
  margin-bottom: 6px;
}
.fluentform .ff-el-input--label label {
  font-weight: 700;
  font-size: 1rem;
  color: #1c3658;
}
.fluentform .ff-el-is-required label::after {
  content: ' *';
  color: #b32d2e;
}
.fluentform .ff-el-form-control {
  width: 100%;
  padding: 14px 22px;
  border: 2px solid #1c3658;
  border-radius: 40px;
  font-size: 1rem;
  color: #1c3658;
  background: transparent;
  outline: none;
  box-shadow: none;
  transition: border-color 0.2s ease;
  appearance: none;
}
.fluentform .ff-el-form-control:focus {
  border-color: rgba(28, 54, 88, 0.5);
}
.fluentform .ff-el-form-control::placeholder {
  color: rgba(28, 54, 88, 0.35);
}
.fluentform textarea.ff-el-form-control {
  border-radius: 16px;
  resize: vertical;
  min-height: 160px;
}
.fluentform .ff_submit_btn_wrapper {
  margin-top: 8px;
  text-align: center;
}
.fluentform .ff-btn-submit {
  display: inline-block;
  background: #1c3658;
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 48px;
  border-radius: 40px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.fluentform .ff-btn-submit:hover {
  opacity: 0.8;
}
.fluentform .ff-el-form-check-label {
  color: #1c3658;
}
.fluentform .error.text-danger {
  display: block;
  margin-top: 6px;
  padding-left: 22px;
  font-size: 0.82rem;
  color: #b32d2e;
}
