@charset "UTF-8";
/* ===== Max-Width ===== */
/* ===== Colors ===== */
/* ===== Font Face ===== */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./assets/font/Poppins-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./assets/font/Poppins-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("./assets/font/Poppins-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./assets/font/Poppins-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("./assets/font/Poppins-ExtraBold.woff2") format("woff2");
}
/* ===== Font ===== */
/* ===== Font size ===== */
/* ===== Font weight ===== */
/* ===== z index ===== */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html,
body {
  position: relative;
  height: 100%;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  margin: 0;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: #010a11;
  font-weight: 400;
  line-height: 1.5rem !important;
}

main {
  width: 100vw;
  overflow-x: hidden !important;
  overflow-y: scroll; /* has to be scroll, not auto */
  -webkit-overflow-scrolling: touch;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Poppins", sans-serif;
  line-height: 150%;
  margin-bottom: 0.5rem !important;
}

h1,
h2,
h3 {
  font-weight: 800 !important;
}

h4,
h5 {
  font-weight: 700 !important;
}

h1 {
  font-size: 52px !important;
}

h2 {
  font-size: 48px !important;
}

h3 {
  font-size: 32px !important;
}

h4 {
  font-size: 20px !important;
}

h5 {
  font-size: 18px !important;
}

h6 {
  font-size: 14px !important;
}

@media (max-width: 1023px) {
  h1 {
    font-size: 36px !important;
  }
  h2 {
    font-size: 32px !important;
  }
  h3 {
    font-size: 24px !important;
  }
  h4 {
    font-size: 18px !important;
  }
  h5 {
    font-size: 16px !important;
  }
  h6 {
    font-size: 14px !important;
  }
}
p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

ul {
  list-style: none;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

input {
  height: 39px;
  background-color: #ffffff;
}

input[type=checkbox] {
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 6px;
}

@media (max-width: 767px) {
  input::-moz-placeholder {
    font-size: 14px;
  }
  input::placeholder {
    font-size: 14px;
  }
}

button {
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
}

/* ===== REUSABLE CSS CLASSES ===== */
.section {
  height: auto;
  overflow: hidden;
  padding: 3rem 1.5rem;
  position: relative;
}
@media (max-width: 767px) {
  .section {
    padding: 1.5rem 1rem;
  }
}
.section:last-child {
  padding-bottom: 6rem;
}
@media (max-width: 1023px) {
  .section:last-child {
    padding-bottom: 3rem;
  }
}
.section__title {
  font-size: 52px;
}
.section__subtitle {
  font-size: 32px;
}
.section__desc {
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  line-height: 2.4rem;
}

.top-section {
  margin-top: 130px;
  padding-top: 3rem;
  border-top: 1px solid #f0e0f4;
}
@media (max-width: 767px) {
  .top-section {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
  }
}

.section-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  image-rendering: auto;
}

.container {
  max-width: 1200px !important;
  margin: 0 auto;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 16px;
  text-align: center;
  background-color: #901aad;
  color: #ffffff;
  transition: 0.3s;
  font-weight: 600;
  cursor: pointer;
  border-radius: 3px;
}
.button:hover {
  background-color: #6e0d86;
}
@media (max-width: 767px) {
  .button {
    padding: 0.5rem 1rem;
    min-width: 100px;
    justify-content: center;
    display: flex;
  }
}

.button-t {
  background-color: transparent;
  border: 1px solid white;
}
.button-t:hover {
  background-color: #901aad;
}

.page-header-section {
  padding: 100px 1rem 5rem;
}
@media (max-width: 767px) {
  .page-header-section {
    padding: 3.5rem 1rem;
  }
}

.img-contain img {
  -o-object-fit: contain !important;
     object-fit: contain !important;
  width: auto;
}

.swiper-pagination-bullet-active {
  background-color: #901aad !important;
}

.section-title {
  margin-bottom: 1.5rem;
}

#s:focus {
  outline: none;
}

button:focus {
  outline: none;
}

.header-wrap {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.header {
  display: flex;
  height: 50px;
  transition: all 0.5s ease-in;
  align-items: center;
  font-weight: 500;
}

.scroll-header {
  height: 80px;
  background: #ffffff;
  box-shadow: 0 15px 15px rgba(0, 0, 0, 0.1);
}

.scroll-header .sub-menu-wrap {
  top: 110px;
}
@media (max-width: 1023px) {
  .scroll-header .sub-menu-wrap {
    top: 0;
  }
}

.close-headerWrap {
  visibility: hidden;
  pointer-events: none;
}

.close-header {
  opacity: 0;
  visibility: hidden;
}

.logo {
  height: 50px;
}
.logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
}
@media (max-width: 1023px) {
  .logo {
    height: 40px;
  }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  margin: auto;
  font-weight: 700;
  padding: 0 1rem;
}
@media (max-width: 1023px) {
  .nav .nav-menu {
    position: absolute;
    top: 0;
    right: -100%;
    background-color: white;
    transition: all 0.3s ease-in-out;
    height: 100vh;
    flex-direction: column;
    display: none;
  }
}
.nav .nav-menu #menu-primary {
  display: flex;
  gap: 10rem;
  align-items: center;
  list-style-type: none;
}
@media (max-width: 1023px) {
  .nav .nav-menu #menu-primary {
    flex-direction: column;
    width: 500px;
    justify-content: center;
    align-items: start;
    gap: 2rem;
    font-size: 20px;
    padding: 2rem;
    margin-top: 100px;
  }
}
@media (max-width: 767px) {
  .nav .nav-menu #menu-primary {
    width: 350px;
  }
}
.nav .nav-menu #menu-primary li {
  padding: 6px 0;
  display: flex;
  align-items: center;
}
@media (max-width: 1023px) {
  .nav .nav-menu #menu-primary li {
    gap: 0.5rem;
  }
}
.nav .nav-menu #menu-primary li a {
  position: relative;
  display: block;
  padding: 4px 0;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  transition: 0.5s;
  text-align: center;
}
.nav .nav-menu #menu-primary li a::after {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  width: 100%;
  height: 3px;
  background: #901aad;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s;
}
.nav .nav-menu #menu-primary li a:hover {
  color: #901aad;
}
.nav .nav-menu #menu-primary li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

#nav-special-btn {
  padding: 1rem 2rem;
  background-color: #901aad;
  color: #ffffff;
  transition: all 0.3s;
}
#nav-special-btn:hover {
  background-color: #6e0d86;
}
@media (max-width: 1023px) {
  #nav-special-btn {
    font-size: 18px;
    padding: 1.5rem 3rem;
  }
}

@media (max-width: 1023px) {
  .menu-arrow {
    transform: rotate(-90deg);
    padding: 16px !important;
  }
}

.submenu-close {
  display: none;
}
@media (max-width: 1023px) {
  .submenu-close {
    display: block;
    color: white;
    position: absolute;
    right: 2rem;
    top: 2rem;
    cursor: pointer;
  }
}

.sub-menu-wrap {
  width: 100vw;
  height: 60px;
  display: flex;
  position: absolute;
  top: 100px;
  left: 0;
  padding: 0 2rem;
  background-color: #901aad;
  opacity: 0;
  visibility: hidden;
  z-index: 50;
}
@media (max-width: 1023px) {
  .sub-menu-wrap {
    position: fixed;
    top: 0;
    left: auto;
    right: -100%;
    opacity: 0;
    visibility: hidden;
    padding-top: 2rem;
    width: 230px;
    height: 100vh;
    margin: 0;
  }
}
@media (max-width: 767px) {
  .sub-menu-wrap {
    width: 150px;
  }
}

