body,
h1,
h2,
h3,
h4,
h5,
h6,
input,
button,
select,
textarea {
  font-family: "Pretendard", sans-serif !important;
}

/* ... existing code ... */
.dgf-btn {
  border-radius: 0;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
}

.dgf-btn-white {
  background-color: #fff;
  color: #333;
}

.dgf-btn-white:hover {
  background-color: #333;
  color: #fff;
}

.dgf-btn-gray {
  background-color: #888;
  color: #fff;
}

.dgf-btn-gray:hover {
  background-color: #666;
  color: #fff;
}

.dgf-btn-primary {
  background-color: #7abc10;
  color: #fff;
}

.dgf-btn-primary:hover {
  background-color: #333;
  color: #fff;
}

/* [Custom] 모바일에서 메인 비주얼 배경 이미지 확대 현상 수정 */
@media (max-width: 991px) {
  .single-lookbook-section {
    background-attachment: scroll !important;
    background-position: center center !important;
  }
}

/* [Custom] 오버레이 메뉴 토글 효과 */
.overlay-navigation-menu {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.overlay-navigation-menu.active {
  visibility: visible;
  opacity: 1;
}

/* 오버레이 메뉴 닫기 버튼 스타일 보강 */
.overlay-navigation-menu .overlay-menu-close-icon {
  z-index: 10000;
  cursor: pointer;
}

/* 오버레이 메뉴 내부 스크롤 가능하게 설정 */
.overlay-navigation-menu .overlay-navigation-menu-container {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* 오버레이 메뉴 서브메뉴 토글 스타일 */
.overlay-navigation-menu .sub-menu {
  display: none;
  background: transparent;
  box-shadow: none;
  position: relative;
  top: 0;
  width: 100%;
  opacity: 1;
  visibility: visible;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* 서브메뉴 토글 아이콘 */
.overlay-navigation-menu .menu-item-has-children > a {
  position: relative;
  padding-right: 20px;
}

.overlay-navigation-menu .menu-item-has-children > a::after {
  content: "\f3d0";
  /* ion-android-arrow-dropdown */
  font-family: "Ionicons";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  transition: transform 0.3s;
}

.overlay-navigation-menu .menu-item-has-children.active > a::after {
  transform: translateY(-50%) rotate(180deg);
}

/* Footer */
.footer-nav-container nav > ul > li > a {
  color: #a0a0a0 !important;
}

/* Modern Service Page CSS */
.service-intro-section {
  padding: 80px 0 60px;
  background-color: #f9f9f9;
}

.service-card-section {
  padding: 80px 0 100px;
  background-color: #fff;
}

/* Core Direction Style */
.core-value-box {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.core-value-label {
  display: inline-block;
  padding: 6px 16px;
  background-color: #e8f5e9;
  color: #7abc10;
  font-weight: 700;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.core-value-title {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.4;
}

.core-value-desc {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
  font-weight: 400;
}

/* Service Card Style */
.service-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 40px 30px;
  border-radius: 15px;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #7abc10;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: #f4f9f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: #7abc10;
  font-size: 32px;
  transition: all 0.3s ease;
}

.service-card:hover .card-icon {
  background: #7abc10;
  color: #fff;
}

.card-title {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

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

.card-list li {
  font-size: 15px;
  color: #666;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
  word-break: keep-all;
}

.card-list li::before {
  content: "\f3d3";
  /* Ionicons checkmark */
  font-family: "Ionicons";
  position: absolute;
  left: 0;
  top: 1px;
  color: #7abc10;
  font-size: 14px;
}

/* Content Planning Section CSS */
.section-title-large {
  font-size: 42px;
  font-weight: 800;
  color: #222;
  line-height: 1.2;
}

.highlight-text {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
}

.desc-text {
  font-size: 18px;
  color: #666;
  line-height: 1.7;
  margin-top: 20px;
}

.content-card-list {
  position: relative;
}

.content-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  border: 1px solid #f0f0f0;
  transition: transform 0.3s ease;
}

.content-card:hover {
  transform: translateX(10px);
  border-left: 5px solid #7abc10;
}

.card-icon-box {
  min-width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #7abc10;
  margin-right: 25px;
}

.bg-green-soft {
  background-color: #f1f8e9;
}

.card-body-content {
  flex: 1;
}

.cc-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.cc-desc {
  font-size: 15px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
}

.cc-footer {
  font-size: 15px;
  font-weight: 700;
  padding-top: 10px;
  border-top: 1px dashed #eee;
}

@media (max-width: 991px) {
  .section-title-large {
    font-size: 32px;
  }

  .highlight-text {
    font-size: 24px;
  }

  .content-card:hover {
    transform: none;
  }

  .core-value-title {
    font-size: 28px;
  }

  .service-card {
    margin-bottom: 30px;
    padding: 30px 20px;
  }

  .service-intro-section {
    padding: 60px 0;
  }

  .service-card-section {
    padding: 40px 0 80px;
  }

  /* Mobile Dist Structure */
  .dist-center-circle {
    width: 100%;
    height: auto;
    border-radius: 20px;
    padding: 40px 20px;
    aspect-ratio: auto;
  }

  .orbit-brands {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
    height: auto;
  }

  .brand-item {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 5px;
  }
}

/* Distribution Section CSS */
.dist-side-block {
  background: #7abc10;
  color: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(122, 188, 16, 0.2);
  transition: transform 0.3s ease;
}

.dist-side-block:hover {
  transform: translateY(-5px);
}

.dist-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #fff;
}

.dist-desc {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  word-break: keep-all;
}

.dist-center-circle {
  background: #fff;
  border: 8px solid #e8f5e9;
  border-radius: 50%;
  width: 450px;
  height: 450px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.circle-inner-content {
  z-index: 2;
  position: relative;
  padding: 0 40px;
}

.inner-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  word-break: keep-all;
}

.text-green {
  color: #7abc10;
}

.inner-desc {
  font-size: 14px;
  color: #666;
  line-height: 1em;
  word-break: keep-all;
}

/* Orbiting Brands */
.orbit-brands {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.brand-item {
  position: absolute;
  background: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  color: #555;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  pointer-events: auto;
  white-space: nowrap;
}

/* Positioning Brands around the circle */
.brand-item.pos-1 {
  top: -5%;
  left: 50%;
  transform: translateX(-50%);
}

.brand-item.pos-2 {
  top: 17%;
  right: -5%;
}

.brand-item.pos-3 {
  bottom: 17%;
  right: -5%;
}

.brand-item.pos-4 {
  bottom: -5%;
  left: 50%;
  transform: translateX(-50%);
}

.brand-item.pos-5 {
  bottom: 17%;
  left: -5%;
}

.brand-item.pos-6 {
  top: 17%;
  left: -5%;
}

@media (max-width: 768px) {
  .dist-center-circle {
    width: 320px;
    height: 320px;
  }

  .brand-item.pos-1 {
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
  }

  .brand-item.pos-2 {
    top: 30px;
    right: -35px;
  }

  .brand-item.pos-3 {
    bottom: 70px;
    right: -35px;
  }

  .brand-item.pos-4 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .brand-item.pos-5 {
    bottom: 70px;
    left: -35px;
  }

  .brand-item.pos-6 {
    top: 30px;
    left: -35px;
  }
}

/* Brands Grid Styles */
.fs-section {
  width: 100%;
  background: #000;
}

.fs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
}

.fs-card {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  /* 1:1 Aspect Ratio (Square) */
  overflow: hidden;
  text-decoration: none;
}

.fs-card__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  z-index: 0;
}

.fs-card:hover .fs-card__bg {
  transform: scale(1.1);
}

.fs-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
  z-index: 1;
}

.fs-card:hover .fs-card__overlay {
  background: rgba(0, 0, 0, 0.7);
}

.fs-card__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
  text-align: center;
  width: 90%;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 992px) {
  .fs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .fs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fs-card {
    padding-bottom: 120%;
    /* Taller on mobile if needed */
  }
}

