@charset "UTF-8";
/* 페이지 공통 스타일 */
/* 폰트 정의 */
/* 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);
}

.page-content {
  margin-top: 80px;
  padding: 40px 0 0;
  min-height: calc(100vh - 80px);
}
@media (max-width: 767px) {
  .page-content {
    padding: 0;
  }
}
.page-content .container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 90px 20px;
  position: relative;
}
@media (max-width: 767px) {
  .page-content .container {
    padding: 0 0 50px;
  }
}
.page-content .container .product_detail {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.page-content .container .product_detail img {
  width: 100%;
  height: auto;
}
.page-content .container .section-wrapper {
  display: flex;
  align-items: center;
  gap: 44px;
  justify-content: center;
}
@media (min-width: 320px) and (max-width: 767px) {
  .page-content .container .section-wrapper {
    flex-direction: column-reverse;
    gap: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .page-content .container .section-wrapper {
    flex-direction: column-reverse;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .page-content .container .section-wrapper {
    flex-direction: column-reverse;
  }
}
.page-content .container .section-wrapper .content-section h2 {
  color: #121313;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .page-content .container .section-wrapper .content-section h2 {
    font-size: 32px;
    padding-bottom: 20px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.page-content .container .section-wrapper .content-section p {
  color: #121313;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  white-space: pre-line;
}
@media (min-width: 320px) and (max-width: 767px) {
  .page-content .container .section-wrapper .content-section p {
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  .page-content .container .section-wrapper .content-section p {
    font-size: 14px;
    line-height: 20px;
  }
}
.page-content .container .section-wrapper .content-section img {
  width: 540px;
  height: auto;
}
@media (max-width: 767px) {
  .page-content .container .section-wrapper .content-section img {
    width: 100%;
  }
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 45px 24px;
  }
}

.contact-info h2 {
  color: #121313;
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .contact-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }
}
.contact-info p {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .contact-info p {
    font-size: 14px;
  }
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}
.contact-form .form-single {
  margin-bottom: 16px;
}
.contact-form .form-single label {
  display: block;
  color: #121313;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}
.contact-form .form-single input,
.contact-form .form-single textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "ClanOT", "NanumBarunGothic", Arial, sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}
.contact-form .form-single input:focus,
.contact-form .form-single textarea:focus {
  outline: none;
  border-color: #dc3545;
}
.contact-form .form-single input::-moz-placeholder, .contact-form .form-single textarea::-moz-placeholder {
  color: #999;
}
.contact-form .form-single input::placeholder,
.contact-form .form-single textarea::placeholder {
  color: #999;
}
.contact-form .form-group label {
  display: block;
  color: #121313;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}
.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "ClanOT", "NanumBarunGothic", Arial, sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  border-color: #dc3545;
}
.contact-form .form-group input::-moz-placeholder, .contact-form .form-group textarea::-moz-placeholder {
  color: #999;
}
.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
  color: #999;
}
.contact-form .form-group textarea {
  resize: vertical;
  min-height: 150px;
}
.contact-form .phone-input-section,
.contact-form .phone-verification-section {
  margin-bottom: 16px;
}
.contact-form .phone-input-section label,
.contact-form .phone-verification-section label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.contact-form .phone-input-section label .hint-text,
.contact-form .phone-verification-section label .hint-text {
  color: #666;
  font-size: 12px;
  font-weight: 400;
}
.contact-form .phone-input-wrapper,
.contact-form .verification-input-wrapper {
  display: flex;
  gap: 8px;
}
.contact-form .phone-input-wrapper input,
.contact-form .verification-input-wrapper input {
  flex: 1;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}
.contact-form .phone-input-wrapper input:focus,
.contact-form .verification-input-wrapper input:focus {
  outline: none;
  border-color: #dc3545;
}
.contact-form .phone-input-wrapper input:disabled,
.contact-form .verification-input-wrapper input:disabled {
  background: #f5f5f5;
  cursor: not-allowed;
}
.contact-form .phone-input-wrapper .btn-verification-send,
.contact-form .verification-input-wrapper .btn-verification-send {
  padding: 12px 24px;
  background: #4a4a4a;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact-form .phone-input-wrapper .btn-verification-send:hover:not(:disabled),
.contact-form .verification-input-wrapper .btn-verification-send:hover:not(:disabled) {
  background: #333;
}
.contact-form .phone-input-wrapper .btn-verification-send:disabled,
.contact-form .verification-input-wrapper .btn-verification-send:disabled {
  background: #ccc;
  cursor: not-allowed;
}
.contact-form .phone-input-wrapper .btn-verification-confirm,
.contact-form .verification-input-wrapper .btn-verification-confirm {
  padding: 12px 24px;
  background: #d0d0d0;
  color: #666;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact-form .phone-input-wrapper .btn-verification-confirm:hover:not(:disabled),
.contact-form .verification-input-wrapper .btn-verification-confirm:hover:not(:disabled) {
  background: #28a745;
  color: white;
}
.contact-form .phone-input-wrapper .btn-verification-confirm:disabled,
.contact-form .verification-input-wrapper .btn-verification-confirm:disabled {
  background: #d0d0d0;
  color: #999;
  cursor: not-allowed;
}
.contact-form .phone-input-wrapper .btn-verification-confirm.active,
.contact-form .verification-input-wrapper .btn-verification-confirm.active {
  background: #28a745;
  color: white;
}
@media (max-width: 767px) {
  .contact-form .phone-input-wrapper,
  .contact-form .verification-input-wrapper {
    flex-direction: column;
  }
  .contact-form .phone-input-wrapper button,
  .contact-form .verification-input-wrapper button {
    width: 100%;
  }
}
.contact-form .verification-timer {
  display: block;
  margin-top: 6px;
  color: #dc3545;
  font-size: 13px;
  font-weight: 500;
}
.contact-form .verification-status {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 500;
}
.contact-form .verification-status.success {
  color: #28a745;
}
.contact-form .verification-status.error {
  color: #dc3545;
}
.contact-form .privacy-consent {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.contact-form .privacy-consent .consent-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.contact-form .privacy-consent .consent-label input[type=checkbox] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #dc3545;
}
.contact-form .privacy-consent .consent-label span {
  font-size: 14px;
  color: #121313;
}
.contact-form .privacy-consent .more-link {
  color: #dc3545;
  font-size: 14px;
  text-decoration: none;
}
.contact-form .privacy-consent .more-link:hover {
  text-decoration: underline;
}
.contact-form .submit-btn {
  width: 100%;
  padding: 16px 32px;
  background: #dc3545;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact-form .submit-btn:hover {
  background: #c82333;
}
.contact-form .submit-btn:active {
  transform: scale(0.98);
}