.mobile-sub-menu-wrap-on {
  right: 0;
  opacity: 1;
  visibility: visible;
}

#menu-item-681 .sub-menu-wrap {
  background-color: #84106a;
}

.sub-menu {
  width: 1200px;
  display: flex;
  gap: 1rem;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .sub-menu {
    flex-direction: column;
    justify-content: flex-start;
    overflow: scroll;
  }
}
.sub-menu li {
  display: flex;
  width: 200px;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s;
}
@media (max-width: 1023px) {
  .sub-menu li {
    width: auto;
    height: auto;
  }
}
.sub-menu a:hover {
  color: white !important;
}
.sub-menu a::after {
  background-color: white !important;
}

.sub-menu-2 {
  display: flex;
  flex-direction: column;
  margin-top: 0.5rem;
}
@media (max-width: 1023px) {
  .sub-menu-2 {
    margin-top: 0;
  }
}
.sub-menu-2 li {
  height: auto;
}

.sub-menu-on {
  opacity: 1 !important;
  visibility: visible !important;
}
@media (max-width: 1023px) {
  .sub-menu-on {
    right: 0;
  }
}

.submenu-close {
  font-size: 36px;
}

.rotate {
  transform: rotate(180deg);
}

.nav__icons {
  width: 45px;
  height: 45px;
  padding: 2px;
  cursor: pointer;
  z-index: 30;
  display: none;
}
@media (max-width: 1023px) {
  .nav__icons {
    display: block;
  }
}

.nav__close {
  display: none;
}
@media (max-width: 1023px) {
  .nav__close {
    position: absolute;
    top: 1rem;
    right: 430px;
    padding: 1rem;
    width: 60px;
  }
}
@media (max-width: 767px) {
  .nav__close {
    right: 280px;
  }
}
.nav__close img {
  filter: brightness(0) saturate(100%) invert(10%) sepia(76%) saturate(1159%) hue-rotate(203deg) brightness(91%) contrast(93%);
}

.nav__toggle {
  display: none;
}
.nav__toggle img {
  filter: brightness(0) saturate(100%) invert(10%) sepia(76%) saturate(1159%) hue-rotate(203deg) brightness(91%) contrast(93%);
}
@media (max-width: 1023px) {
  .nav__toggle {
    display: block;
  }
}

.show-menu {
  right: 0 !important;
  display: block !important;
}

.show-icon {
  display: block !important;
}

.hide-icon {
  display: none !important;
}

@media (max-width: 767px) {
  footer {
    padding-bottom: 4rem;
  }
}

footer a:hover {
  color: #901aad;
}

#menu-footer {
  display: flex;
  gap: 2rem;
}

.footer-banner {
  position: relative;
  width: 330px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  padding: 2rem;
  border: 1px solid #901aad;
  border-radius: 8px;
}
@media (max-width: 1279px) {
  .footer-banner {
    width: 250px;
  }
}
@media (max-width: 1023px) {
  .footer-banner {
    width: 100%;
  }
}
.footer-banner-icon {
  position: absolute;
  right: 2rem;
  top: 2rem;
  width: 38px;
}
.footer-banner-content {
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}
@media (max-width: 767px) {
  .footer-banner-content {
    gap: 0;
  }
}

.footer-logo img {
  width: auto;
}

.footer-icon {
  width: 35px;
  height: 35px;
}

.footer-info {
  font-size: 14px;
  line-height: 180%;
}
.footer-info p {
  font-size: 14px;
}
.footer-info a:hover {
  color: #901aad;
}

.show-menu {
  visibility: visible !important;
}
.show-menu #menu-primary li {
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-timing-function: ease-in;
}
.show-menu #menu-primary li:nth-child(1) {
  animation-delay: 0s;
}
.show-menu #menu-primary li:nth-child(2) {
  animation-delay: 0.1s;
}
.show-menu #menu-primary li:nth-child(3) {
  animation-delay: 0.2s;
}
.show-menu #menu-primary li:nth-child(4) {
  animation-delay: 0.3s;
}
.show-menu #menu-primary li:nth-child(5) {
  animation-delay: 0.4s;
}
.show-menu #menu-primary li:nth-child(6) {
  animation-delay: 0.5s;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* ===== Max-Width ===== */
/* ===== Colors ===== */
/* ===== Font Face ===== */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./assets/font/Poppins-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./assets/font/Poppins-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("./assets/font/Poppins-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./assets/font/Poppins-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("./assets/font/Poppins-ExtraBold.woff2") format("woff2");
}
/* ===== Font ===== */
/* ===== Font size ===== */
/* ===== Font weight ===== */
/* ===== z index ===== */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html,
body {
  position: relative;
  height: 100%;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  margin: 0;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: #010a11;
  font-weight: 400;
  line-height: 1.5rem !important;
}

main {
  width: 100vw;
  overflow-x: hidden !important;
  overflow-y: scroll; /* has to be scroll, not auto */
  -webkit-overflow-scrolling: touch;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Poppins", sans-serif;
  line-height: 150%;
  margin-bottom: 0.5rem !important;
}

h1,
h2,
h3 {
  font-weight: 800 !important;
}

h4,
h5 {
  font-weight: 700 !important;
}

h1 {
  font-size: 52px !important;
}

h2 {
  font-size: 48px !important;
}

h3 {
  font-size: 32px !important;
}

h4 {
  font-size: 20px !important;
}

h5 {
  font-size: 18px !important;
}

h6 {
  font-size: 14px !important;
}

@media (max-width: 1023px) {
  h1 {
    font-size: 36px !important;
  }
  h2 {
    font-size: 32px !important;
  }
  h3 {
    font-size: 24px !important;
  }
  h4 {
    font-size: 18px !important;
  }
  h5 {
    font-size: 16px !important;
  }
  h6 {
    font-size: 14px !important;
  }
}
p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

ul {
  list-style: none;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

input {
  height: 39px;
  background-color: #ffffff;
}

input[type=checkbox] {
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 6px;
}

@media (max-width: 767px) {
  input::-moz-placeholder {
    font-size: 14px;
  }
  input::placeholder {
    font-size: 14px;
  }
}

button {
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
}

/* ===== REUSABLE CSS CLASSES ===== */
.section {
  height: auto;
  overflow: hidden;
  padding: 3rem 1.5rem;
  position: relative;
}
@media (max-width: 767px) {
  .section {
    padding: 1.5rem 1rem;
  }
}
.section:last-child {
  padding-bottom: 6rem;
}
@media (max-width: 1023px) {
  .section:last-child {
    padding-bottom: 3rem;
  }
}
.section__title {
  font-size: 52px;
}
.section__subtitle {
  font-size: 32px;
}
.section__desc {
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  line-height: 2.4rem;
}

.top-section {
  margin-top: 130px;
  padding-top: 3rem;
  border-top: 1px solid #f0e0f4;
}
@media (max-width: 767px) {
  .top-section {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
  }
}

.section-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  image-rendering: auto;
}

