@charset "UTF-8";
/* Delta Cafés 심플 스타일 */
/* 폰트 정의 */
/* NanumBarunGothic 폰트 정의 */
@font-face {
  font-family: "NanumBarunGothic";
  src: url("../assets/fonts/NanumBarunGothic/NanumBarunGothicUltraLight.woff2") format("woff2"), url("../assets/fonts/NanumBarunGothic/NanumBarunGothicUltraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NanumBarunGothic";
  src: url("../assets/fonts/NanumBarunGothic/NanumBarunGothicLight.woff2") format("woff2"), url("../assets/fonts/NanumBarunGothic/NanumBarunGothicLight.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NanumBarunGothic";
  src: url("../assets/fonts/NanumBarunGothic/NanumBarunGothic.woff2") format("woff2"), url("../assets/fonts/NanumBarunGothic/NanumBarunGothic.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NanumBarunGothic";
  src: url("../assets/fonts/NanumBarunGothic/NanumBarunGothicBold.woff2") format("woff2"), url("../assets/fonts/NanumBarunGothic/NanumBarunGothicBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* ClanOT 폰트 정의 */
@font-face {
  font-family: "ClanOT";
  src: url("../assets/fonts/ClanOT/ClanOT-Book.woff2") format("woff2"), url("../assets/fonts/ClanOT/ClanOT-Book.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ClanOT";
  src: url("../assets/fonts/ClanOT/ClanOT-Medium.woff2") format("woff2"), url("../assets/fonts/ClanOT/ClanOT-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ClanOT";
  src: url("../assets/fonts/ClanOT/ClanOT-Bold.woff2") format("woff2"), url("../assets/fonts/ClanOT/ClanOT-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ClanOT";
  src: url("../assets/fonts/ClanOT/ClanOT-Black.woff2") format("woff2"), url("../assets/fonts/ClanOT/ClanOT-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
/* 반응형 Breakpoints Mixin */
/* 샘플 신청 모달 스타일 */
html, body {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

.sample-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.sample-modal.active {
  display: block;
  opacity: 1;
}
.sample-modal .modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.sample-modal .modal-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 767px) {
  .sample-modal .modal-container {
    padding: 24px;
    width: 95%;
  }
}
.sample-modal .modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 32px;
  height: 32px;
  transition: transform 0.2s ease;
}
.sample-modal .modal-close:hover {
  transform: scale(1.1);
}
.sample-modal .modal-close img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.sample-modal .modal-content .modal-title {
  color: #121313;
  font-size: 32px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .sample-modal .modal-content .modal-title {
    font-size: 24px;
  }
}
.sample-modal .modal-content .modal-description {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .sample-modal .modal-content .modal-description {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.sample-modal .modal-content .privacy-policy-section {
  margin-bottom: 24px;
}
.sample-modal .modal-content .privacy-policy-section .privacy-title {
  color: #121313;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}
.sample-modal .modal-content .privacy-policy-section .privacy-content {
  height: 150px;
  overflow-y: auto;
  padding: 15px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 12px;
  line-height: 1.8;
  color: #666;
}
@media (max-width: 767px) {
  .sample-modal .modal-content .privacy-policy-section .privacy-content {
    height: 120px;
    font-size: 11px;
    padding: 12px;
  }
}
.sample-modal .modal-content .privacy-policy-section .privacy-content::-webkit-scrollbar {
  width: 4px;
}
.sample-modal .modal-content .privacy-policy-section .privacy-content::-webkit-scrollbar-track {
  background: transparent;
}
.sample-modal .modal-content .privacy-policy-section .privacy-content::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 2px;
}
.sample-modal .modal-content .privacy-policy-section .privacy-content::-webkit-scrollbar-thumb:hover {
  background: #999;
}
.sample-modal .modal-content .privacy-policy-section .privacy-content p {
  margin: 0 0 10px;
  line-height: 1.8;
}
.sample-modal .modal-content .privacy-policy-section .privacy-content h4 {
  color: #121313;
  font-size: 13px;
  font-weight: 600;
  margin: 15px 0 8px;
}
.sample-modal .modal-content .privacy-policy-section .privacy-content .privacy-intro {
  margin-bottom: 15px;
}
.sample-modal .modal-content .privacy-policy-section .privacy-content .privacy-notice {
  background: #fffbf0;
  padding: 10px;
  margin: 10px 0;
  font-size: 11px;
  line-height: 1.6;
  border-radius: 3px;
}
.sample-modal .modal-content .privacy-policy-section .privacy-content .privacy-item {
  margin: 10px 0;
}
.sample-modal .modal-content .privacy-policy-section .privacy-content .privacy-item strong {
  color: #333;
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
}
.sample-modal .modal-content .privacy-policy-section .privacy-content .privacy-item ul {
  margin: 5px 0 0 15px;
  padding: 0;
}
.sample-modal .modal-content .privacy-policy-section .privacy-content .privacy-item ul li {
  margin: 3px 0;
  font-size: 11px;
  line-height: 1.6;
}
.sample-modal .modal-content .privacy-policy-section .privacy-content .privacy-item ul li strong {
  display: inline;
  color: #dc3545;
  font-size: 11px;
}
.sample-modal .modal-content .privacy-policy-section .privacy-agree {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  background: #f9f9f9;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .sample-modal .modal-content .privacy-policy-section .privacy-agree {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.sample-modal .modal-content .privacy-policy-section .privacy-agree .agree-label {
  font-size: 14px;
  font-weight: 500;
  color: #121313;
}
@media (max-width: 767px) {
  .sample-modal .modal-content .privacy-policy-section .privacy-agree .agree-label {
    font-size: 13px;
  }
}
.sample-modal .modal-content .privacy-policy-section .privacy-agree .radio-group {
  display: flex;
  gap: 30px;
  align-items: center;
}
.sample-modal .modal-content .privacy-policy-section .privacy-agree .radio-group .radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #121313;
}
@media (max-width: 767px) {
  .sample-modal .modal-content .privacy-policy-section .privacy-agree .radio-group .radio-label {
    font-size: 13px;
  }
}
.sample-modal .modal-content .privacy-policy-section .privacy-agree .radio-group .radio-label input[type=radio] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #4a90e2;
}
.sample-modal .modal-content .privacy-policy-section .privacy-agree .radio-group .radio-label span {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-weight: 400;
}
.sample-modal .sample-form .form-group {
  margin-bottom: 20px;
}
.sample-modal .sample-form .form-group label {
  display: block;
  color: #121313;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.sample-modal .sample-form .form-group label .required-text {
  color: #dc3545;
  font-size: 12px;
  font-weight: 400;
  margin-left: 4px;
}
.sample-modal .sample-form .form-group label .hint-text {
  color: #666;
  font-size: 12px;
  font-weight: 400;
  margin-left: 4px;
  text-transform: none;
}
.sample-modal .sample-form .form-group .input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.sample-modal .sample-form .form-group .input-wrapper input {
  flex: 1;
  padding-right: 40px;
}
.sample-modal .sample-form .form-group .input-wrapper .clear-btn {
  position: absolute;
  right: 12px;
  background: #ccc;
  border: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.sample-modal .sample-form .form-group .input-wrapper .clear-btn:hover {
  background: #999;
}
.sample-modal .sample-form .form-group .error-message {
  display: block;
  color: #dc3545;
  font-size: 12px;
  margin-top: 6px;
  min-height: 18px;
}
.sample-modal .sample-form .form-group .error-message:empty {
  display: none;
}
.sample-modal .sample-form .form-group input.error {
  border-color: #dc3545;
}
.sample-modal .sample-form .form-group input,
.sample-modal .sample-form .form-group select,
.sample-modal .sample-form .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: "ClanOT", "NanumBarunGothic", Arial, sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
  -webkit-user-select: text;
  -moz-user-select: text;
       user-select: text;
  touch-action: manipulation;
}
@media (max-width: 767px) {
  .sample-modal .sample-form .form-group input,
  .sample-modal .sample-form .form-group select,
  .sample-modal .sample-form .form-group textarea {
    font-size: 16px;
  }
}
.sample-modal .sample-form .form-group input:focus,
.sample-modal .sample-form .form-group select:focus,
.sample-modal .sample-form .form-group textarea:focus {
  outline: none;
  border-color: #dc3545;
}
.sample-modal .sample-form .form-group input::-moz-placeholder, .sample-modal .sample-form .form-group select::-moz-placeholder, .sample-modal .sample-form .form-group textarea::-moz-placeholder {
  color: #999;
}
.sample-modal .sample-form .form-group input::placeholder,
.sample-modal .sample-form .form-group select::placeholder,
.sample-modal .sample-form .form-group textarea::placeholder {
  color: #999;
}
.sample-modal .sample-form .form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.sample-modal .sample-form .form-group select {
  cursor: pointer;
}
.sample-modal .sample-form .form-group .phone-verification {
  display: flex;
  gap: 8px;
}
.sample-modal .sample-form .form-group .phone-verification input {
  flex: 1;
}
.sample-modal .sample-form .form-group .phone-verification .verify-btn {
  padding: 12px 20px;
  background: #666;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
}
.sample-modal .sample-form .form-group .phone-verification .verify-btn:hover {
  background: #555;
}
.sample-modal .sample-form .form-group .phone-verification .verify-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}
.sample-modal .sample-form .form-group .verify-code-wrapper {
  position: relative;
  flex: 1;
}
.sample-modal .sample-form .form-group .verify-code-wrapper input {
  padding-right: 80px;
}
.sample-modal .sample-form .form-group .verify-code-wrapper .timer {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #dc3545;
  font-size: 14px;
  font-weight: 500;
}
.sample-modal .sample-form .form-group .verify-check-btn {
  white-space: nowrap;
}
.sample-modal .sample-form .form-group .sample-label {
  display: block;
  color: #121313;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.sample-modal .sample-form .form-group .sample-selection {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 767px) {
  .sample-modal .sample-form .form-group .sample-selection {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.sample-modal .sample-form .form-group .sample-selection .sample-card {
  position: relative;
  cursor: pointer;
  display: block;
}
.sample-modal .sample-form .form-group .sample-selection .sample-card input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.sample-modal .sample-form .form-group .sample-selection .sample-card .sample-card-content {
  border: 2px solid #ddd;
  border-radius: 12px;
  padding: 16px;
  transition: all 0.3s ease;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.sample-modal .sample-form .form-group .sample-selection .sample-card .sample-card-content:hover {
  border-color: #dc3545;
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.15);
  transform: translateY(-2px);
}
.sample-modal .sample-form .form-group .sample-selection .sample-card .sample-card-content .sample-image {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  background: #f9f9f9;
}
.sample-modal .sample-form .form-group .sample-selection .sample-card .sample-card-content .sample-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.sample-modal .sample-form .form-group .sample-selection .sample-card .sample-card-content .sample-name {
  font-size: 13px;
  font-weight: 500;
  color: #121313;
  text-align: center;
  text-transform: uppercase;
}
.sample-modal .sample-form .form-group .sample-selection .sample-card input[type=checkbox]:checked + .sample-card-content {
  border-color: #dc3545;
  background: #fff5f5;
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.2);
}
.sample-modal .sample-form .form-group .sample-selection .sample-card input[type=checkbox]:checked + .sample-card-content .sample-name {
  color: #dc3545;
}
.sample-modal .sample-form .submit-btn {
  width: 100%;
  padding: 16px 32px;
  background: #dc3545;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.sample-modal .sample-form .submit-btn:hover {
  background: #c82333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}
.sample-modal .sample-form .submit-btn:active {
  transform: translateY(0);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: "ClanOT", "NanumBarunGothic", Arial, sans-serif;
}
@media (min-width: 768px) and (max-width: 1023px) {
  body.menu-open::before {
    content: "";
    position: fixed;
    top: var(--header-height, 72px);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height, 72px));
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
  }
}

/* 상단 네비게이션 */
#navigation-container .top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 12px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
@media (min-width: 320px) and (max-width: 767px) {
  #navigation-container .top-nav {
    padding: 13px 0;
  }
}
#navigation-container .top-nav .nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
@media (min-width: 320px) and (max-width: 767px) {
  #navigation-container .top-nav .nav-container {
    padding: 0 16px;
  }
}
#navigation-container .top-nav .nav-container .nav-left {
  display: flex;
  gap: 72px;
  align-items: center;
  margin-right: 165px;
}
@media (min-width: 320px) and (max-width: 767px) {
  #navigation-container .top-nav .nav-container .nav-left {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #navigation-container .top-nav .nav-container .nav-left {
    display: none;
  }
}
#navigation-container .top-nav .nav-container .nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
@media (min-width: 320px) and (max-width: 767px) {
  #navigation-container .top-nav .nav-container .nav-logo {
    order: -1;
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #navigation-container .top-nav .nav-container .nav-logo {
    order: -1;
    width: 100%;
  }
}
#navigation-container .top-nav .nav-container .nav-logo a {
  display: block;
  transition: transform 0.3s ease;
}
#navigation-container .top-nav .nav-container .nav-logo a:hover, #navigation-container .top-nav .nav-container .nav-logo a.active {
  transform: scale(1.1);
}
#navigation-container .top-nav .nav-container .nav-logo .nav-logo-img {
  width: 76px;
  height: 75px;
  transition: transform 0.3s ease;
}
@media (min-width: 320px) and (max-width: 767px) {
  #navigation-container .top-nav .nav-container .nav-logo .nav-logo-img {
    height: 68px;
  }
}
#navigation-container .top-nav .nav-container .nav-logo .nav-logo-img:hover {
  transform: scale(1.1);
}
#navigation-container .top-nav .nav-container .nav-right {
  display: flex;
  align-items: center;
  margin-left: 240px;
}
@media (min-width: 320px) and (max-width: 767px) {
  #navigation-container .top-nav .nav-container .nav-right {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #navigation-container .top-nav .nav-container .nav-right {
    display: none;
  }
}
#navigation-container .top-nav .nav-container .nav-link {
  color: #121313;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0;
  height: 48px;
  display: flex;
  align-items: center;
}
#navigation-container .top-nav .nav-container .nav-link:hover, #navigation-container .top-nav .nav-container .nav-link.active {
  color: #dc3545;
  background-color: #f8f8f8;
}
#navigation-container .top-nav .nav-container .nav-dropdown {
  position: relative;
  display: inline-block;
}
#navigation-container .top-nav .nav-container .nav-dropdown .dropdown-trigger {
  position: relative;
}
#navigation-container .top-nav .nav-container .nav-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 70%;
  transform: translateX(-50%);
  background: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 16px 8px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1001;
  margin-top: 10px;
}
#navigation-container .top-nav .nav-container .nav-dropdown .dropdown-menu .dropdown-item {
  display: block;
  padding: 8px 16px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  font-style: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  text-align: center;
  white-space: nowrap;
}
#navigation-container .top-nav .nav-container .nav-dropdown .dropdown-menu .dropdown-item:hover {
  background: #f8f9fa;
  color: #ffde26;
  border-left-color: #ffde26;
}
#navigation-container .top-nav .nav-container .nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 30%;
}
#navigation-container .top-nav .nav-container .mobile-menu-toggle {
  /* 모바일 메뉴 스타일 */
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}
@media (min-width: 320px) and (max-width: 767px) {
  #navigation-container .top-nav .nav-container .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #navigation-container .top-nav .nav-container .mobile-menu-toggle {
    display: block;
  }
}
#navigation-container .top-nav .nav-container .mobile-menu-toggle .menu-icon,
#navigation-container .top-nav .nav-container .mobile-menu-toggle .close-icon {
  width: 24px;
  height: 24px;
  transition: opacity 0.3s ease;
}
#navigation-container .top-nav .nav-container .mobile-menu-toggle .close-icon {
  position: absolute;
  top: 8px;
  left: 8px;
  opacity: 0;
}
#navigation-container .top-nav .nav-container .mobile-menu-toggle.active .menu-icon {
  opacity: 0;
}
#navigation-container .top-nav .nav-container .mobile-menu-toggle.active .close-icon {
  opacity: 1;
}
#navigation-container .top-nav .nav-container .mobile-menu-overlay {
  position: fixed;
  top: var(--header-height, 72px);
  right: 0;
  width: 50vw;
  height: calc(100vh - var(--header-height, 72px)); /* 헤더 높이 변수 사용 */
  background: #1b1616;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  /* 메뉴 콘텐츠 영역 */
}
#navigation-container .top-nav .nav-container .mobile-menu-overlay.active {
  transform: translateX(0);
}
@media (max-width: 767px) {
  #navigation-container .top-nav .nav-container .mobile-menu-overlay {
    width: 100vw;
    top: var(--header-height, 72px);
    height: calc(100vh - var(--header-height, 72px));
  }
}
#navigation-container .top-nav .nav-container .mobile-menu-overlay .mobile-menu-content {
  position: absolute;
  top: 0;
  bottom: 120px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 40px 40px 0;
  gap: 30px;
  /* PRODUCTS 섹션 */
}
@media (max-width: 480px) {
  #navigation-container .top-nav .nav-container .mobile-menu-overlay .mobile-menu-content {
    padding: 46px 0 0 24px;
    margin-top: 12px;
  }
}
#navigation-container .top-nav .nav-container .mobile-menu-overlay .mobile-menu-content .mobile-nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
#navigation-container .top-nav .nav-container .mobile-menu-overlay .mobile-menu-content .mobile-nav-link:hover {
  color: #dc3545;
}
@media (max-width: 480px) {
  #navigation-container .top-nav .nav-container .mobile-menu-overlay .mobile-menu-content .mobile-nav-link:hover {
    color: #fff;
  }
}
#navigation-container .top-nav .nav-container .mobile-menu-overlay .mobile-menu-content .mobile-nav-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}
#navigation-container .top-nav .nav-container .mobile-menu-overlay .mobile-menu-content .mobile-nav-section .mobile-nav-title {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0;
}
#navigation-container .top-nav .nav-container .mobile-menu-overlay .mobile-menu-content .mobile-nav-section .mobile-nav-sublink {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  margin-left: 0;
}
#navigation-container .top-nav .nav-container .mobile-menu-overlay .mobile-menu-content .mobile-nav-section .mobile-nav-sublink:hover {
  color: #dc3545;
}
#navigation-container .top-nav .nav-container .mobile-menu-overlay .mobile-menu-content .mobile-nav-section .mobile-nav-sublink:last-child {
  padding-bottom: 30px;
}

