/* Mobile Responsive Styles - 768px 미만 */

@media (max-width: 767px) {
  /* ===================================
     index.php 스타일
     =================================== */

  #index .btn-outline {
    position: relative;
    display: inline-flex;
    align-items: center;

    /* 텍스트 기준 영역 */
    justify-content: center;
    text-align: center;

    padding: 5px 54px 5px 24px; /* 오른쪽 = 이미지 영역 확보 */
    border: 1px solid #fff;
    border-radius: 96px;

    color: #fff;
    text-decoration: none;
    font-family: Pretendard;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
  }

  #index .btn-outline img {
    position: absolute;
    right: 4px; /* 이미지 고정 위치 */
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
  }

  /* Hero Section */
  #index .hero {
    height: auto;
    min-height: 500px;
  }

  #index .hero-content {
    padding: 120px 20px;
  }

  #index .hero-brand {
    font-size: 16px;
    margin-bottom: 12px;
  }

  #index .hero-title {
    font-size: 22px;
  }

  #index .hero-buttons .btn-outline {
    font-size: 16px;
  }

  #index .hero-buttons {
    flex-direction: column;
    gap: 20px;
    padding-top: 30px;
  }

  #index .hero-sub {
    font-size: 16px;
    margin-bottom: 30px;
  }

  #index .hero-tabs {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
  }

  #index .hero-tab {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 8px;
  }

  #index .hero-tab:first-child,
  #index .hero-tab:last-child {
    border-radius: 8px;
    border-right: 1px solid #fff;
  }

  #index .hero-product-info {
    margin-top: -60px;
    padding: 0 20px;
  }

  #index .hero-product-content {
    padding: 15px 20px;
  }

  #index .hero-product-title {
    font-size: 16px;
  }

  #index .hero-product-desc {
    font-size: 12px;
  }

  #index .hero-scroll-down {
    display: none;
  }

  /* Technology Section */
  #index .tech-section {
    padding: 80px 0;
  }

  #index .tech-header {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
  }

  #index .tech-title {
    font-size: 22px;
  }

  #index .tech-desc {
    font-size: 14px;
    margin-bottom: 16px;
  }

  #index .tech-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  #index .tech-card {
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  #index .tech-card-title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  #index .tech-card-desc {
    font-size: 14px;
  }

  #index .tech-card-icon {
    width: 50px;
    height: 50px;
    display: none;
  }

  /* Eco-Friendly Section */
  #index .eco-section {
    padding: 100px 0;
    min-height: 400px;
  }

  #index .eco-content {
    padding: 0 40px 0 0px;
    gap: 24px;
    align-items: flex-start;
  }

  #index .eco-title {
    font-size: 22px;
    margin-bottom: 48px;
    text-align: left;
    padding-right: 80px;
  }

  #index .eco-desc-box {
    flex-direction: column;
    gap: 8px;
  }

  #index .eco-desc-title {
    font-size: 18px;
    text-align: left;
  }

  #index .eco-desc {
    font-size: 14px;
    text-align: left;
  }

  /* Product Category Section */
  #index .product-section {
    padding: 60px 0;
  }

  #index .product-header {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 30px;
  }

  #index .product-title {
    font-size: 14px;
  }

  #index .product-subtitle {
    font-size: 22px;
    max-width: 100%;
  }

  #index .product-desc {
    font-size: 14px;
    margin-bottom: 20px;
  }

  #index .product-card {
    flex: 0 0 280px;
    height: 380px;
  }

  #index .product-card-name {
    font-size: 20px;
    margin-bottom: 20px;
  }

  /* Exhibition & News Section */
  #index .exhibition-news-section {
    padding: 90px 0;
  }

  #index .exhibition-news-container {
    flex-direction: column;
    gap: 40px;
  }

  #index .exhibition-column {
    width: 100%;
    overflow: visible;
  }

  #index .exhibition-title,
  #index .news-title {
    font-size: 22px;
  }

  #index .exhibition-more,
  #index .news-more {
    font-size: 14px;
  }

  #index .exhibition-text {
    padding: 10px 14px;
  }

  #index .exhibition-card-date {
    text-align: right;
  }

  #index .exhibition-grid {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 10px;
  }

  #index .exhibition-grid::-webkit-scrollbar {
    height: 6px;
  }

  #index .exhibition-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
  }

  #index .exhibition-grid::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
  }

  #index .exhibition-grid::-webkit-scrollbar-thumb:hover {
    background: #555;
  }

  #index .exhibition-card {
    flex: 0 0 240px;
  }

  #index .exhibition-img-box {
    height: 180px;
    margin-bottom: 0px;
  }

  #index .exhibition-card-title {
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    max-height: calc(1.4em * 2);
    height: calc(1.4em * 2);
  }

  #index .news-column {
    width: 100%;
  }

  #index .news-list {
    padding: 20px;
    width: 100%;
  }

  #index .news-item {
    gap: 30px;
  }

  #index .news-item-title {
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  #index .news-item-date {
    font-size: 14px;
  }

  /* Location Section */
  #index .location-section {
    padding: 60px 0;
  }

  #index .location-main-title {
    font-size: 22px;
  }

  #index .location-main-title span {
    font-size: 14px;
    display: block;
    margin-top: 5px;
    padding-left: 0px;
  }

  #index .location-tabs {
    flex-direction: row;
    gap: 12px;
    margin-bottom: 20px;
  }

  #index .location-tab {
    font-size: 13px;
    padding: 6px 10px;
    font-weight: 400;
  }

  #index .location-container {
    flex-direction: column;
    gap: 30px;
  }

  #index .location-img {
    width: 100%;
    height: 200px;
  }

  #index .location-info-title {
    font-size: 18px;
    margin-bottom: 16px;
    color: #0068b7;
  }

  #index .info-row {
    font-size: 16px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    flex-direction: column;
    gap: 6px;
    border-bottom: 0px;
  }

  #index .info-label {
    width: 100px;
    font-size: 14px;
  }

  #index .info-value {
    font-size: 14px;
  }

  /* Contact Section */
  #index .contact-section {
    padding: 90px 0;
    min-height: auto;
  }

  #index .contact-content {
    flex-direction: column;
    gap: 20px;
    padding: 0px;
  }

  #index .contact-text-large {
    font-size: 22px;
    text-align: left;
  }

  #index .contact-right {
    max-width: 100%;
  }

  #index .contact-text-small {
    font-size: 14px;
    margin-bottom: 30px;
    text-align: left;
  }

  /* ===================================
     header.php 스타일
     =================================== */

  /* 데스크톱 헤더 숨김 */
  #header .header-top {
    display: none;
  }

  #header .header {
    padding:0;
  }

  #header .header-bottom {
    display: none;
  }

  /* 모바일 헤더 상단 바 */
  #header .mobile-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
    background: rgba(255, 255, 255, 0.89);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
  }

  #header .mobile-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
  }

  #header .mobile-logo-icon {
    height: 20px;
  }

  #header .mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  #header .mobile-search-icon {
    width: 20px;
    height: 20px;
    cursor: pointer;
    object-fit: contain;
  }

  #header .mobile-menu-toggle {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #header .mobile-menu-toggle img {
    width: 18px;
    display: block;
  }

  /* 모바일 메뉴 오버레이 */
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-menu-overlay.active {
    display: block;
  }

  .mobile-menu-content {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 0;
  }

  /* 모바일 메뉴 헤더 (닫기 버튼 및 로그인 링크) */
  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e5e5e5;
  }

  .mobile-menu-close {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
  }

  .mobile-menu-close svg {
    width: 24px;
    height: 24px;
  }

  .mobile-menu-auth-links {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Pretendard", sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #797979;
  }

  .mobile-menu-auth-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
  }

  .mobile-menu-auth-links a:hover {
    color: #000;
  }

  .mobile-menu-auth-links .separator {
    color: #ccc;
    font-size: 12px;
  }

  /* 모바일 메뉴 네비게이션 */
  .mobile-menu-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  .mobile-menu-item {
    border-bottom: 1px solid #e5e5e5;
  }

  .mobile-menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }

  .mobile-menu-link {
    font-family: "Pretendard", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #000;
    text-decoration: none;
    letter-spacing: -0.5px;
    flex: 1;
  }

  .mobile-menu-toggle-sub {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: transform 0.3s ease;
  }

  .mobile-menu-item.open .mobile-menu-toggle-sub {
    transform: rotate(180deg);
  }

  .mobile-menu-chevron {
    width: 12px;
    height: 8px;
  }

  /* 하위 메뉴 */
  .mobile-menu-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f9f9f9;
  }

  .mobile-menu-item.open .mobile-menu-submenu {
    max-height: 2000px;
  }

  .mobile-menu-subitem {
    display: block;
    padding: 15px 20px 15px 40px;
    font-family: "Pretendard", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #5d5d5d;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: color 0.2s, background-color 0.2s;
  }

  .mobile-menu-subitem:last-child {
    border-bottom: none;
  }

  .mobile-menu-subitem:hover {
    color: #000;
    background-color: #f0f0f0;
  }

  /* Products 하위 메뉴 (컬럼 레이아웃) */
  .mobile-menu-col-group {
    padding: 15px 20px 15px 40px;
    border-bottom: 1px solid #eee;
  }

  .mobile-menu-col-group:last-child {
    border-bottom: none;
  }

  .mobile-menu-col-title {
    display: block;
        font-family: "Pretendard", sans-serif;
        font-weight: 400;
        font-size: 16px;
        color: #5d5d5d;
        text-decoration: none;
        transition: color 0.2s, background-color 0.2s;
  }

  .mobile-menu-col-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .mobile-menu-col-item {
    font-family: "Pretendard", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #5d5d5d;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.2s;
  }

  .mobile-menu-col-item:hover {
    color: #0068b7;
  }

  /* 모바일 메뉴 푸터 */
  .mobile-menu-footer {
    padding: 30px 20px;
    border-top: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .mobile-menu-social {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .mobile-social-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border: 2px solid #929292;
    border-radius: 5px;
    padding: 2px;
  }

  .mobile-menu-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .mobile-footer-logo {
    height: 28px;
  }

  .mobile-menu-copyright {
    font-family: "Pretendard", sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #999;
    text-align: center;
  }

  /* 기존 데스크톱 스타일 (참고용 - 모바일에서 숨김) */
  #header .logo-icon {
    height: 28px;
  }

  #header .logo-text {
    height: 16px;
  }

  #header .top-menu {
    font-size: 14px;
    gap: 15px;
    flex-wrap: wrap;
  }

  #header .main-menu {
    flex-direction: column;
    width: 100%;
    gap: 0;
    font-size: 18px;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  #header .main-menu.active {
    display: flex;
  }

  #header .menu-item {
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  #header .menu-link {
    padding: 15px 20px;
    display: block;
    width: 100%;
  }

  #header .dropdown {
    position: static;
    width: 100%;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0;
    display: none;
  }

  #header .menu-item:hover .dropdown,
  #header .menu-item.open .dropdown {
    display: block;
  }

  #header .dropdown-inner {
    padding: 20px;
    flex-direction: column;
    gap: 30px;
  }

  #header .dropdown-title {
    font-size: 18px;
    min-width: auto;
    margin-bottom: 15px;
  }

  #header .grid-layout,
  #header .simple-layout {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  #header .columns-layout {
    flex-direction: column;
    gap: 20px;
  }

  #header .col-title {
    font-size: 16px;
  }

  #header .col-item {
    font-size: 14px;
  }

  #header .header-icons {
    gap: 15px;
  }

  #header .icon-item {
    width: 18px;
    height: 18px;
  }

  .search-modal-content {
    top: 80px;
  }

  .search-modal-inner {
    padding: 40px 20px;
  }

  .search-modal-input-wrapper {
    padding: 10px 30px;
  }

  .search-modal-input {
    font-size: 16px;
  }

  /* ===================================
     footer.php 스타일
     =================================== */

  #footer .footer {
    padding: 40px 20px;
  }

  #footer .footer-inner {
    gap: 40px;
  }

  #footer .footer-top {
    flex-direction: column;
    gap: 0;
  }

  #footer .footer-nav-group {
    min-width: 100%;
    border-bottom: 1px solid #e5e5e5;
    gap: 0;
  }

  #footer .footer-nav-group:last-child {
    border-bottom: none;
  }

  #footer .footer-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
  }

  #footer .footer-nav-title {
    font-size: 13px;
    margin-bottom: 0;
    font-weight: 800;
  }

  #footer .footer-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #1e1e1e;
    transition: transform 0.3s ease;
  }

  #footer .footer-nav-group.open .footer-nav-toggle {
    transform: rotate(180deg);
  }

  #footer .footer-nav-chevron {
    width: 12px;
    height: 8px;
  }

  #footer .footer-nav-items {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  #footer .footer-nav-group.open .footer-nav-items {
    max-height: 2000px;
    padding-bottom: 20px;
  }

  #footer .footer-nav-item {
    font-size: 13px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
  }

  #footer .footer-nav-item:last-child {
    border-bottom: none;
  }

  #footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-top: 30px;
  }

  #footer .footer-info {
    gap: 15px;
  }

  #footer .footer-logo img {
    height: 20px;
  }

  #footer .copyright {
    font-size: 12px;
  }

  #footer .footer-right {
    align-items: flex-start;
    gap: 20px;
    width: 100%;
  }

  #footer .footer-links {
    flex-direction: column;
    gap: 15px;
    font-size: 12px;
  }

  #footer .footer-sns {
    gap: 12px;
  }

  #footer .sns-icon {
    width: 20px;
    height: 20px;
  }

  /* ===================================
     login.php, signup.php, findpw.php 스타일
     =================================== */

  #login .login-main {
    min-height: auto;
    padding: 40px 20px;
  }

  #login .login-container {
    max-width: 100%;
  }

  #login .login-box {
    padding: 40px 20px;
  }

  #login .login-title {
    font-size: 24px;
  }

  #login .login-logo {
    height: 20px;
  }

  #login .login-subtitle {
    font-size: 12px;
  }

  #login .form-label {
    font-size: 14px;
  }

  #login .form-input {
    font-size: 11px !important;
    padding: 12px 15px;
  }

  #login .remember-me {
    font-size: 12px;
  }

  #login .forgot-password {
    font-size: 12px;
  }

  #login .form-actions {
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
  }

  #login .btn-signin {
    font-size: 16px;
    padding: 10px;
  }

  #login .btn-google {
    font-size: 16px;
    padding: 14px;
  }

  #login .login-footer {
    font-size: 12px;
  }

  #signup .signup-main {
    min-height: auto;
    padding: 40px 20px;
  }

  #signup .signup-container {
    max-width: 100%;
    padding-left: 0px;
    padding-right: 0px;
  }

  #signup .signup-label {
    font-size: 16px;
    text-align: center;
  }

  #signup .signup-box {
    padding: 40px 20px;
  }

  #signup .btn-verify {
    font-size: 12px;
    height: 32px;
  }

  #signup .signup-title {
    font-size: 22px;
    text-align: center;
  }

  #signup .signup-header {
    margin-bottom: 32px;
  }

  #signup .signup-desc {
    font-size: 16px;
    text-align: center;
  }

  #signup .form-group {
    margin-bottom: 20px;
  }

  #signup .form-input {
    font-size: 16px;
    padding: 12px 15px;
    height: 32px;
  }

  #signup .form-row {
    margin-bottom: 16px;
    gap: 16px;
  }

  #signup .btn-submit {
    font-size: 18px;
    padding: 14px;
  }

  #signup .btn-signup {
    font-size: 16px;
    padding: 10px;
  }

  #findpw .findpw-main {
    min-height: auto;
    padding: 40px 20px;
  }

  #findpw .findpw-container {
    max-width: 100%;
  }

  #findpw .findpw-box {
    padding: 40px 20px;
  }

  #findpw .findpw-header {
    margin-bottom: 32px;
  }

  #findpw .findpw-header img {
    height: 20px;
  }

  #findpw .findpw-label {
    font-size: 16px;
    text-align: center;
  }

  #findpw .findpw-title {
    font-size: 22px;
    text-align: center;
  }

  #findpw .findpw-desc {
    font-size: 12px;
    text-align: center;
  }

  #findpw .btn-sub {
    height: 32px;
  }

  #findpw .form-input {
    font-size: 11px !important;
    padding: 12px 15px;
    height: 32px;
  }

  #findpw .btn-submit {
    font-size: 18px;
    padding: 14px;
  }

  #findpw .findpw-footer {
    font-size: 12px;
  }

  #findpw .btn-update {
    font-size: 16px;
    padding: 10px;
  }

  /* ===================================
     product_list.php 스타일
     =================================== */

  #product_list .sub-visual {
    width: calc(100% - 40px);
    margin: 20px;
    border-radius: 10px;
    height: 250px;
  }

  #product_list .sub-visual-title {
    font-size: 22px;
  }

  #product_list .sub-visual-desc {
    font-size: 16px;
  }

  #product_list .product-nav__container {
    flex-wrap: wrap;
    padding: 0 20px;
  }

  #product_list .product-nav__item {
    flex: 1 1 auto;
    min-width: calc(25% - 10px);
    font-size: 10px;
    padding: 12px 0;
  }

  #product_list .product-nav__item:hover,
  #product_list .product-nav__item.active {
    border-bottom: 2px solid #0068b7;
  }

  #product_list .product-list-container {
    padding: 40px 20px 80px;
  }

  #product_list .product-intro__sub {
    font-size: 22px;
  }

  #product_list .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
  }

  #product_list .product-item__name {
    font-size: 16px;
    margin-bottom: 5px;
  }

  #product_list .product-item__color {
    font-size: 12px;
  }

  #product_list .inquiry-banner {
    padding: 80px 20px;
    margin-top: 40px;
  }

  #product_list .inquiry-banner__content h2 {
    font-size: 22px;
  }

  #product_list .inquiry-banner__content p {
    font-size: 16px;
  }

  /* ===================================
     exhibition.php, exhibition_detail.php 스타일
     =================================== */

  #exhibition .sub-visual,
  #exhibition_detail .sub-visual {
    width: calc(100% - 40px);
    margin: 20px;
    border-radius: 10px;
    height: 250px;
  }

  #exhibition .sub-title,
  #exhibition_detail .sub-title {
    font-size: 22px;
  }

  #exhibition .sub-desc,
  #exhibition_detail .sub-desc {
    font-size: 16px;
  }

  #exhibition_detail .sub-visual-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  #exhibition .sub-container {
    padding: 40px 20px;
  }

  #exhibition .history-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  #exhibition_detail .news-tit {
    font-size: 22px;
  }

  #exhibition_detail .news-meta {
    flex-direction: column;
    gap: 10px;
  }

  #exhibition_detail .news-body {
    font-size: 14px;
  }

  #exhibition_detail .news-content {
    font-size: 14px;
  }

  #exhibition_detail .nav-links {
    flex-direction: column;
  }

  #exhibition_detail .nav-content {
    padding: 15px 0;
  }

  /* ===================================
     greeting.php, history.php, organization.php 스타일
     =================================== */

  #greeting .sub-visual,
  #history .sub-visual,
  #organization .sub-visual,
  #exhibition .sub-visual {
    width: calc(100% - 40px);
    margin: 20px;
    border-radius: 10px;
    height: 250px;
  }

  #greeting .sub-visual::before,
  #history .sub-visual::before,
  #organization .sub-visual::before,
  #exhibition .sub-visual::before {
        border-radius: 10px;
  }

  #greeting .sub-visual-inner,
  #history .sub-visual-inner,
  #organization .sub-visual-inner,
  #exhibition .sub-visual-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  #greeting .sub-nav,
  #history .sub-nav,
  #organization .sub-nav,
  #exhibition .sub-nav {
    margin-bottom: 40px;
    padding:0 20px;
  }

  #greeting .sub-title,
  #history .sub-title,
  #organization .sub-title,
  #exhibition .sub-title {
    font-size: 22px;
  }

  #greeting .sub-desc,
  #history .sub-desc,
  #organization .sub-desc,
  #exhibition .sub-desc {
    font-size: 13px;
  }

  #greeting .sub-nav-inner {
    flex-wrap: wrap;
  }

  #greeting .sub-nav-item,
  #history .sub-nav-item,
  #organization .sub-nav-item,
  #exhibition .sub-nav-item {
    flex: 1 1 auto;
    min-width: calc(25% - 10px);
    font-size: 11px;
    padding: 15px 0;
  }

  #greeting .content-section {
    padding-bottom: 60px;
  }

  #greeting .content-inner {
    flex-direction: column;
    gap: 30px;
    padding: 0 20px;
  }

  #greeting .greeting-img {
    width: 100%;
    height: auto;
  }

  #greeting .greeting-main-title {
    font-size: 22px;
    margin-bottom: 0px;
  }

  #greeting .greeting-sub-title {
    font-size: 16px;
  }

  #greeting .text-block-title {
    font-size: 18px;
  }

  #greeting .text-block-desc {
    font-size: 14px;
  }

  #greeting .contact-section {
    height: auto;
    padding: 90px 20px;
    background: url("../images/main/index_7_bg.png") no-repeat center/cover;
    background-color: #1a1a1a;
    position: relative;
  }

  #greeting .contact-section::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.49);
    margin: 0;
    top: 0;
    left: 0;
    z-index: 0;
  }

  #greeting .contact-content {
    position: relative;
    z-index: 1;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }

  #greeting .contact-text-large {
    font-size: 22px;
    text-align: left;
  }

  #greeting .contact-right {
    max-width: 100%;
  }

  #greeting .contact-text-small {
    font-size: 14px;
    text-align: left;
  }

  #greeting .btn-outline {
    position: relative;
    display: inline-flex;
    align-items: center;

    /* 텍스트 기준 영역 */
    justify-content: center;
    text-align: center;

    padding: 5px 54px 5px 24px; /* 오른쪽 = 이미지 영역 확보 */
    border: 1px solid #fff;
    border-radius: 96px;

    color: #fff;
    text-decoration: none;
    font-family: Pretendard;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
  }

  #greeting .btn-outline img {
    position: absolute;
    right: 4px; /* 이미지 고정 위치 */
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
  }

  /* History Content */
  #history .history-content {
    padding-bottom: 60px;
    padding: 0 20px 60px;
  }

  #history .history-inner {
    max-width: 100%;
    padding: 0;
  }

  #history .history-header {
    margin-bottom: 40px;
  }

  #history .history-since {
    font-size: 16px;
    margin-bottom: 8px;
  }

  #history .history-head-title {
    font-size: 20px;
    line-height: 1.4;
  }

  #history .history-head-subtitle {
    font-size: 14px;
    margin-top: 10px;
    line-height: 1.5;
    display: none; /* 모바일에서는 숨김 */
  }

  #history .history-list {
    max-width: 100%;
    padding-left: 0;
  }

  #history .timeline-line {
    left: 15px;
    top: 10px;
    display: none;
  }

  #history .history-item {
    margin-bottom: 30px;
    min-height: auto;
    flex-direction: column;
    padding-left: 0px;
  }

  #history .history-year {
    width: auto;
    font-size: 18px;
    padding-right: 0;
    margin-bottom: 8px;
    line-height: 1.2;
    padding-left: 20px;
  }

  #history .history-dot {
    width: 12px;
    height: 12px;
    border: 3px solid #0068b7;
    left: 0px;
    top: 4px;
  }

  #history .history-dot.small {
    width: 8px;
    height: 8px;
    border: 2px solid #0068b7;
    left: 11px;
    top: 6px;
    display: none;
  }

  #history .history-info {
    padding-left: 0;
    flex-direction: row;
    gap: 10px;
    width: 100%;
  }

  #history .history-month {
    width: 60px;
    font-size: 14px;
    margin-bottom: 4px;
    text-align: right;
  }

  #history .history-desc {
    font-size: 14px;
    line-height: 1.5;
  }

  #history .contact-section {
    height: auto;
    padding: 90px 20px;
    background: url("../images/main/index_7_bg.png") no-repeat center/cover;
    background-color: #1a1a1a;
    position: relative;
  }

  #history .contact-section::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.49);
    margin: 0;
    top: 0;
    left: 0;
    z-index: 0;
  }

  #history .contact-content {
    position: relative;
    z-index: 1;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }

  #history .contact-text-large {
    font-size: 22px;
    text-align: left;
  }

  #history .contact-right {
    max-width: 100%;
  }

  #history .contact-text-small {
    font-size: 14px;
    text-align: left;
  }

  #history .btn-outline {
    position: relative;
    display: inline-flex;
    align-items: center;

    /* 텍스트 기준 영역 */
    justify-content: center;
    text-align: center;

    padding: 5px 54px 5px 24px; /* 오른쪽 = 이미지 영역 확보 */
    border: 1px solid #fff;
    border-radius: 96px;

    color: #fff;
    text-decoration: none;
    font-family: Pretendard;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
  }

  #history .btn-outline img {
    position: absolute;
    right: 4px; /* 이미지 고정 위치 */
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
  }

  /* Organization Content */
  #organization .org-content {
    padding-bottom: 60px;
    padding: 0 20px 60px;
  }

  #organization .org-inner {
    max-width: 100%;
    padding: 0;
  }

  /* Stats Box */
  #organization .stats-box {
    flex-direction: row;
    gap: 0px;
    padding: 0px 10px;
    margin-bottom: 40px;
    width: 100%;
  }

  #organization .stat-item {
    width: 33.3333333%;
  }

  #organization .stat-item:nth-child(2) {
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    padding-right: 10px;
    padding-left: 10px;
  }

  #organization .stat-item:first-child {
    padding-left: 0px;
  }

  #organization .stat-item:last-child {
    padding-right: 0px;
    border-right: none;
  }

  #organization .stat-item:not(:last-child)::after {
    display: none;
  }

  #organization .stat-label {
    font-size: 14px;
    margin-bottom: 8px;
  }

  #organization .stat-value {
    font-size: 36px;
  }

  /* Org Intro */
  #organization .org-intro {
    margin-bottom: 40px;
    padding: 0 20px;
  }

  #organization .org-intro-title {
    font-size: 20px;
    line-height: 1.4;
  }

  #organization .org-intro-desc {
    font-size: 14px;
    line-height: 1.5;
  }

  /* Org Chart - 모바일에서 숨김 */
  #organization .org-chart {
    display: none;
  }

  /* Org Chart Mobile - 모바일에서만 표시 */
  #organization .org-chart-mobile {
    display: block;
    width: 100%;
    padding: 0 20px;
  }

  #organization .org-mobile-img {
    width: 100%;
    height: auto;
    display: block;
  }

  #organization .contact-section {
    height: auto;
    padding: 90px 20px;
    background: url("../images/main/index_7_bg.png") no-repeat center/cover;
    background-color: #1a1a1a;
    position: relative;
  }

  #organization .contact-section::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.49);
    margin: 0;
    top: 0;
    left: 0;
    z-index: 0;
  }

  #organization .contact-content {
    position: relative;
    z-index: 1;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }

  #organization .contact-text-large {
    font-size: 22px;
    text-align: left;
  }

  #organization .contact-right {
    max-width: 100%;
  }

  #organization .contact-text-small {
    font-size: 14px;
    text-align: left;
  }

  #organization .btn-outline {
    position: relative;
    display: inline-flex;
    align-items: center;

    /* 텍스트 기준 영역 */
    justify-content: center;
    text-align: center;

    padding: 5px 54px 5px 24px; /* 오른쪽 = 이미지 영역 확보 */
    border: 1px solid #fff;
    border-radius: 96px;

    color: #fff;
    text-decoration: none;
    font-family: Pretendard;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
  }

  #organization .btn-outline img {
    position: absolute;
    right: 4px; /* 이미지 고정 위치 */
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
  }

  #exhibition .contact-section {
    height: auto;
    padding: 90px 20px;
    background: url("../images/main/contact_bg.png") no-repeat center/cover;
    background-color: #1a1a1a;
    position: relative;
  }

  #exhibition .contact-section::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.49);
    margin: 0;
    top: 0;
    left: 0;
    z-index: 0;
  }

  #exhibition .contact-content {
    position: relative;
    z-index: 1;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }

  #exhibition .contact-text-large {
    font-size: 22px;
    text-align: left;
  }

  #exhibition .contact-right {
    max-width: 100%;
  }

  #exhibition .contact-text-small {
    font-size: 14px;
    text-align: left;
  }

  #exhibition .btn-outline {
    position: relative;
    display: inline-flex;
    align-items: center;

    /* 텍스트 기준 영역 */
    justify-content: center;
    text-align: center;

    padding: 5px 54px 5px 24px; /* 오른쪽 = 이미지 영역 확보 */
    border: 1px solid #fff;
    border-radius: 96px;

    color: #fff;
    text-decoration: none;
    font-family: Pretendard;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
  }

  #exhibition .btn-outline img {
    position: absolute;
    right: 4px; /* 이미지 고정 위치 */
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
  }

  #exhibition .exhibition-content {
    padding:0 20px;
  }

  /* ===================================
     technology.php 스타일
     =================================== */

  #technology .sub-visual {
    width: calc(100% - 40px);
    margin: 20px;
    border-radius: 10px;
    height: 250px;
  }

  #technology .sub-visual__title {
    font-size: 22px;
  }

  #technology .sub-visual__desc {
    font-size: 16px;
  }

  #technology .sub-visual__content {
    max-width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }

  #technology .tech-container {
    padding: 0px;
  }

  #technology .tech-intro {
    padding: 40px 0 40px;
  }

  #technology .tech-intro__sub {
    font-size: 16px;
  }

  #technology .tech-intro__title {
    font-size: 22px;
  }

  #technology .tech-section__title {
    font-size: 22px;
    text-align: center;
  }

  #technology .tech-section__subtitle {
    text-align: center;
    font-size: 16px;
  }

  #technology .tech-section__head {
    margin-bottom: 0px;
    width: 100%;
  }

  #technology .tech-rd {
    gap: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  #technology .tech-rd__content {
    flex-direction: column;
    gap: 20px;
  }

  #technology .tech-rd__text {
    max-width: 100%;
    font-size: 13px;
  }

  #technology .tech-quality {
    margin-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top:0;
  }

  #technology .tech-quality__head {
    margin-bottom: 40px;
  }

  #technology .tech-quality__subtitle {
    font-size: 16px;
  }

  #technology .tech-quality__title {
    font-size: 22px;
  }

  #technology .tech-quality__desc p {
    font-size: 13px;
    margin-top: 20px;
  }

  #technology .tech-quality__cards {
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
  }

  #technology .tech-card__info {
    padding: 30px 20px;
  }

  #technology .tech-card__title {
    font-size: 11px;
  }

  #technology .tech-card__name {
    font-size: 16px;
  }

  #technology .tech-card__desc {
    font-size: 13px;
    max-width: 100%;
  }

  #technology .tech-card__logo {
    height: 140px;
  }

  #technology .tech-card__logo img {
    height: 70px;
  }

  #technology .tech-sustain {
    padding-left: 20px;
    padding-right: 20px;
  }

  #technology .tech-sustain__row {
    flex-direction: column;
    gap: 30px;
    padding: 40px 0 80px;
  }

  #technology .tech-sustain__content {
    padding-right: 0;
  }

  #technology .tech-sustain__text {
    font-size: 13px;
    text-align: center;
    margin-top: 20px;
  }

  #technology .tech-sustain__logo-text h4 {
    font-size: 11px;
  }

  #technology .tech-sustain__logo-text h2 {
    font-size: 16px;
  }

  #technology .tech-sustain__logo {
    flex: 0 0 auto;
    width: 100%;
    justify-content: center;
  }

  #technology .tech-sustain__logo-text p {
    font-size: 12px;
    line-height: 1.3;
  }

  #technology .tech-sustain__logo-image {
    padding: 35px;
  }

  #technology .tech-sustain__logo img {
    height: 70px;
  }

  #technology .tech-facilities__container {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  #technology .tech-facilities__subtitle {
    font-size: 16px;
  }

  #technology .tech-facilities__title {
    font-size: 22px;
  }

  #technology .tech-facilities__desc {
    font-size: 12px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  #technology .tech-facilities__grid {
    grid-template-columns: 1fr;
    gap: 0px;
    padding: 0px;
  }

  #technology .tech-stat {
    width: 25%;
  }

  #technology .tech-stat:not(:last-child) {
    border-right: 1px solid #e5e5e5;
  }

  #technology .tech-stat__divider {
    display: none;
  }

  #technology .tech-stat__count {
    font-size: 24px;
  }

  #technology .tech-stat__name {
    font-size: 12px;
  }

  #technology .tech-facilities {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Facilities Image - 모바일에서 데스크톱 이미지 숨김, 모바일 이미지 표시 */
  #technology .tech-facilities__image {
    margin-top: 40px;
    padding: 0 20px;
  }

  #technology .tech-facilities__image .tech-facilities__image-desktop {
    display: none;
  }

  #technology .tech-facilities__image .tech-facilities__image-mobile {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  #technology .tech-qc {
    flex-direction: column-reverse;
    padding-top: 40px;
    padding-bottom: 40px;
    gap: 10px;
  }

  #technology .tech-qc .tech-section__title {
    text-align: left;
  }

  #technology .tech-qc .tech-section__subtitle {
    text-align: left;
  }

  #technology .tech-qc__text {
    font-weight: 300;
    font-size: 13px;
    color: #444;
    margin-top: 40px;
  }

  #technology .contact-section {
    height: auto;
    padding: 90px 20px;
    background: url("../images/main/index_7_bg.png") no-repeat center/cover;
    background-color: #1a1a1a;
    position: relative;
  }

  #technology .contact-section::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.49);
    margin: 0;
    top: 0;
    left: 0;
    z-index: 0;
  }

  #technology .contact-content {
    position: relative;
    z-index: 1;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }

  #technology .contact-text-large {
    font-size: 22px;
    text-align: left;
  }

  #technology .contact-right {
    max-width: 100%;
  }

  #technology .contact-text-small {
    font-size: 14px;
    text-align: left;
  }

  #technology .btn-outline {
    position: relative;
    display: inline-flex;
    align-items: center;

    /* 텍스트 기준 영역 */
    justify-content: center;
    text-align: center;

    padding: 5px 54px 5px 24px; /* 오른쪽 = 이미지 영역 확보 */
    border: 1px solid #fff;
    border-radius: 96px;

    color: #fff;
    text-decoration: none;
    font-family: Pretendard;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
  }

  #technology .btn-outline img {
    position: absolute;
    right: 4px; /* 이미지 고정 위치 */
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
  }

  /* ===================================
     products.php, product_detail.php 스타일
     =================================== */

  #products .sub-visual,
  #product_detail .sub-visual {
    width: calc(100% - 40px);
    margin: 20px;
    border-radius: 10px;
    height: 250px;
  }

  #products .sub-visual-title {
    font-size: 22px;
  }

  #products .sub-visual-desc {
    font-size: 16px;
  }

  #products .product-nav__container {
    flex-wrap: wrap;
    padding: 0 20px;
  }

  #products .product-nav__item {
    flex: 1 1 auto;
    min-width: calc(25% - 10px);
    font-size: 11px;
    padding: 15px 0;
  }

  #products .product-container {
    padding: 60px 20px 80px;
  }

  #products .product-intro__sub {
    font-size: 12px;
  }

  #products .product-intro__title {
    font-size: 22px;
  }

  #products .category-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  #products .category-card__image {
    height: 200px;
  }

  #products .category-card__content {
    padding: 48px 40px;
    gap: 20px;
  }

  #products .category-card__title {
    font-size: 18px;
  }

  #products .category-card__sub {
    font-size: 14px;
  }

  #products .category-card__desc {
    font-size: 13px;
  }

  #products .category-card__body {
    margin-bottom: 0px;
  }

  #products .category-card__btn {
    position: relative;
    display: inline-flex;
    align-items: center;

    /* 텍스트 기준 영역 */
    justify-content: center;
    text-align: center;

    padding: 5px 34px 5px 24px; /* 오른쪽 = 이미지 영역 확보 */
    border: 1px solid #0068b7;
    border-radius: 96px;

    color: #0068b7;
    text-decoration: none;
    font-family: Pretendard;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
  }

  #products .category-card__btn img {
    position: absolute;
    right: 4px; /* 이미지 고정 위치 */
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
  }

  #products .contact-banner {
    padding: 60px 20px;
  }

  #products .contact-banner__content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  #products .contact-banner__left h3 {
    font-size: 28px;
  }

  #products .contact-banner__right {
    max-width: 100%;
    text-align: center;
  }

  #products .contact-banner__right p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  #products .contact-section {
    height: auto;
    padding: 90px 20px;
    background: url("../images/main/index_7_bg.png") no-repeat center/cover;
    background-color: #1a1a1a;
    position: relative;
  }

  #products .contact-section::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.49);
    margin: 0;
    top: 0;
    left: 0;
    z-index: 0;
  }

  #products .contact-content {
    position: relative;
    z-index: 1;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }

  #products .contact-text-large {
    font-size: 22px;
    text-align: left;
  }

  #products .contact-right {
    max-width: 100%;
  }

  #products .contact-text-small {
    font-size: 14px;
    text-align: left;
  }

  #products .btn-outline {
    position: relative;
    display: inline-flex;
    align-items: center;

    /* 텍스트 기준 영역 */
    justify-content: center;
    text-align: center;

    padding: 5px 54px 5px 24px; /* 오른쪽 = 이미지 영역 확보 */
    border: 1px solid #fff;
    border-radius: 96px;

    color: #fff;
    text-decoration: none;
    font-family: Pretendard;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
  }

  #products .btn-outline img {
    position: absolute;
    right: 4px; /* 이미지 고정 위치 */
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
  }

  #product_detail .product-nav__item {
    flex: 1 1 auto;
    min-width: calc(25% - 10px);
    font-size: 11px;
    padding: 12px 0;
  }

  #product_detail .product-nav__container {
    flex-wrap: wrap;
    padding: 0 20px;
  }

  #product_detail .product-detail-container {
    padding: 40px 20px 80px;
  }

  #product_detail .product-main {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
  }

  #product_detail .product-images {
    width: 100%;
  }

  /* Product Images Carousel (모바일) */
  #product_detail .product-images__main {
    position: relative;
    overflow: hidden;
    background: none;
    border-radius: 0px;
  }

  #product_detail .product-images__carousel {
    display: flex;
    transition: transform 0.3s ease;
    width: 100%;
  }

  #product_detail .product-image-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    display: none;
  }

  #product_detail .product-image-slide.active {
    display: block;
  }

  #product_detail .product-image-slide img {
    width: 100%;
    height: auto;
    display: block;
  }

  #product_detail .product-images__carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 10px;
  }

  #product_detail .carousel-nav-btn {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: background 0.3s ease;
    z-index: 10;
  }

  #product_detail .carousel-nav-btn:hover {
    background: rgba(255, 255, 255, 1);
  }

  #product_detail .carousel-nav-btn svg {
    width: 20px;
    height: 20px;
    color: #000;
  }

  #product_detail .product-images__carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    padding: 0 20px;
  }

  #product_detail .carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s ease;
    padding: 0;
  }

  #product_detail .carousel-dot.active {
    background: #000;
  }

  #product_detail .product-images__thumbs {
    display: none; /* 모바일에서는 썸네일 숨김 */
  }

  #product_detail .product-thumb {
    width: 80px;
    height: 60px;
  }

  #product_detail .product-info {
    width: 100%;
  }

  #product_detail .product-title {
    font-size: 22px;
  }

  #product_detail .product-desc {
    font-size: 13px;
    margin-bottom: 30px;
  }

  #product_detail .spec-head {
    font-size: 16px;
    border-bottom: 1px solid #000;
    margin-bottom: 0px;
    padding-bottom: 8px;
  }

  #product_detail .spec-row {
    font-size: 13px;
    flex-direction: row;
    gap: 5px;
    margin-bottom: 0px;
    padding-bottom: 8px;
    padding-top: 8px;
    border-bottom: 1px solid #c3c3c3;
  }

  #product_detail .spec-group {
    border-bottom: none;
  }

  #product_detail .spec-label {
    width: 100px;
    color: #838383;
    font-family: Pretendard;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 16.9px */
    letter-spacing: -0.65px;
    text-transform: uppercase;
  }

  #product_detail .spec-value {
    color: #000;
    font-family: Pretendard;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 16.9px */
    letter-spacing: -0.65px;
    text-transform: uppercase;
  }

  #product_detail .product-selection-section {
    padding-top: 0px;
  }

  #product_detail .color-chart-section {
    padding-top: 40px;
  }

  #product_detail .section-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  #product_detail .color-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  #product_detail .color-swatch {
    border-radius: 15px;
  }

  #product_detail .color-option {
    max-width: 25%;
  }

  #product_detail .color-code {
    font-size: 12px;
  }

  #product_detail .color-name {
    font-size: 9px;
  }

  #product_detail .selection-label {
    font-size: 16px;
    margin-bottom: 8px;
  }

  #product_detail .option-select {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }

  #product_detail .qty-input {
    padding: 0px 10px !important;
  }

  #product_detail .qty-btn {
    width: 22px;
    height: 22px;
  }

  #product_detail .color-option-name {
    font-size: 9px;
  }

  #product_detail .color-option-code {
    font-size: 12px;
    text-align: center;
  }

  /* ===================================
     cart.php 스타일
     =================================== */

  #cart .cart-main {
    padding: 40px 0;
    min-height: auto;
  }

  #cart .cart-title {
    font-size: 22px;
  }

  #cart .cart-desc,
  #cart .cart-subdesc {
    font-size: 16px;
  }

  #cart .cart-content {
    padding: 30px 20px;
    margin-top: 20px;
  }

  #cart .cart-list {
    gap: 30px;
  }

  #cart .cart-item {
    flex-direction: column;
    gap: 15px;
    padding-bottom: 60px;
  }

  #cart .cart-item__check {
    align-self: flex-start;
  }

  #cart .cart-item__info-wrap {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  #cart .cart-item__img {
    width: 100%;
    height: 200px;
  }

  #cart .cart-item__details {
    width: 100%;
    gap: 15px;
  }

  #cart .cart-item__name {
    font-size: 16px;
  }

  #cart .cart-item__specs {
    gap: 12px;
  }

  #cart .spec-row {
    flex-direction: row;
    align-items: flex-start;
    gap: 5px;
    font-size: 14px;
  }

  #cart .spec-label {
    width: 100px;
    font-size: 12px;
  }

  #cart .spec-val {
    font-size: 14px;
  }

  #cart .cart-item__qty-row {
    flex-direction: row;
    align-items: center;
    gap: 5px;
    font-size: 14px;
  }

  #cart .cart-item__qty-row .spec-label {
    width: 100px;
  }

  #cart .qty-control {
    justify-content: flex-start;
  }

  #cart .btn-delete {
    position: absolute;
    align-self: flex-start;
    font-size: 10px;
    padding: 5px;
    width: auto;
    border: 1px solid #ccc;
    color: #929292;
    bottom: 20px;
    top: auto;
  }

  #cart .cart-actions-bottom {
    border-top: 1px solid #dbdbdb;
    flex-direction: column-reverse;
    gap: 20px;
    margin-top: 40px;
  }

  #cart .cart-item:last-child {
    padding-bottom: 60px;
  }

  #cart .btn-request {
    width: 100%;
    min-width: auto;
    font-size: 16px;
    padding: 10px;
    height: auto;
  }

  #cart .cart-selection-actions {
    width: 100%;
    flex-direction: row;
    justify-content: flex-end;
    gap: 10px;
  }

  #cart .btn-action {
    font-size: 10px;
    padding: 5px;
    width: auto;
    height: auto;
    border: 1px solid #ccc;
    color: #929292;
  }

  #cart .modal-content {
    padding: 30px 20px;
    max-width: 95%;
  }

  #cart .modal-title {
    font-size: 16px;
  }

  #cart .input-desc {
    color: #999;
  }

  #cart .quote-form .form-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  #cart .quote-form .form-row label {
    width: 100%;
    padding: 0;
    font-size: 14px;
  }

  .quote-form input[type="text"],
  #cart .quote-form input[type="email"] {
    width: 100%;
  }

  #cart .input-desc-group {
    width: 100%;
  }

  #cart .modal-actions {
    flex-direction: row;
    gap: 10px;
  }

  #cart .btn-send,
  #cart .btn-cancel {
    width: 100%;
    padding: 10px 0;
    font-size: 12px;
  }

  /* ===================================
     inquiry.php, qna_list.php, qna_form.php, qna_detail.php 스타일
     =================================== */

  #inquiry .sub-visual,
  #qna_list .sub-visual,
  #qna_form .sub-visual,
  #qna_detail .sub-visual,
  #resource_download .sub-visual,
  #news_list .sub-visual,
  #news_detail .sub-visual {
    width: calc(100% - 40px);
    margin: 20px;
    border-radius: 10px;
    height: 250px;
    max-width: 100%;
  }

  #inquiry .sub-visual-inner,
  #qna_list .sub-visual-inner,
  #qna_form .sub-visual-inner,
  #qna_detail .sub-visual-inner,
  #resource_download .sub-visual-inner,
  #news_list .sub-visual-inner,
  #news_detail .sub-visual-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  #inquiry .sub-visual-title,
  #qna_list .sub-visual-title,
  #qna_form .sub-visual-title,
  #qna_detail .sub-visual-title,
  #resource_download .sub-visual-title,
  #news_list .sub-visual-title,
  #news_detail .sub-visual-title {
    font-size: 22px;
  }

  #inquiry .sub-visual-desc,
  #qna_list .sub-visual-desc,
  #qna_form .sub-visual-desc,
  #qna_detail .sub-visual-desc,
  #resource_download .sub-visual-desc,
  #news_list .sub-visual-desc,
  #news_detail .sub-visual-desc {
    font-size: 16px;
  }

  /* Tab Nav - product-nav처럼 스타일링 */
  #inquiry .tab-nav,
  #qna_list .tab-nav,
  #qna_detail .tab-nav,
  #qna_form .tab-nav,
  #resource_download .tab-nav,
  #news_list .tab-nav,
  #news_detail .tab-nav {
    display: flex;
    flex-wrap: wrap;
    /* padding: 0 20px; */
  }

  #inquiry .tab-nav a,
  #qna_list .tab-nav a,
  #qna_detail .tab-nav a,
  #qna_form .tab-nav a,
  #resource_download .tab-nav a,
  #news_list .tab-nav a,
  #news_detail .tab-nav a {
    flex: 1 1 auto;
    min-width: calc(25% - 10px);
    font-size: 10px;
    padding: 10px 0;
    text-align: center;
  }

  /* 모바일에서 긴 텍스트를 짧게 표시 */
  #inquiry .tab-nav a[href*="inquiry.php"],
  #qna_list .tab-nav a[href*="inquiry.php"],
  #qna_detail .tab-nav a[href*="inquiry.php"],
  #qna_form .tab-nav a[href*="inquiry.php"],
  #resource_download .tab-nav a[href*="inquiry.php"],
  #news_list .tab-nav a[href*="inquiry.php"],
  #news_detail .tab-nav a[href*="inquiry.php"] {
    font-size: 0;
  }

  #inquiry .tab-nav a[href*="inquiry.php"]::after,
  #qna_list .tab-nav a[href*="inquiry.php"]::after,
  #qna_detail .tab-nav a[href*="inquiry.php"]::after,
  #qna_form .tab-nav a[href*="inquiry.php"]::after,
  #resource_download .tab-nav a[href*="inquiry.php"]::after,
  #news_list .tab-nav a[href*="inquiry.php"]::after,
  #news_detail .tab-nav a[href*="inquiry.php"]::after {
    content: "INQUIRY";
    font-size: 10px;
  }

  #inquiry .tab-nav a[href*="resource_download.php"],
  #qna_list .tab-nav a[href*="resource_download.php"],
  #qna_detail .tab-nav a[href*="resource_download.php"],
  #qna_form .tab-nav a[href*="resource_download.php"],
  #resource_download .tab-nav a[href*="resource_download.php"],
  #news_list .tab-nav a[href*="resource_download.php"],
  #news_detail .tab-nav a[href*="resource_download.php"] {
    font-size: 0;
  }

  #inquiry .tab-nav a[href*="resource_download.php"]::after,
  #qna_list .tab-nav a[href*="resource_download.php"]::after,
  #qna_detail .tab-nav a[href*="resource_download.php"]::after,
  #qna_form .tab-nav a[href*="resource_download.php"]::after,
  #resource_download .tab-nav a[href*="resource_download.php"]::after,
  #news_list .tab-nav a[href*="resource_download.php"]::after,
  #news_detail .tab-nav a[href*="resource_download.php"]::after {
    content: "DOWNLOAD";
    font-size: 10px;
  }

  /* News Grid 모바일 반응형 */

  #news_detail .sub-container {
    padding-top: 0px;
  }

  #news_list .sub-container {
    padding-top: 0px;
  }
  #news_list .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  #news_list .news-item {
    margin-bottom: 0;
  }

  #news_list .news-thumb {
    height: 200px;
  }

  #news_list .news-tit {
    font-size: 16px;
    height: auto;
    min-height: 44px;
  }

  #news_list .news-date {
    font-size: 12px;
  }

  #news_list .page-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  #news_list .page-title {
    font-size: 22px;
  }

  #news_list .pagination {
    margin-top: 30px;
    flex-wrap: wrap;
  }

  #inquiry .sub-container {
    padding: 0px 20px 40px 20px;
  }

  #inquiry .content-wrapper {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
  }

  #inquiry .content-left {
    width: 100%;
  }

  #inquiry .page-label {
    font-size: 12px;
    text-align: center;
  }

  #inquiry .page-title {
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
  }

  #inquiry .page-desc {
    font-size: 12px;
    text-align: center;
  }

  #inquiry .content-right {
    max-width: 100%;
  }

  #inquiry .inquiry-form label {
    font-size: 16px;
  }

  .inquiry-form input,
  #inquiry .inquiry-form textarea {
    font-size: 16px;
    padding: 12px 14px;
  }

  #inquiry .contact-bar-wrap {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
  }

  #inquiry .contact-bar {
    flex-direction: column;
    gap: 12px;
  }

  #inquiry .contact-bar div {
    padding: 15px 20px;
    font-size: 16px;
    width: 100%;
  }

  #inquiry .btn-submit {
    padding: 10px;
    font-size: 12px;
  }

  /* Location List 반응형 스타일 */
  #inquiry .location-list {
    margin-top: 40px;
    padding: 0 20px;
  }

  #inquiry .location-item {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }

  #inquiry .map-box {
    width: 100%;
    height: auto;
    min-height: 200px;
    padding-left: 0;
  }

  #inquiry .map-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
  }

  #inquiry .loc-info {
    padding-left: 0;
    padding-top: 0;
  }

  #inquiry .loc-label {
    font-size: 14px;
    margin-bottom: 8px;
  }

  #inquiry .loc-name {
    font-size: 20px;
    margin-bottom: 16px;
  }

  #inquiry .loc-addr {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
  }

  #inquiry .contact-row {
    font-size: 13px;
    margin-bottom: 10px;
    flex-direction: row;
    align-items: flex-start;
  }

  #inquiry .contact-row strong {
    width: 50px;
    font-size: 13px;
    margin-right: 10px;
  }

  #inquiry .contact-row span {
    font-size: 13px;
    flex: 1;
  }

  /* 모바일에서 contact-bar-wrap 레이아웃 조정 */
  #qna_list .contact-bar-wrap,
  #qna_detail .contact-bar-wrap,
  #qna_form .contact-bar-wrap {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }

  #qna_list .contact-bar-wrap .page-title,
  #qna_detail .contact-bar-wrap .page-title,
  #qna_form .contact-bar-wrap .page-title {
    text-align: center;
  }

  #qna_list .contact-bar,
  #qna_detail .contact-bar,
  #qna_form .contact-bar {
    display: none;
  }

  #qna_list .sub-container {
    padding: 0px 20px 0px 20px;
  }

  #qna_list .content-area {
    padding-bottom: 40px;
  }

  /* 모바일용 contact-bar 하단 배치 - Figma 디자인 기준 */
  #qna_list .contact-bar-mobile,
  #qna_detail .contact-bar-mobile,
  #qna_form .contact-bar-mobile {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 20px;
    background: #fff;
    border-top: none;
    margin-top: 20px;
    padding-bottom: 40px;
    width: 100%;
    box-sizing: border-box;
  }

  #qna_list .contact-bar-mobile .contact-bar-item,
  #qna_detail .contact-bar-mobile .contact-bar-item,
  #qna_form .contact-bar-mobile .contact-bar-item {
    width: 100%;
    height: 34.56px;
    padding: 10.24px 0;
    background: #f3f3f4;
    border-radius: 3.84px;
    font-size: 12.8px;
    color: #777;
    text-align: center;
    line-height: 1.5;
    letter-spacing: -0.64px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6.4px;
  }

  #qna_list .contact-bar-mobile .contact-bar-item span,
  #qna_detail .contact-bar-mobile .contact-bar-item span,
  #qna_form .contact-bar-mobile .contact-bar-item span {
    color: #000;
    font-weight: 600;
    margin-right: 0;
    text-transform: uppercase;
  }

  /* QNA Table 모바일 스타일 - Figma 디자인 참고 */
  #qna_list .qna-table {
    display: block;
    width: 100%;
    border: none;
  }

  #qna_list .qna-table colgroup {
    display: none;
  }

  #qna_list .qna-table thead {
    display: none;
  }

  #qna_list .qna-table tbody {
    display: block;
  }

  #qna_list .qna-table tbody tr {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    gap: 12px;
  }

  #qna_list .qna-table tbody tr:last-child {
    margin-bottom: 0;
  }

  /* 모바일에서 테이블 셀 숨김 */
  #qna_list .qna-table tbody tr > td.qna-number-cell,
  #qna_list .qna-table tbody tr > td.qna-category-cell,
  #qna_list .qna-table tbody tr > td.qna-date-cell {
    display: none;
  }

  /* 모바일에서 제목 셀만 표시 (카드 전체) */
  #qna_list .qna-table tbody tr > td.qna-title-cell {
    display: block;
    border: none;
    padding: 0;
    text-align: left;
    width: 100%;
  }

  /* PC용 제목은 모바일에서 숨김 */
  #qna_list .qna-table .qna-title-pc {
    display: none;
  }

  /* 모바일용 카드 구조는 모바일에서 표시 */
  #qna_list .qna-table .qna-mobile-card {
    display: block;
  }

  /* 첫 번째 줄 내부 구조 */
  #qna_list .qna-table .qna-row-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
    line-height: 1.5;
  }

  #qna_list .qna-table .qna-row-header .qna-number {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    flex-shrink: 0;
  }

  #qna_list .qna-table .qna-row-header .qna-category {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(243, 244, 245, 0.7);
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    flex-shrink: 0;
  }

  #qna_list .qna-table .qna-row-header a {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    text-decoration: none;
    flex: 1;
    min-width: 0;
  }

  #qna_list .qna-table .qna-row-header a:hover {
    text-decoration: none;
  }

  #qna_list .qna-table .qna-row-header a img {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    display: inline-block;
  }

  /* 두 번째 줄: 댓글 수 + 날짜 */
  #qna_list .qna-table .qna-row-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #999;
    line-height: 1.5;
  }

  #qna_list .qna-table .qna-row-footer .qna-reply-count {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
  }

  #qna_list .qna-table .qna-row-footer .qna-reply-count span:last-child {
    color: #999;
    font-size: 14px;
  }

  #qna_list .qna-table .qna-row-footer .qna-reply-icon {
    width: 14px;
    height: 14px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="%23999" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"></path></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    display: inline-block;
  }

  #qna_list .qna-table .qna-row-footer .qna-date {
    color: #999;
    font-size: 14px;
    flex-shrink: 0;
  }

  /* 빈 데이터 메시지 */
  #qna_list .qna-table tbody tr td[colspan] {
    display: block;
    text-align: center;
    padding: 40px 20px;
    color: #888;
    border: none;
  }

  #qna_list .qna-item-mobile {
    display: block;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
  }

  #qna_list .qna-item-mobile .qna-category {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 14px;
    padding: 4px 12px;
  }

  #qna_list .qna-item-mobile .qna-title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  #qna_list .qna-item-mobile .qna-date {
    font-size: 14px;
    color: #999;
  }

  #qna_form .sub-container {
    padding: 40px 20px;
  }

  #qna_form .write-table {
    display: block;
  }

  #qna_form .write-table thead {
    display: none;
  }

  #qna_form .write-table tr {
    display: block;
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
  }

  #qna_form .write-table th,
  #qna_form .write-table td {
    display: block;
    width: 100%;
    padding: 10px 0;
    border: none;
    text-align: left;
  }

  #qna_form .write-table th {
    background: none;
    font-weight: 700;
    margin-bottom: 8px;
    width: 100%;
  }

  #qna_form .input-text,
  #qna_form .input-select,
  #qna_form .textarea-box {
    width: 100%;
    font-size: 16px;
  }

  #qna_form .input-select {
    width: 100%;
  }

  #qna_form .btn-wrap {
    flex-direction: column;
    gap: 10px;
  }

  #qna_form .btn-submit,
  #qna_form .btn-cancel {
    width: 100%;
    padding: 14px;
  }

  #qna_detail .qna-file-item a {
    color: #777;
    font-family: Pretendard;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 17.92px; /* 179.2% */
    letter-spacing: -0.2px;
  }

  #qna_detail .sub-container {
    padding: 40px 20px;
  }

  #qna_detail .view-table {
    display: block;
  }

  #qna_detail .view-table thead {
    display: none;
  }

  #qna_detail .view-table tr {
    display: block;
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
  }

  #qna_detail .view-table th,
  #qna_detail .view-table td {
    display: block;
    width: 100%;
    padding: 10px 0;
    border: none;
    text-align: left;
  }

  #qna_detail .view-table th {
    background: none;
    font-weight: 700;
    margin-bottom: 8px;
    width: 100%;
  }

  #qna_detail .view-content {
    padding: 20px;
    font-size: 14px;
    min-height: auto;
  }

  #qna_detail .btn-wrap {
    flex-direction: column;
    gap: 10px;
  }

  #qna_detail .btn-action {
    width: 100%;
  }

  /* QNA Detail 테이블 - Figma 디자인 기준 모바일 스타일 */
  #qna_detail .qna-detail-table {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 20px;
    border: none;
  }

  /* 기본 행 스타일 - 가로 배치 (Name, E-mail, Phone, Title) */
  #qna_detail .qna-detail-row {
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: center;
    border: none;
    border-bottom: 1px solid #e2e2e2;
    padding: 8px 0;
    margin-bottom: 0;
  }

  #qna_detail .qna-detail-label {
    width: 80px;
    min-width: 80px;
    font-size: 12px;
    color: #999;
    font-weight: 400;
    border: none;
    border-right: none;
    border-bottom: none;
    padding: 0;
    background: none;
    line-height: 1.3;
    letter-spacing: -0.6px;
    text-align: left;
    justify-content: flex-start;
  }

  #qna_detail .qna-detail-value {
    flex: 1;
    font-size: 13px;
    color: #000;
    padding: 4px 0;
    border: none;
    line-height: 1.3;
    letter-spacing: -0.65px;
  }

  /* Questions, File 행은 세로 배치 */
  #qna_detail .qna-detail-row.qna-detail-content-row {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
    border-bottom: none;
    padding: 12px 0;
  }

  #qna_detail .qna-detail-content-row .qna-detail-label {
    width: auto;
    text-align: left;
    font-size: 12px;
    color: #999;
    margin-bottom: 4px;
  }

  #qna_detail .qna-detail-content {
    background: #f6f6f6;
    border: 1px solid #e2e2e2;
    border-radius: 5px;
    padding: 16px;
    font-size: 13px;
    color: #444;
    line-height: 1.5;
    letter-spacing: -0.65px;
    font-weight: 300;
    width: 100%;
    margin: 0;
    min-height: 100px;
  }

  /* File 리스트 스타일 */
  #qna_detail .qna-file-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
  }

  #qna_detail .qna-file-item {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f6f6f6;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 10px;
    color: #777;
    line-height: 1.8;
    letter-spacing: -0.2px;
  }

  #qna_detail .qna-file-item img {
    width: 11.52px;
    height: 11.52px;
  }

  /* Edit/Delete 버튼 - 오른쪽 정렬, 가로 배치 */
  #qna_detail .qna-action-buttons {
    display: flex;
    flex-direction: row;
    gap: 8px;
    justify-content: flex-end;
    padding: 0 20px;
    margin-top: 10px;
  }

  #qna_detail .btn-qna-edit,
  #qna_detail .btn-qna-delete {
    width: auto;
    min-width: 51.8px;
    height: 28.2px;
    padding: 8.96px;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: -0.24px;
    border-radius: 2.56px;
  }

  #qna_detail .btn-qna-edit {
    background: #0068b7;
    color: #fff;
    border: none;
  }

  #qna_detail .btn-qna-delete {
    background: #4e4e4e;
    color: #fff;
    border: none;
  }

  /* 댓글 섹션 - Figma 디자인 기준 */

  #qna_detail .content-area {
    padding-bottom: 0px;
  }
  #qna_detail .qna-reply-section {
    padding: 20px 20px;
    margin-top: 30px;
    border-top: 1px solid #e2e2e2;
  }

  #qna_detail .reply-write-area {
    margin-bottom: 30px;
  }

  #qna_detail .reply-list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* 댓글 작성 영역 - Figma 디자인 기준 */
  #qna_detail .reply-textarea {
    background: #f6f6f6;
    border: 0.64px solid #ddd;
    border-radius: 8.96px;
    padding: 12.8px;
    font-size: 13px;
    color: #444;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: -0.65px;
    min-height: 99.84px;
    width: 100%;
  }

  #qna_detail .reply-form-actions {
    display: flex;
    flex-direction: row;
    gap: 5.76px;
    justify-content: flex-end;
    margin-top: 7.04px;
  }

  #qna_detail .btn-reply-submit,
  #qna_detail .btn-reply-cancel {
    width: auto;
    min-width: 42.88px;
    height: 23.12px;
    padding: 8.96px;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: -0.64px;
    border-radius: 2.56px;
    text-align: center;
  }

  #qna_detail .btn-reply-submit {
    background: #0068b7;
    color: #fff;
    border: none;
  }

  #qna_detail .btn-reply-cancel {
    background: #4e4e4e;
    color: #fff;
    border: none;
  }

  /* 댓글 목록 - Figma 디자인 기준 */

  #qna_detail .reply-item {
    padding: 15.36px 0;
    border-top: 0.64px solid #ddd;
  }

  #qna_detail .reply-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 18.56px;
    margin-bottom: 12.8px;
  }

  #qna_detail .reply-author-info {
    display: flex;
    align-items: center;
    gap: 18.56px;
  }

  #qna_detail .reply-author {
    font-size: 11px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: -0.22px;
    color: #000;
  }

  #qna_detail .reply-author.admin {
    color: #0068b7;
  }

  #qna_detail .reply-date {
    font-size: 11px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.22px;
    color: #7a7a7a;
  }

  #qna_detail .reply-actions {
    display: flex;
    align-items: center;
    gap: 0;
  }

  #qna_detail .btn-reply-edit,
  #qna_detail .btn-reply-delete {
    padding: 2.56px 6.4px;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: -0.24px;
    background: none;
    border: none;
    border-radius: 3.84px;
    width: auto;
    min-width: 42.88px;
    height: auto;
  }

  #qna_detail .btn-reply-edit {
    color: #0068b7;
  }

  #qna_detail .btn-reply-delete {
    color: #656565;
  }

  #qna_detail .reply-content {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: -0.65px;
    color: #444;
  }

  #qna_detail .qna-navigation {
    margin-top: 40px;
  }

  #qna_detail .qna-nav-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 15px 0;
  }

  #qna_detail .qna-nav-label {
    width: 100%;
  }

  #qna_detail .qna-nav-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  #qna_detail .modal-content {
    width: 95%;
    max-width: 95%;
    padding: 25px 20px;
  }

  #qna_detail .modal-textarea {
    font-size: 16px;
    min-height: 120px;
  }

  #qna_detail .modal-actions {
    flex-direction: column;
    gap: 10px;
  }

  #qna_detail .btn-modal-submit,
  #qna_detail .btn-modal-cancel {
    width: 100%;
    min-width: auto;
  }

  /* ===================================
     resource_download.php 스타일
     =================================== */

  #resource_download .sub-visual {
    width: calc(100% - 40px);
    margin: 20px;
    border-radius: 10px;
    height: 250px;
    max-width: 100%;
  }

  #resource_download .sub-visual-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  #resource_download .sub-visual-title {
    font-size: 22px;
  }

  #resource_download .sub-visual-desc {
    font-size: 16px;
  }

  #resource_download .sub-container {
    padding: 0 20px;
  }

  #resource_download .download-card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 50px;
  }

  #resource_download .download-card {
    padding: 30px 20px;
  }

  #resource_download .card-title {
    font-size: 20px;
  }

  #resource_download .card-text {
    font-size: 14px;
    height: auto;
    margin-bottom: 20px;
  }

  #resource_download .btn-dl {
    font-size: 14px;
    padding: 10px 24px;
  }

  #resource_download .cat-title {
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 12px;
  }

  #resource_download .cat-section {
    margin-bottom: 40px;
  }

  #resource_download .cat-sub-title {
    font-size: 16px;
    padding: 12px;
    margin-bottom: 15px;
  }

  #resource_download .file-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  #resource_download .file-item {
    padding: 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  #resource_download .file-name {
    font-size: 14px;
    width: 100%;
  }

  #resource_download .section-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  #resource_download .section-single,
  #resource_download .section-multi,
  #resource_download .section-color-charts {
    margin-bottom: 40px;
  }

  #resource_download .file-grid-3col,
  #resource_download .file-grid-4col {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  #resource_download .file-item-button {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 15px;
  }

  #resource_download .file-item-button .file-name {
    margin-right: 0;
  }

  #resource_download .btn-dl-primary {
    font-size: 14px;
    padding: 12px 30px;
  }

  #resource_download .btn-dl-large {
    padding: 14px 40px;
    font-size: 16px;
  }

  #resource_download .btn-dl-small {
    padding: 8px 14px;
    font-size: 13px;
  }

  #resource_download .color-charts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }

  #resource_download .color-chart-card {
    width: 100%;
  }

  #resource_download .color-chart-header {
    font-size: 14px;
    padding: 12px 15px;
  }

  #resource_download .color-chart-content {
    padding: 15px;
  }

  /* ===================================
     mypage 관련 페이지 스타일
     =================================== */

  #mypage .mypage-container,
  #mypage_customer_request .mypage-container,
  #mypage_qna_history .mypage-container,
  #mypage_info .mypage-container,
  #mypage_security .mypage-container,
  #mypage_marketing_consent .mypage-container,
  #mypage_withdraw .mypage-container {
    flex-direction: column;
    padding: 30px 20px;
  }

  #mypage .sidebar,
  #mypage_customer_request .sidebar,
  #mypage_qna_history .sidebar,
  #mypage_info .sidebar,
  #mypage_security .sidebar,
  #mypage_marketing_consent .sidebar,
  #mypage_withdraw .sidebar {
    display: none; /* 모바일에서 기존 sidebar 숨김 */
  }

  #mypage .sidebar-title,
  #mypage_customer_request .sidebar-title,
  #mypage_qna_history .sidebar-title,
  #mypage_info .sidebar-title,
  #mypage_security .sidebar-title,
  #mypage_marketing_consent .sidebar-title,
  #mypage_withdraw .sidebar-title {
    font-size: 22px;
    margin-bottom: 30px;
  }

  #mypage .sidebar-section-title {
    font-size: 16px;
  }

  #mypage .sidebar-menu a {
    font-size: 14px;
  }

  #mypage .content-area,
  #mypage_customer_request .content-area,
  #mypage_qna_history .content-area,
  #mypage_info .content-area,
  #mypage_security .content-area,
  #mypage_marketing_consent .content-area,
  #mypage_withdraw .content-area {
    width: 100%;
  }

  #mypage .page-title {
    font-size: 20px;
    margin-bottom: 30px;
  }

  #mypage_customer_request .request-table {
    display: none;
  }

  #mypage_customer_request .request-item-mobile {
    display: block;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
  }

  #mypage_customer_request .request-item-mobile .item-title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  #mypage_customer_request .request-item-mobile .item-date {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
  }

  #mypage_customer_request .request-item-mobile .item-status {
    font-size: 14px;
    margin-bottom: 15px;
  }

  #mypage_customer_request .modal-content {
    width: 95%;
    padding: 30px 20px;
    max-height: 85vh;
  }

  #mypage_customer_request .modal-header-info {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  #mypage_customer_request .detail-item {
    flex-direction: column;
    gap: 15px;
    padding: 15px 0;
  }

  #mypage_customer_request .detail-img {
    width: 100%;
    height: 200px;
    margin-right: 0;
  }

  #mypage_customer_request .detail-title {
    font-size: 16px;
    margin-bottom: 15px;
  }

  #mypage_customer_request .spec-row {
    flex-direction: column;
    gap: 5px;
    margin-bottom: 12px;
  }

  #mypage_customer_request .spec-label {
    width: 100%;
    font-size: 14px;
  }

  #mypage_customer_request .spec-row span:not(.spec-label) {
    font-size: 14px;
  }

  #mypage_qna_history .page-title {
    font-size: 20px;
    margin-bottom: 30px;
  }

  #mypage_qna_history .list-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding-bottom: 15px;
  }

  #mypage_qna_history .total-count {
    font-size: 16px;
  }

  #mypage_qna_history .qna-table {
    display: none;
  }

  #mypage_qna_history .qna-item-mobile {
    display: block;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
  }

  #mypage_qna_history .qna-item-mobile .qna-category {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 14px;
    padding: 4px 12px;
  }

  #mypage_qna_history .qna-item-mobile .qna-title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  #mypage_qna_history .qna-item-mobile .qna-date {
    font-size: 14px;
    color: #999;
  }

  #mypage_info .info-form,
  #mypage_security .security-form {
    max-width: 100%;
  }

  #mypage_info .form-group,
  #mypage_security .form-group {
    margin-bottom: 20px;
  }

  #mypage_info .form-label,
  #mypage_security .form-label {
    font-size: 16px;
    margin-bottom: 8px;
  }

  #mypage_info .form-input,
  #mypage_security .form-input {
    font-size: 16px;
    padding: 12px 15px;
  }

  #mypage_info .btn-submit,
  #mypage_security .btn-submit {
    width: 100%;
    padding: 14px;
    font-size: 16px;
  }

  #mypage_marketing_consent .consent-section {
    margin-top: 20px;
  }

  #mypage_marketing_consent .consent-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  #mypage_marketing_consent .consent-text {
    font-size: 18px;
    width: 100%;
  }

  #mypage_marketing_consent .consent-subtext {
    font-size: 14px;
    margin-bottom: 15px;
  }

  #mypage_marketing_consent .btn-terms {
    font-size: 14px;
  }

  #mypage_marketing_consent .modal-content {
    width: 95%;
    padding: 25px 20px;
    max-height: 85vh;
  }

  #mypage_marketing_consent .modal-title {
    font-size: 16px;
  }

  #mypage_marketing_consent .terms-box {
    height: 250px;
    padding: 15px;
    font-size: 13px;
  }

  #mypage_marketing_consent .modal-actions {
    flex-direction: column-reverse;
    gap: 10px;
  }

  #mypage_marketing_consent .btn-action {
    width: 100%;
    padding: 14px;
  }

  #mypage_withdraw .modal-content {
    width: 95%;
    padding: 25px 20px;
    max-height: 85vh;
  }

  #mypage_withdraw .security-title {
    font-size: 16px;
  }

  #mypage_withdraw .security-desc {
    font-size: 13px;
  }

  #mypage_withdraw .modal-actions {
    flex-direction: column-reverse;
    gap: 10px;
    margin-top: 20px;
  }

  #mypage_withdraw .btn-action {
    width: 100%;
    padding: 14px;
  }

  /* 공통 반응형 스타일 */
  .section-inner {
    padding: 0 20px;
  }

  .sub-container {
    padding: 40px 20px;
  }

  .sub-visual {
    width: calc(100% - 40px) !important;
    margin: 20px !important;
    border-radius: 10px !important;
    height: 250px !important;
    max-width: 100% !important;
  }

  .sub-visual::before {
    border-radius: 10px !important;
  }


  .sub-visual-title {
    font-size: 22px !important;
  }

  .sub-visual-desc {
    font-size: 16px !important;
  }

  .page-title {
    font-size: 22px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .btn-large {
    padding: 14px 28px;
    font-size: 16px;
  }

  /* 모달 반응형 */
  .modal-content {
    width: 95% !important;
    max-width: 95% !important;
    padding: 25px 20px !important;
    max-height: 85vh !important;
  }

  /* 이미지 반응형 */
  img {
    max-width: 100%;
    height: auto;
  }

  /* 폼 요소 반응형 */
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="tel"],
  input[type="number"],
  textarea,
  select {
    font-size: 11px !important;
    padding: 9px 16px !important;
  }

  /* 그리드 반응형 */
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Flex 레이아웃 반응형 */
  .flex-row {
    flex-direction: column !important;
    gap: 20px !important;
  }

  /* ===================================
     모바일 전용 마이페이지 (mypage.php)
     =================================== */

  #mypage_mobile .mypage-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f6f7f7;
    padding: 8px 18px;
    z-index: 100;
  }

  #mypage_mobile .mypage-mobile-header .back-btn {
    width: 5px;
    height: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
  }

  #mypage_mobile .mypage-mobile-header .back-btn svg {
    width: 5px;
    height: 10px;
    stroke: #000;
  }

  #mypage_mobile .mypage-mobile-header h1 {
    font-family: "Pretendard", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: -0.7px;
    text-align: center;
    color: #000;
    margin: 0;
  }

  #mypage_mobile .mypage-mobile-header .placeholder {
    width: 5px;
    height: 10px;
  }

  #mypage_mobile .mypage-mobile-content {
    padding: 90px 18px;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  #mypage_mobile .mypage-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  #mypage_mobile .mypage-section .section-title {
    font-family: "Pretendard", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.12;
    letter-spacing: -0.32px;
    color: #000;
    text-transform: capitalize;
    margin: 0;
    padding-bottom: 16px;
    border-bottom: 0.64px solid #000;
  }

  #mypage_mobile .mypage-section .menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  #mypage_mobile .mypage-section .menu-list li {
    border-bottom: 0.64px solid #000;
  }

  #mypage_mobile .mypage-section .menu-list li a {
    display: block;
    padding: 16px 10px;
    font-family: "Pretendard", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.28;
    letter-spacing: -0.28px;
    color: #000;
    text-decoration: none;
    text-transform: capitalize;
    transition: background 0.2s ease;
  }

  #mypage_mobile .mypage-section .menu-list li a:hover {
    background: #f9f9f9;
  }

  #mypage_mobile .mypage-section .menu-list li a:active {
    background: #f3f3f3;
  }

  /* ===================================
     마이페이지 서브페이지 공통 스타일
     =================================== */

  /* 모바일 헤더 - 모든 마이페이지 서브페이지 */
  .mypage-mobile-header {
    display: none;
  }

  #mypage_customer_request .mypage-mobile-header,
  #mypage_edit_profile .mypage-mobile-header,
  #mypage_marketing_consent .mypage-mobile-header,
  #mypage_withdraw .mypage-mobile-header,
  #mypage_qna_history .mypage-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f6f7f7;
    padding: 8px 18px;
    position: sticky;
    top: 0;
    z-index: 100;
  }

  #mypage_customer_request .mypage-mobile-header .back-btn,
  #mypage_edit_profile .mypage-mobile-header .back-btn,
  #mypage_marketing_consent .mypage-mobile-header .back-btn,
  #mypage_withdraw .mypage-mobile-header .back-btn,
  #mypage_qna_history .mypage-mobile-header .back-btn {
    width: 5px;
    height: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
  }

  #mypage_customer_request .mypage-mobile-header .back-btn svg,
  #mypage_edit_profile .mypage-mobile-header .back-btn svg,
  #mypage_marketing_consent .mypage-mobile-header .back-btn svg,
  #mypage_withdraw .mypage-mobile-header .back-btn svg,
  #mypage_qna_history .mypage-mobile-header .back-btn svg {
    width: 5px;
    height: 10px;
    stroke: #000;
  }

  #mypage_customer_request .mypage-mobile-header h1,
  #mypage_edit_profile .mypage-mobile-header h1,
  #mypage_marketing_consent .mypage-mobile-header h1,
  #mypage_withdraw .mypage-mobile-header h1,
  #mypage_qna_history .mypage-mobile-header h1 {
    font-family: "Pretendard", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: -0.7px;
    text-align: center;
    color: #000;
    margin: 0;
    flex: 1;
  }

  #mypage_customer_request .mypage-mobile-header .placeholder,
  #mypage_edit_profile .mypage-mobile-header .placeholder,
  #mypage_marketing_consent .mypage-mobile-header .placeholder,
  #mypage_withdraw .mypage-mobile-header .placeholder,
  #mypage_qna_history .mypage-mobile-header .placeholder {
    width: 5px;
    height: 10px;
  }

  /* 공통 마이페이지 컨테이너 */
  #mypage_customer_request .mypage-container,
  #mypage_edit_profile .mypage-container,
  #mypage_marketing_consent .mypage-container,
  #mypage_withdraw .mypage-container,
  #mypage_qna_history .mypage-container {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  #mypage_customer_request .sidebar,
  #mypage_edit_profile .sidebar,
  #mypage_marketing_consent .sidebar,
  #mypage_withdraw .sidebar,
  #mypage_qna_history .sidebar {
    display: none;
  }

  #mypage_customer_request .content-area,
  #mypage_edit_profile .content-area,
  #mypage_marketing_consent .content-area,
  #mypage_withdraw .content-area,
  #mypage_qna_history .content-area {
    width: 100%;
    padding: 90px 18px;
  }

  #mypage_customer_request .page-title,
  #mypage_edit_profile .page-title,
  #mypage_marketing_consent .page-title,
  #mypage_withdraw .page-title,
  #mypage_qna_history .page-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -1.1px;
    text-align: center;
    margin-bottom: 40px;
  }

  /* ===================================
     mypage_customer_request.php 스타일
     =================================== */

  #mypage_customer_request .request-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  #mypage_customer_request .request-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 19.2px;
    border: 0.64px solid #e5e5e5;
    border-radius: 6.4px;
    background: #f6f7f7;
  }

  #mypage_customer_request .request-img {
    width: 127px;
    height: 85px;
    object-fit: cover;
    border-radius: 4px;
  }

  #mypage_customer_request .request-info {
    display: flex;
    flex-direction: column;
    gap: 12.8px;
  }

  #mypage_customer_request .request-row {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 12px;
    line-height: 1.3;
    letter-spacing: -0.64px;
  }

  #mypage_customer_request .request-label {
    font-family: Pretendard, sans-serif;
    font-weight: 600;
    font-size: 12.8px;
    color: #000;
    text-transform: uppercase;
    width: 90px;
    flex-shrink: 0;
  }

  #mypage_customer_request .request-value {
    font-family: Pretendard, sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #000;
    text-transform: uppercase;
  }

  #mypage_customer_request .request-state {
    background: #fff;
    border: 1px solid #b0b0b0;
    border-radius: 5px;
    padding: 4px 8px;
    font-size: 10px;
    text-transform: capitalize;
    letter-spacing: -0.5px;
  }

  #mypage_customer_request .btn-detail {
    display: block;
    text-align: right;
    color: #0068b7;
    text-decoration: underline;
    text-underline-position: from-font;
    font-family: Pretendard, sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: -0.7px;
    text-transform: uppercase;
    margin-top: 8px;
  }

  #mypage_customer_request .pagination {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  #mypage_customer_request .page-btn {
    padding: 6px 10px;
    font-size: 14px;
  }

  /* 모달 */
  #mypage_customer_request .modal-overlay {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #mypage_customer_request .modal-content {
    background: #f6f7f7;
    border: 0.64px solid #d5d5d5;
    border-radius: 12.8px;
    padding: 20px;
    max-width: 334px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 11.52px 10.88px 15.616px 1.92px rgba(152, 152, 152, 0.06);
  }

  #mypage_customer_request .modal-header-info {
    display: flex;
    flex-direction: column;
    gap: 10.24px;
    margin-bottom: 20px;
  }

  #mypage_customer_request .modal-header-info .request-row {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: -0.64px;
  }

  #mypage_customer_request .modal-header-info .request-label {
    font-family: Pretendard, sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #000;
    text-transform: uppercase;
    width: 96px;
    flex-shrink: 0;
  }

  #mypage_customer_request .modal-header-info .request-value {
    font-family: Pretendard, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #000;
    text-transform: capitalize;
  }

  #mypage_customer_request .detail-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    border-top: 0.5px solid #999;
    padding-top: 20px;
  }

  #mypage_customer_request .detail-item {
    display: flex;
    flex-direction: column;
    gap: 17.28px;
  }

  #mypage_customer_request .detail-img {
    width: 102px;
    height: 68px;
    object-fit: cover;
    border-radius: 3.2px;
  }

  #mypage_customer_request .detail-text {
    display: flex;
    flex-direction: column;
    gap: 12.16px;
  }

  #mypage_customer_request .detail-title {
    font-family: Pretendard, sans-serif;
    font-weight: 700;
    font-size: 14.4px;
    line-height: 1.3;
    letter-spacing: -0.8px;
    color: #000;
  }

  #mypage_customer_request .detail-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  #mypage_customer_request .spec-row {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 11px;
    line-height: 1.3;
    letter-spacing: -0.64px;
  }

  #mypage_customer_request .spec-label {
    font-family: Pretendard, sans-serif;
    font-weight: 600;
    font-size: 11px;
    color: #000;
    text-transform: uppercase;
    width: 60px;
    flex-shrink: 0;
  }

  #mypage_customer_request .spec-row span:not(.spec-label) {
    font-family: Pretendard, sans-serif;
    font-weight: 400;
    font-size: 11px;
    color: #000;
    text-transform: capitalize;
  }

  #mypage_customer_request .close-btn {
    display: none;
  }

  #mypage_customer_request .modal-content > div[style*="text-align:center"] {
    margin-top: 20px;
  }

  #mypage_customer_request .modal-content > div[style*="text-align:center"] a {
    display: block;
    width: 100%;
    background: #fff;
    border: 0.64px solid #b0b0b0;
    border-radius: 3.84px;
    padding: 6.4px 8.96px;
    font-family: Pretendard, sans-serif;
    font-weight: 500;
    font-size: 10.24px;
    line-height: 1.3;
    letter-spacing: -0.64px;
    color: #000;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
  }

  /* ===================================
     mypage_edit_profile.php 스타일
     =================================== */

  #mypage_edit_profile .form-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  #mypage_edit_profile .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  #mypage_edit_profile .form-label {
    font-family: "Pretendard", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.7px;
    color: #000;
  }

  #mypage_edit_profile .form-input {
    width: 100%;
    padding: 8px 16px;
    font-size: 13px;
    line-height: 1.3;
    letter-spacing: -0.65px;
    border: 0.8px solid #dadada;
    border-radius: 0;
    background: #fff;
  }

  #mypage_edit_profile .form-input.readonly {
    background: #e9e9e9;
    cursor: not-allowed;
  }

  #mypage_edit_profile .form-row {
    display: flex;
    gap: 8px;
  }

  #mypage_edit_profile .form-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  #mypage_edit_profile .section-title {
    font-family: "Pretendard", sans-serif;
    font-size: 19.2px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.96px;
    color: #000;
    margin-top: 24px;
    margin-bottom: 16px;
    text-transform: capitalize;
  }

  #mypage_edit_profile .btn-save {
    width: 100%;
    padding: 8px;
    background: #0068b7;
    color: #fff;
    font-family: "Pretendard", sans-serif;
    font-size: 12.8px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.64px;
    text-transform: capitalize;
    border: none;
    cursor: pointer;
    margin-top: 8px;
  }

  #mypage_edit_profile .btn-save:hover {
    background: #005a9e;
  }

  /* ===================================
     mypage_marketing_consent.php 스타일
     =================================== */

  #mypage_marketing_consent .consent-section {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
  }

  #mypage_marketing_consent .consent-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
  }

  #mypage_marketing_consent .consent-text {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    flex: 1;
    margin: 0;
    padding-right: 16px;
  }

  #mypage_marketing_consent .toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
  }

  #mypage_marketing_consent .consent-subtext {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 16px;
  }

  #mypage_marketing_consent .modal-overlay {
    padding: 20px;
  }

  #mypage_marketing_consent .modal-content {
    max-width: 100%;
    padding: 20px;
    max-height: 90vh;
    overflow-y: auto;
  }

  #mypage_marketing_consent .modal-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
  }

  #mypage_marketing_consent .terms-box {
    padding: 16px;
    background: #f9f9f9;
    border: 1px solid #e9e9e9;
    font-size: 13px;
    line-height: 1.6;
    max-height: 50vh;
    overflow-y: auto;
    margin-bottom: 16px;
  }

  #mypage_marketing_consent .modal-actions {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }

  #mypage_marketing_consent .btn-action {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border: 1px solid #0068b7;
    border-radius: 4px;
    cursor: pointer;
  }

  #mypage_marketing_consent .btn-action.primary {
    background: #0068b7;
    color: #fff;
  }

  #mypage_marketing_consent .btn-action:not(.primary) {
    background: #fff;
    color: #0068b7;
  }

  /* ===================================
     mypage_withdraw.php 스타일
     =================================== */

  #mypage_withdraw .warning-text {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
  }

  #mypage_withdraw .warning-box {
    padding: 16px;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
  }

  #mypage_withdraw .btn-delete {
    display: inline-block;
    padding: 12px 24px;
    background: #e74c3c;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
  }

  #mypage_withdraw .modal-overlay {
    padding: 20px;
  }

  #mypage_withdraw .modal-content {
    max-width: 100%;
    padding: 20px;
  }

  #mypage_withdraw .security-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  #mypage_withdraw .security-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
  }

  #mypage_withdraw .security-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
  }

  #mypage_withdraw .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  #mypage_withdraw .form-label {
    font-size: 14px;
    color: #000;
  }

  #mypage_withdraw .form-input {
    width: 100%;
    padding: 10px 16px;
    font-size: 14px;
    border: 1px solid #dadada;
    border-radius: 4px;
  }

  #mypage_withdraw .modal-actions {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-top: 20px;
  }

  #mypage_withdraw .btn-action {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border: 1px solid #dadada;
    border-radius: 4px;
    cursor: pointer;
    background: #fff;
    color: #333;
  }

  #mypage_withdraw .btn-action.danger {
    background: #e74c3c;
    color: #fff;
    border-color: #e74c3c;
  }

  /* ===================================
     mypage_qna_history.php 스타일 - qna_list.php와 동일하게 통일
     =================================== */

  #mypage_qna_history .list-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding-bottom: 15px;
  }

  #mypage_qna_history .total-count {
    font-size: 16px;
  }

  /* QNA Table 모바일 스타일 - qna_list와 동일 */
  #mypage_qna_history .qna-table {
    display: block;
    width: 100%;
    border: none;
  }

  #mypage_qna_history .qna-table colgroup {
    display: none;
  }

  #mypage_qna_history .qna-table thead {
    display: none;
  }

  #mypage_qna_history .qna-table tbody {
    display: block;
  }

  #mypage_qna_history .qna-table tbody tr {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    gap: 12px;
  }

  #mypage_qna_history .qna-table tbody tr:last-child {
    margin-bottom: 0;
  }

  /* 모바일에서 테이블 셀 숨김 */
  #mypage_qna_history .qna-table tbody tr > td.qna-number-cell,
  #mypage_qna_history .qna-table tbody tr > td.qna-category-cell,
  #mypage_qna_history .qna-table tbody tr > td.qna-date-cell {
    display: none;
  }

  /* 모바일에서 제목 셀만 표시 (카드 전체) */
  #mypage_qna_history .qna-table tbody tr > td.qna-title-cell {
    display: block;
    border: none;
    padding: 0;
    text-align: left;
    width: 100%;
  }

  /* PC용 제목은 모바일에서 숨김 */
  #mypage_qna_history .qna-table .qna-title-pc {
    display: none;
  }

  /* 모바일용 카드 구조는 모바일에서 표시 */
  #mypage_qna_history .qna-table .qna-mobile-card {
    display: block;
  }

  /* 첫 번째 줄 내부 구조 */
  #mypage_qna_history .qna-table .qna-row-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
    line-height: 1.5;
  }

  #mypage_qna_history .qna-table .qna-row-header .qna-number {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    flex-shrink: 0;
  }

  #mypage_qna_history .qna-table .qna-row-header .qna-category {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(243, 244, 245, 0.7);
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    flex-shrink: 0;
  }

  #mypage_qna_history .qna-table .qna-row-header a {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    text-decoration: none;
    flex: 1;
    min-width: 0;
  }

  #mypage_qna_history .qna-table .qna-row-header a:hover {
    text-decoration: none;
  }

  #mypage_qna_history .qna-table .qna-row-header a img {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    display: inline-block;
  }

  /* 두 번째 줄: 댓글 수 + 날짜 */
  #mypage_qna_history .qna-table .qna-row-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #999;
    line-height: 1.5;
  }

  #mypage_qna_history .qna-table .qna-row-footer .qna-reply-count {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
  }

  #mypage_qna_history
    .qna-table
    .qna-row-footer
    .qna-reply-count
    span:last-child {
    color: #999;
    font-size: 14px;
  }

  #mypage_qna_history .qna-table .qna-row-footer .qna-reply-icon {
    width: 14px;
    height: 14px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="%23999" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"></path></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    display: inline-block;
  }

  #mypage_qna_history .qna-table .qna-row-footer .qna-date {
    color: #999;
    font-size: 14px;
    flex-shrink: 0;
  }

  /* 빈 데이터 메시지 */
  #mypage_qna_history .qna-table tbody tr td[colspan] {
    display: block;
    text-align: center;
    padding: 40px 20px;
    color: #888;
    border: none;
  }

  #mypage_qna_history .qna-item-mobile {
    display: block;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
  }

  #mypage_qna_history .qna-item-mobile .qna-category {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 14px;
    padding: 4px 12px;
  }

  #mypage_qna_history .qna-item-mobile .qna-title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  #mypage_qna_history .qna-item-mobile .qna-date {
    font-size: 14px;
    color: #999;
  }

  #mypage_qna_history .pagination {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  #mypage_qna_history .page-btn {
    padding: 6px 10px;
    font-size: 14px;
  }

  /* ===================================
     Cookie Consent Modal - Mobile
     =================================== */
  .cookie-consent-modal {
    right: 0;
    left: 0;
    bottom: -100%;
    width: calc(100% - 40px);
    margin: 0 20px;
  }

  .cookie-consent-modal.show {
    bottom: 20px;
  }

  .cookie-modal-content {
    padding: 20px;
    gap: 20px;
  }

  .cookie-modal-title {
    font-size: 20px;
  }

  .cookie-modal-desc {
    font-size: 14px;
  }

  .cookie-modal-privacy {
    font-size: 14px;
  }

  .cookie-modal-actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn-cookie-settings,
  .btn-cookie-accept {
    width: 100%;
    text-align: center;
    font-size: 16px;
    padding: 10px 20px;
  }

  /* ===================================
     Cookie Settings Page - Mobile
     =================================== */
  .cookie-setting-container {
    padding: 60px 20px 80px;
  }

  .cookie-setting-inner {
    gap: 60px;
  }

  .cookie-setting-title {
    font-size: 28px;
  }

  .cookie-setting-subtitle {
    font-size: 14px;
  }

  .cookie-setting-content {
    gap: 40px;
  }

  .cookie-intro {
    gap: 30px;
  }

  .cookie-intro-text {
    font-size: 16px;
  }

  .cookie-intro-footer {
    font-size: 16px;
    margin: -15px 0 0 0;
  }

  .cookie-categories {
    gap: 20px;
  }

  .cookie-category-card {
    padding: 20px;
    gap: 20px;
  }

  .cookie-category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .cookie-category-title {
    font-size: 20px;
    white-space: normal;
  }

  .cookie-toggle {
    align-self: flex-end;
  }

  .cookie-category-desc {
    font-size: 16px;
  }

  .cookie-category-desc li {
    font-size: 14px;
  }

  .cookie-actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn-cookie-save,
  .btn-cookie-accept-save {
    width: 100%;
    text-align: center;
    font-size: 16px;
    padding: 10px 20px;
  }

  /* ===================================
     Privacy Policy & Terms - Mobile
     =================================== */
  .policy-container {
    padding: 60px 20px 80px;
  }

  .policy-title {
    font-size: 28px;
    margin: 0 0 12px 0;
  }

  .policy-date {
    font-size: 14px;
    margin: 0 0 40px 0;
  }

  .policy-content {
    gap: 30px;
  }

  .policy-section h2 {
    font-size: 20px;
    margin: 0 0 12px 0;
  }

  .policy-section p {
    font-size: 14px;
    line-height: 1.6;
  }

  .policy-section li {
    font-size: 14px;
    line-height: 1.6;
  }
}