.container {
  max-width: 1200px !important;
  margin: 0 auto;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 16px;
  text-align: center;
  background-color: #901aad;
  color: #ffffff;
  transition: 0.3s;
  font-weight: 600;
  cursor: pointer;
  border-radius: 3px;
}
.button:hover {
  background-color: #6e0d86;
}
@media (max-width: 767px) {
  .button {
    padding: 0.5rem 1rem;
    min-width: 100px;
    justify-content: center;
    display: flex;
  }
}

.button-t {
  background-color: transparent;
  border: 1px solid white;
}
.button-t:hover {
  background-color: #901aad;
}

.page-header-section {
  padding: 100px 1rem 5rem;
}
@media (max-width: 767px) {
  .page-header-section {
    padding: 3.5rem 1rem;
  }
}

.img-contain img {
  -o-object-fit: contain !important;
     object-fit: contain !important;
  width: auto;
}

.swiper-pagination-bullet-active {
  background-color: #901aad !important;
}

.section-title {
  margin-bottom: 1.5rem;
}

#s:focus {
  outline: none;
}

button:focus {
  outline: none;
}

.text-shadow {
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.home-katalk-icon {
  width: 60px;
  height: 60px;
  position: fixed;
  z-index: 999;
  right: 2rem;
  bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 1rem;
  background: linear-gradient(rgb(255, 231, 0) 0%, rgb(255, 221, 0) 100%);
  box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 0px 1px inset, rgba(0, 0, 0, 0.1) 0px 4px 6px, rgba(0, 0, 0, 0.15) 0px 8px 30px;
}
@media (max-width: 767px) {
  .home-katalk-icon {
    right: 1rem;
    bottom: 1rem;
  }
}
.home-katalk-icon:hover {
  box-shadow: rgba(0, 0, 0, 0.3) 0px 8px 30px 0px;
}
.home-katalk-icon .katalk-icon {
  width: 35px;
  height: 35px;
}
.home-katalk-icon .katalk-icon img {
  -o-object-fit: contain;
     object-fit: contain;
}

.hero-overlay {
  position: absolute;
}
.hero-overlay.overlay-1 {
  bottom: 0;
  left: 5%;
  z-index: 2;
}
@media (max-width: 1023px) {
  .hero-overlay.overlay-1 {
    width: 100px;
  }
}
.hero-overlay.overlay-2 {
  bottom: 20px;
  right: 0;
  z-index: 1;
}
.hero-overlay.overlay-3 {
  bottom: 0;
  z-index: 0;
}
@media (max-width: 767px) {
  .hero-overlay {
    display: none;
  }
}

.hero-title-accent {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #901aad;
  color: white;
  border-radius: 8px;
}

.swiper-section-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}
@media (max-width: 1023px) {
  .swiper-section-container {
    width: 90%;
  }
}

.swiper {
  overflow: visible !important;
}

.swiper-button-next,
.swiper-button-prev {
  transform: translateY(-50%);
  width: 50px !important;
  height: 50px !important;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  font-size: 18px;
}

.swiper-button-next {
  right: 10px; /* 오른쪽 여백을 조절하세요. */
}

.swiper-button-prev {
  left: 10px; /* 왼쪽 여백을 조절하세요. */
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px !important;
  color: #901aad;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  pointer-events: all !important;
}

#recent-review .reviewSwiper {
  overflow: hidden !important;
}
#recent-review .swiper-wrapper {
  align-items: center;
}
#recent-review .swiper-button-next,
#recent-review .swiper-button-prev {
  width: auto !important;
  height: auto !important;
  top: 63%;
}

.review-item {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #e3e3e3;
  border-radius: 0.5rem;
  height: 200px;
}

.review-content-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
}
@media (max-width: 767px) {
  .review-content-wrap {
    margin-top: 0;
    gap: 0.5rem;
  }
}

.review-product {
  font-size: 14px;
  font-weight: 600;
}
.review-product a:hover {
  color: #901aad;
}
@media (max-width: 767px) {
  .review-product a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
}

.review-product-img {
  width: 50%;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .review-product-img {
    min-width: 80px;
    max-width: 80px;
    height: 80px;
    border-radius: 100%;
    overflow: hidden;
  }
}

.review-content {
  max-width: 700px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 767px) {
  .review-content {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

.cr-ajax-reviews-cus-images-div,
.cr-avatar,
.cr-avatar-check {
  display: none !important;
}

.cr-comment-text {
  margin-left: 0 !important;
}

.banner-section {
  padding: 2rem 1rem;
}
@media (max-width: 767px) {
  .banner-section {
    padding: 2rem 0;
  }
}

.banner-container {
  max-width: 1200px;
  margin: auto;
}
@media (max-width: 767px) {
  .banner-container {
    max-width: 100%;
  }
}

.banner {
  min-height: 350px;
}
@media (max-width: 767px) {
  .banner {
    min-height: 250px;
  }
}

.전체보기 {
  font-weight: 400;
  border-bottom: 1px solid;
}
.전체보기:hover {
  color: #901aad;
}

.tab {
  font-weight: 700;
  cursor: pointer;
}
.tab:hover {
  color: #901aad;
}

.active-tab {
  color: #901aad;
  padding-bottom: 2px;
  border-bottom: 3px solid #901aad;
}

.swiper-section-wrap {
  width: 100%;
  margin: 0 !important;
}
@media (max-width: 1023px) {
  .swiper-section-wrap {
    width: 99%;
  }
}

.banner-container {
  padding-bottom: 50px;
  overflow: hidden;
}

.swiper-section-wrap.mySwiper,
.swiper-banner-wrap.mySwiper {
  overflow: visible;
}

.swiper-pagination {
  position: absolute !important;
  bottom: -35px !important;
}

.testi-img-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 80%);
}

.home-youtube {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .home-youtube {
    height: 250px;
  }
}

.home-youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#filter {
  background-color: white;
}
#filter input {
  all: revert;
}
#filter #selectAll {
  all: unset;
}
#filter #allBtn {
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  text-align: center;
  border-radius: 0.5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}
#filter #allBtn:hover {
  box-shadow: 0 0 10px rgba(164, 0, 205, 0.5);
}
@media (max-width: 1023px) {
  #filter {
    position: fixed;
    left: -100%;
    z-index: 100;
    transition: all 0.5s;
  }
}

.filter-on {
  left: 0 !important;
}

#m-filter-btn {
  display: none;
  width: 100px;
  position: sticky;
  bottom: 2rem;
  left: calc(100% - 102px);
  text-align: center;
  padding: 1rem;
  color: white;
  background: linear-gradient(rgb(144, 26, 173) 0%, rgb(116, 16, 141) 100%);
  box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 0px 1px inset, rgba(0, 0, 0, 0.1) 0px 4px 6px, rgba(0, 0, 0, 0.15) 0px 8px 30px;
  cursor: pointer;
  border-radius: 1rem;
  z-index: 10;
}
@media (max-width: 1023px) {
  #m-filter-btn {
    display: block;
  }
}

.blog-cat {
  border-bottom: 1px solid #f0e0f4;
  padding-bottom: 0.5rem;
}
.blog-cat a {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: center;
}
.blog-cat a img {
  width: 6px;
}
.blog-cat:hover {
  color: #901aad;
}

.card-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .card-content {
    padding: 0.5rem 0 0;
  }
}

.card-region {
  font-size: 14px;
  color: #901aad;
}
@media (max-width: 767px) {
  .card-region {
    font-size: 12px;
  }
}