/* Swiper 슬라이더 컨테이너 */
.hero-swiper-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  margin-top: 0;
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* 비디오 스타일 */
  /* 비디오 대체 콘텐츠 */
}
.swiper-slide .slide-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.2);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
  min-width: 100%;
  min-height: 100%;
}
@media (max-width: 480px) {
  .swiper-slide .slide-video {
    transform: translate(-50%, -50%) scale(1.4);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .swiper-slide .slide-video {
    transform: translate(-50%, -50%) scale(1.6);
  }
}
.swiper-slide .slide-content {
  position: relative;
  z-index: 2;
}
.swiper-slide .slide-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2d5016 0%, #4a7c1e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

/* Swiper 커스텀 스타일 */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  color: white;
  background: rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 10;
}
.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}
.hero-swiper .swiper-button-next:after,
.hero-swiper .swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
}
.hero-swiper .swiper-button-next {
  right: 30px;
}
.hero-swiper .swiper-button-prev {
  left: 30px;
}
.hero-swiper .swiper-pagination {
  bottom: 130px !important;
  z-index: 101;
}
.hero-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transition: all 0.3s ease;
}
.hero-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: white;
  transform: scale(1.2);
}
.hero-swiper .swiper-pagination .swiper-pagination-bullet:hover {
  background: rgba(255, 255, 255, 0.7);
}