.lang-select {
  background: transparent !important;
  border: none;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  padding: 4px 20px 4px 8px;
  border-radius: 4px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition:
    color 0.2s,
    background 0.2s;
  position: relative;
}

/* 탑메뉴에 hover시 셀렉트박스 배경을 검정색으로 */
.header-bottom-navigation:hover .lang-select,
.header-bottom-container:hover .lang-select {
  background: #fff;
  color: #333;
}

.header-transparent-background.is-sticky .lang-select {
  background: #fff !important;
  color: #333 !important;
}

.lang-select:focus {
  outline: none;
  color: #7abc10;
}

.lang-select option {
  color: #333;
  background: #fff;
}

.footer-select {
  background: #232323 !important;
  border: 1px solid #333;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  padding: 4px 20px 4px 8px;
  border-radius: 4px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition:
    color 0.2s,
    background 0.2s,
    border 0.2s;
  margin-top: 25px;
}

.footer-select:focus {
  background: #111 !important;
  color: #7abc10;
  border-color: #7abc10;
}

.footer-select option {
  color: #ffffff;
  background: #333333;
}

@media (max-width: 991px) {
  .footer-single-widget {
    padding: 30px 0;
    border-bottom: 1px solid #333;
  }
}

/* 모바일: logo - copyright-text - footer-select 가로 정렬 */
@media (max-width: 767px) {
  .footer-brand-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px 20px;
  }
  .footer-brand-row .logo {
    flex-shrink: 0;
  }
  .footer-brand-row .logo img {
    max-height: 36px;
    width: auto;
  }
  .footer-brand-row .copyright-text {
    flex: 1;
    min-width: 0;
    margin: 0;
  }
  .footer-brand-row .copyright-text p {
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
  }
  .footer-brand-row .footer-select {
    flex-shrink: 0;
    margin-top: 0;
  }
  .footer-subscription-widget {
    text-align: center;
  }
}