.card-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-desc {
  font-size: 14px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-price {
  font-size: 14px;
  font-weight: 600;
}
.card-price span {
  font-weight: 600;
  color: #901aad;
}

.tour-comp-logo img {
  height: auto !important;
}

.woocommerce #product .swiper {
  overflow: hidden !important;
}

.woocommerce .swiper-pagination-bullet {
  background: #fff;
  box-shadow: 0 0 5px black;
}

@media (max-width: 767px) {
  .product-header .header-wrap {
    position: relative;
  }
}

.tour-image {
  border-radius: 8px;
  overflow: hidden;
  max-height: 400px;
}
@media (max-width: 767px) {
  .tour-image {
    border-radius: 0;
    height: 300px !important;
  }
}

.content-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.content-title {
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .content-title {
    font-size: 18px;
  }
}
.content-title-bar {
  width: 5px;
  height: 25px;
  border-radius: 8px;
  background-color: #901aad;
}
@media (max-width: 767px) {
  .content-title-bar {
    height: 24px;
  }
}

.content-section {
  padding: 3rem 0;
  border-top: 1px solid #f0e0f4;
}
.content-section img {
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.content-section p {
  display: flex;
  flex-wrap: wrap;
}
.content-section ul {
  margin: 0.5rem 0;
}
.content-section li {
  list-style: disc;
  margin-left: 1rem;
}
.content-section p,
.content-section li {
  margin-bottom: 0.5rem;
}
.content-section p:last-child,
.content-section li:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .content-section p,
  .content-section li {
    font-size: 14px;
  }
}
.content-section a {
  color: #901aad;
}
.content-section a:hover {
  text-decoration: underline;
}
.content-section hr {
  opacity: 0.15;
  margin: 1rem 0;
}
.content-section iframe {
  width: 100%;
}

.prices {
  padding: 1rem;
  border: 1px solid #f0e0f4;
  border-radius: 8px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 45%;
  font-size: 42px;
  color: white;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.431372549);
}

.carousel-control-next {
  right: 0;
}

.product-item {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.197);
  border-radius: 8px;
  overflow: hidden;
}
.product-item:hover {
  box-shadow: 0 0 10px rgba(164, 0, 205, 0.5);
}
@media (max-width: 767px) {
  .product-item:hover {
    box-shadow: none;
  }
}
@media (max-width: 767px) {
  .product-item {
    box-shadow: none;
  }
}
.product-item.swiper-slide {
  height: auto !important;
}

.product-inner-section {
  margin-bottom: 3rem;
}

.second-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .second-title {
    font-size: 16px;
  }
}

.meeting-map {
  margin-top: 1rem;
}
.meeting-map iframe {
  width: 100%;
}

.tour-info-item {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1rem;
  align-items: center;
}

.tour-info-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.tour-info-icon {
  width: 20px;
}
.tour-info-icon img {
  -o-object-fit: contain;
     object-fit: contain;
}

.product-buttons-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.product-button {
  display: inline-flex !important;
  width: 100%;
  padding: 1rem !important;
  flex-direction: column;
  background-color: #901aad !important;
  color: #ffffff !important;
}
.product-button:hover {
  background: #6c1083 !important;
}
.product-button.kakao {
  background-color: #ffdd55 !important;
  color: black !important;
}
.product-button.kakao:hover {
  background-color: #f6cf33 !important;
}

.mobile-top-menu {
  display: none;
  background-color: white;
  font-size: 14px;
  padding: 1rem;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 50;
}
@media (max-width: 767px) {
  .mobile-top-menu {
    display: block;
  }
}
.mobile-top-menu .swiper-wrapper {
  gap: 1rem;
}
.mobile-top-menu .swiper-slide {
  width: auto !important;
}

.mobile-enquiry-buttons {
  display: none;
}
@media (max-width: 767px) {
  .mobile-enquiry-buttons {
    display: block;
    position: sticky;
    bottom: 0;
  }
}
.mobile-enquiry-buttons .product-buttons-wrap {
  gap: 0;
}
.mobile-enquiry-buttons .button {
  border-radius: 0 !important;
  padding: 1rem !important;
}

.mobileGallerySwiper .swiper-button-prev,
.mobileGallerySwiper .swiper-button-next {
  color: white;
  transform: scale(0.6);
}

.single_add_to_cart_button {
  background-color: #901aad !important;
}

.avatar {
  height: auto !important;
}

.cr-product-name-picture {
  display: none !important;
}

.woocommerce-review__verified {
  display: none !important;
}

.badge__logo {
  display: none !important;
}

.badge__store {
  display: none !important;
}

div.badge__rating.rating > span:nth-child(1) {
  display: none !important;
}

div.badge__rating.rating > span:nth-child(2) {
  padding: 0 !important;
  margin-left: 0.5rem !important;
}

.badge__reviews {
  display: none !important;
}

.cr-trustbadgef .cr-trustbadge-border {
  border: none !important;
  padding: 0 !important;
}

.cr-badge.badge-vs .badge__rating-line {
  flex-flow: row-reverse nowrap !important;
}

.badge__stars {
  margin: 0 !important;
}

.star-rating::before {
  content: "sssss";
  color: #cfc8d8;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
}

.star-rating span::before {
  content: "SSSSS";
  font-family: star;
  color: #ffbc00;
  top: 0;
  position: absolute;
  left: 0;
}

.card-stars .star-rating {
  float: left !important;
  margin-bottom: 0.5rem;
}

.cr-ajax-search {
  display: none !important;
}

.cr-review-form-item {
  display: none !important;
}

#ivole-histogramTable tr.ivole-histogramRow .ivole-histogramCell1,
.cr-all-reviews-shortcode .cr-summaryBox-wrap.cr-summaryBox-add-review .ivole-summaryBox,
#cr_all_reviews_shortcode > div.cr-summaryBox-wrap.cr-summaryBox-add-review > div:nth-child(3),
.cr-all-reviews-shortcode .cr-count-row,
#reviews.cr-reviews-ajax-reviews .cr-count-row {
  display: none;
}

.cr-all-reviews-shortcode .cr-summaryBox-wrap,
.cr-reviews-grid .cr-summaryBox-wrap {
  background-color: white;
}

.cr-all-reviews-shortcode .cr-all-reviews-add-review {
  background-color: #901aad;
}
.cr-all-reviews-shortcode .cr-all-reviews-add-review:hover {
  background-color: #6e0d86;
}

.cr-all-reviews-shortcode ol.commentlist,
#reviews.cr-reviews-ajax-reviews #comments.cr-reviews-ajax-comments .cr-ajax-reviews-list {
  padding-top: 2rem;
}

#reviews div.iv-comment-image img,
div.iv-comment-image img {
  width: 125px;
  height: 125px !important;
  max-width: 100%;
  max-height: 100%;
}

#product-views-notification {
  position: fixed;
  left: -100%;
  bottom: 50px;
  padding: 1.5rem;
  background-color: #901aad;
  color: white;
  transition: all 1s ease-in-out;
  border-radius: 0 1rem 1rem 0;
  border-left: 10px solid #6c1083;
}

.product-views-notification-on {
  left: 0 !important;
}

.blog-title {
  padding-bottom: 1rem;
  border-bottom: 1px solid #f9f3fa;
}

.blog-content img {
  width: revert-layer;
}
.blog-content p {
  display: flex;
  flex-wrap: wrap;
}

#blog p {
  margin: 1rem 0;
}