/* 푸터 스타일 */
#footer-container .main-footer {
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1b1616;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  z-index: 100;
}
#footer-container .main-footer .footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}
@media (max-width: 480px) {
  #footer-container .main-footer .footer-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #footer-container .main-footer .footer-container {
    flex-direction: column;
    gap: 20px;
  }
}
#footer-container .main-footer .footer-container .footer-left {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 480px) {
  #footer-container .main-footer .footer-container .footer-left {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #footer-container .main-footer .footer-container .footer-left {
    flex-direction: column;
    gap: 20px;
  }
}
#footer-container .main-footer .footer-container .footer-logo .footer-logo-img {
  width: auto;
  height: 56px;
  transition: transform 0.3s ease;
  cursor: pointer;
}
#footer-container .main-footer .footer-container .footer-logo .footer-logo-img:hover {
  transform: scale(1.1);
}
@media (max-width: 480px) {
  #footer-container .main-footer .footer-container .footer-logo .footer-logo-img {
    height: 68px;
  }
}
#footer-container .main-footer .footer-container .footer-info {
  color: #fff;
  text-align: left;
}
#footer-container .main-footer .footer-container .footer-info .footer-policy-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
#footer-container .main-footer .footer-container .footer-info .footer-policy-links .policy-link {
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
}
#footer-container .main-footer .footer-container .footer-info .footer-policy-links .policy-link:hover {
  color: #dc3545;
}
#footer-container .main-footer .footer-container .footer-info .footer-policy-links .policy-separator {
  color: #666;
  font-size: 12px;
}
@media (max-width: 480px) {
  #footer-container .main-footer .footer-container .footer-info .footer-policy-links {
    justify-content: center;
    gap: 8px;
  }
  #footer-container .main-footer .footer-container .footer-info .footer-policy-links .policy-link {
    font-size: 11px;
  }
  #footer-container .main-footer .footer-container .footer-info .footer-policy-links .policy-separator {
    font-size: 10px;
  }
}
#footer-container .main-footer .footer-container .footer-info p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}
#footer-container .main-footer .footer-container .footer-info .company-name {
  font-weight: 600;
  font-size: 15px;
}
#footer-container .main-footer .footer-container .footer-info .company-address {
  font-weight: 400;
}
#footer-container .main-footer .footer-container .footer-info .company-contact {
  font-weight: 400;
}
#footer-container .main-footer .footer-container .footer-info .company-contact a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
#footer-container .main-footer .footer-container .footer-info .company-contact a:hover {
  color: #dc3545;
}
@media (max-width: 480px) {
  #footer-container .main-footer .footer-container .footer-info {
    text-align: center;
  }
  #footer-container .main-footer .footer-container .footer-info p {
    font-size: 12px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #footer-container .main-footer .footer-container .footer-info {
    text-align: center;
  }
}
#footer-container .main-footer .footer-container .footer-links {
  display: flex;
  gap: 40px;
}
#footer-container .main-footer .footer-container .footer-links .footer-link {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  font-style: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
#footer-container .main-footer .footer-container .footer-links .footer-link:hover {
  color: #dc3545;
}
@media (max-width: 480px) {
  #footer-container .main-footer .footer-container .footer-links .footer-link {
    font-size: 13px;
  }
}