#front-blog-form {
  /* Form labels */
  /* Form input fields */
  /* Submit button */
  /* Submit button hover effect */
  /* WordPress editor container */
  /* WordPress editor */
}
#front-blog-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
#front-blog-form input[type=text],
#front-blog-form textarea {
  width: 100%;
  padding: 0 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
#front-blog-form input[type=submit] {
  width: 100px;
  background-color: #901aad;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}
#front-blog-form input[type=submit]:hover {
  background-color: #6c1083;
}
#front-blog-form select {
  height: 38px;
  border: 1px solid #dedede;
}
#front-blog-form .wp-editor-container {
  margin-bottom: 15px;
}
#front-blog-form #testimonial_content_ifr {
  border: 1px solid #ccc;
  border-radius: 5px;
}

.postlist-table {
  width: 100%;
}
.postlist-table tr {
  border-bottom: 1px solid #ddd;
}
.postlist-table th:first-child {
  width: auto;
}
.postlist-table th:nth-child(2) {
  width: 15%;
}
@media (max-width: 767px) {
  .postlist-table th:nth-child(2) {
    width: 25%;
  }
}
.postlist-table th:nth-child(3) {
  width: 10%;
}
@media (max-width: 767px) {
  .postlist-table th:nth-child(3) {
    width: 20%;
  }
}
.postlist-table th,
.postlist-table td {
  padding: 10px 20px;
  height: 60px;
}
.postlist-table th:first-child,
.postlist-table td:first-child {
  padding-left: 0;
}
.postlist-table th:last-child,
.postlist-table td:last-child {
  padding-right: 0;
}
.postlist-table thead {
  color: #a3a3a3;
  text-align: left;
  font-size: 15px;
}
.postlist-table a:hover {
  color: #901aad;
}

.myposts-pending {
  font-size: 12px;
  background-color: #901aad;
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-left: 1rem;
}
.myposts-pending:hover {
  color: white;
}

.mce-content-body {
  font-family: "Poppins", sans-serif !important;
}

#login_count {
  width: 50px;
}

/* Style for the body when the modal is open */
body.modal-open {
  overflow: hidden;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  overflow: auto;
}

.modal-content {
  position: relative;
  margin: auto;
  display: block;
  width: 90%;
  height: auto !important;
  max-width: 1000px;
  background-color: #fefefe;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  -o-object-fit: contain;
     object-fit: contain;
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  color: #aaa;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #555;
}

/* Optional: Add animation */
.modal-content {
  animation: modal-open 0.3s ease;
}

@keyframes modal-open {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.mySwiper2 .swiper-slide {
  cursor: zoom-in;
}

.mySwiper .swiper-slide {
  cursor: pointer;
}

.swiper-container {
  width: 100%;
  max-width: 750px;
  min-width: 350px;
}
@media (max-width: 1023px) {
  .swiper-container {
    max-width: 100%;
  }
}

.gallery-modal {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-modal img {
  max-width: 80%;
  max-height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .gallery-modal img {
    max-height: 300px;
  }
}

.closeBtn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.gallery-modal-icon {
  width: 45px;
  height: 45px !important;
  -o-object-fit: contain;
     object-fit: contain;
}

.nextBtn, .prevBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.nextBtn {
  right: 10px;
}

.prevBtn {
  left: 10px;
}

/**
// Single-Product.php
*/
.장바구니담기wrap {
  display: flex;
  flex-direction: column;
}
.장바구니담기wrap .added_to_cart.wc-forward {
  font-size: 14px;
  text-align: center;
}
.장바구니담기wrap .added_to_cart.wc-forward:hover {
  text-decoration: underline;
  color: #901aad;
}

.woocommerce .swiper-pagination-bullet {
  background: #fff;
  box-shadow: 0 0 5px black;
}

@media (max-width: 767px) {
  .product-header .header-wrap {
    position: relative;
  }
}

.tour-image {
  border-radius: 8px;
  overflow: hidden;
  max-height: 400px;
}
@media (max-width: 767px) {
  .tour-image {
    border-radius: 0;
  }
}

.content-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.content-title {
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .content-title {
    font-size: 18px;
  }
}
.content-title-bar {
  width: 5px;
  height: 25px;
  border-radius: 8px;
  background-color: #901aad;
}
@media (max-width: 767px) {
  .content-title-bar {
    height: 24px;
  }
}

.content-section {
  padding: 3rem 0;
  border-top: 1px solid #f0e0f4;
}
.content-section img {
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.content-section ul {
  margin: 0.5rem 0;
}
.content-section li {
  list-style: disc;
  margin-left: 1rem;
}
.content-section p,
.content-section li {
  margin-bottom: 0.5rem;
}
.content-section p:last-child,
.content-section li:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .content-section p,
  .content-section li {
    font-size: 14px;
  }
}
.content-section a {
  color: #901aad;
}
.content-section a:hover {
  text-decoration: underline;
}
.content-section hr {
  opacity: 0.15;
  margin: 1rem 0;
}

.prices {
  padding: 1rem;
  border: 1px solid #f0e0f4;
  border-radius: 8px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 45%;
  font-size: 42px;
  color: white;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.431372549);
}

.carousel-control-next {
  right: 0;
}

.product-item {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.197);
  border-radius: 8px;
  overflow: hidden;
}
.product-item:hover {
  box-shadow: 0 0 10px rgba(164, 0, 205, 0.5);
}
@media (max-width: 767px) {
  .product-item:hover {
    box-shadow: none;
  }
}
@media (max-width: 767px) {
  .product-item {
    box-shadow: none;
  }
}
.product-item.swiper-slide {
  height: auto !important;
}

.product-inner-section {
  margin-bottom: 3rem;
}

.second-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .second-title {
    font-size: 16px;
  }
}

.meeting-map {
  margin-top: 1rem;
}
.meeting-map iframe {
  width: 100%;
}

.tour-info-item {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1rem;
  align-items: center;
}

.tour-info-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.tour-info-icon {
  width: 20px;
}
.tour-info-icon img {
  -o-object-fit: contain;
     object-fit: contain;
}

.product-buttons-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.product-button {
  display: inline-flex !important;
  width: 100%;
  padding: 1rem !important;
  flex-direction: column;
  background-color: #901aad !important;
  color: #ffffff !important;
}
.product-button:hover {
  background: #6c1083 !important;
}
.product-button.kakao {
  background-color: #ffdd55 !important;
  color: black !important;
}
.product-button.kakao:hover {
  background-color: #f6cf33 !important;
}

.mobile-top-menu {
  display: none;
  background-color: white;
  font-size: 14px;
  padding: 1rem;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 50;
}
@media (max-width: 767px) {
  .mobile-top-menu {
    display: block;
  }
}
.mobile-top-menu .swiper-wrapper {
  gap: 1rem;
}
.mobile-top-menu .swiper-slide {
  width: auto !important;
}

.mobile-enquiry-buttons {
  display: none;
}
@media (max-width: 767px) {
  .mobile-enquiry-buttons {
    display: block;
    position: sticky;
    bottom: 0;
  }
}
.mobile-enquiry-buttons .product-buttons-wrap {
  gap: 0;
}
.mobile-enquiry-buttons .button {
  border-radius: 0 !important;
  padding: 1rem !important;
}

.entry-summary .price:first-child {
  display: none;
}

.mobileGallerySwiper .swiper-button-prev,
.mobileGallerySwiper .swiper-button-next {
  color: white;
  transform: scale(0.6);
}

/**
// Review Plugin
*/
.avatar {
  height: auto !important;
}

.cr-product-name-picture {
  display: none !important;
}

.woocommerce-review__verified {
  display: none !important;
}

.badge__logo {
  display: none !important;
}

.badge__store {
  display: none !important;
}

div.badge__rating.rating > span:nth-child(1) {
  display: none !important;
}

div.badge__rating.rating > span:nth-child(2) {
  padding: 0 !important;
  margin-left: 0.5rem !important;
}

.badge__reviews {
  display: none !important;
}

.cr-trustbadgef .cr-trustbadge-border {
  border: none !important;
  padding: 0 !important;
}

.cr-badge.badge-vs .badge__rating-line {
  flex-flow: row-reverse nowrap !important;
}

.badge__stars {
  margin: 0 !important;
}

.star-rating::before {
  content: "sssss";
  color: rgba(0, 0, 0, 0.1);
  float: left;
  top: 0;
  left: 0;
  position: absolute;
}

.star-rating span::before {
  content: "SSSSS";
  font-family: star;
  color: #ffbc00;
  top: 0;
  position: absolute;
  left: 0;
}

.card-stars .star-rating {
  float: left !important;
  margin-bottom: 0.5rem;
}

.cr-ajax-search {
  display: none !important;
}

.cr-review-form-item {
  display: none !important;
}

.cr-comment-video img.cr-comment-videoicon {
  top: 20% !important;
}

.cr-all-reviews-shortcode > div.cr-summaryBox-wrap.cr-summaryBox-add-review > div:nth-child(3) {
  display: none;
}

#ivole-histogramTable tr.ivole-histogramRow .ivole-histogramCell1,
.cr-all-reviews-shortcode .cr-summaryBox-wrap.cr-summaryBox-add-review .ivole-summaryBox,
#cr_all_reviews_shortcode > div.cr-summaryBox-wrap.cr-summaryBox-add-review > div:nth-child(3),
.cr-all-reviews-shortcode .cr-count-row,
#reviews.cr-reviews-ajax-reviews .cr-count-row {
  display: none;
}

.cr-all-reviews-shortcode .cr-summaryBox-wrap,
.cr-reviews-grid .cr-summaryBox-wrap {
  background-color: white;
}

.cr-all-reviews-add-review,
.cr-review-form-submit {
  background-color: #901aad !important;
}
.cr-all-reviews-add-review:hover,
.cr-review-form-submit:hover {
  background-color: #6e0d86 !important;
}

.cr-all-reviews-shortcode ol.commentlist,
#reviews.cr-reviews-ajax-reviews #comments.cr-reviews-ajax-comments .cr-ajax-reviews-list {
  padding-top: 2rem;
}

#reviews div.iv-comment-image img,
div.iv-comment-image img {
  width: 125px;
  height: 125px !important;
  max-width: 100%;
  max-height: 100%;
}

.cr-review-form-rating-label {
  display: none;
}

.entry-summary {
  padding: 2rem;
  border-radius: 5px;
  margin-bottom: 3rem;
  box-shadow: 0 0 15px 0 #e0cee0;
}
@media (max-width: 767px) {
  .entry-summary {
    padding: 1rem;
  }
}
.entry-summary .quantity {
  display: none;
}
.entry-summary .cart {
  display: flex;
  flex-direction: column;
}
.entry-summary .cart .single_add_to_cart_button {
  background-color: #901aad !important;
  padding: 1rem !important;
  min-width: 200px;
}

/**
* 플러그인 - Woocommerce Custom Product Addons
*/
.wcpa_form_outer {
  margin: 1em 0 !important;
}

.wcpa_price_outer::before {
  content: "AUD ";
}

.wcpa_wrap .wcpa_form_error {
  text-align: right;
}

.wcpa_wrap .wcpa_field_wrap {
  margin: 0 0 10px !important;
}

.wcpa_checkbox {
  margin: 0 0 10px !important;
  min-height: 45px;
  display: flex;
}

.wcpa_wrap .wcpa_field_wrap.second-option {
  margin-left: 1rem !important;
}

.wcpa_wrap .wcpa_field_bottom {
  margin: 0 !important;
}

.wcpa_wrap .wcpa_check_ui_button .wcpa_checkbox.wcpa_selected label,
.wcpa_wrap .wcpa_check_ui_button .wcpa_radio.wcpa_selected label {
  background: #901aad;
  color: white;
}

.wcpa_wrap .wcpa_field_wrap .wcpa_quantity_wrap .wcpa_quantity_field {
  max-width: 60px;
}

.wcpa_total {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.wcpa_price_summary .result {
  text-align: right;
}

/**
* CART
*/
.wc-block-cart-item__product .wc-block-components-product-metadata .wc-block-components-product-metadata__description {
  display: none;
}

.wc-block-components-quantity-selector {
  display: none !important;
  visibility: hidden;
}

th.product-thumbnail,
td.product-thumbnail {
  width: 150px;
}

td.product-name > dl {
  font-size: 14px;
}

.rn-edit-options {
  display: inline-block !important;
  padding: 0 4px;
  background: #e9e6ed;
  border-radius: 5px;
}
.rn-edit-options:hover {
  background: #d3ceda;
}

.woocommerce table.cart td.actions .coupon input {
  text-align: left;
  width: 250px;
  height: 35px;
  padding: 0 0.5rem;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.woocommerce-cart-form__contents .product-price {
  display: none;
}

.wc-proceed-to-checkout a {
  float: right;
  padding: 1rem 3rem;
}

/**
// 체크아웃
*/
.woocommerce-form-login input {
  all: revert;
  height: 35px;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}
.woocommerce-form-login input[type=checkbox] {
  height: auto;
}

.checkout .checkout-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}
@media (max-width: 1023px) {
  .checkout .checkout-grid {
    grid-template-columns: 1fr;
  }
}
.checkout input,
.checkout textarea {
  all: revert;
  height: 35px;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}
.checkout .input-radio {
  height: auto;
}

.woocommerce-checkout-review-order-table tfoot td,
.woocommerce-table--order-details.order_details tfoot td {
  text-align: right;
}

td {
  border-bottom: none !important;
}

#order_review td {
  border-bottom: none;
}

.order-total td {
  font-size: 24px;
  color: #901aad;
}

.total-krw {
  font-size: 14px;
  line-height: 12px;
  font-weight: 400;
  color: black;
}

.woocommerce-remove-coupon {
  font-size: 14px;
  font-weight: 400;
}

.order-point td {
  text-align: right;
}

.discount-buttons {
  border-radius: 3px;
  background: #e9e6ed;
  color: black;
}
.discount-buttons:hover {
  background-color: #901aad;
  color: white;
}

.on {
  display: block !important;
}

.woocommerce-form-coupon-toggle {
  display: none;
}

.woocommerce form.checkout_coupon {
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  margin: 0 0 2em !important;
}

.woocommerce-billing-fields {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 2em;
  border-radius: 5px;
}

.woocommerce-checkout #payment {
  background-color: white;
}
.woocommerce-checkout #payment ul {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 5px;
}
.woocommerce-checkout #payment p {
  font-size: 14px;
}
.woocommerce-checkout #payment p a {
  color: #901aad;
}
.woocommerce-checkout #payment .form-row {
  padding: 1rem 0 0 0 !important;
}

#place_order {
  width: 100%;
  padding: 1rem;
  margin-top: 1rem;
}

.woocommerce form .form-row.woocommerce-invalid .select2-container,
.woocommerce form .form-row.woocommerce-invalid input.input-text,
.woocommerce form .form-row.woocommerce-invalid select {
  border-color: revert;
  border: 1px solid #d21616;
  border-radius: 5px;
}

/* WooCommerce login prompt box redesign */
.woocommerce-form-login-toggle {
  /* WooCommerce login prompt box redesign */
}
.woocommerce-form-login-toggle .woocommerce-info {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 20px 24px !important;
  margin-bottom: 30px !important;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  text-align: center !important;
}
.woocommerce-form-login-toggle .woocommerce-info::before {
  display: none !important; /* Remove default icon */
}
.woocommerce-form-login-toggle .woocommerce-info a.showlogin {
  display: inline-block;
  background: #ffffff;
  color: #667eea;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-left: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.woocommerce-form-login-toggle .woocommerce-info a.showlogin:hover {
  background: #f8f9ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/**
// 코스모팜포인트 사용섹션
*/
.cosmosfarm-point-pay-wc {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 0 0 2em;
  text-align: left;
  border-radius: 5px;
}
.cosmosfarm-point-pay-wc h3 {
  font-size: 20px !important;
}

#cosmosfarm-pay-wc-point {
  height: auto !important;
  padding: 10px 1rem;
}

#cosmosfarm-point-pay-wc_field {
  display: none;
}

#order_comments_field .optional {
  display: none;
}

/**
//Side Cart Plugin Custom
*/
.xoo-wsc-product dl.variation dd,
.xoo-wsc-product dl.variation dt {
  font-style: unset !important;
}

.xoo-wsc-img-col {
  width: 20% !important;
  align-self: start !important;
}

.xoo-wsc-sc-subt {
  display: none;
}

.xoo-wsc-sm-info a {
  font-size: 14px;
}

.wcpa_cart_meta .wcpa_cart_meta_item {
  margin-bottom: 0 !important;
}
.wcpa_cart_meta p {
  font-size: 14px;
}

.wcpa_cart_meta .wcpa_cart_meta_item .wcpa_cart_meta_item-label {
  margin-bottom: 0 !important;
}

.xoo-wsc-sm-left > *:not(:last-child) {
  padding-bottom: 0 !important;
}

.xoo-wsc-qty-price {
  margin-top: 10px;
}

#radio_3225533748 .wcpa_radio {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

/**
// ==== Thank you page
*/
.show-checkout-modal {
  display: flex;
}
.show-checkout-modal .modal-logo {
  width: 200px;
  margin: 0 auto 1rem;
}
.show-checkout-modal .modal-content {
  position: fixed;
  top: 50%; /* 화면의 상단에서 50% 지점에 위치 */
  left: 50%; /* 화면의 왼쪽에서 50% 지점에 위치 */
  transform: translate(-50%, -50%); /* 세로 및 가로 가운데 정렬 */
}

.woocommerce-order-details,
.woocommerce-customer-details {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 2rem;
}
@media (max-width: 767px) {
  .woocommerce-order-details,
  .woocommerce-customer-details {
    padding: 1rem;
  }
}

.woocommerce-table__product-name.product-name a {
  font-weight: bold;
}

.wc-item-meta,
.wc-item-meta p {
  font-size: 14px;
}

.cart-collaterals .order-total td {
  text-align: right;
  color: #901aad;
}
@media (max-width: 767px) {
  .cart-collaterals .order-total td::before {
    font-size: 16px;
  }
}
.cart-collaterals .cart-discount td {
  text-align: right;
}
.cart-collaterals .checkout-button {
  background-color: #901aad !important;
  padding: 1rem !important;
  min-width: 200px;
}

.header-user-btn {
  cursor: pointer;
}
.header-user-btn.login {
  padding: 0.25rem 0.5rem;
  border-radius: 1rem;
  background-color: #901aad;
  color: white;
}
.header-user-btn#mypageBtn {
  padding: 0.25rem 0.5rem;
  border-radius: 1rem;
  background-color: rgb(244, 244, 244);
}

#headerMypageNav {
  width: 180px;
  --tw-shadow: 0 0 7px 2px rgba(0, 0, 0, 0.1);
  --tw-shadow-colored: 0 0 7px 2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
  border-radius: 0.5rem;
  position: absolute;
  right: 0;
  background: white;
  z-index: 60;
}
#headerMypageNav .my-point p:first-child {
  font-size: 13px;
}
#headerMypageNav .my-point p:last-child {
  font-size: 12px;
}

.user-page-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 3rem;
}
@media (max-width: 1023px) {
  .user-page-grid {
    grid-template-columns: 1fr;
  }
}

.user-sidebar {
  --tw-shadow: 0 0 7px 2px rgba(0, 0, 0, 0.1);
  --tw-shadow-colored: 0 0 7px 2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
  border-radius: 0.5rem;
}

.user-sidebar-ul {
  border-top: 1px solid #e6e6e6;
  padding: 1rem 0;
}

.user-sidebar-list {
  cursor: pointer;
  padding: 1.5rem;
}
.user-sidebar-list:hover {
  background: #f5f5f5;
  color: #901aad;
}
.user-sidebar-list:hover .user-sidebar-icon img {
  filter: brightness(0) saturate(100%) invert(12%) sepia(64%) saturate(6506%) hue-rotate(286deg) brightness(94%) contrast(90%);
}
.user-sidebar-list a {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.user-sidebar-icon {
  width: 20px;
  height: 20px;
}

.user-page-title {
  font-size: 24px;
  font-weight: bold;
  margin: 2rem 0;
  border-left: 5px solid purple;
  padding-left: 10px;
}
.user-page-title .underbar {
  width: 80px;
  height: 2px;
  background-color: #901aad;
  margin: 1rem auto;
}

.woocommerce-MyAccount-navigation-link--edit-account a:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("./assets/images/user-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.woocommerce-MyAccount-navigation-link--orders a:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("./assets/images/orders-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.woocommerce-MyAccount-navigation-link--my-posts a:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("./assets/images/edit-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.woocommerce-MyAccount-navigation-link--customer-logout a:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("./assets/images/logout-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.user-container {
  font-size: 14px;
}
.user-container form {
  max-width: 700px;
}

.registration-item-box form {
  margin: auto;
}
.registration-item-box .input-group {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 5fr;
  align-items: center;
}
@media (max-width: 767px) {
  .registration-item-box .input-group {
    grid-template-columns: 1fr;
  }
}
.registration-item-box .input-group label {
  font-weight: bold;
  color: #6a6a6a;
}
.registration-item-box .input-group input {
  width: 100%;
}
.registration-item-box .input-group .message {
  font-size: 12px;
  color: #aaa;
}
.registration-item-box input {
  padding: 4px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.user-submit-btn {
  min-width: 200px;
  background-color: #f0f0f0 !important;
  cursor: pointer;
}
.user-submit-btn:hover {
  background-color: #f7f7f7 !important;
}

.terms-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.terms-checkbox a {
  color: #901aad;
}
.terms-checkbox a:hover {
  font-weight: bold;
}

.register-submit-btn input {
  height: 38px !important;
  min-width: 200px !important;
  font-size: 14px !important;
  padding: 5px 10px 5px !important;
  border: 1px solid #ccc;
  background-color: #f0f0f0;
  cursor: pointer;
}
.register-submit-btn input:hover {
  background-color: #f7f7f7;
}

.login-notification {
  color: red;
  font-size: 13px;
  margin-top: 0.5rem;
}

.login-custom-container {
  margin: 0px auto !important;
  text-align: center;
  max-width: 840px;
  border: 1px solid #ccc !important;
  border-radius: 4px;
  padding-top: 2rem;
  font-size: 13px;
  color: #6a6a6a;
}

.user-login-item {
  text-align: right !important;
  padding-right: 113px !important;
}

.login-btn input {
  color: #fff;
  background-color: #444 !important;
  font-weight: 600;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 85px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .login-btn input {
    width: 250px;
    height: 36px;
  }
}

.user-login-input-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.user-login-input-wrap .idpw-input {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 767px) {
  .user-login-input-wrap .idpw-input {
    flex-direction: column;
    align-items: start;
    gap: 0;
  }
}
.user-login-input-wrap .login-label {
  width: 90px;
  text-align: left;
}
.user-login-input-wrap input {
  width: 250px !important;
  height: 34px !important;
  padding: 4px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.login-btn-box {
  padding: 29px 0 24px;
  text-align: center;
  margin-top: 1rem;
  border-top: 1px solid #ccc;
  background-color: #f0f0f0;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .login-btn-box {
    flex-direction: column;
  }
}
.login-btn-box button {
  width: 230px;
  border: 1px solid #ddd;
  border-radius: 3px;
  background-color: #ffffff !important;
  height: 50px;
}
@media (max-width: 767px) {
  .login-btn-box button {
    height: 36px;
  }
}

div.nsl-container {
  width: 100%;
  max-width: 500px;
  margin: auto;
}
div.nsl-container .nsl-button-default {
  flex-direction: column;
}

.nsl-container-buttons {
  display: flex !important;
  gap: 1rem;
}
.nsl-container-buttons .nsl-button {
  margin: auto;
  width: auto;
  height: auto;
  padding: 8px 16px;
  align-items: center;
}
.nsl-container-buttons .nsl-button-label-container {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 13px !important;
}

#register-btn {
  border-radius: 1px;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.25);
  color: RGBA(0, 0, 0, 0.54);
  width: 300px;
  height: 50px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#register-btn:hover {
  background-color: #f0f0f0;
}

.woocommerce-form-login {
  max-width: 500px;
  margin: 2em auto !important;
}

.wc-custom-submit-btn,
.woocommerce-form-login__submit {
  margin: 0 !important;
  color: #fff !important;
  background-color: #901aad !important;
  width: 150px;
  height: 45px;
}

.woocommerce-Input {
  all: revert;
  height: 35px;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.rmagic .buttonarea {
  margin: 0 !important;
}

#orders.postlist-table th:first-child {
  width: 10%;
}
#orders.postlist-table th:nth-child(2),
#orders.postlist-table th:nth-child(3) {
  width: 15%;
}
#orders.postlist-table th:last-child {
  width: 15%;
}

.order-status-info {
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .order-table-th-thumbnail {
    width: 15%;
  }
}

@media (max-width: 767px) {
  .woocommerce-table__product-thumbnail {
    width: 70px !important;
    display: flex;
    padding: 9px 8px !important;
  }
}
@media (max-width: 767px) {
  .woocommerce-table__product-thumbnail img {
    width: 70px;
  }
}

.wc-item-meta-label {
  font-weight: 400;
}

.woocommerce-form-login input {
  all: revert;
  height: 35px;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}
.woocommerce-form-login input[type=checkbox] {
  height: auto;
}

.checkout .checkout-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}
@media (max-width: 1023px) {
  .checkout .checkout-grid {
    grid-template-columns: 1fr;
  }
}
.checkout input,
.checkout textarea {
  all: revert;
  height: 35px;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}
.checkout .input-radio {
  height: auto;
}

.order-total td {
  text-align: right;
  font-size: 24px;
  color: #901aad;
}

.woocommerce-form-coupon-toggle,
.woocommerce-form-coupon,
.form-use-point-wrap {
  display: none;
}

.on {
  display: block;
}

.woocommerce-billing-fields,
form.checkout_coupon,
.form-use-point-wrap {
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  padding: 20px;
  margin-bottom: 2em;
  border-radius: 5px;
}

.woocommerce-checkout #payment {
  background-color: white;
}
.woocommerce-checkout #payment ul {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 5px;
}
.woocommerce-checkout #payment p {
  font-size: 14px;
}
.woocommerce-checkout #payment p a {
  color: #901aad;
}
.woocommerce-checkout #payment .form-row {
  padding: 1rem 0 0 0 !important;
}

#place_order {
  width: 100%;
  padding: 1rem;
  margin-top: 1rem;
}

.woocommerce form .form-row.woocommerce-invalid .select2-container,
.woocommerce form .form-row.woocommerce-invalid input.input-text,
.woocommerce form .form-row.woocommerce-invalid select {
  border-color: revert;
  border: 1px solid #d21616;
  border-radius: 5px;
}

.custom-review-order-table {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 2em;
}
@media (max-width: 767px) {
  .custom-review-order-table {
    padding: 0;
  }
}
.custom-review-order-table .cart_item {
  display: flex;
  gap: 1rem;
  padding: 10px 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.custom-review-order-table .product-thumbnail {
  max-width: 100px;
  height: 100%;
}
.custom-review-order-table .product-name {
  font-size: 14px;
  font-weight: 600;
}
.custom-review-order-table .product-total {
  font-weight: 600;
  margin-top: 10px;
}
.custom-review-order-table .total {
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 767px) {
  .custom-review-order-table .total {
    padding: 1rem;
  }
}
.custom-review-order-table .total-flex {
  display: flex;
  justify-content: space-between;
}
.custom-review-order-table .order-total {
  text-align: right;
}
.custom-review-order-table .total-aud {
  font-size: 20px;
  font-weight: 600;
  color: #901aad;
}

.wc_payment_method input {
  height: 14px !important;
}

.input-label-wrap {
  display: flex;
  align-items: center;
}

#place_order {
  background-color: #901aad;
}

.checkout-loginbtn-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.checkout-loginbtn-wrap::before {
  content: none !important;
}
.checkout-loginbtn-wrap .woocommerce-form-login__rememberme,
.checkout-loginbtn-wrap .lost_password {
  font-size: 14px !important;
}

.lost_password {
  font-size: 14px !important;
  color: #901aad;
}

.discount-buttons {
  border-radius: 3px;
}

.form-use-point-wrap h3 {
  font-size: 18px !important;
}

.cosmosfarm-point-pay-wc__field-wrapper .point-input {
  display: flex;
  align-items: center;
}
.cosmosfarm-point-pay-wc__field-wrapper .point-input input {
  padding: 10px;
  height: auto;
  width: 80px !important;
}
.cosmosfarm-point-pay-wc__field-wrapper .point-input #decrement,
.cosmosfarm-point-pay-wc__field-wrapper .point-input #increment {
  border: 1px solid #cccccc;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 3px;
}
.cosmosfarm-point-pay-wc__field-wrapper .woocommerce-input-wrapper {
  margin-top: 1rem;
}

.order-point {
  display: flex;
  justify-content: space-between;
}/*# sourceMappingURL=style.css.map */